about summary refs log tree commit diff
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
committerhanemile <emile.hansmaennel@gmail.com>2018-03-19 20:47:13 +0100
commitd0f19b8bc7ab11449cea028106504cacecd94f66 (patch)
tree8ce0c9298694554a46545731c949fb18332669cb
parent996e5529f566d7c64763c47348fc68fae51ef6a4 (diff)
cleaned up
-rwxr-xr-xsrc/a.outbin13200 -> 0 bytes
-rw-r--r--src/c/lookup.c (renamed from src/lookup.c)0
-rwxr-xr-xsrc/coord.py138
-rw-r--r--src/data/pizzablech_11360.csv3
-rw-r--r--src/data/pizzablech_19005.csv3
-rw-r--r--src/data/pizzablech_21823.csv1
-rw-r--r--src/data/pizzablech_27529.csv1
-rw-r--r--src/data/pizzablech_32000.csv2
-rw-r--r--src/data/pizzablech_32315.csv2
-rw-r--r--src/data/pizzablech_7274.csv1
-rw-r--r--src/data/pizzablech_8705.csv1
-rw-r--r--src/data/pizzablech_924.csv1
-rw-r--r--src/go/coords.go18
-rw-r--r--src/go/data/100.csv5
-rwxr-xr-xsrc/go/gobin0 -> 2025101 bytes
-rwxr-xr-xsrc/go/lookupbin0 -> 2025566 bytes
-rw-r--r--src/go/lookup.go54
-rwxr-xr-xsrc/lookup.py86
-rwxr-xr-xsrc/python/coord.py21
-rw-r--r--src/python/coord_clean.py117
-rw-r--r--src/python/draw/draw.py (renamed from src/python/draw.py)0
-rwxr-xr-xsrc/python/draw/plot_lookuptable.py (renamed from src/python/plot_lookuptable.py)0
-rwxr-xr-xsrc/python/experiments/nn.py (renamed from src/python/nn.py)0
-rw-r--r--src/python/experiments/view.py (renamed from src/view.py)0
-rwxr-xr-xsrc/python/lookup.py42
-rwxr-xr-xsrc/python/spiral/average_force.py (renamed from src/python/average_force.py)0
-rwxr-xr-xsrc/python/spiral/cells.py (renamed from src/python/cells.py)0
-rw-r--r--src/python/stars/test.csv2656
-rw-r--r--src/python/stars/test2.csv50
-rw-r--r--src/python/stars/test3.csv377
-rw-r--r--src/python/view.py30
-rw-r--r--src/testFile.csv1000
32 files changed, 3193 insertions, 1416 deletions
diff --git a/src/a.out b/src/a.out
deleted file mode 100755
index 6a6368d..0000000
--- a/src/a.out
+++ /dev/null
Binary files differdiff --git a/src/lookup.c b/src/c/lookup.c
index 01b5508..01b5508 100644
--- a/src/lookup.c
+++ b/src/c/lookup.c
diff --git a/src/coord.py b/src/coord.py
deleted file mode 100755
index 0a7a9d4..0000000
--- a/src/coord.py
+++ /dev/null
@@ -1,138 +0,0 @@
-#!/usr/bin/env python
-
-# import libraries
-import time
-import numpy as np
-import sys
-from subprocess import call
-
-# define the number of stars that should be generated
-nos = int(sys.argv[1])
-
-# define some arrays for storing the values
-arr_stars = np.zeros((int(nos), 3))
-arr_saved_stars = np.zeros((int(nos), 3))
-
-# define various paths
-path = "data/2e7.csv"
-save_path = "stars/" + sys.argv[2] + ".csv"
-# star13 -> 586 stars
-
-# define the random-value range [rho_min; rho_max]
-rand_min = 0
-rand_max = 1477.1586582000994
-
-# define the range (size) of the galaxy
-range_min = -1e7
-range_max = 1e7
-
-# main function
-def main():
-
-    # define the variables for storing the amount of stars kept or kicked away
-    stars_kept = 0
-    stars_kicked = 0
-    i = 0
-
-    # start the timer
-    start = time.time()
-
-    # open the rho file
-    with open(path) as data:
-
-        # read out the lines from the rho file
-        rho_file = data.readlines()
-
-        # for every star...
-        # for i in range(0, nos):
-        while(stars_kept < nos):
-
-            # generate the random star-coordinates
-            x = np.random.uniform(range_min, range_max, size=1)
-            y = np.random.uniform(range_min, range_max, size=1)
-            z = np.random.uniform(range_min, range_max, size=1)
-
-            # calculate the distance of the star to the center of the galaxy
-            r = np.sqrt(pow(x, 2) + pow(y, 2) + pow(z, 2))
-            # print(round(int(r), 0))
-
-            # generate a random value in the range [rand_min; rand_max]
-            a = np.random.uniform(rand_min, rand_max, size=1)
-
-            # read out the corresponding rho value from the lookuptable (rho-file)
-            b = float(rho_file[round(int(r), 0)].split(", ")[1].strip("\n"))
-
-            # print("{:<5}{:<20}{:<20}{:<20}{:<20}{:<20}{:<20}".format(str(stars_kept), str(x), str(y), str(z), str(a), str(b), str(r)))
-
-            # if the random value is smaller than the corresponding rho value
-            if(a < b):
-                # add the coordinate to arr_saved_stars
-                arr_saved_stars[stars_kept][0] = x
-                arr_saved_stars[stars_kept][1] = y
-                arr_saved_stars[stars_kept][2] = z
-
-                # increment the star_kept counter
-                stars_kept += 1
-                print(stars_kept)
-
-            else:
-                # increment the star_kicked counter
-                stars_kicked += 1
-
-            # increment i
-            i = i + 1
-
-    print("")
-    end = time.time()
-    whole_time = end - start
-    out = ">> Finished generating stars in " + str(whole_time) + " seconds\n"
-    print(out)
-
-    # write the star coordinates to a file
-    start_write_file = time.time()
-    print(">> Writing the star-data to " + save_path)
-    with open(save_path, "a") as stars_data:
-        for i in range(0, nos):
-            x = arr_saved_stars[i][0]
-            y = arr_saved_stars[i][1]
-            z = arr_saved_stars[i][2]
-
-            stars_data.write(str(x) + ", " + str(y) + ", " + str(z) + "\n")
-
-    end_write_file = time.time()
-    time_write_file = end_write_file - start_write_file
-    out = ">> Finished writing star-data to " + save_path + " in " + str(round(time_write_file, 4)) + " seconds\n"
-    print(out)
-
-    time_all = whole_time + time_write_file
-
-    time_min = round(time_all / 60, 1)
-
-    # print some stats
-    print("")
-    print("{:<20}{:<20}".format("Time (complete)", str(round(time_all, 4)) + " seconds"))
-    print("{:-<40}".format(""))
-    print("{:<20}{:<20}".format("Number of Stars", str(nos)))
-    print("{:<20}{:<20}".format("Stars Kicked:", str(stars_kicked)))
-    print("{:<20}{:<20}".format("Percent: ", str( nos / stars_kicked * 100 ) + "%"))
-
-    hour = int( time_all // 3600 )
-    time_all = time_all % 3600
-    minutes = int( time_all // 60 )
-    time_all = time_all % 60
-    seconds = int( time_all )
-
-    a = path
-
-    time_a = str(hour) + ":" + str(minutes) + ":" + str(seconds)
-    b = "{:<20}{:<20}".format("Time (h:m:s)", time_a )
-    c = "{:<20}{:<20}".format("Number of Stars", str(nos))
-    d = "{:<20}{:<20}".format("Stars Kicked:", str(stars_kicked))
-    e = "{:<20}{:<20}".format("Percent: ", str( nos / stars_kicked * 100 ) + "%")
-
-    f = a + "\n" + b + "\n" + c + "\n" + d + "\n" + e
-
-    call(["telegram-send", "--pre", str(f) ])
-
-if __name__ == "__main__":
-    main()
diff --git a/src/data/pizzablech_11360.csv b/src/data/pizzablech_11360.csv
deleted file mode 100644
index 227282f..0000000
--- a/src/data/pizzablech_11360.csv
+++ /dev/null
@@ -1,3 +0,0 @@
- 1774.72102827, 1178.10406515
--734.67958771,-1207.38476906
--913.24944432,-5918.62094729
diff --git a/src/data/pizzablech_19005.csv b/src/data/pizzablech_19005.csv
deleted file mode 100644
index 0d1e896..0000000
--- a/src/data/pizzablech_19005.csv
+++ /dev/null
@@ -1,3 +0,0 @@
- 17265.79511097,-3162.68726106
--2369.0947882, 320.72212317
- 49080.10883372, 62913.02531819
diff --git a/src/data/pizzablech_21823.csv b/src/data/pizzablech_21823.csv
deleted file mode 100644
index 20baaa5..0000000
--- a/src/data/pizzablech_21823.csv
+++ /dev/null
@@ -1 +0,0 @@
- 20678.62453795,-120221.31056653
diff --git a/src/data/pizzablech_27529.csv b/src/data/pizzablech_27529.csv
deleted file mode 100644
index 8a84290..0000000
--- a/src/data/pizzablech_27529.csv
+++ /dev/null
@@ -1 +0,0 @@
--84.27519625, 2799.48771798
diff --git a/src/data/pizzablech_32000.csv b/src/data/pizzablech_32000.csv
deleted file mode 100644
index 8afae9d..0000000
--- a/src/data/pizzablech_32000.csv
+++ /dev/null
@@ -1,2 +0,0 @@
- 14077.72819654, 15732.23314295
- 4779.21771898,-32486.50451903
diff --git a/src/data/pizzablech_32315.csv b/src/data/pizzablech_32315.csv
deleted file mode 100644
index 0aa0951..0000000
--- a/src/data/pizzablech_32315.csv
+++ /dev/null
@@ -1,2 +0,0 @@
- 3914.51482843,-47.19622038
- 104001.67675349, 87348.92176592
diff --git a/src/data/pizzablech_7274.csv b/src/data/pizzablech_7274.csv
deleted file mode 100644
index 2101fa4..0000000
--- a/src/data/pizzablech_7274.csv
+++ /dev/null
@@ -1 +0,0 @@
- 1384.895152, 883.74479782
diff --git a/src/data/pizzablech_8705.csv b/src/data/pizzablech_8705.csv
deleted file mode 100644
index 2869ef9..0000000
--- a/src/data/pizzablech_8705.csv
+++ /dev/null
@@ -1 +0,0 @@
--1332.03040452,-1942.03814714
diff --git a/src/data/pizzablech_924.csv b/src/data/pizzablech_924.csv
deleted file mode 100644
index 8dbeac9..0000000
--- a/src/data/pizzablech_924.csv
+++ /dev/null
@@ -1 +0,0 @@
--787.29212918, 3181.78632621
diff --git a/src/go/coords.go b/src/go/coords.go
new file mode 100644
index 0000000..819f36f
--- /dev/null
+++ b/src/go/coords.go
@@ -0,0 +1,18 @@
+// Generate Star coordinates using a custom function
+
+// arg1 = number of stars
+// arg2 = save path
+
+package main
+
+import (
+  "fmt"
+  "os"
+)
+
+func main(){
+
+  arguments := os.Args[1:]
+
+  fmt.Println(arguments)
+}
diff --git a/src/go/data/100.csv b/src/go/data/100.csv
new file mode 100644
index 0000000..eea675d
--- /dev/null
+++ b/src/go/data/100.csv
@@ -0,0 +1,5 @@
+This is test content
+If this is displayed, the software is working!
+\o/
+ |
+/ \
diff --git a/src/go/go b/src/go/go
new file mode 100755
index 0000000..43dbd99
--- /dev/null
+++ b/src/go/go
Binary files differdiff --git a/src/go/lookup b/src/go/lookup
new file mode 100755
index 0000000..03c8927
--- /dev/null
+++ b/src/go/lookup
Binary files differdiff --git a/src/go/lookup.go b/src/go/lookup.go
new file mode 100644
index 0000000..c222de5
--- /dev/null
+++ b/src/go/lookup.go
@@ -0,0 +1,54 @@
+// ./lookup.py <number_of_stars> <save_name>
+
+package main
+
+import (
+  "fmt"         // printing
+  // "os"          // system arguments
+  "math"
+)
+
+const sigma = 200
+const f_0 = 0.1
+const R_s = 1e4
+const pi = 3.141592
+// e = math.e
+const G = 4.302e-3
+
+func rho(r int) float64 {
+  var a float64 = (1000) / (math.Sqrt( 2 * pi ) * sigma )
+  var b float64 = r / sigma * sigma
+  var c float64 = math.Exp(float64(b))
+  var d float64 = float64(a) * float64(c)
+  return d
+}
+
+// # rho function
+// def rho(r):
+//     a = (1) / (math.sqrt( 2 * pi ) * sigma )
+//     b = math.exp( - (phi(r) / sigma ** 2 ) )
+//     return a * b
+
+// func phi(x int) float64 {
+//   // if x == 0{
+//   //   return -4 * pi * f_0 * G * (R_s * R_s)
+//   // } else {
+//   //   a := - ( 4 * pi * G * f_0 * (R_s * R_s * R_s) ) / x
+//   //   b := 1 + (x / R_s)
+//   //   c := math.Log(b)
+//   //   d := a * b
+//   //   return d
+//   // }
+// }
+
+func main(){
+  // nos := os.Args[1]
+  // save := "/data/" + string(os.Args[2]) + ".csv"
+
+  fmt.Println(float64(rho(1e6)))
+  fmt.Println(float64(rho(3e6)))
+  fmt.Println(float64(rho(5e6)))
+  fmt.Println(float64(rho(7e6)))
+  fmt.Println(float64(rho(9e6)))
+
+}
diff --git a/src/lookup.py b/src/lookup.py
deleted file mode 100755
index 52e1966..0000000
--- a/src/lookup.py
+++ /dev/null
@@ -1,86 +0,0 @@
-#!/usr/bin/env python
-
-# Import some libraries
-import math
-import numpy as np
-import matplotlib.pyplot as plt
-import time
-import os
-import sys
-
-# Defining some variables
-sigma = 200
-f_0 = 0.1
-R_s = 1e4
-
-# Defining some constants
-pi = math.pi
-e = math.e
-G = 4.302e-3
-
-# rho function
-def rho(r):
-    a = (1) / (math.sqrt( 2 * pi ) * sigma )
-    b = math.exp( - (phi(r) / sigma ** 2 ) )
-    return a * b
-
-# phi function
-def phi(x):
-    if x == 0:
-        return -4 * pi * f_0 * G * R_s**2
-    else:
-        a = - ( 4 * pi * G * f_0 * R_s ** 3 ) / x
-        b = np.log(1. + (x / R_s) )
-        return a * b
-
-# Defining a list to store the rho-values for plotting
-list_rho = []
-
-# Define the path to where the data should be stored
-path = 'data/' + str(sys.argv[2]) + '.csv'
-
-# get the start time
-start = time.time()
-
-# define the number of stars using system arguments
-stars = int(float(sys.argv[1]))
-
-# open the file where the information should be written to
-with open(path, "a") as data:
-
-    # for every star
-    for i in range(0, stars):
-
-        # calculate the rho value
-        rho_i = rho(i/10)
-
-        # append the rho value to list_rho for plotting
-        # list_rho.append(rho_i)
-
-        # print the distance to the center of the universe and the rho value to
-        # the user
-        print(str(i) + ", " + str(rho_i))
-
-        # write the data into the file
-        data.write(str(i) + ", " + str(rho_i) + "\n")
-
-# get the end time
-end = time.time()
-
-# calculate the runtime
-runtime = end - start
-
-# print some information to the user
-print("\n Runtime: ", end="")
-print(str(runtime) + " seconds")
-
-print(" Stars: " + str(stars))
-
-print(" Rho-values per second: ", end="")
-print(str(stars / runtime))
-
-# plt.plot(list_rho)
-# plt.xscale('log')
-# plt.yscale('log')
-# plt.grid()
-# plt.show()
diff --git a/src/python/coord.py b/src/python/coord.py
index 6cadf16..00fe056 100755
--- a/src/python/coord.py
+++ b/src/python/coord.py
@@ -18,7 +18,7 @@ parser = argparse.ArgumentParser(
 
 # add some arguments to the parser
 parser.add_argument("nos", help="Number of stars that should be generated")
-parser.add_argument("path", help="Path to the file where the coordinates of the stars should be saved")
+parser.add_argument("path", help="Name of the file where the coordinates of the stars should be saved")
 parser.add_argument("-l", dest="lookup", help="Define a custom lookuptable filepath", default="1e7")
 parser.add_argument("-r", dest="range", help="Define a custom range in where the stars should be generated", default="1e7")
 parser.add_argument("-m", dest="cores", help=f"Enable Multithreading with up to {cpu_count} cores", default="2")
@@ -34,7 +34,7 @@ save_path = "stars/" + str(args.path) + ".csv"
 
 # define the path to the lookuptable
 # (The default args.lookup value is 1e7)
-path = "data/" + str(args.lookup) + ".csv"
+path = "data/" + str(args.lookup) + ".big.csv"
 
 # define a varible storing how many cores should be user to compute
 cores = int(args.cores)
@@ -103,20 +103,25 @@ def main():
 
     # calculate how many stars each core should generate
     # BUG: local_nos might be wrong because of int rounding down
-    local_nos = int(nos / cores) * cores
+    local_nos = int(nos / cores)
 
-    print(f"Generating {local_nos} Stars using the {path} lookuptable.")
+    print(f"Generating {local_nos} Stars using the {path} lookuptable utilizing {cores} cores")
 
     # define a base threads and stor it n times in a list
     threads = [Process(target=gen_stars, args=(nos, cores, )) for i in range(0, cores)]
 
     # start the threads in the lsit
-    for thread in threads:
-        thread.start()
+    # for thread in threads:
+    for i in range(0, len(threads)):
+        threads[i].start()
+        print(f"Thread {i} Started!")
+        # thread.start()
 
     # join the threads
-    for thread in threads:
-        thread.join()
+    # for thread in threads:
+    for i in range(0, len(threads)):
+        threads[i].join()
+        # thread.join()
 
     # time stuff
     end = time.time()
diff --git a/src/python/coord_clean.py b/src/python/coord_clean.py
deleted file mode 100644
index 85f578d..0000000
--- a/src/python/coord_clean.py
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/usr/bin/env python
-
-# import libraries
-import time
-import numpy as np
-import sys
-
-# define the number of stars that should be generated
-nos = int(sys.argv[1])
-
-# define some arrays for storing the values
-arr_stars = np.zeros((int(nos), 3))
-arr_saved_stars = np.zeros((int(nos), 3))
-
-# define various paths
-path = "data/2e7.csv"
-save_path = "stars/" + sys.argv[2] + ".csv"
-# star13 -> 586 stars
-
-# define the random-value range [rho_min; rho_max]
-rand_min = 0
-rand_max = 1477.1586582000994
-
-# define the range (size) of the galaxy
-range_min = -1e7
-range_max = 1e7
-
-# main function
-def main():
-
-    # define the variables for storing the amount of stars kept or kicked away
-    stars_kept = 0
-    stars_kicked = 0
-    i = 0
-
-    # start the timer
-    start = time.time()
-
-    # open the rho file
-    with open(path) as data:
-
-        # read out the lines from the rho file
-        rho_file = data.readlines()
-
-        # for every star...
-        # for i in range(0, nos):
-        while(stars_kept < nos):
-
-            # generate the random star-coordinates
-            x = np.random.uniform(range_min, range_max, size=1)
-            y = np.random.uniform(range_min, range_max, size=1)
-            z = np.random.uniform(range_min, range_max, size=1)
-
-            # calculate the distance of the star to the center of the galaxy
-            r = np.sqrt(pow(x, 2) + pow(y, 2) + pow(z, 2))
-            # print(round(int(r), 0))
-
-            # generate a random value in the range [rand_min; rand_max]
-            a = np.random.uniform(rand_min, rand_max, size=1)
-            # print(a)
-            # read out the corresponding rho value from the lookuptable (rho-file)
-            b = float(rho_file[round(int(r), 0)].split(", ")[1].strip("\n"))
-
-            # if the random value is smaller than the corresponding rho value
-            if(a < b):
-                # add the coordinate to arr_saved_stars
-                arr_saved_stars[stars_kept][0] = x
-                arr_saved_stars[stars_kept][1] = y
-                arr_saved_stars[stars_kept][2] = z
-
-                # increment the star_kept counter
-                stars_kept += 1
-                print(stars_kept)
-
-            else:
-                # increment the star_kicked counter
-                stars_kicked += 1
-
-            # increment i
-            i = i + 1
-
-    print("")
-    end = time.time()
-    whole_time = end - start
-    out = ">> Finished generating stars in " + str(whole_time) + " seconds\n"
-    print(out)
-
-    # write the star coordinates to a file
-    start_write_file = time.time()
-    print(">> Writing the star-data to " + save_path)
-    with open(save_path, "a") as stars_data:
-        for i in range(0, nos):
-            x = arr_saved_stars[i][0]
-            y = arr_saved_stars[i][1]
-            z = arr_saved_stars[i][2]
-
-            stars_data.write(str(x) + ", " + str(y) + ", " + str(z) + "\n")
-
-    end_write_file = time.time()
-    time_write_file = end_write_file - start_write_file
-    out = ">> Finished writing star-data to " + save_path + " in " + str(round(time_write_file, 4)) + " seconds\n"
-    print(out)
-
-    time_all = whole_time + time_write_file
-
-    time_min = round(time_all / 60, 1)
-
-    # print some stats
-    print("")
-    print("{:<20}{:<20}".format("Time (complete)", str(round(time_all, 4)) + " seconds"))
-    print("{:-<40}".format(""))
-    print("{:<20}{:<20}".format("Number of Stars", str(nos)))
-    print("{:<20}{:<20}".format("Stars Kicked:", str(stars_kicked)))
-    print("{:<20}{:<20}".format("Percent: ", str( nos / stars_kicked * 100 ) + "%"))
-
-if __name__ == "__main__":
-    main()
diff --git a/src/python/draw.py b/src/python/draw/draw.py
index e672a76..e672a76 100644
--- a/src/python/draw.py
+++ b/src/python/draw/draw.py
diff --git a/src/python/plot_lookuptable.py b/src/python/draw/plot_lookuptable.py
index 9d5c6f2..9d5c6f2 100755
--- a/src/python/plot_lookuptable.py
+++ b/src/python/draw/plot_lookuptable.py
diff --git a/src/python/nn.py b/src/python/experiments/nn.py
index b36b103..b36b103 100755
--- a/src/python/nn.py
+++ b/src/python/experiments/nn.py
diff --git a/src/view.py b/src/python/experiments/view.py
index a30ec48..a30ec48 100644
--- a/src/view.py
+++ b/src/python/experiments/view.py
diff --git a/src/python/lookup.py b/src/python/lookup.py
index 52e1966..4c81295 100755
--- a/src/python/lookup.py
+++ b/src/python/lookup.py
@@ -7,6 +7,21 @@ import matplotlib.pyplot as plt
 import time
 import os
 import sys
+import argparse
+
+parser = argparse.ArgumentParser(
+    description="Lookuptable generator",
+    usage='./%(prog)s <radius> <path> [-h]',
+)
+parser.add_argument("radius", help="Number of Values to be calculated")
+parser.add_argument("path", help="Path to the location where the lookuptable should be saved", type=str)
+args = parser.parse_args()
+
+# define the radius until where the values should be generated
+radius = int(float(args.radius))
+
+# Define the path to where the data should be stored
+path = 'data/' + str(args.path) + '.big.csv'
 
 # Defining some variables
 sigma = 200
@@ -33,33 +48,22 @@ def phi(x):
         b = np.log(1. + (x / R_s) )
         return a * b
 
-# Defining a list to store the rho-values for plotting
-list_rho = []
-
-# Define the path to where the data should be stored
-path = 'data/' + str(sys.argv[2]) + '.csv'
-
 # get the start time
 start = time.time()
 
-# define the number of stars using system arguments
-stars = int(float(sys.argv[1]))
-
 # open the file where the information should be written to
 with open(path, "a") as data:
 
     # for every star
-    for i in range(0, stars):
+    for i in range(0, radius):
 
         # calculate the rho value
         rho_i = rho(i/10)
 
-        # append the rho value to list_rho for plotting
-        # list_rho.append(rho_i)
-
         # print the distance to the center of the universe and the rho value to
         # the user
-        print(str(i) + ", " + str(rho_i))
+        if ((i % 1000) == 0):
+            print(str(i) + ", " + str(rho_i))
 
         # write the data into the file
         data.write(str(i) + ", " + str(rho_i) + "\n")
@@ -74,13 +78,7 @@ runtime = end - start
 print("\n Runtime: ", end="")
 print(str(runtime) + " seconds")
 
-print(" Stars: " + str(stars))
+print(" Radius: " + str(radius))
 
 print(" Rho-values per second: ", end="")
-print(str(stars / runtime))
-
-# plt.plot(list_rho)
-# plt.xscale('log')
-# plt.yscale('log')
-# plt.grid()
-# plt.show()
+print(str(radius / runtime))
diff --git a/src/python/average_force.py b/src/python/spiral/average_force.py
index a3a3146..a3a3146 100755
--- a/src/python/average_force.py
+++ b/src/python/spiral/average_force.py
diff --git a/src/python/cells.py b/src/python/spiral/cells.py
index 3304296..3304296 100755
--- a/src/python/cells.py
+++ b/src/python/spiral/cells.py
diff --git a/src/python/stars/test.csv b/src/python/stars/test.csv
new file mode 100644
index 0000000..76829c5
--- /dev/null
+++ b/src/python/stars/test.csv
@@ -0,0 +1,2656 @@
+-225313.49522130808, 59705.87029883778, 113772.11279696762
+83540.9539508142, 242210.64319142513, 40103.852860355866
+-70980.7662655781, -170132.46343507804, 2156.7295612652088
+-313622.5117297316, -74247.44479375333, 121384.48953946773
+709065.6002544295, -861197.5649344983, -178630.8364081754
+-6308.193418741925, 183519.04485822213, -458685.5789406153
+58791.81321212812, -56038.32424577698, -59979.48388399533
+-96182.26402844, -150443.72826359305, 99042.16786281113
+-97123.23828990746, 28143.552442166954, -223378.38152763178
+404682.4753866093, -142198.8748801006, -90444.3361167959
+-169104.07028358663, 85997.39556702459, -15265.320499758585
+125288.02736596274, 176496.66732733906, 636346.2092194452
+614149.7301660888, -113789.45555121603, -262548.4518875838
+199249.3062871599, 272187.4304016486, 302838.09024828416
+-77125.14261908375, 215250.27027949365, 76728.84621710866
+-439203.73321066285, 45386.4340495402, 790283.7461251719
+181051.47850773996, -2169.539548250381, 127684.98306650971
+416910.7734340911, 88171.32717716531, -391539.9847647642
+92498.78039849293, -156569.92329488206, -60917.70826555102
+-489008.8840492315, -101183.22982877155, -58420.06359117688
+-45592.20288071211, -13685.861977557768, -16546.614721858292
+305526.39486232586, 396291.0816776713, -777778.0299658006
+-406837.0665872063, 329180.90527346125, 392191.70870678104
+38206.37871620699, 48050.55063200032, 141960.65802333085
+29063.10474443168, -544034.1778635192, -4395.338195570861
+-505258.6003628001, -130564.2483020504, 828265.5887284819
+-313750.6696329635, -413961.1565335748, 610161.8469182332
+-249116.40255239443, 619125.155291426, 288750.2751941511
+103479.6248153837, -44631.36197956046, -198503.74635107617
+-296747.6638566371, 115158.00861787936, -134200.4178336498
+-388451.4470662648, -120866.72539099853, 224962.88831325737
+158664.74290484143, 612743.8716513279, 417655.8581264124
+374500.96919572144, -582645.3017016364, 818784.0646350833
+204867.65387317725, -355322.86289021117, 60938.755894391565
+19204.612973956508, 21118.60519238573, 18854.069486256456
+-34648.81975674734, -15248.557839096407, 62431.71004619263
+403723.0041582254, 201006.30959127424, 283946.97568850964
+24267.798837703536, -180654.4575620446, 375445.8646941886
+71002.993903314, -13676.492879798752, 121586.45050092298
+12053.659073037794, -5239.792889287113, -17603.63727926556
+633174.4080002548, 899439.75841996, 65539.23428623914
+79250.52086176374, 29281.454164617113, -65135.88571014849
+61532.67944781901, -69433.31451621652, 36750.597953852266
+166189.16249701707, -347843.36649482755, 78056.57765525416
+-22384.975267091882, -624939.9416134355, 28180.437371820444
+-534642.2174753649, 625664.0499324668, -368011.98584636976
+-31342.32229007501, -76816.17775884236, -85383.7129426807
+49205.992523598485, 12303.917491498054, 41218.63287733123
+-92018.93266269437, 65969.81326742587, 22773.389373614802
+-167292.61315499037, 38056.00864282879, -49160.523508236394
+-481618.0907670291, -206166.90580040764, 199660.99030198273
+24417.816534992424, -108056.0637898373, 383889.9987981976
+330259.9417747152, 274149.8832744539, -322023.10058631503
+-995820.4051977302, -860965.2802068841, -460191.7006956487
+-447879.29195734847, 729574.0020429189, -992246.5041667044
+-36547.571340630646, -105447.75516407227, 153880.53009417257
+106561.71901854919, -24805.94339947158, 76843.23294504383
+72254.20983645297, -98503.16432194493, 98387.8446170364
+102289.87599254446, 51038.128305406775, -92821.32538023684
+11323.950167712523, -289801.501708644, 177996.47974091792
+-141819.5245424714, -541246.829846187, 462092.7554031648
+-146268.99148782634, 140704.76870097965, 117516.30951681524
+417762.0817922342, -953201.8653132226, 127639.9498371149
+-159144.9463230552, 150971.86152334698, -4580.540740362951
+-595619.9549194237, 719253.9323171286, 567634.991198288
+195555.83872645744, -405430.8638374873, 801867.33375078
+-34907.686059260974, -61408.31290060445, -4064.0989242818905
+281573.39512163075, 406804.98525156896, 203663.66084610997
+54622.8769175997, -64935.41795530566, 45050.73618051456
+-17347.330684928107, -9834.331423451426, -149917.1270879627
+-20200.037713937578, 52336.59910059767, 24069.97334078059
+8052.659834647551, -99178.42934006499, 72094.46274085739
+-290324.173451312, -71631.01530610351, 136807.5869401791
+37065.371213034494, 37232.11360280379, 115018.84188002395
+-156404.39582111768, 352583.2079594543, 477212.3175086882
+524721.0432171349, -18221.629502829048, -570112.8220028542
+-310995.232863087, -175762.96665055444, 117693.06317832577
+-148208.26495673019, -43391.246839841595, -61652.303069070564
+-895871.6141521606, 855705.5186929272, 524021.9246099116
+-13559.083879801212, -793387.2936813991, -205985.96678072063
+574623.9182488252, 318200.4614669811, -539367.2608105752
+59648.72553442069, -85516.89704813727, 901232.7669770699
+490261.2017305817, 403666.3539184246, -729739.6304212753
+50315.88921153196, -764.6109211454168, -151310.3972420995
+38674.00800952071, 464375.5908490056, 205327.17529546935
+369577.3082378076, -715650.5692726788, -303710.02347624616
+-305876.0745692537, 168662.36191044073, -50976.095088894246
+-305094.0084190947, -97091.29510869109, 309520.085389809
+267787.85442177067, -222240.48356423795, -166045.39340893948
+8986.502543026465, 390552.08987572766, -118821.64654199732
+-675682.1122939228, -622185.2039910927, -731820.9423649336
+-349772.41236483934, 960114.4536369883, 107638.63615978952
+13623.438527630176, 20143.548570310697, -7770.630727806478
+-56346.42273676896, -7136.903515135404, 3950.002201294177
+-737926.501865019, -971660.5122308852, -807156.5359861046
+-113679.88029473368, -284070.284387768, -364257.00734422996
+760737.6689224127, -270682.9716278465, -400028.37844138185
+276247.0437460125, 58343.029103789944, 226206.27754211286
+-9279.178244355367, -16848.403671308537, -9927.670190929202
+-79919.92621409905, -20771.423349778168, -146543.41252300225
+493034.4681144494, 128449.29193849093, 301487.53168982035
+-226865.98469579895, 699258.784666992, 986661.8134564408
+137300.21632517618, 104484.234116229, 50056.078400488244
+[-9962.322817], [23841.10679269], [-13124.71891827]
+[42245.61216271], [-207928.71152768], [-272253.04639288]
+[80601.8043487], [255992.72032173], [166042.66977529]
+[-219135.68127406], [-26552.24984757], [60800.99462553]
+[498670.66944454], [-60836.96792081], [657325.02083545]
+[-5871.53458127], [-391936.71874854], [214660.8557787]
+[-523861.9362145], [733753.1303115], [-693654.33620709]
+[832202.18446393], [435258.07030798], [547462.15766757]
+[2464.47704056], [-22956.59261158], [-23580.23848231]
+[-238844.8850863], [115904.11540587], [-266746.22992036]
+[600932.18155145], [374505.92607998], [399174.34645731]
+[-88312.93635627], [-177138.61447519], [-278818.59294643]
+[-28873.75456045], [-29219.86162097], [18831.31420877]
+[518664.01487822], [382560.6961191], [37726.63490401]
+[-73556.36683742], [69414.63752132], [44383.95177405]
+[410503.50297539], [171854.09349216], [-678652.05428901]
+[21350.21322619], [31443.9090915], [373.80988046]
+[50196.63390534], [-4479.12505858], [-13641.81366459]
+[912733.78321028], [363300.4063012], [-152950.16161293]
+[-221984.60304524], [-516100.11830477], [324855.01570429]
+[896940.35192623], [-706206.36965981], [595501.03056044]
+[32324.62861334], [-255771.2831663], [-416487.33075675]
+[-7214.80275816], [-19798.07866922], [4316.7356741]
+[-205241.00408823], [-323663.85604152], [-651985.79983007]
+[-20687.81246489], [184630.55853077], [-178969.69531256]
+[61480.96189083], [53828.53599201], [92135.27267393]
+[595736.15141046], [-16133.00735681], [-281338.17458174]
+[-309892.82873896], [-189919.3109228], [269796.87552355]
+[-65912.01634789], [-225669.53052601], [-97466.74477052]
+[-475308.46567813], [-353861.95279962], [328556.74911194]
+[-70196.32710708], [-24650.98938041], [23314.65927885]
+[-50193.45934108], [-40703.88114408], [-100413.20067938]
+[-21508.18940054], [26385.24994815], [-138820.52977979]
+[567805.04569108], [173609.88579693], [78803.2178757]
+[123091.0011492], [-96863.30330786], [-19268.98750446]
+[-660211.15769247], [53214.93430648], [597548.70855312]
+[94748.23740144], [-390918.73467102], [-482403.06128679]
+[-6983.79018661], [-25342.68347621], [-28920.12096423]
+[3679.43354497], [-97507.78504346], [4972.52534312]
+[-73310.09379957], [58922.63650261], [-342110.7672697]
+[-279864.6146339], [-282048.41205249], [74429.31745296]
+[-21452.97653703], [8270.78628603], [41532.63946257]
+[-474672.7820861], [-140250.2958701], [-436015.96945913]
+[-156507.68425813], [23037.52301483], [-284936.39459485]
+[-218066.44791741], [257367.95684615], [-34257.70689674]
+[238625.69800864], [-501061.46016602], [744100.53108256]
+[-25658.67446031], [-32099.79292174], [57976.12462104]
+[-8067.3374508], [2323.07432826], [-74665.50420092]
+[-112426.96275879], [-284590.61018106], [301456.98560038]
+[-412016.91041382], [620423.30538491], [-158848.30228567]
+[-69686.3467296], [49476.71694374], [-21432.76421386]
+[15571.27388666], [-68401.28713405], [-143553.13935152]
+[349918.54100643], [136796.33153663], [490163.61530297]
+[-34967.61128573], [-58857.14455103], [30125.89152426]
+[709901.60778394], [454710.71478351], [-205080.73225502]
+[29468.79465981], [-3172.25171575], [521.78134055]
+[16925.98990706], [-20270.29653561], [21695.53553917]
+[99657.02956973], [-225410.40268445], [230275.44792849]
+[302694.96005431], [738186.42869427], [710782.30034458]
+[192147.74917835], [-404574.53824161], [-655641.52102355]
+[294008.71648932], [-647283.80098215], [-289121.87775434]
+[47580.01525274], [5839.18198399], [-60275.7326056]
+[258450.95384659], [-474048.85175491], [-268938.17429169]
+[-71921.97074731], [336001.34078948], [-27687.94777789]
+[207550.08790065], [-27525.35280755], [428738.87758025]
+[-9880.19184555], [-39304.31662068], [62607.53340638]
+[-311431.79610361], [-364965.58152152], [-405153.60479701]
+[-32650.18798705], [-46902.99155724], [145746.04315124]
+[-33913.48154806], [-32414.32401048], [-12874.10784915]
+[41373.19610512], [-152889.21860535], [47081.49046787]
+[-671083.9382085], [-479850.53739003], [-20120.73268018]
+[-4741.95987486], [-20642.94752665], [-5350.87939614]
+[642510.9826633], [28308.23321314], [-294301.7956885]
+[-439661.58027735], [-808799.32680479], [-655082.13657225]
+[-32034.54784208], [112201.39831877], [-111127.32466542]
+[531051.21264937], [-127819.79332633], [-335276.6586795]
+[14714.08676124], [61568.65552745], [-76091.93094572]
+[6203.07900945], [-29773.24617054], [-33996.47745718]
+[388428.2234562], [837790.48639876], [266531.1457058]
+[-132330.75226859], [315334.989411], [16589.51735708]
+[367729.77384587], [47330.73586599], [13286.82093878]
+[-173107.32215296], [-155577.19533803], [2995.95370669]
+[-478618.22617525], [562185.41432337], [237880.40062785]
+[123163.50212235], [-858648.10036973], [515008.3097749]
+[13697.33813191], [91594.90518524], [45818.15096874]
+[-11062.52218569], [51184.06141497], [145507.64350992]
+[459235.17153213], [-423675.18334256], [-921279.31707096]
+[-40281.46796745], [55030.51363828], [29949.57150549]
+[-365860.21332665], [-16181.40162647], [-713947.34797536]
+[5191.90610928], [16718.53517413], [-11606.18467544]
+[-641424.65862017], [126571.85030456], [-800484.59609334]
+[851035.22257605], [-337025.39612725], [396815.03164874]
+[-226280.68419497], [19694.99409329], [258825.43028203]
+[5241.71389442], [248.87595926], [-8537.57765171]
+[18294.65951871], [240530.27718578], [322469.88213965]
+[25360.25791297], [-85974.31815048], [-60274.67079039]
+[-40455.08083631], [22303.91186931], [-60877.74945942]
+[12722.40428469], [-15261.18600454], [-11909.48401526]
+[49976.4630402], [-192565.34143816], [19665.31472037]
+[808315.98304707], [-292181.52024083], [397868.00310776]
+[212742.32054017], [-176550.84842864], [-294551.94314936]
+[646428.42799713], [466765.34697142], [-174762.04357604]
+[-99884.38173323], [125316.07221777], [-12256.76368065]
+[107420.61656505], [43915.06284984], [-69835.52396498]
+[-785220.04722069], [-374667.41079904], [-148092.58547792]
+[97242.38050337], [63105.04268412], [18540.18578867]
+[840126.21243944], [640469.20995606], [995601.17461845]
+[354116.10612529], [382565.332728], [-542276.17359332]
+[-166596.28396814], [-270680.29068018], [87859.32980147]
+[81228.44461888], [315548.90341176], [-362564.04182274]
+[630448.73388264], [-250498.53597794], [158081.12224405]
+[-322260.48089649], [614089.01578577], [150062.72225232]
+[156579.98037631], [424957.93236649], [-220404.70363513]
+[-109442.91433812], [146182.32163479], [-24757.11724658]
+[213233.82610563], [-345913.38205268], [-97376.73894314]
+[525014.20918735], [-349763.74127109], [326031.85503888]
+[288844.29502932], [-403687.19556947], [951277.70515891]
+[87937.88994554], [136149.69224039], [-195271.62415659]
+[176266.46045483], [82520.56407888], [142721.64538318]
+[-25382.2005618], [-64687.18069911], [-3232.41768045]
+[-859.98128926], [92897.27550162], [-38087.89689993]
+[77675.2372586], [147129.56977484], [607296.37315379]
+[38191.36022782], [-84125.90709994], [-183064.27869446]
+[-39087.84239602], [-90475.37244186], [-83015.70990782]
+[99414.30482302], [-59874.40699557], [228887.51900799]
+[171333.11657398], [-22993.87871853], [-205297.87911944]
+[-423558.2165839], [-12572.1786151], [-172957.11399983]
+[58066.10396117], [71626.0871177], [-69124.08972075]
+[-10596.31220498], [-273818.09909397], [16930.89909899]
+[316589.65665469], [153390.46055495], [73995.94425866]
+[-78267.14371839], [407757.67695724], [283257.45595664]
+[-287354.95811295], [92893.60144003], [-690571.66549095]
+[-53457.29745139], [64729.8226237], [-76627.56683587]
+[-174622.1327459], [136751.87721346], [151525.65044272]
+[81109.84453211], [48107.34807867], [21813.40414037]
+[-280152.21546343], [21134.31546589], [679286.71907954]
+[-16745.35643016], [16515.21650066], [50084.58817544]
+[411814.8857549], [544571.20353412], [79673.49854798]
+[-531077.5536959], [-62186.08971984], [908087.5627188]
+[32499.57045208], [-30176.18091624], [10669.6791869]
+[400818.86643289], [388357.58398785], [300285.97528174]
+[-50457.66108577], [-22379.87758715], [-510.37569102]
+[-10312.7063082], [308.96859638], [56978.52624779]
+[987843.92708033], [251620.08581406], [12883.79961451]
+[336354.52419548], [-309096.52043752], [-72222.99803551]
+[-954.8970638], [-47152.12342931], [27008.24515145]
+[-32576.45285777], [-85645.63805606], [70422.96591335]
+[-236961.44934763], [319783.69024851], [-137945.04352972]
+[-82084.16710376], [-842378.41615488], [-135160.92557011]
+[830440.6607302], [-261908.26429395], [-156863.250999]
+[-233513.24229878], [153825.31048155], [-339546.76471418]
+[583889.13151114], [-198346.09347068], [-411920.50801112]
+[7521.75694905], [25331.51139071], [12533.77558996]
+[-24684.23820631], [66322.89343431], [99317.51793667]
+[12726.9718455], [43573.27851596], [116288.336153]
+[-291290.50457073], [813766.13752536], [-125260.2849642]
+[436829.90507145], [-18318.69679449], [-267677.61653931]
+[685037.19984484], [-325118.76466556], [-529302.08651221]
+[-80005.30670676], [101865.91881976], [102333.37053583]
+[-9354.8109132], [-7292.97784277], [-116848.26946267]
+[-114663.33929115], [53611.16958094], [-25285.06109995]
+[-396917.24899952], [244925.15436516], [33825.59028674]
+[-8740.57885636], [65096.10986955], [67455.2166051]
+[-24244.1205428], [48681.56363544], [115981.98795514]
+[-17067.18580811], [25371.27991864], [-73453.64429233]
+[100433.44683781], [82344.66433048], [8724.7140712]
+[10119.29993806], [58635.39996274], [-5388.52131153]
+[-320125.67007716], [-76868.69719331], [193182.51626448]
+[374288.2760003], [-57670.09113133], [517955.08833981]
+[-491674.75927364], [124442.92875473], [389247.9857834]
+[-410859.36787146], [199031.25356888], [599352.43994081]
+[413141.24512692], [-185657.76039241], [-798404.07681916]
+[-66940.71631726], [11756.7524875], [-37357.47441625]
+[-53588.27981995], [-161177.97155788], [360226.41169356]
+[-10821.64885633], [-181904.7921009], [-179930.3877942]
+[-309566.03969433], [388590.62387345], [895781.77219461]
+[-192134.19202046], [282559.91323669], [114721.88074629]
+[-169587.33515005], [-27007.94009958], [-342496.20447582]
+[-304799.84900643], [-83922.64141432], [-206251.19400866]
+[25465.37869952], [16214.68398805], [5991.0449846]
+[164535.31620226], [611.34461338], [40283.19242881]
+[-586123.41363462], [521154.00306608], [145688.32768234]
+[136600.07749222], [244293.61382108], [112729.4442207]
+[-44257.13177496], [53925.97997949], [-42433.73499496]
+[44439.76652825], [123683.22845063], [8700.55399969]
+[35763.40316655], [-138142.7967176], [16075.08088961]
+[-339560.68797252], [6621.92515205], [-75492.52858184]
+[-136848.81213975], [-38604.64253626], [-75169.61596214]
+[165612.05671567], [586364.46623347], [-748885.35994381]
+[-39464.51906627], [-6142.21361891], [20755.43297135]
+[9388.16585427], [-69426.96598516], [-98191.46020955]
+[17799.84860616], [-88758.52944897], [-31874.82093855]
+[301294.17572821], [-72155.61348506], [-170876.01254562]
+[25395.99437826], [-16505.09179008], [38598.78793492]
+[-358590.35128607], [-316479.510088], [-368097.62948675]
+[-108786.23395041], [152841.54205383], [-9645.92650806]
+[297173.95995345], [-449552.26204171], [255021.8565849]
+[4149.87162458], [2102.80959923], [16616.24044824]
+[-656151.28033226], [417816.76448012], [-670080.25443175]
+[47952.54005282], [-173734.98790479], [-239669.50665327]
+[-581627.94203583], [256225.52564108], [335855.62635237]
+[-779207.19026262], [661115.49975], [654189.91768403]
+[-188249.73330364], [393230.58008067], [-12893.14239846]
+[-23943.57987129], [-23212.44282044], [51080.10952662]
+[138547.3759862], [-418484.69246299], [260668.07089899]
+[-277345.66667869], [-495753.66273593], [294468.44753556]
+[-34392.6378036], [43494.8184214], [-193717.39859679]
+[20678.65629097], [-88120.68073097], [92120.05967034]
+[782843.57240797], [-849301.99788689], [137199.99163341]
+[-19705.20504526], [-77719.40573515], [-68820.92500202]
+[-59043.72124914], [-5103.73649894], [7746.68342411]
+[644338.58856957], [806549.71115965], [27584.54358928]
+[31181.4377647], [6571.08153613], [24586.01727297]
+[-119629.04881235], [8706.57348379], [107672.95049177]
+[-41891.13934764], [-115830.7275883], [17327.5563065]
+[53013.39954792], [-23105.81309542], [162090.41029738]
+[-64393.6500336], [996532.50387707], [296349.58970932]
+[280163.04068032], [-75344.14338642], [-434335.31723408]
+[381890.80903135], [334281.05545675], [-38766.53764263]
+[895050.79133928], [-558660.63141821], [2877.04546878]
+[-235924.23734033], [169814.33678732], [-196078.32220671]
+[89355.27973604], [79787.91420588], [91685.00369385]
+[-1261.74768843], [-13353.36003759], [11123.51004056]
+[3745.28208264], [-22954.36130355], [-31972.16029265]
+[-42485.13324446], [-19762.7187508], [-875.72094503]
+[-116344.57672235], [-93279.6567187], [-229322.25391553]
+[-7287.77538068], [174228.06793496], [29254.78476179]
+[-118520.77218906], [111260.48889962], [-908640.43288456]
+[-64786.00850191], [-24371.85658006], [-13026.00243149]
+[110903.77872487], [234295.60192033], [-184757.65575256]
+[123853.09457161], [-124294.0013732], [317708.53423417]
+[10571.77252395], [-57009.72288499], [-97640.73869784]
+[-7643.34887597], [27816.72622761], [20320.82289712]
+[-43013.21559053], [-17905.67881666], [7683.05999895]
+[-36655.29025323], [-512438.80719879], [422423.21009238]
+[549929.40332917], [395806.61869543], [450035.85007014]
+[8189.79334931], [283652.18205894], [-369926.36903146]
+[-10350.19162309], [-48970.92237935], [-46255.18890423]
+[76417.54560677], [-315880.37294229], [45423.78224874]
+[312453.06944211], [282824.93260675], [247198.80709053]
+[-223974.11762903], [139534.20776179], [-90482.45414932]
+[-189270.25370573], [-79815.51184488], [400381.47214676]
+[-97624.63529428], [20092.108985], [-62202.62701925]
+[-954894.61323265], [823685.89697841], [34564.20032875]
+[-21290.0311268], [75932.31510682], [-188504.27722095]
+[-875317.27515123], [254143.34931425], [75298.40411951]
+[-190897.62671183], [-445801.30975458], [13473.12354978]
+[-108274.14474292], [889885.66100453], [-395647.65767163]
+[41317.01390062], [-118923.0519954], [24686.93543633]
+[488069.69613253], [-251656.2327081], [605377.11408655]
+[68531.23735333], [-43812.39659388], [-44744.00510679]
+[25856.44312387], [-10498.09489938], [5538.31699155]
+[-5931.99851899], [85490.63966958], [-232012.94645014]
+[91792.02982836], [-169956.36066494], [-60832.47828318]
+[-592384.55942874], [-845463.67564329], [-227177.79331728]
+[-213739.64826511], [171385.64546604], [74499.30287549]
+[648677.4478206], [-83358.29614843], [487796.26491053]
+[-556555.29286315], [274072.34345481], [-2236.22218135]
+[170666.00263979], [860513.74253841], [-944221.92393565]
+[577319.97219332], [232287.67109234], [-134261.59969084]
+[-5705.36763918], [33408.80330724], [-4746.32314193]
+[581110.68268686], [412670.02404509], [738622.26002154]
+[2810.36886397], [-22488.60323366], [82064.09336299]
+[307674.29171196], [-253684.68861397], [-432414.83524911]
+[451285.04390048], [-173026.41161448], [-727151.03928137]
+[68194.32264065], [39901.59906589], [-8995.26474667]
+[24356.61040952], [136184.44886879], [126194.05212157]
+[520785.83632722], [353422.12159089], [-114828.3651759]
+[89888.23738362], [110288.29996505], [-306168.70045468]
+[15725.89221614], [7899.32619947], [-19629.01498457]
+[-543082.73650079], [147822.51321734], [-267858.36862192]
+[184298.42929029], [482128.31221345], [-575601.24871982]
+[22991.52845668], [-60871.7329365], [33419.44318999]
+[-433098.08119669], [-324532.51131291], [99497.66085501]
+[517242.07200212], [-466916.44908758], [390538.54918637]
+[344712.0791815], [-346122.47914452], [202236.73499603]
+[228585.3557803], [188618.08765243], [-333324.97933685]
+[492748.36055271], [-465954.94532026], [-925700.12470268]
+[15292.05260189], [72926.76474033], [89359.06916271]
+[184483.83284157], [-121573.95787026], [144866.26079469]
+[10235.631256], [-169417.99404472], [-23820.16101417]
+[-765952.51149756], [85179.89812255], [382841.30851695]
+[61376.42227075], [-206470.17138389], [-5746.259724]
+[79314.98172445], [657383.36216581], [-249984.64747505]
+[264316.45454926], [-326210.35398833], [-659020.9662858]
+[-16407.18345852], [6465.25433928], [3383.95239842]
+[489625.37214504], [112619.61523997], [263622.44099239]
+[-43184.31335789], [-174441.46917735], [-296060.12146259]
+[-259337.10688738], [107585.73069569], [264654.54391158]
+[354220.60762082], [98177.40768475], [-11166.37728999]
+[274265.12433748], [-220581.47605833], [-452621.64517479]
+[300859.13779633], [-107395.35835601], [45528.8583078]
+[41662.23087019], [676064.26716981], [251696.53285535]
+[60131.97770858], [43549.65046988], [-37696.37640917]
+[-109798.39914523], [23011.54084891], [-34223.50430722]
+[-172981.01326744], [-572720.44364229], [-836297.28647864]
+[-305254.2390752], [-130211.32786645], [669491.99376766]
+[-340171.86862037], [-762.68182086], [126654.21663045]
+[332627.8853119], [691499.32227183], [-558996.0893936]
+[29501.37010013], [-29569.97453394], [-59610.33970464]
+[-758795.06706334], [-869776.32928749], [-678414.07700175]
+[64837.69023708], [-277178.60536127], [-740368.50483297]
+[-279885.59481926], [-181956.93970742], [-88842.82575814]
+[-992541.22182688], [-511562.78318801], [312583.06749227]
+[132752.43748183], [33776.68556087], [106044.82894227]
+[684195.86781784], [-237893.87139504], [459629.77145275]
+[865965.93655739], [737013.32117192], [-93914.28648433]
+[-97083.7157474], [-127634.47505934], [250328.46194352]
+[555618.10883997], [-598007.68572265], [797368.75127624]
+[164410.22326361], [370040.73826035], [-270831.00148859]
+[9935.5441477], [-48681.32328297], [41321.12810774]
+[-28973.27952887], [40062.12122741], [-82757.64170189]
+[-84614.09752158], [6402.41200561], [-126885.72805375]
+[46458.2480158], [-12514.44437636], [-8766.96031859]
+[-48916.93484653], [-65077.08876329], [-32000.27055981]
+[-21202.53620762], [69754.50566466], [-61070.92212417]
+[678679.80691765], [-129198.8321731], [-59298.6186523]
+[53846.90064087], [-47481.35610716], [-41920.57949608]
+[790326.28422575], [333420.797155], [-671159.66503325]
+[50623.02750457], [38892.06603995], [1654.4701714]
+[993799.74128367], [-320337.39599192], [961791.0449023]
+[-855196.46815541], [-352709.36762339], [-269555.3015818]
+[-390811.44238453], [-366106.32577006], [235190.69702581]
+[344164.75366779], [-58806.40887087], [89171.69573683]
+[-216007.72826872], [-449338.80461645], [-712160.46333063]
+[-120743.07122043], [-103202.97093932], [133025.52377091]
+[32976.54358504], [36860.34014913], [-29138.51014222]
+[-292075.86096153], [326631.12044218], [64659.98207636]
+[-173174.73902093], [30661.01828069], [206403.28312453]
+[-509992.81444198], [329288.23397695], [529015.03172229]
+[-316770.73633456], [490309.40444694], [15904.88457245]
+[-3736.53140962], [-4542.54334439], [-9829.0156391]
+[395791.3119472], [-29263.83296377], [7652.43886832]
+[-252429.96231836], [-22617.81798904], [73099.52212414]
+[-412974.2378987], [664721.6587486], [-915495.13150164]
+[111855.91870981], [5785.3027273], [124286.84179531]
+[536378.5154521], [398720.33413894], [27851.84230377]
+[-40223.49393354], [-67349.08999938], [-24846.14421727]
+[22898.35686772], [-54754.69323275], [38616.52467516]
+[-109405.2382043], [-18097.49492647], [-323759.18776939]
+[905579.65840167], [419695.72560291], [-818928.23735063]
+[120750.33950971], [-71639.13000118], [-147286.49360455]
+[-206103.28097992], [165094.45896816], [-225376.04895729]
+[43635.78631038], [-45581.22383025], [9623.58241612]
+[-339948.78681679], [633046.02001545], [496163.33640172]
+[483673.72954939], [-43252.79524857], [-338676.49882247]
+[165354.33264679], [-193145.51382214], [-208621.55642082]
+[111644.9176992], [2462.12497649], [-40536.96648036]
+[-73561.66994771], [-50283.10766944], [152176.46473289]
+[595767.62286432], [-184624.04094999], [-144754.7517574]
+[101662.02690195], [-581436.94039612], [113338.2072031]
+[-812886.73168115], [36269.69784872], [682114.85188419]
+[-88569.69215191], [121248.05791226], [420130.55373059]
+[-12368.32985405], [-40607.81325828], [9156.76317702]
+[608470.02456639], [343967.64946591], [-544874.30764214]
+[769221.64012898], [-49674.81379901], [171993.50043816]
+[938716.98736901], [-345789.10140636], [-147780.77633136]
+[-118936.85884687], [-157936.33698389], [18550.18343905]
+[184176.97806737], [5124.2099275], [28798.1349854]
+[-368800.90943273], [-248436.98856113], [450131.70559073]
+[24027.44011007], [-124505.58954659], [-99882.79900782]
+[-232897.41820451], [317052.45417131], [49717.02523163]
+[-357369.67887904], [-216303.47596538], [13523.84400935]
+[37359.081321], [-47185.49448767], [-45182.31835566]
+[-2290.30383517], [-13718.51004906], [-9917.81212042]
+[265777.31402435], [155645.5268793], [-135085.65708428]
+[-651.42914773], [85009.97344435], [77074.60770306]
+[37369.60604012], [-6739.84176077], [52862.60938127]
+[145850.92661138], [62405.46338722], [-211322.56660553]
+[-354145.66061808], [-817278.72925079], [-381057.19652659]
+[61331.96997297], [-229027.65765722], [-70480.81801914]
+[38229.23799732], [90203.68785984], [1653.10833575]
+[-18017.76760002], [115054.30000157], [-172200.43477969]
+[741276.89086414], [543417.74812708], [-686848.97909527]
+[151080.9823583], [-113250.36156223], [-52264.8783955]
+[262867.79550744], [41635.61420915], [190540.02189939]
+[115384.31875535], [128193.74464943], [91192.951731]
+[38830.98443959], [16597.70115524], [-58533.31494637]
+[54606.80164807], [-104356.4742836], [-66713.8006032]
+[-50749.66560781], [186863.14421831], [113863.33208268]
+[79846.95604638], [19886.70299324], [31678.44777935]
+[-297718.77134774], [117740.03370831], [-109122.28167532]
+[-617631.32118628], [251334.36113589], [-212077.22934879]
+[-87988.9329584], [57151.41559114], [-49496.27817689]
+[-34396.62909463], [36856.92885714], [36118.90385724]
+[41493.6750961], [-19055.09579859], [-33903.25676476]
+[91113.63593331], [136979.88912992], [-184493.49144819]
+[44435.06837954], [-1444.21383426], [29931.41297924]
+[178212.06167602], [-178654.76197577], [16850.13746034]
+[-17490.42061683], [28699.28424489], [3471.97107039]
+[-202785.73861894], [62877.68240337], [-403188.2471479]
+[-413504.38580875], [8235.9115383], [-150824.79861914]
+[928963.55554929], [-47346.41465794], [-185667.38272448]
+[991802.73247112], [-738226.11224149], [-568089.5735682]
+[256715.94787059], [125832.48562922], [157558.35585322]
+[181120.61267297], [-178001.21789932], [47524.81354785]
+[-46023.3700849], [-280842.53610798], [-80618.93553438]
+[-233004.33375572], [-43301.65326374], [48718.23832551]
+[-282197.66873876], [74127.00203754], [-749305.82654754]
+[80369.7255568], [-100778.88243929], [-137755.8156275]
+[13534.17943984], [50276.78195936], [-23227.09352987]
+[-56426.54729609], [-85912.00238239], [379892.63162991]
+[16134.20478998], [25952.61691513], [4237.29193325]
+[482855.90756534], [679577.19324766], [360247.91281124]
+[-514938.96445673], [112113.53169434], [183523.90280057]
+[98920.18077622], [-53117.46769458], [10881.91346314]
+[19368.23286173], [37540.9563233], [31511.99100244]
+[-133829.83311135], [-62265.58698419], [77857.64119517]
+[434639.59034764], [-520288.8716236], [-91610.24064494]
+[-65735.9199875], [-29334.63671408], [17555.53152759]
+[294780.38247443], [74653.02979638], [296134.85894682]
+[75977.45184686], [190626.15022311], [86626.85804561]
+[-270582.3083629], [731159.56026832], [-922641.19429973]
+[181486.52139501], [-600700.30278285], [22225.64092578]
+[3950.98954003], [-37796.59249612], [48534.11882244]
+[-224933.12505096], [17635.67831123], [-233265.68608195]
+[198329.18114123], [-69166.79561126], [-95738.56934356]
+[166176.53541211], [-406315.29216701], [3433.90619623]
+[-870837.2030325], [388168.90137362], [-783368.20107553]
+[-271943.99786228], [-383886.64224112], [-789504.67483055]
+[-360716.85280449], [309165.6769967], [-255962.15133489]
+[82264.27206731], [3753.20429328], [-170204.80141313]
+[-53313.10069764], [-9285.95099364], [39318.13864029]
+[-303869.37537475], [-377444.98761623], [-133684.95353755]
+[1923.71195911], [-678288.79481413], [-358456.23294861]
+[-34764.75766212], [-46711.66612476], [-408755.38776685]
+[16830.14930957], [30768.36066026], [-166843.84079504]
+[-760201.24594578], [603460.87877133], [453373.78324538]
+[-87136.50231638], [-14755.53654391], [52978.73645874]
+[-31667.11181497], [-48840.53236327], [-38905.98592122]
+[-30303.11023078], [-201417.052749], [-176021.10734972]
+[646607.23915808], [-183702.27531014], [-61852.11610162]
+[64112.78252886], [168765.81965065], [8355.32108183]
+[-113860.59925551], [-215970.73722765], [-372898.97720678]
+[-366926.90465731], [604144.90673877], [924811.56014356]
+[37843.22204967], [-111767.13422435], [-37809.34526408]
+[515904.64425348], [61979.50727116], [409361.81438239]
+[218752.99014906], [105209.57258511], [-137969.44789141]
+[512728.64189028], [170666.74866576], [19604.03003864]
+[315560.15181925], [504921.87341542], [524197.78676786]
+[-173659.33418095], [491310.8177935], [-310835.72265891]
+[72694.77151027], [-92333.1857671], [48994.16020584]
+[-48971.92878795], [-47447.7121114], [-2332.62039942]
+[120286.67510196], [-13629.69813874], [74419.29852384]
+[35736.70310438], [49109.41023683], [4227.3967929]
+[-834423.73948], [-118580.35562428], [-626303.14056895]
+[360924.41995451], [-30809.00390292], [86712.87530353]
+[-115688.53037634], [-747456.14689342], [969515.46251598]
+[-51532.75605857], [4278.90567255], [99797.46432883]
+[-230111.32571135], [298726.62163457], [-310085.63141768]
+[2674.49945018], [24404.06890804], [-170538.01425096]
+[-203779.50064962], [-4745.27127441], [121957.72847762]
+[23562.48708561], [49978.91776839], [17328.49293189]
+[49311.18109095], [-58889.32427531], [-122486.01248558]
+[994080.50403998], [846941.26502587], [818241.01254769]
+[669673.59182582], [-377918.09639011], [682133.37569357]
+[276867.02536487], [-9243.61921679], [-48709.55459276]
+[546166.26443089], [326909.59146815], [-342499.82319074]
+[594552.83589724], [-765840.88613716], [-403555.06290875]
+[-118856.05418846], [39723.9285273], [-120258.0583185]
+[-11840.27900004], [24562.45543904], [11978.08466167]
+[66265.79312692], [-419500.43174376], [267859.53308446]
+[-623421.38944373], [-846292.45447968], [-302296.02786426]
+[86654.77091855], [-224633.07957087], [974177.94910761]
+[-83226.89497293], [158036.53692362], [296373.36352713]
+[79970.04439741], [72085.97783764], [38205.91500954]
+[2079.07508743], [-164322.43226706], [425966.21397935]
+[-33226.35602458], [357411.19177514], [771397.83071927]
+[-669770.04076461], [88125.57004429], [62035.14593615]
+[-134335.6369995], [496024.01714193], [-365586.76351391]
+[-92194.54893067], [-226952.97167023], [230989.06003229]
+[122305.0073314], [261343.45365545], [114608.92232328]
+[17102.56166851], [155564.00038351], [-134215.35475524]
+[15652.45501701], [-99174.90838386], [-140112.11928886]
+[-18651.64438118], [39826.94059175], [11380.63645496]
+[385654.77883145], [55741.46527909], [139017.66350468]
+[240102.96689275], [-213354.99396298], [556388.07291893]
+[141961.27519296], [107654.58994022], [13007.27242618]
+[81894.52996551], [-541185.59812882], [58147.74449307]
+[-134542.59369136], [-77190.80697545], [173080.41612967]
+[-91233.25926687], [-744476.86194307], [562141.33382051]
+[-365728.88418397], [334608.43417631], [493357.8081471]
+[-6596.64866178], [-21761.7581872], [-28866.49943079]
+[-301499.13806817], [-369379.62058044], [-291254.72416228]
+[-97018.51119069], [221541.67409497], [-458012.21904904]
+[-678867.45923336], [422572.54174145], [427772.91007197]
+[645879.50362141], [-550878.18277274], [633919.54245041]
+[-163587.96936884], [-95034.95345765], [-89382.76008163]
+[-470921.73289279], [166725.87443772], [77727.6226826]
+[76385.29125142], [65183.40848154], [10960.67499547]
+[-128933.26739262], [49580.73331779], [3144.93999532]
+[-432508.9766427], [670274.78811943], [-784026.85830383]
+[586849.75573562], [72818.98441762], [-145681.72653741]
+[-940369.19669268], [579505.20731187], [600992.18061242]
+[143325.07391259], [33303.16558595], [-48520.99637768]
+[-785638.4733729], [-136232.43067609], [510729.04161086]
+[28136.46215856], [-92089.06191002], [69034.4721666]
+[755.38009459], [456393.24779775], [51316.3025909]
+[-135262.30383949], [184047.92807308], [287802.33523041]
+[-28762.21660304], [6776.79784521], [2807.38907841]
+[466771.6117053], [-426881.23573324], [457740.92033278]
+[-23844.62045619], [32528.3940519], [36648.58956427]
+[317309.03083376], [-776437.90148156], [495935.94286794]
+[-443414.17607158], [-36344.29083606], [589071.10329126]
+[96419.22927786], [-119057.63293754], [2501.9565078]
+[-1771.6835509], [-50799.90420922], [-185120.13558394]
+[-500330.74180608], [-78163.55466614], [348806.24107152]
+[53966.95794857], [-51476.7403647], [68550.1407703]
+[-669060.38860159], [152534.16916051], [890965.15460324]
+[-11632.97620884], [11104.21042317], [9756.58567758]
+[282133.84588243], [-227288.70646966], [157893.09315317]
+[-48950.83420644], [27066.23066142], [-42105.93911879]
+[-18992.75318557], [-13761.54835582], [-26889.65537428]
+[-145351.83813048], [-405713.71551003], [241668.83910904]
+[811531.33172693], [672173.84265906], [975335.07791883]
+[-61336.41908534], [32778.4160209], [-14898.37444491]
+[37380.33342317], [336676.91680216], [891569.10884224]
+[-44305.06297692], [-125013.84289804], [-21241.08584334]
+[10412.59681921], [-39538.93402028], [34936.66196164]
+[-807325.37459986], [-444390.00708011], [649763.52761714]
+[-517569.84945011], [429393.59162114], [-192366.548102]
+[12686.38280235], [-69144.9322834], [8892.11358493]
+[145688.24178652], [-74520.68781093], [-77130.40580499]
+[-495785.31811378], [335245.18718737], [-746120.86487071]
+[328452.92241299], [143382.5929111], [-410528.58439123]
+[-115279.27573658], [-187345.92349888], [173151.15992474]
+[28443.02046785], [-71436.56446943], [-17372.79225226]
+[492426.07958204], [856558.21693735], [-119270.52994721]
+[-6656.2730878], [-22615.03507299], [13063.38840797]
+[-149687.4289772], [140483.84318769], [-78144.67541895]
+[-83684.60640257], [-247579.63649829], [179286.91429827]
+[193976.8528935], [-58841.40533378], [53936.79122269]
+[-780500.4776317], [402056.47007899], [194071.66796601]
+[32949.09759213], [-274839.38380134], [238491.28608415]
+[-14432.04687294], [13057.38448386], [-1249.88853432]
+[36652.52714169], [36672.93693247], [6175.33698745]
+[210725.68136232], [-120048.41531038], [-854079.92612024]
+[-208328.54707143], [137247.61286164], [-121954.94670604]
+[-42873.02882421], [44520.86405246], [-10705.44741318]
+[-30801.32717231], [-12035.63420559], [33247.29032999]
+[19988.76389659], [-26956.1449775], [-42939.11778745]
+[44828.17300189], [52526.07262584], [-77020.36301629]
+[10936.73155182], [-102882.44895694], [-214152.0821697]
+[-401892.02761219], [535758.71081402], [522913.37014828]
+[614200.78334185], [627575.23285648], [936618.98350492]
+[-11713.27090255], [-89921.7080871], [-37407.14771458]
+[36601.75319148], [-359208.54251613], [-178692.13749055]
+[7430.81005881], [-54831.54158807], [29552.38502576]
+[27136.77977552], [-2903.53194066], [-411.46315675]
+[11259.39246353], [-754.25061709], [10127.18655234]
+[-241575.35387656], [-122956.69983978], [-119514.55692191]
+[-45923.52492684], [-278894.98634255], [-798871.62490271]
+[348254.17764703], [-234977.33794743], [-66345.40260783]
+[-827596.03902102], [504947.52847874], [125953.70366027]
+[156452.80998981], [-78982.33216613], [-138348.80506369]
+[-147074.04736592], [-197656.40639061], [-70433.39036211]
+[-46013.54926609], [-75703.40798135], [-63736.40229597]
+[26788.41707106], [8522.56053625], [227076.31847737]
+[-14565.14181285], [15253.18852767], [16975.51786979]
+[-447965.96850618], [-938616.87396731], [822631.817345]
+[775433.59009819], [-148844.79937091], [-577130.61405956]
+[18849.44315274], [-48627.0100388], [-66473.86333076]
+[-76808.91494164], [313992.71148145], [-138635.58968157]
+[-342186.37470991], [-186661.07509858], [521184.23109793]
+[-171345.6026423], [10694.13991174], [86841.77308704]
+[-144910.79203972], [-237591.10778431], [-52268.74779538]
+[30900.7103965], [758149.69282114], [177376.6117649]
+[220358.80262012], [-84969.60036438], [4844.79594843]
+[14903.52644449], [46172.8864022], [-34027.50348634]
+[646923.75658125], [-95494.85214212], [-371167.30878494]
+[271807.0649846], [-432909.26992989], [104043.2464811]
+[-18386.50521056], [-6174.14778646], [30590.17116137]
+[-69.55932198], [-39468.49970241], [-14326.17493847]
+[71991.35712522], [-58260.39519187], [-42930.64688524]
+[-68624.41335576], [-84591.37356922], [-16737.33572957]
+[128690.75444238], [5696.72028824], [99408.90869067]
+[199404.10209214], [390109.22177298], [-603849.6473094]
+[-879193.02660896], [919588.85516551], [136087.13940325]
+[24580.14207514], [-242194.75006045], [440907.5848542]
+[-52812.74878026], [-56438.41147296], [115351.66543292]
+[21435.58932927], [337998.29603197], [754315.73924571]
+[-247442.07031563], [369636.26919696], [-447512.49002635]
+[-878950.57587529], [-796278.88021894], [-360724.55975369]
+[495930.26099913], [-147179.91622169], [-308594.80399319]
+[5799.90107858], [154422.43806061], [318782.60537658]
+[-40883.02514179], [-563510.10619569], [195064.64750637]
+[473433.16332925], [27424.49253886], [-832009.50596694]
+[-71209.63065224], [-258556.66101856], [-47055.88467322]
+[186970.25179108], [-129920.56194758], [-64051.13293597]
+[442241.92271506], [-251407.93193351], [72400.27260386]
+[-270316.94427955], [129107.95359533], [55242.59070318]
+[354879.70325463], [179165.82578881], [151563.96822287]
+[6357.78283248], [-98693.75396233], [8166.5511869]
+[54444.54572601], [-34424.81626626], [45532.78727224]
+[35799.88104636], [-66032.44111219], [-350.2485533]
+[31164.55134154], [-41919.12854827], [-61312.07491076]
+[11386.01699108], [-19436.04889841], [-248424.91816148]
+[96744.31974957], [-124653.22904523], [-85026.3024801]
+[-964100.49403595], [636758.19195194], [-563179.35121669]
+[-26383.95311965], [-23049.29592496], [28596.71911344]
+[-30877.25157057], [-7766.8430965], [66604.78449042]
+[27029.74933885], [9827.8643079], [-10744.55548042]
+[-4267.17474658], [310.30202224], [-12634.16725779]
+[44523.67656332], [-3807.2425622], [31515.94688507]
+[54085.05008638], [-21352.13191698], [-73.3691794]
+[-171105.75806299], [180666.44472797], [-401371.94269702]
+[-43760.82729018], [36740.3177572], [27535.45537707]
+[-106102.17110425], [248836.41595552], [173620.12645416]
+[-385670.24837003], [-256849.48578961], [296576.31218646]
+[-225596.26882], [-9247.57828921], [-204991.70013769]
+[-42151.07333397], [736344.44930947], [-531222.53297124]
+[-178249.35159768], [-669731.03475616], [-253573.81794815]
+[-64092.3618977], [-7644.88136599], [-5896.44147211]
+[-98677.39462662], [-125540.3513755], [-33328.33570712]
+[-374643.99722402], [244779.53044391], [117502.80680794]
+[644464.60440886], [57397.10046438], [200558.25394293]
+[56460.32794824], [69271.51489522], [-16654.89976721]
+[-217793.96227939], [170867.90616163], [63230.60443101]
+[3438.16082205], [20831.8957077], [-151781.10814706]
+[-13094.01406332], [-126314.2465441], [127516.61809305]
+[-460132.44088323], [-643334.83575813], [-51757.09420477]
+[-288895.74239036], [-771414.587543], [-151581.40235449]
+[187937.72037285], [127537.27386491], [331214.89213096]
+[-6633.41782358], [32006.25061933], [-4340.91504615]
+[-78809.48467693], [-9165.95096673], [-37295.80247134]
+[112401.62985356], [-106166.67946315], [-865834.16258193]
+[-17982.266746], [14213.49505589], [-13561.83143248]
+[-70988.00117164], [172996.2898024], [65989.32416003]
+[43936.43632131], [-49272.91185655], [-212111.08510499]
+[-163973.01999488], [396956.56482491], [-578373.68848258]
+[43913.41020269], [-40614.89987687], [17658.37014213]
+[-300843.71566913], [254137.92991497], [163733.04273062]
+[12631.81784562], [-37543.43420148], [5648.7877503]
+[3341.98020607], [55927.46713859], [-28577.69041329]
+[30127.58578391], [258109.23489103], [-930151.08912886]
+[35756.68999399], [-9025.59634045], [57125.53590339]
+[-395219.05352298], [-201157.05588485], [235285.48729862]
+[72911.71754341], [135626.9298134], [222918.93130779]
+[611871.42862657], [830909.27919226], [543027.48845427]
+[-8305.0332341], [-42771.65032004], [-53300.70111557]
+[494114.65683958], [160413.60196109], [78965.31594661]
+[16245.35575425], [-42663.50650678], [-131297.64339554]
+[-394209.40428822], [-397805.82559191], [809854.2417521]
+[27224.41865652], [100110.83761388], [33462.07125477]
+[77965.70069201], [176596.58213075], [-33147.58953568]
+[-240643.32019833], [-138708.79041549], [395678.45880879]
+[-191066.22762196], [581093.05106135], [-70601.0417446]
+[-38012.4405238], [-72437.77304882], [-14427.14618584]
+[74748.02591546], [15543.56819473], [-17874.67538091]
+[679042.46319795], [528416.14344627], [680274.00671533]
+[-135483.25821447], [60916.55389393], [30974.63415195]
+[277180.18720241], [-609435.18767058], [24644.34911994]
+[34655.47523938], [-176785.34201383], [46315.65048073]
+[-401738.91157491], [62522.90329865], [333466.85627871]
+[-6775.91338419], [1570.64972788], [-8664.83723389]
+[-38838.37804058], [-33592.68435064], [-234087.336124]
+[-24893.89854065], [89728.44783821], [-8465.37270386]
+[9838.95705606], [-11241.28728512], [31317.43580293]
+[14272.35869274], [-18422.91337624], [7468.95859728]
+[-57788.05912712], [995747.53940017], [-982407.71763244]
+[-158892.03996772], [115948.68499713], [-60408.309058]
+[330677.97584893], [-154811.18168913], [17182.02823711]
+[117667.22529296], [-75356.56303954], [-74962.68688674]
+[-464677.6985617], [65124.40210784], [-367823.1657988]
+[-4408.03101422], [102068.51274773], [-99255.51808841]
+[-540103.41625541], [112140.76652199], [483445.00623128]
+[117529.94039654], [563009.08734058], [62639.10960116]
+[-807916.83420541], [419662.99912115], [79259.22863883]
+[-35285.45802502], [-45699.48331959], [91804.95667874]
+[-894449.26313317], [-802074.41880445], [-365642.92944498]
+[31594.92566764], [-15630.39533309], [3536.42435341]
+[190837.60527879], [-630310.42922205], [-48041.02998431]
+[-193382.5269277], [194420.23947295], [65018.10166439]
+[156063.49843622], [-85818.97162583], [36638.66047372]
+[249194.18202232], [-713043.19485458], [239827.18661061]
+[861645.34889468], [278817.66619764], [196999.29979708]
+[149569.75536727], [444295.30147208], [-115206.56620333]
+[-6637.74409696], [49264.74257203], [50882.84356574]
+[-173864.79793346], [-276056.37468338], [-623549.40972567]
+[25122.17445541], [246201.68479838], [-226954.70075571]
+[3646.4190576], [-40757.45987949], [-47356.35466188]
+[117.48298788], [-45136.71516613], [-42233.04924083]
+[354144.78395703], [941527.62399979], [737456.94380723]
+[414815.65644763], [565972.57736611], [-432095.1615856]
+[15145.90675277], [-2614.28346866], [-9947.37592107]
+[-931195.14827782], [635132.16008422], [517977.63944945]
+[-679339.29196387], [113124.55040541], [740534.24099271]
+[-791767.50036757], [700881.52026939], [-557163.14854138]
+[-17944.7425721], [32862.49492], [25458.96353747]
+[-268399.14968342], [-542979.07543143], [-183774.07587365]
+[517814.54462857], [-189780.37345099], [14498.91941692]
+[-30834.75177004], [110014.14635768], [61416.58040002]
+[-395250.57251915], [907143.76021261], [-182906.10835378]
+[42226.25721613], [54792.15082996], [65072.74554403]
+[-340645.21201334], [191634.85058853], [157935.43881527]
+[133465.54404579], [-114866.98859629], [-8264.40181308]
+[601293.18171478], [274103.9814951], [26582.74827918]
+[-46717.9286381], [-52812.57624747], [-86696.64951992]
+[206943.18872364], [18607.32212301], [252344.99704657]
+[-23483.78789697], [25768.12911882], [47848.62589157]
+[18941.29577684], [-203561.40100661], [130371.90507463]
+[-80836.17727329], [91471.47224702], [356749.54128498]
+[-30314.24250576], [-156821.18373539], [-336812.43056138]
+[-56089.5289915], [-4002.781874], [-35170.48448125]
+[122925.73122189], [71883.41705275], [27326.4385772]
+[-36743.60234107], [5060.71555347], [43889.38558116]
+[19259.8712715], [24544.10003907], [-30399.55272256]
+[94159.79481376], [-622856.20620133], [-507741.79074533]
+[-13375.70872269], [-265043.86862336], [589859.40489195]
+[-324944.07963181], [-439582.20703428], [-898211.99010329]
+[-27533.57143165], [686496.99360896], [-266527.19654038]
+[-17601.46845169], [753660.8445714], [30380.71497939]
+[24088.3407824], [99335.8811668], [-47006.2345562]
+[-156432.12764431], [-679026.13856143], [48568.89644575]
+[153611.49459847], [-707526.80309158], [-402389.6337924]
+[44183.17180226], [-39660.12342172], [102269.60909842]
+[44605.69183547], [76805.54567419], [-65394.96901593]
+[226817.11076225], [-56015.58644832], [279756.53065991]
+[66516.85502854], [532001.05556156], [-22211.48783792]
+[260875.19142128], [-182014.54276288], [-643814.26970039]
+[55635.9353479], [-573691.02248488], [-119013.91605984]
+[549053.30846984], [-868938.94879181], [-426581.66699314]
+[46741.29743834], [-189748.34667735], [-222183.47601219]
+[-25782.32748557], [11845.50311868], [-16759.37320347]
+[-327316.34667533], [679173.83545317], [638342.23669579]
+[15503.35812233], [-57955.37140898], [10780.9403982]
+[-64712.57874164], [170046.56730539], [587078.07481093]
+[-295107.49148006], [-239695.94787308], [2592.34202011]
+[-429.4121889], [-80881.06075102], [38681.84400133]
+[447464.45950607], [332111.79353413], [-781752.52074273]
+[-73271.96536357], [-4669.98592634], [-63538.93137843]
+[-28361.02237665], [5456.7502078], [10743.4487292]
+[26842.09059206], [26194.70503353], [-16839.72966615]
+[27744.20690326], [-27657.85183861], [-112905.25474846]
+[-86635.16717774], [85580.00275296], [40016.24544536]
+[159178.38830271], [77531.85836598], [45971.32284177]
+[91267.0029413], [-90172.04644342], [339240.06722053]
+[16973.18847485], [21036.04834893], [-93317.10337271]
+[85175.62818464], [-97731.95621758], [-42219.6175901]
+[4324.55769316], [4116.02082389], [-24212.97010674]
+[30197.86147619], [-673217.94515574], [-117037.89250795]
+[-212235.54049516], [-121287.01940242], [742047.9398678]
+[12045.11711298], [98291.98469708], [-87293.68221626]
+[-445461.48535112], [32997.18309399], [-55302.9631889]
+[-674094.99931426], [511470.87322987], [354961.30875983]
+[92775.76855802], [69743.8460532], [142088.9172803]
+[-71155.42595899], [-613339.56299492], [-425365.13919931]
+[-418736.85229206], [-539052.47811832], [493841.03207294]
+[-971859.09362306], [219564.37352962], [496400.27350861]
+[35987.24588629], [-62218.57853597], [115431.22058564]
+[-521176.213599], [467233.85670654], [31599.98453416]
+[-14550.480669], [-57288.77246394], [-33203.13789565]
+[-55447.88039188], [41815.74442164], [114586.39661127]
+[92001.84303013], [-382178.87113876], [201999.70109821]
+[178804.44100191], [-293948.50008477], [589295.58513963]
+[-280375.61424531], [120861.79152436], [258976.298307]
+[-663001.72090237], [746811.94363481], [-315248.15232552]
+[-222593.09630371], [67304.87159293], [182735.75668042]
+[382416.1982796], [4099.28736371], [363578.83052602]
+[-288515.07895955], [309302.34167278], [401315.2530068]
+[188491.43394951], [-141302.46793513], [-52152.40410453]
+[-75463.0358317], [3678.02818003], [359156.99311028]
+[-338599.90178618], [-26450.42713093], [-189424.81843291]
+[-320589.57505314], [737637.72450864], [-239283.84048989]
+[340818.61323662], [-353440.75513834], [-335722.78222871]
+[168043.39033782], [-182634.39809766], [14011.91591509]
+[43274.48585586], [-166333.65785353], [-497582.86608033]
+[440939.20635291], [-187940.28486199], [-73756.84378878]
+[882558.68434917], [963317.89240895], [-753963.49430785]
+[84455.90574902], [32396.43473505], [334226.82171008]
+[310055.83694734], [456175.07643704], [-159765.42325011]
+[-324871.14177883], [-590430.34458628], [877888.65796462]
+[212337.55581346], [-340619.33143005], [-577549.3795667]
+[-68985.50296014], [50188.84307872], [15484.70768857]
+[135486.31316545], [-357274.10314865], [605369.91907909]
+[8869.63190853], [-48979.49091936], [-25411.18013427]
+[392122.10188873], [199931.12530499], [929455.9205411]
+[-45402.99886792], [48826.07908844], [51639.83918157]
+[-448.36850031], [92666.04255984], [-41135.87235783]
+[-973949.26518787], [91511.5558808], [319665.13793904]
+[-93963.72998316], [133336.55716966], [-10569.08883432]
+[-71348.16720262], [-56745.84763911], [-12563.8205896]
+[4380.25722849], [-21275.4279526], [-31060.09570063]
+[208479.99004106], [-40478.55128547], [52814.98208211]
+[-184933.31631071], [78246.33504652], [-128867.2511299]
+[-58518.11453575], [362660.47413854], [-96599.01381782]
+[64920.40913286], [-30051.03909961], [508061.31360935]
+[-54422.08978503], [-98030.24720975], [121436.55884356]
+[111305.3593834], [154782.95683107], [177234.21457082]
+[-17129.99091693], [96119.81011008], [494816.81916636]
+[-25080.82824853], [-4447.1982934], [326182.18241279]
+[459552.17182534], [259248.15107037], [941620.20663103]
+[781477.44637392], [-737463.07727471], [93127.81119593]
+[-21411.90896074], [39848.86855354], [105320.39686411]
+[-651472.50184967], [230597.75269295], [95936.56100569]
+[1144.59743603], [-11015.64709491], [4033.97277143]
+[17180.80958864], [20219.05236381], [-41196.17392186]
+[-423579.5507319], [-208682.82620084], [-574636.67103779]
+[112082.71833969], [-735328.06691276], [-558323.43848718]
+[106895.71767985], [-48679.83319131], [-163641.05769724]
+[61239.2229613], [-493511.78709555], [149644.17519546]
+[6059.81165248], [-18139.0407396], [-13616.147623]
+[146298.91937607], [397544.25267586], [-673485.77073246]
+[-4412.98413098], [-114896.57724932], [99460.91563724]
+[-20922.96126131], [-77145.07852028], [28336.53338078]
+[6603.99687419], [-1634.04836832], [16242.85890978]
+[288785.95410375], [751.43057544], [1669.05319198]
+[22451.62943087], [-322801.7826531], [-50490.00277223]
+[141179.45279162], [-133870.8667276], [-154016.11151168]
+[294109.80148624], [128756.46779099], [-404980.92471146]
+[-105272.75230954], [-312558.64127751], [-382408.01991092]
+[208319.76083724], [-287405.49360909], [-4614.9838029]
+[-40669.84737902], [86039.36152798], [27059.54416536]
+[173274.45491056], [-66727.74183051], [179373.5296369]
+[-253427.87427896], [-198879.68491127], [-483139.21507129]
+[331338.43061016], [-94872.29456087], [116973.81017369]
+[-313558.04178198], [-64583.35428371], [35886.02733398]
+[-879549.42530642], [-11206.05674389], [-266492.1056969]
+[-595181.62876177], [-548739.77775866], [-724863.88179865]
+[-924579.65372195], [815784.38609033], [-997440.58297655]
+[118034.75601762], [222278.09283973], [-87363.96333265]
+[34031.92210846], [-195446.00559717], [410136.18510086]
+[-108829.19516668], [-29632.57543319], [13528.61375392]
+[-169081.38092515], [245058.70666151], [3922.79121606]
+[371523.82345305], [139505.89051156], [846937.52535604]
+[526772.59660911], [200068.45152499], [-211592.16663995]
+[91569.37145206], [-64720.38535317], [44739.41944654]
+[-666308.1835897], [-198081.45137977], [-362975.90515134]
+[110939.54472275], [327915.77764311], [-268770.78169862]
+[23696.25256535], [-16601.40260879], [-20816.10900517]
+[-160551.58426959], [-116352.00608016], [17495.89127807]
+[-5384.21742936], [11145.23062302], [1495.19911047]
+[154035.0621865], [357369.10730248], [-29497.85718293]
+[879978.71137629], [213409.82428015], [-609576.10997226]
+[111812.19968219], [84604.21840775], [2418.84063936]
+[-31536.86263507], [-719784.88609552], [425952.92626041]
+[602782.10590994], [-792884.55523342], [326576.929064]
+[97547.45573158], [204534.01780127], [255145.02206673]
+[9157.10345087], [191759.55208814], [-51547.71177666]
+[158070.76589734], [-512204.76132463], [-78501.20326429]
+[-260368.96302589], [-402197.94925676], [-24146.45544593]
+[652952.63003939], [758590.1549197], [-113164.83088007]
+[168601.86849047], [117550.56622239], [20129.39392458]
+[403636.92849935], [-119215.54514884], [598127.94056542]
+[-131733.62129799], [39297.0304593], [-32371.27851232]
+[13908.8762698], [-197543.77047258], [-496684.52014801]
+[-25325.4123136], [-97922.55028969], [-112285.28415404]
+[25208.80308389], [-104249.64318352], [-61403.953665]
+[-13187.78053267], [431.31923247], [48512.50729485]
+[-175345.21061401], [529317.20546867], [-601526.83745883]
+[191390.60780802], [-313433.18333892], [323280.83839982]
+[280493.27316369], [42030.87823019], [-294538.35215285]
+[-5944.01743388], [5889.85008546], [-55173.94155468]
+[218815.44089075], [-1306.72621473], [70497.8947268]
+[391995.80468773], [-1370.80413449], [41421.09932326]
+[97182.35045043], [-91228.65468931], [-100825.93534904]
+[-28518.79915057], [70046.14158063], [-7433.23603148]
+[185051.61607007], [-88375.00670098], [158767.77711529]
+[-250657.23590234], [100307.47443945], [193965.69793758]
+[-573896.66887704], [862396.21313967], [216940.30287595]
+[96791.10686044], [-10925.09611607], [4362.63853136]
+[7328.55705537], [6178.4298033], [-70708.46394393]
+[79184.19738203], [-127505.72330687], [122400.09443168]
+[499608.40536455], [-36360.9744521], [328338.44181183]
+[-457071.41657111], [234962.04410602], [-101428.58466843]
+[-102580.71313938], [5030.00321206], [171964.99520105]
+[-149714.294968], [-9902.53317684], [-263606.43033354]
+[998644.3185091], [-558580.14166375], [-869273.29902926]
+[242281.13394795], [-111517.69426841], [100669.34050957]
+[-193183.70575206], [447879.47958062], [-792825.5325856]
+[-407436.70919056], [-903789.73964404], [905480.66985776]
+[208715.97851975], [138432.90781246], [128580.66992802]
+[47954.912166], [-39640.41941286], [201125.42390865]
+[-149499.75511239], [192078.98612489], [151621.58178921]
+[-167236.08575902], [151695.95995419], [-590341.54400224]
+[-12828.1836587], [7656.14558474], [92857.7104414]
+[69881.04708638], [369325.38667841], [683428.09835723]
+[-281665.81090323], [-80441.58883016], [-178644.91650869]
+[671966.92757567], [785330.30106145], [-532043.12296689]
+[-20575.48786206], [2442.8204925], [-82796.60317172]
+[-76976.13148048], [19847.56019985], [88084.93356883]
+[-22409.23809833], [-92284.27338518], [-35915.28201674]
+[94845.12932963], [-710591.84103594], [283672.82518568]
+[-5624.96620622], [142320.75143553], [152757.33036693]
+[184073.3478764], [-47896.99157677], [-73482.76832809]
+[36899.76162977], [41716.95922771], [52509.85044791]
+[17980.49009999], [-58330.26968791], [3638.58570929]
+[336880.648326], [-274872.64703436], [-30836.5348427]
+[61119.82326638], [159518.64086515], [55210.40290545]
+[-227076.17226492], [-779701.65428638], [-632131.25911028]
+[37331.5211443], [-16273.33031256], [-53210.03732017]
+[-17755.73372152], [-116301.24200873], [-44773.89052561]
+[-148265.59736275], [-177229.40631234], [-204174.63687937]
+[97668.17650486], [612656.72079841], [-666511.4477863]
+[35851.63292088], [8049.5856017], [126582.89477886]
+[-34638.92077328], [-26569.0593168], [-14119.13652632]
+[-184970.10285467], [102298.77052052], [11388.80917593]
+[259300.35273216], [61350.21770545], [211708.06502759]
+[848565.73151614], [628192.95321973], [493862.55081214]
+[21345.83555095], [170557.93023765], [686992.79506891]
+[326855.29880798], [-112181.66195898], [108440.25188119]
+[-91052.52629812], [-205447.11713697], [207954.27601169]
+[356343.93876399], [-75548.50154081], [72958.3072404]
+[96298.42821476], [16066.78219664], [189499.41754688]
+[42099.1104838], [-5789.3271523], [7790.76647053]
+[194836.08685293], [-92202.14496134], [701429.38364306]
+[-127350.67609278], [76448.68543678], [8008.26154258]
+[11536.02824468], [16434.02302034], [15334.84275689]
+[-795392.68118312], [145343.50849241], [-182373.64216348]
+[252359.65881222], [260489.3549739], [-878889.38284626]
+[-225425.6463487], [74735.5070748], [130653.4499132]
+[808974.05887464], [865389.83715018], [-406140.71896952]
+[-580909.12225438], [-475012.59059601], [-373998.29408212]
+[111932.85793686], [-114786.36600329], [355127.35841878]
+[-7951.43222044], [6171.71726866], [28770.74117092]
+[-210773.17497871], [-548447.47390955], [-253251.57565349]
+[-30928.82918564], [52050.66006211], [-29605.49488942]
+[-479696.37117017], [185870.82209096], [-342319.69472182]
+[-28291.43856403], [-18505.07775615], [-38035.12516294]
+[37300.87732515], [-334097.28142569], [-514330.80431088]
+[-34498.84836565], [137387.06512516], [-25577.65882343]
+[-120425.07009353], [-330556.4009893], [180429.7804405]
+[1725.8250449], [-41239.3504906], [25429.50132455]
+[-142675.18113554], [177425.55597542], [807633.09499376]
+[-255752.43411362], [68812.17509239], [-109509.23480824]
+[17122.55878959], [-36983.53529287], [8710.3258547]
+[424227.85161319], [-28768.20747147], [-188103.89107465]
+[-43021.98995799], [-175291.47345729], [-135835.09501169]
+[14382.21609908], [-75745.83538316], [-10906.88458722]
+[-975899.41871636], [-443564.70544158], [-872879.36175942]
+[545880.13370039], [-493756.87844219], [-158860.3552324]
+[-722663.72943994], [464919.02170217], [-405177.49914957]
+[-51314.04179742], [430736.91346796], [196896.08974262]
+[-152607.19017197], [-706391.78659265], [851274.6963728]
+[58226.16102224], [931817.25827211], [-500836.99792815]
+[108550.59461928], [-210013.70925534], [-892083.75051104]
+[254957.53353823], [-213914.97031435], [247019.13807384]
+[-58076.30653667], [87835.96581524], [46540.06434448]
+[482075.02242152], [-383528.71924296], [-350605.48051208]
+[35300.75333824], [19414.03815448], [6002.36911324]
+[68698.95360861], [-344236.81953485], [29833.76925281]
+[-42146.53773237], [29893.94482938], [-86585.5680868]
+[-21609.59750776], [37360.79930994], [-15352.35651396]
+[-57856.55827934], [32073.24024225], [8947.6304289]
+[-21143.47735867], [30009.01699523], [-464.84677455]
+[-33307.61305225], [38795.16464683], [19284.84274]
+[-7254.49876606], [-153221.06292687], [19416.67272018]
+[730810.66578034], [-860328.66266005], [668975.7016214]
+[-27887.03673756], [268880.14958285], [-83369.3870578]
+[-193691.65865059], [168104.98213373], [120902.34115783]
+[9390.36850005], [10046.30760834], [-6891.99195245]
+[567758.34456958], [118824.94324223], [-250017.45805665]
+[388993.76552023], [-252087.09902126], [382559.23716434]
+[-965805.5168807], [-472137.75890301], [322602.72676252]
+[44533.24960262], [74722.20085527], [23461.80090091]
+[-201631.66751994], [103314.19178114], [219827.11975807]
+[-165612.73103585], [311013.75058796], [37285.76953051]
+[30716.08478706], [-14673.65899215], [6303.63912874]
+[-94852.77129236], [-177717.48893944], [-200739.77772494]
+[217903.30927205], [-173159.22797816], [-116321.78862765]
+[-885963.38804371], [108543.86138255], [-58753.54450512]
+[49516.53592864], [3247.00045065], [-14730.50799582]
+[39712.34614439], [10481.08474722], [-29970.33758735]
+[226407.49576054], [18419.14250196], [449748.1232721]
+[-452572.86076918], [402600.75664309], [225489.89396748]
+[287460.65687114], [-10725.07721021], [-425343.52072872]
+[80319.77741558], [-647436.88025198], [-142203.46069839]
+[18622.97689068], [-56563.32493199], [28874.7936862]
+[-104977.02114416], [-150031.05130127], [6515.39215661]
+[42397.53566386], [-12805.1873789], [46716.18765159]
+[6428.03700042], [28047.99641124], [44316.16235499]
+[-360615.4080281], [34217.72664102], [468658.60939831]
+[-390905.75325529], [115595.81775521], [-400436.48326276]
+[-313251.03800535], [202024.08680267], [-143411.33506645]
+[131714.95597004], [246299.00892108], [657480.9057773]
+[105627.05898938], [-613689.07066942], [79174.48914346]
+[-25379.51913793], [72065.95563108], [68514.13631309]
+[-14676.26919339], [-90397.61550902], [-55486.44753711]
+[-116887.34403386], [-988890.13152784], [-193461.32142846]
+[-266733.94831088], [-362539.82936976], [-74296.2593163]
+[4923275.98360279], [-6040781.61156481], [-9833912.63603002]
+[9455250.21128955], [-5397738.62525965], [-8406173.44615865]
+[3814807.90700697], [4627829.50916764], [-4421320.72309478]
+[-275012.405845], [170414.88307617], [-165633.90606181]
+[-379837.63197668], [28298.42169545], [-424461.37258651]
+[550328.77262847], [147081.09777875], [104889.50445127]
+[116645.86476962], [-146454.50124882], [-2531.15562435]
+[11036.36295469], [-44679.96919347], [16142.97802954]
+[47770.99196509], [-114105.66241867], [65187.80997255]
+[111966.06253526], [-92181.50118207], [-66592.2804619]
+[47362.32880073], [102991.36979246], [-231862.04512807]
+[234750.04674835], [6461.74833161], [399797.29701991]
+[1622.72654887], [2796.54977913], [-65872.41014613]
+[254794.31403266], [-186207.22145939], [-19502.9548298]
+[-200578.76057046], [-586219.03835552], [-130086.533297]
+[-182477.24756048], [381049.00735663], [224917.53316538]
+[-854.3744094], [-15809.40597266], [-60716.64836874]
+[20806.1771656], [93273.102176], [31414.92292958]
+[37898.46576274], [-136675.58173181], [20304.91176291]
+[-102542.88531323], [-622167.69819167], [-8652.54465886]
+[139072.63691716], [-10923.96866081], [309616.15315914]
+[49347.82263329], [-38377.65640408], [-86386.74770016]
+[-18348.10653806], [-13003.78904727], [-78043.41643581]
+[34320.03838723], [138379.14307515], [-29330.10120386]
+[25477.27226012], [40426.41169419], [-42159.63084777]
+[-207559.23574795], [28147.10511687], [-205096.62955593]
+[14664.96382694], [21264.25089246], [72976.55582751]
+[-276357.14696675], [19962.50104295], [-69262.81828587]
+[-705599.34166916], [678467.33219348], [99735.58504738]
+[-496308.04881828], [-948686.37332128], [-224574.2425801]
+[-30703.59280902], [-12725.42095635], [33126.68031783]
+[-46318.99385865], [447793.45687935], [-347643.6915488]
+[-30099.18009725], [-15007.83123792], [-8926.34826425]
+[119442.76034085], [-112988.6442472], [136415.42343387]
+[-12875.06724669], [9.16895778], [-7184.816045]
+[-144398.79544612], [316544.50347687], [-209129.49189684]
+[159791.20754612], [-775357.47834892], [264507.57367998]
+[534554.90271765], [438224.77608316], [87426.8990734]
+[-10630.02630063], [-8272.1084857], [41.79616733]
+[-352878.17283368], [-261503.52942725], [420787.49195513]
+[-352878.17283368], [-261503.52942725], [420787.49195513]
+[22149.3040545], [21942.15053508], [14841.74225566]
+[22149.3040545], [21942.15053508], [14841.74225566]
+[-274356.41390339], [123566.00300813], [159987.62170704]
+[-274356.41390339], [123566.00300813], [159987.62170704]
+[-125479.69954236], [-374498.30534539], [-135906.91358484]
+[-125479.69954236], [-374498.30534539], [-135906.91358484]
+[-738610.55167948], [-436670.55975565], [180588.84667103]
+[-738610.55167948], [-436670.55975565], [180588.84667103]
+[-690326.9016152], [90908.18262343], [-740072.43137794]
+[-71436.78561111], [65119.28717398], [19719.89851119]
+[-690326.9016152], [90908.18262343], [-740072.43137794]
+[-71436.78561111], [65119.28717398], [19719.89851119]
+[-105501.87367963], [781630.91921632], [297520.2348324]
+[-105501.87367963], [781630.91921632], [297520.2348324]
+[22180.06617042], [-480023.96900848], [-205153.0916834]
+[22180.06617042], [-480023.96900848], [-205153.0916834]
+[3938.46301965], [21395.50403935], [22876.24231827]
+[3938.46301965], [21395.50403935], [22876.24231827]
+[-114611.42611148], [-38232.7646572], [89532.32903418]
+[-114611.42611148], [-38232.7646572], [89532.32903418]
+[-908700.01021004], [-29549.63067304], [-399976.78768246]
+[-622400.21887007], [-191790.83666971], [819189.25702384]
+[152952.3954855], [-256043.59799667], [159763.66446444]
+[-908700.01021004], [-29549.63067304], [-399976.78768246]
+[-622400.21887007], [-191790.83666971], [819189.25702384]
+[152952.3954855], [-256043.59799667], [159763.66446444]
+[-375301.61203687], [277535.30024388], [-386226.99378452]
+[-375301.61203687], [277535.30024388], [-386226.99378452]
+[33260.19369577], [145607.56225144], [-105682.28970077]
+[33260.19369577], [145607.56225144], [-105682.28970077]
+[-397276.25540185], [-737833.93448583], [495897.34713967]
+[-397276.25540185], [-737833.93448583], [495897.34713967]
+[50374.69083872], [-24030.65413778], [-6577.9483616]
+[50374.69083872], [-24030.65413778], [-6577.9483616]
+[-76109.62971954], [-166130.61162343], [-394104.18132846]
+[-76109.62971954], [-166130.61162343], [-394104.18132846]
+[29902.89029299], [-4854.58972412], [25362.30006252]
+[29902.89029299], [-4854.58972412], [25362.30006252]
+[-369879.71210846], [-82353.7041163], [-207721.63340981]
+[-369879.71210846], [-82353.7041163], [-207721.63340981]
+[623799.26396014], [776980.80063294], [404124.50866278]
+[623799.26396014], [776980.80063294], [404124.50866278]
+[-4570096.80058727], [-9078346.95468299], [2270645.18682148]
+[9142753.94724874], [-5468603.34123532], [3679586.56437029]
+[-4143453.32565063], [-3561365.77367543], [4348458.64801617]
+[-559061.34655145], [6541088.11618442], [-2927878.69317753]
+[-402143.69925398], [-31857.91371538], [-172916.05471045]
+[-54567.31317295], [14983.16649856], [-7441.10050874]
+[-37588.57758449], [-10776.55544695], [49924.71045252]
+[-444262.5126401], [281159.67212729], [-712857.41474168]
+[193143.28229882], [74092.36631754], [171595.00726513]
+[17349.16122608], [50067.84443304], [-32214.53422917]
+[-906187.83489097], [-900174.06958256], [813045.14861793]
+[-13803.56203829], [99254.49880308], [18970.49304479]
+[-275063.74974585], [-198850.85420103], [-63439.13539534]
+[136511.16865904], [-415354.61387288], [538221.93507654]
+[-173986.76520995], [-535273.64595814], [362785.39595167]
+[-405464.02284403], [-810717.38888489], [-539757.13869431]
+[13343.41315812], [-8.24437483], [56230.40711039]
+[-173232.23663228], [173312.0020407], [578226.61151003]
+[-48307.71666684], [-129715.78197985], [43083.13450478]
+[-802518.71819887], [790078.96189672], [-504378.16955419]
+[69376.74032199], [-199387.68469702], [254403.76325661]
+[-19721.85860928], [252263.66028726], [-157495.1038986]
+[6661.31913032], [-71982.91303996], [-356306.00200601]
+[89667.2608782], [-14110.06483772], [25601.50730134]
+[-46933.00069714], [6971.62734868], [-17675.53074407]
+[-44975.26429406], [-38268.612123], [-56454.1819516]
+[-390498.33383844], [-86195.02873289], [-177928.94025653]
+[-215221.27502197], [-748073.94852159], [222761.70634363]
+[314413.68229471], [-657823.29392193], [-762413.18358223]
+[455205.79101472], [425006.99836447], [-248858.80352629]
+[54420.44226989], [-22110.1094102], [-224.97733591]
+[525221.12186258], [-84799.58124635], [-113103.35259721]
+[330681.3494778], [745000.37573728], [897655.37493643]
+[-849966.74485953], [416570.42296871], [99775.57964765]
+[-366853.85326297], [179786.59870713], [51975.65482]
+[-189899.32980665], [25529.87723083], [114315.6083505]
+[41711.14182092], [137575.79527669], [55542.53888631]
+[-79068.96263467], [136064.13081557], [-79239.1683316]
+[409839.25049429], [41888.60289118], [435720.17877716]
+[969805.96344276], [92551.43918173], [-616886.27092772]
+[947989.05848392], [410498.95178204], [-404077.42174558]
+[48913.56854082], [-18446.75034188], [43829.5427001]
+[-51507.60523088], [-82394.6277755], [152769.17644667]
+[-175541.20874479], [-349184.10422586], [201878.34784334]
+[-84878.41264431], [-68252.68777506], [66959.31772215]
+[-45141.56394063], [129672.04515284], [115885.16745024]
+[-26774.30703877], [5498.52110362], [77089.32531801]
+[18345.33366499], [-86683.46567209], [-10970.70896879]
+[28934.22983964], [4254.20867536], [-82515.58514391]
+[-591300.16828406], [-295723.73773065], [-636106.75717195]
+[-268409.88268091], [229985.7701032], [325424.85996277]
+[279119.32267847], [7267.62898809], [567053.78052433]
+[-108522.94602677], [109309.62259365], [-288555.96922943]
+[19862.12197065], [879450.12450049], [846642.42347263]
+[367355.20656467], [519149.60858469], [-65092.07657319]
+[-25824.02445485], [-516758.99725291], [-191308.36640578]
+[25694.57245237], [28624.02689308], [-109762.11377188]
+[94763.38492767], [-55832.54121673], [437212.80651104]
+[735609.78147027], [398829.77482901], [-187833.4868354]
+[-33049.53880755], [45156.53193379], [-22907.53583526]
+[-41378.6667329], [62742.06931804], [31325.75465739]
+[-8005.00401532], [49797.72813524], [-13914.51121146]
+[34353.95401596], [28199.91012286], [-43252.87063863]
+[746711.15614894], [-328748.96179331], [538845.46870983]
+[218021.06769044], [47693.04673363], [81736.24101933]
+[-75112.76933129], [261796.04762722], [33644.41988248]
+[-141193.47200099], [-156076.13102725], [133482.60693964]
+[-746662.13839357], [-284751.84741666], [442637.59808283]
+[-273669.2806578], [-478784.74881224], [-180043.84651772]
+[-10335.09285222], [16562.46787715], [34098.45487643]
+[-155877.85721214], [-546065.2051471], [-156696.73767971]
+[-20747.52401412], [225156.43417233], [282846.01475288]
+[-240637.39306325], [-131299.92623648], [-527344.51203008]
+[226591.74143199], [-552077.03012707], [-401191.99696967]
+[220127.3322674], [-95997.86683595], [129787.03097314]
+[431228.98374416], [258310.51007276], [-567884.05066275]
+[153912.70692653], [5100.41409734], [-21050.38968611]
+[-92778.23055824], [-152570.75562927], [-168120.67056648]
+[-209.91610967], [-14533.97711572], [-14738.48095284]
+[37593.42573405], [41183.99080654], [-55180.73699895]
+[-4820.24244282], [163997.39960007], [-8098.95237302]
+[-389367.84898376], [411274.02678487], [-369514.87753202]
+[950476.33127056], [710611.5657336], [991821.55622795]
+[-97275.77906675], [75290.05944782], [-16573.64701745]
+[38312.96078559], [-17119.6469955], [15642.87324941]
+[-230757.9515206], [-249092.09676756], [44360.85735551]
+[-798156.58500192], [298839.3681839], [-551626.13866852]
+[223073.62814193], [-18609.70017655], [-257869.98172161]
+[-18595.4887511], [-82250.5494571], [222980.75966342]
+[-1002.09629724], [32497.04225099], [186457.37124137]
+[-318131.64771196], [-176825.40982661], [-105573.08098899]
+[249920.19722264], [-27917.47698582], [-70492.5949086]
+[-52394.3665331], [50072.47234989], [4685.23787055]
+[157848.20133462], [-396411.24377115], [78321.96971643]
+[60057.05801], [-97729.10462854], [-19603.0338807]
+[381634.20910174], [-335886.05887682], [-185235.76679864]
+[-5800.45885692], [167383.49554038], [-24058.70452367]
+[-135069.48509926], [146647.28142577], [-89153.99039148]
+[631936.00308756], [-525241.2031441], [-340724.48316564]
+[-50495.25262727], [-44332.98619501], [48801.23813049]
+[-145308.25953639], [105514.85687321], [80448.77782515]
+[-587292.31931323], [-70321.67401687], [285666.46075711]
+[74423.55717986], [-283286.98450077], [302602.78107667]
+[91695.77902606], [-86904.25619704], [195851.05673311]
+[242590.73568236], [285013.90540647], [334219.303676]
+[18510.7855722], [-27023.77255842], [-6541.7866837]
+[-193086.23495741], [41198.75515093], [-190187.72772309]
+[548836.25124121], [-829864.94984194], [54941.28603034]
+[726873.99030794], [943444.85390808], [-206828.91394628]
+[51430.1351657], [-207409.69977376], [-604592.46460056]
+[182747.73246924], [422885.6380463], [332010.27551605]
+[-60004.67514235], [134290.34094915], [-645148.16498847]
+[-36316.56509264], [-51676.15133216], [66070.04687169]
+[4533.27174645], [20934.06287955], [2142.3411759]
+[11698.07462565], [-38696.08552379], [-48915.75557939]
+[710514.23471159], [-734158.3380536], [560817.64472384]
+[-165683.99210367], [16826.66878563], [-143561.92694836]
+[-359577.60949027], [-211180.99813335], [-92889.52446921]
+[505278.34734429], [402979.81416529], [313011.01834867]
+[31551.58677518], [23723.11952694], [15200.94550676]
+[689476.52880372], [402337.58758594], [-361417.80908263]
+[-329092.31775719], [-798936.64535554], [-243626.15302152]
+[-69362.39505515], [38603.38528113], [67925.37235237]
+[9613.22180453], [6052.08822299], [-8667.16390505]
+[-866464.57225392], [-608117.45715149], [-11044.20123471]
+[-266991.5552591], [-348347.56240888], [349630.31853726]
+[-811402.35030344], [812858.30143896], [-530153.75876802]
+[840775.17743443], [642864.18030009], [604605.3939439]
+[-259760.08946538], [186325.10292181], [-615588.68588653]
+[-826772.83503035], [363964.50904043], [325601.96473197]
+[103381.40817401], [40957.14009625], [-276612.76353263]
+[-550325.92837207], [397104.51029591], [495102.18455281]
+[-94963.85447326], [-380814.55639123], [-427985.24460147]
+[518356.96423261], [567473.3933509], [167499.25699544]
+[-160039.18680845], [51940.29860028], [-5643.65568557]
+[-20959.99389054], [-176385.19717578], [-135349.14477869]
+[-55798.25934381], [149969.19789642], [-101230.96373383]
+[335492.92178427], [-395461.24059558], [64363.42613948]
+[43676.42948116], [610696.54117559], [287362.38946518]
+[439193.07369007], [396373.27253098], [193914.29910682]
+[6119.68555386], [-27136.57054034], [-71473.20869005]
+[136100.83682469], [-970149.85044706], [302563.85686214]
+[-39805.59073197], [-97898.03165251], [-116303.62833738]
+[130755.79969325], [32040.1111868], [-33801.25437603]
+[-133278.10801846], [157808.1123365], [126034.60326341]
+[277691.39145103], [473808.3631372], [-948446.20614599]
+[136972.7678002], [118916.11164643], [83676.56118696]
+[-61447.47530963], [-6088.79748507], [-41155.96326873]
+[78735.02878941], [-105395.81165575], [-498663.35323732]
+[280051.08833403], [-527136.99278567], [255597.65268908]
+[-65741.11573887], [-60141.64981838], [28992.9501831]
+[-21160.53762024], [-24313.10922023], [-26375.75517162]
+[-57056.66178771], [-27506.24698816], [-41213.54245727]
+[-463900.40668954], [-127622.06695837], [-572365.20142302]
+[-145360.78049761], [50550.59933311], [-161283.64738894]
+[199070.93816347], [593607.74104591], [50470.80964142]
+[-261222.59879412], [189093.37013894], [-1105.96463823]
+[13248.30723041], [41637.49699416], [-134860.93161545]
+[-864121.15100248], [-814213.66302796], [564103.19085614]
+[-1097.9826636], [-25645.22008574], [-42129.62158262]
+[-687300.20882088], [933162.58146405], [-222344.14230349]
+[-607731.91734052], [264208.6485127], [948631.96715808]
+[-52881.45155215], [-47036.05138169], [-12952.73838888]
+[-194902.02719856], [-89686.89038387], [64271.42972776]
+[189231.73024921], [-101849.02185559], [-618591.87014162]
+[-24055.02720164], [10051.85062959], [-61387.00968852]
+[647048.47683211], [-365266.80687706], [-227488.63965216]
+[-515875.58456118], [-505170.53425981], [501479.944511]
+[382999.20083722], [765751.72790808], [-511776.04655735]
+[-992679.91218105], [997405.53501799], [80832.43674255]
+[173204.77771162], [-215453.1366608], [-61024.79056356]
+[-391242.19631183], [-150346.8280537], [-502341.19321473]
+[19517.28831983], [6595.46869282], [-114.6153284]
+[-1158.74989871], [82514.80394643], [-47543.25200602]
+[337107.4501122], [-68660.08892782], [206998.44011569]
+[975239.52075983], [-785737.86338471], [-350624.51014892]
+[736955.31874166], [-167132.41235484], [561069.93719413]
+[30149.41741036], [-68101.74971258], [52596.53235791]
+[65754.14998473], [185908.31804649], [68420.57726982]
+[55071.81614144], [620321.45543253], [-488090.27301302]
+[-34470.9113607], [-65283.99725854], [-88470.92585439]
+[787939.59823326], [751901.56025466], [-21017.34673015]
+[151066.29546527], [-173301.2491511], [132025.34677018]
+[-447044.45624359], [-268351.09032573], [369590.37764076]
+[557583.89551539], [-16447.1964841], [-551311.72145293]
+[-92683.86616114], [89796.35585092], [38381.80743341]
+[-200654.28092484], [116385.01937568], [32082.7198276]
+[-727834.37098107], [-56830.68160989], [-424449.6603246]
+[87107.61678109], [-110139.52119846], [-106121.62808737]
+[-145872.49351626], [-529125.19094013], [947095.17971621]
+[310247.48482398], [-245002.93233371], [623697.02181566]
+[96049.13693909], [-6389.46031075], [253037.85529079]
+[448767.25539487], [521508.75774553], [173302.98230102]
+[-139295.32080579], [-156541.54491456], [-79224.20623556]
+[93007.94816016], [94170.19740499], [-43420.1475001]
+[8453.76052607], [125674.85385509], [-129507.77365104]
+[28174.45283619], [-74702.30720431], [198989.15670596]
+[-10510.44146628], [4453.73853655], [-13142.93229681]
+[-259523.76901], [694100.23804529], [359624.29224362]
+[-3875.54180484], [-837.58136645], [-47805.59837885]
+[75893.51648322], [-205626.95976858], [36173.14327275]
+[-259398.66912128], [-3600.19250241], [561602.68164901]
+[390765.04858958], [-484378.6522538], [932542.46590077]
+[-201742.23321179], [-272713.40271172], [535931.06701699]
+[-64529.58315941], [-63789.41267889], [20500.93836248]
+[-55189.01214009], [28174.45895247], [-34128.56905004]
+[33084.62185783], [552294.93819691], [150970.74178597]
+[124138.27665108], [-345246.90333178], [96469.52199136]
+[207926.85354637], [-325830.73974465], [-82481.18000935]
+[-971.97350578], [-8722.3180653], [-33648.08030028]
+[-518343.20883107], [-406634.58805912], [-433552.98503001]
+[-104488.73190612], [183332.86491698], [77678.45190692]
+[-125898.05538404], [163028.02409665], [-138491.34873155]
+[-16643.87998224], [-140078.45073287], [23650.97280998]
+[751802.30807579], [246418.94694557], [710226.78947697]
+[122985.18828361], [-103127.994697], [21487.20583785]
+[-41080.27305643], [-1969.14588699], [11480.35868198]
+[-82482.30491957], [-51114.82370899], [31414.83859355]
+[-35770.84014502], [58891.92726391], [36858.0011347]
+[239502.48883665], [412633.21915064], [7107.94479079]
+[205633.08814363], [297823.74121779], [-448232.46159466]
+[73549.87595207], [31811.00020496], [210388.2180335]
+[808860.54690784], [-220837.36189422], [835622.38553243]
+[-216689.11928728], [-61570.16906987], [-215310.88308188]
+[-53254.20087216], [156555.51107405], [103435.65731749]
+[940420.67496039], [174456.20927573], [469458.1458424]
+[-151642.76712058], [194582.58712473], [-265220.17736324]
+[-12859.16398941], [10720.31530051], [-25285.48540653]
+[-565171.41085239], [-63680.06555522], [814633.80598061]
+[-259354.09928744], [-108893.37532217], [-111169.15073736]
+[-251442.21939544], [-212535.93284231], [-155867.73520742]
+[-462263.35858065], [228549.88869129], [-628088.67576392]
+[-68116.61170401], [1418.07110879], [-112615.94567916]
+[388704.35902295], [556640.20197525], [160795.45084095]
+[-389692.44896158], [189296.49093304], [108212.13807241]
+[-143127.13500766], [-78027.70785305], [-83769.86450377]
+[96603.60823098], [-178781.26394112], [-588069.29749449]
+[604771.00342065], [169454.86185028], [-302101.17719399]
+[3778.04940984], [107625.71409148], [-175421.92533717]
+[58750.03035497], [26160.7648564], [63580.36670986]
+[38886.73447949], [-599034.02505521], [-129872.04939777]
+[-336587.07580999], [-627611.44570472], [-940235.06150109]
+[149784.25395814], [-927666.78070517], [-656474.91439741]
+[92839.93313653], [124115.3015744], [166136.07523367]
+[109012.78826121], [338750.63716863], [-402294.32061905]
+[252074.90080658], [104476.34681204], [-10485.22705445]
+[22837.19289928], [3576.5708968], [-28077.94420831]
+[-32927.58358278], [-8120.8503258], [-43931.80601697]
+[-171243.91173698], [-227484.69074904], [-182273.77833712]
+[-466802.41144438], [-148527.70654792], [-608950.82607661]
+[-277584.2799901], [-985968.05275713], [-577519.48915534]
+[173265.67309616], [-24478.3136465], [-39460.87735746]
+[44141.21111935], [-113236.03653512], [-35331.91701297]
+[8995.42067699], [52615.19956258], [-26925.43977047]
+[-41712.04691327], [-290282.891102], [-185266.55087237]
+[868774.78027133], [-350823.68292862], [-195000.64764022]
+[533350.35834166], [957709.75162765], [371553.68632673]
+[-43956.46822752], [-38254.26358248], [29865.84105807]
+[-133263.76131765], [-33861.07511437], [-64980.27055302]
+[-7711.72325761], [-14319.56688722], [-55849.68035045]
+[300397.49015719], [335220.85420643], [511254.25098907]
+[79115.36186347], [32686.23347924], [40342.22937033]
+[473231.42263999], [-637369.54239916], [-796840.24204277]
+[-542789.05738697], [-116276.39895223], [-245940.72901286]
+[1956.48852971], [-1126.7992026], [-1942.72068217]
+[28298.43750291], [535723.28690238], [666556.45563301]
+[279622.46054158], [195644.83447143], [35413.53075365]
+[-17522.53375873], [19124.2910811], [27839.80277023]
+[9307.27713746], [228057.7017525], [-917767.75990247]
+[247319.8537596], [-918203.88453669], [20004.49758859]
+[-671858.24671426], [370585.64244253], [633674.0692335]
+[26131.08204152], [-623238.0879164], [-549607.7507731]
+[567475.47032484], [315873.09569401], [599004.83670086]
+[-942038.32087841], [825592.90711428], [665794.51805413]
+[-116230.48901764], [-433483.0071644], [18275.02240959]
+[16160.40752692], [-22610.09589347], [11975.32594227]
+[-284303.91787501], [457330.44976467], [-515543.94422655]
+[-312068.18172884], [395166.36950133], [6842.40414295]
+[267963.29922987], [98975.63246949], [-221068.79162015]
+[-3918.90796539], [4622.2941928], [4821.92631621]
+[-375237.92813132], [84917.56587174], [120886.15012954]
+[-40044.43851237], [-344890.33062625], [-234900.59143089]
+[39332.14456074], [-85150.06135372], [-6554.04748452]
+[-22756.59449962], [66713.74429409], [-2565.10625198]
+[139500.69887719], [-33016.02171104], [-22194.63154918]
+[-353109.19094705], [111844.39278385], [-193161.99582211]
+[-127924.83006849], [13881.61074914], [-6373.91655746]
+[675090.84887963], [-130944.269579], [-170597.22271501]
+[333597.13598916], [587757.34090095], [114326.44174195]
+[-3778.328095], [-114716.09890262], [-43967.98160456]
+[-10199.16575363], [23698.4092565], [20579.8087743]
+[95559.83205904], [361295.26533868], [-134760.45190512]
+[-721162.79015234], [582285.3528272], [650961.64837844]
+[-93998.55294687], [-150298.13009118], [17748.77698152]
+[22158.74489789], [-116972.34486766], [-30759.39071099]
+[284570.4194072], [850046.6693158], [292568.38279312]
+[320322.57728172], [-50008.83481815], [125747.60069089]
+[-126622.42034809], [-297410.87408687], [-656183.95049351]
+[208212.77453677], [-829057.63296921], [431073.34738268]
+[193843.24022192], [-213660.21755049], [-574312.20297677]
+[-590993.65040356], [681484.39038244], [29742.50116493]
+[374704.83785047], [802541.69358816], [369454.26150832]
+[-52912.10947273], [-40643.17490704], [-110195.25103012]
+[-82598.75708261], [-119969.87718975], [-97568.55561923]
+[24451.15675273], [-1177.75698836], [-3624.13971651]
+[-51410.55484289], [-151798.65210283], [-67921.08703614]
+[215942.92137109], [-955205.69615149], [198361.98133662]
+[13260.38415562], [33245.74651053], [-62516.16625337]
+[349947.93627435], [-171789.57256445], [77532.16896662]
+[-262373.89580036], [-8523.68668723], [86364.98159918]
+[-278952.79548363], [327860.84942434], [234640.64149248]
+[141067.56034819], [364781.72584651], [-110496.7822522]
+[291994.21555006], [33847.77509125], [-205875.42686747]
+[37834.80333586], [96896.64538648], [-260557.11576369]
+[-55772.94431608], [13151.02895347], [144505.57441106]
+[220731.05530042], [-40158.78965698], [75191.75292665]
+[-77652.8289747], [-208047.99097316], [39195.67176877]
+[289920.66985697], [-253076.65491031], [11879.28764445]
+[67997.60156024], [21437.5910335], [-17669.37330763]
+[-364489.01896236], [-316878.71087562], [850020.10762145]
+[-353338.50122345], [197967.61133529], [247386.50994401]
+[-29119.36876163], [-62878.41951896], [102255.82821034]
+[-217541.12051171], [-275870.67168387], [303444.66814172]
+[218252.31212346], [147818.27022852], [220237.04397233]
+[-2317.87710204], [4175.82316608], [-2241.13279325]
+[53630.43749102], [86561.52414066], [-109.02436037]
+[-90680.48064265], [-138965.25029621], [75954.67136172]
+[-877606.88346701], [-833326.67168481], [947172.60219372]
+[-476465.35072083], [845761.16293677], [613262.6141688]
+[-1399.57227682], [231744.58878842], [57607.86980702]
+[589622.95340439], [-700157.88769977], [33512.97849076]
+[-9999.63783203], [-168427.78363587], [51699.8811358]
+[71025.73774061], [-791872.4267972], [503506.52805261]
+[325436.24029652], [-7938.46910338], [-28210.14609123]
+[-10547.19400908], [19033.09888788], [6158.39418601]
+[-127877.88728663], [3330.43592839], [19135.83413585]
+[-5384.92552527], [70620.15887857], [426798.69455336]
+[-21790.305662], [-7221.28657216], [-71549.40938648]
+[910335.54486759], [-216881.8327274], [-794899.60841875]
+[24673.93945979], [38704.5690793], [-30913.47045386]
+[-958173.16560672], [69739.32546525], [-672875.59701119]
+[173539.00869816], [-136648.45573467], [-37492.15479642]
+[-58337.55372107], [-212204.10768793], [36073.94822685]
+[104385.58927141], [-4036.66188103], [103034.85369167]
+[-206905.3351482], [-24353.37463875], [86076.1066632]
+[201467.08288031], [231906.13271972], [-508642.7185175]
+[-154833.11234656], [320511.32931625], [129123.59121178]
+[-152359.4927893], [320239.94182506], [142768.44892607]
+[-54205.64161509], [12070.38211514], [-69956.26434484]
+[51714.37199761], [-11682.71768648], [-90391.58161686]
+[-161755.36202431], [170429.52382098], [-243808.02701393]
+[-20035.75704045], [-80360.1816008], [-148472.62054667]
+[201194.47239909], [615557.19261418], [-299137.86327731]
+[121305.5130542], [-46363.90252673], [-42456.35349631]
+[-15955.20734925], [-5681.3991348], [6111.76665498]
+[156345.81102776], [-139180.76594885], [-259769.82274803]
+[176076.26135562], [18718.02248867], [680187.15843827]
+[-25544.21564718], [27481.19733984], [11408.8178177]
+[-386854.47240227], [-340844.69553058], [231615.74840589]
+[7786.52252638], [2834.47233443], [-32914.634231]
+[59010.73444173], [20422.56387219], [-26250.46003051]
+[-90297.73376694], [-21610.26999231], [133955.42843991]
+[17310.41180785], [246361.95831625], [2433.92251781]
+[131564.52707135], [681.78064283], [280495.73465003]
+[84384.62458136], [-17512.47217603], [-380.96006793]
+[-252595.25967391], [85468.22374628], [-305428.85408161]
+[765007.61672305], [-490750.74940812], [661833.38977994]
+[113152.71916965], [34796.39486161], [-144325.78736148]
+[-56304.14576564], [-262531.92270829], [41792.87915014]
+[105912.10009728], [-456634.81710391], [-395866.54247607]
+[-514503.0773764], [-672694.26710862], [-849577.08989595]
+[-88345.79535608], [-21657.14807546], [-315.76776904]
+[4873.71914211], [-649788.69751374], [528785.46506657]
+[103121.71942287], [-36266.05124922], [80671.50613776]
+[300811.0318144], [17351.62773887], [-342562.6572625]
+[660313.43688111], [-146496.48606833], [-161496.35484523]
+[184003.09856428], [-164179.12275106], [-137591.39117075]
+[-273894.60279392], [-598970.61366444], [-153515.53856034]
+[-51973.94300754], [-513003.29360362], [827260.99369108]
+[-606681.74389083], [-247193.01258689], [926126.57209847]
+[-346404.94873248], [-762196.29295019], [-147029.19388412]
+[420444.2980268], [-651029.13944718], [91462.6236116]
+[-660145.28554037], [919963.29231319], [617383.51357402]
+[75894.96143726], [-31382.50508467], [8605.74229895]
+[-96684.40295007], [-132578.6447918], [1519.19077068]
+[776.63379413], [13657.20398874], [-50618.44212067]
+[-32897.25221154], [-46972.36795854], [12859.7679656]
+[-490121.01191037], [307564.31872676], [266260.96559481]
+[-72336.74869326], [6795.57317832], [60910.21957373]
+[28903.60621529], [31019.43425935], [11289.89783785]
+[-23587.85801318], [70659.91263152], [36131.77404727]
+[282421.29155793], [556032.09251571], [162344.96347491]
+[-529183.31392267], [111857.72820221], [-477553.12576692]
+[-63348.2466847], [144353.08164828], [744261.34551006]
+[-459939.34479144], [46193.8791103], [80824.97857134]
+[-263691.81400357], [-31107.0897995], [-60822.15453367]
+[-30454.00717738], [-352800.61758251], [-282983.86764109]
+[-100079.8627175], [-221608.21271592], [23286.4695146]
+[-471228.74079019], [-598504.11726849], [-677488.90898272]
+[-142468.93522425], [83228.69882866], [37948.75480436]
+[-74146.50625498], [-16448.91007591], [-12387.76790019]
+[17440.3405247], [-16751.95237562], [-17494.1938726]
+[3495.29218018], [69077.33418939], [-38685.71627956]
+[-233014.19315863], [-381510.48488013], [-961565.38889544]
+[59598.02203727], [-110808.3388597], [-262800.87608072]
+[1821.46442961], [-16225.94030046], [65873.59493539]
+[26164.74651584], [36563.96825105], [-5743.61723034]
+[-42868.42690856], [-122511.86385219], [59677.1671305]
+[-322194.48860811], [-80524.19233326], [-153043.23876994]
+[894096.60963179], [72543.99508623], [972488.31682703]
+[324077.4667445], [-4245.19630419], [263780.60660097]
+[360208.29139], [-17479.36124292], [-163718.18812124]
+[-30734.71468443], [-324966.56412189], [478867.41877211]
+[-5310.35277816], [31309.4850915], [33641.33807107]
+[-76096.23484007], [-11413.30197103], [-46603.35661665]
+[55614.02182666], [-29305.13705321], [-37202.54936587]
+[917176.47383709], [-937214.1881488], [785658.91607831]
+[161173.57713697], [-480755.72963357], [-396586.12561061]
+[-424902.39718272], [268264.90730651], [378762.60800806]
+[-209714.16388441], [-14204.48093739], [-62636.30612771]
+[307631.66047867], [705601.28691727], [-254501.240655]
+[101532.78005511], [255273.63589083], [-245003.74788357]
+[-413143.3692021], [-153690.33183154], [-77515.96132776]
+[790775.71431783], [-464414.61074531], [460355.65107412]
+[459527.43311073], [-58651.96835515], [75372.05218261]
+[-351721.43458245], [458609.50939062], [148823.95641003]
+[74288.95964608], [-68773.45591298], [46132.56865583]
+[-86915.77377022], [31438.56336367], [-35922.14237811]
+[-203491.22721252], [-323215.27509232], [-306290.79578205]
+[36047.74437735], [-282714.44005775], [-376500.82882482]
+[-597070.15880934], [186182.0948639], [229677.63652187]
+[934871.45810718], [615873.93068855], [-300848.71386532]
+[91270.23239163], [3332.24479109], [79591.61512945]
+[12685.89436879], [-92762.48170767], [37948.48948339]
+[-764198.21775465], [635539.85327757], [733612.19754473]
+[-75492.23411963], [-846717.21515821], [775198.05414302]
+[277524.57121185], [232163.89332781], [-47720.14510253]
+[74722.8872393], [-34632.8312065], [-393265.12936353]
+[475240.04948503], [222947.31576034], [-147316.59313698]
+[-23299.16343558], [115358.01898368], [8225.99074566]
+[-29006.7799085], [64838.57281838], [-45930.98605927]
+[221027.70609646], [-18700.62895418], [-32391.14017769]
+[-59923.855296], [-278445.29296797], [190770.9257124]
+[10623.9928267], [428788.69316496], [222664.14246093]
+[-369367.37866379], [29508.03117972], [-84035.08113192]
+[97776.03861676], [-225738.22883505], [774386.66854948]
+[-346371.12329149], [-192465.38077644], [222675.2831026]
+[-254750.15083277], [377454.61287818], [67024.27098027]
+[79125.80969978], [87772.92688377], [18004.0365901]
+[-97910.62568674], [-28830.31830768], [-14116.98589158]
+[205351.50639267], [-47785.56318532], [161908.51789311]
+[-159544.07327979], [-353798.82059192], [-883847.17982596]
+[357.16358824], [-56822.07237249], [-61916.14685654]
+[153778.55530981], [400914.24925252], [-641912.12530627]
+[7042.86066884], [47715.65121856], [-111498.02637942]
+[140476.85610309], [414731.18437066], [-72492.16770651]
+[-163599.01586143], [199206.75305796], [104756.89755943]
+[270309.50208564], [306451.43665232], [219785.59083706]
+[-833318.79235177], [-55538.37293521], [-267488.6030224]
+[-2819.56496253], [33054.72091522], [-56666.21914324]
+[386866.2511005], [-149481.77365262], [-270422.35763944]
+[148916.15142476], [237291.98141015], [-48067.92429458]
+[-517612.31110633], [-11162.14329262], [933206.98486424]
+[-291336.18969037], [187726.13581873], [-132207.47170857]
+[-764006.72903269], [-316223.310392], [-638719.12616258]
+[-124750.79117817], [447665.55740966], [113286.24827292]
+[-3789.19816669], [19550.36641517], [-18886.54830376]
+[594423.69026128], [-396983.38097318], [854705.14390913]
+[829394.91971334], [-300565.31282007], [-136584.45019025]
+[-8570.59434626], [-54392.34560992], [-14404.10536838]
+[-164644.99252483], [68989.14135415], [-31927.118573]
+[-226428.356755], [184720.6593791], [50819.86366833]
+[1664.61743784], [17086.2514602], [11565.63264412]
+[105382.52140046], [-6808.94149723], [-81851.05653578]
+[36829.98662613], [9160.48716192], [-477587.74657196]
+[-24006.35346591], [-104440.42868462], [-196351.83114827]
+[939537.66239495], [-155848.55986316], [224691.43597562]
+[-39253.70409563], [-143002.78667301], [152065.6278223]
+[51894.68501878], [31627.45587853], [-40953.89683094]
+[57173.177615], [49330.27278572], [65645.31443982]
+[-4815.47637725], [-8970.22768193], [4915.60267919]
+[616032.62330128], [-434555.96696659], [-585861.31084533]
+[-118838.15585952], [25560.72585241], [-9119.91948848]
+[163344.9788021], [170737.88828826], [285392.12221393]
+[49389.02481786], [-13958.68258813], [17702.22600965]
+[-16290.3864432], [-206802.65147108], [268552.00699785]
+[394479.17475248], [-450433.73125106], [180312.14455694]
+[-142148.95804297], [50970.58019404], [-107202.80160051]
+[-671489.4949731], [577251.13047266], [520048.42309149]
+[33932.57740079], [217342.95115308], [572998.17626509]
+[-696355.71425408], [-350713.06734208], [310171.10353956]
+[-159811.68549984], [97697.39811073], [3926.18413576]
+[-812575.01517522], [-237565.87692898], [-77724.00445825]
+[136172.66696642], [360368.71633556], [-5695.31991535]
+[240815.16729695], [-121022.00476028], [-208794.79565408]
+[-184828.05199869], [118278.70020472], [-175240.91457139]
+[493399.83647067], [340476.04650681], [-367315.85140207]
+[-25217.41567013], [-1415.27979462], [-52501.34841422]
+[-101836.35533993], [172177.05827645], [-102937.0513876]
+[-22817.42658168], [233496.19237741], [14458.88804693]
+[-19817.53463168], [89872.46980873], [54043.10563456]
+[-178685.29580335], [517380.0885868], [226473.7824649]
+[-149550.45948939], [166627.8393977], [-120069.1211153]
+[-47927.20235482], [13874.99006187], [-873.25719758]
+[40824.62471933], [41199.27221604], [-34185.98754665]
+[233648.16575952], [-51882.63911817], [-300637.2379003]
+[24840.32005893], [-29150.98255935], [-12481.40653123]
+[7990.63269935], [46267.40047344], [30005.47277943]
+[482128.7646785], [-10780.76605481], [-490266.541296]
+[408081.41260822], [458094.69099838], [34264.6103081]
+[-363576.82068894], [858038.77419896], [-385171.55470368]
+[-506601.70662023], [-354788.42012293], [-933178.01123548]
+[117064.62574497], [41611.41649409], [-37783.42829471]
+[18736.55079108], [36733.47921499], [-3841.14271969]
+[-382473.06926796], [439792.83226888], [-314506.66159071]
+[-303620.99521473], [224805.16471277], [-273465.18323903]
+[-58000.85772278], [60879.75056007], [-65995.09719444]
+[118960.54721], [-503268.0254501], [446910.72389923]
+[-275635.46835606], [-134505.88464155], [83244.10229016]
+[238398.70588114], [28131.6684747], [-116892.06905892]
+[128563.42421653], [-5625.67585215], [-24544.76520272]
+[-51786.01671883], [-28894.68815065], [66668.6742901]
+[-365706.95043966], [-191189.65310644], [125949.3720561]
+[-189814.77068859], [-247014.16120723], [-69101.29667787]
+[-125500.47201755], [-127544.99874916], [150605.03156534]
+[-75752.98083348], [21597.90697106], [-61828.35587808]
+[77907.01316904], [933667.20476806], [-169927.73457888]
+[-611267.27290987], [10333.93035117], [694656.72338272]
+[-780550.77489827], [261469.01217597], [-661152.45156961]
+[43803.28637607], [-18551.45300605], [2078.98173699]
+[-14384.84240886], [57457.76830964], [123851.54740113]
+[140219.3701429], [-58428.64282159], [40674.84253226]
+[31132.81322889], [41376.15456981], [17030.19818617]
+[95508.27302153], [-95414.94123747], [-3531.73904601]
+[493294.48207418], [400867.56835593], [322201.49558234]
+[492102.86710491], [-740746.73908085], [724171.18253018]
+[-78393.91760128], [-44652.69191755], [2935.65905836]
+[985253.26106133], [-684729.09335215], [329903.10864022]
+[-361638.96841281], [-425247.2770789], [-337898.88881694]
+[-13029.63357889], [-92674.61838396], [52991.22160117]
+[49720.07511404], [123858.08717757], [198127.20340191]
+[267465.25609512], [-256576.42939622], [119203.65354737]
+[179241.12996363], [-204711.72487668], [67796.20611277]
+[-166544.23896943], [-381674.78240757], [653943.0386032]
+[446174.72005829], [-117777.63298416], [57636.63524771]
+[897028.57202745], [97185.32755392], [-655195.34890038]
+[-233646.31925775], [13988.69894682], [-29132.05301804]
+[259051.47432842], [-626984.09941787], [195259.17419385]
+[-151583.05503295], [-564465.97465024], [195770.812207]
+[-66071.33247333], [77985.77742686], [-33851.18652064]
+[23979.72702354], [-2813.47327356], [-13442.25037745]
+[36895.65052389], [72610.99467223], [-204734.50803476]
+[-193482.89082202], [596268.086802], [-208646.27652388]
+[-52656.31717792], [28501.46293625], [34432.87965999]
+[-211137.31851138], [-867418.91007496], [-30257.91463731]
+[-21687.82728258], [21620.68892509], [8344.77855989]
+[92992.10690478], [-313529.45721758], [119273.32974197]
+[506880.17633407], [-585265.68807818], [530877.57869744]
+[-157151.02226115], [-214674.37743678], [-394842.64965828]
+[-76088.9182105], [-140163.15097907], [-10542.88930934]
+[691350.42969954], [87379.96728142], [-840203.85225088]
+[30675.55237552], [328599.92674539], [47175.05181755]
+[248534.59922896], [249203.60147922], [37904.62602067]
+[158766.74349374], [323364.31258473], [699589.97873175]
+[-10920.5454558], [-8134.61032962], [43631.84678727]
+[57533.85561991], [-27949.95182037], [16102.32031728]
+[-316080.92376278], [-312491.49468958], [3528.10483537]
+[-477942.96845466], [-586473.64846764], [180917.23673315]
+[84239.86405898], [88325.25869392], [-26703.46919377]
+[452007.60165106], [-64871.5298975], [266701.71351762]
+[-171224.16726212], [282300.72003603], [-185950.66086145]
+[522932.87882372], [-701078.38976006], [-117709.47916824]
+[-935332.28667375], [-273033.08445885], [-598076.57371142]
+[-322002.14473489], [23319.02847937], [-13643.4174562]
+[27262.91815796], [32090.44711586], [-824659.58849605]
+[-139872.71383177], [-6821.71936098], [121006.58336038]
+[-191600.13633305], [-124312.08118667], [-275496.46860396]
+[-196906.81893737], [-265661.41454559], [472847.5222378]
+[-111040.59500933], [291620.16772079], [57367.22639942]
+[474468.8975837], [-27836.62785067], [-258788.89731867]
+[13115.24942999], [-457400.66765554], [52035.18951528]
+[-29295.51753162], [4972.43451683], [100483.6927939]
+[-527017.12421282], [319927.66400659], [887794.43837655]
+[67392.6779132], [6281.84171827], [-98675.96120334]
+[-22779.72248354], [-56440.89179812], [82355.36273302]
+[288849.73776255], [-328705.85954555], [-194782.28116985]
+[-52788.37916398], [-4790.86857302], [113162.20748178]
+[133071.04807729], [96854.34147434], [-27944.980829]
+[143065.9872021], [-6915.52010922], [64290.14518509]
+[111272.81129678], [-183269.27568649], [-222252.11531019]
+[2454.67391364], [-8694.35611985], [-112051.30757952]
+[867271.60943622], [345358.32259253], [771555.42682258]
+[238631.5271433], [830516.67691147], [548763.00611423]
+[238351.54049931], [142393.66047103], [226495.7612895]
+[162175.36198792], [-62599.05080475], [-105958.68267019]
+[140216.29528465], [-334082.74481779], [-3270.97575813]
+[277461.4394932], [346157.16704362], [518576.10990078]
+[-41752.37456074], [82426.80355077], [26419.99971624]
+[228458.53577399], [-144454.0002108], [-55208.61965137]
+[-98547.5792074], [-131461.72079724], [29258.55913294]
+[104802.20173025], [-73607.34474757], [-74885.30002631]
+[-57029.20727418], [6491.21416886], [79066.65096858]
+[-30348.62637954], [-119893.65983257], [-103988.81722114]
+[230521.64628367], [-169102.0174266], [512057.19635416]
+[7303.24417842], [4852.92851371], [4630.69510657]
+[4193.67367281], [-13622.95023286], [-14922.84430505]
+[-320745.20416634], [221599.82636116], [-67354.40235084]
+[297502.96654656], [-85768.18153253], [208060.47624657]
+[-103417.54664137], [-1281.50090739], [-39785.3175154]
+[1122.26623035], [-388931.75201352], [111837.84506834]
+[-101499.88809904], [111905.0307925], [206058.56704925]
+[-158228.41903784], [-264992.30638932], [-231882.5131713]
+[-809155.47735801], [708625.92146152], [721798.4751667]
+[561248.29165636], [-195909.83954349], [93260.94914751]
+[343413.52567921], [-120403.13682906], [161721.79563553]
+[-23643.54512701], [-43079.41970869], [-17152.20624971]
+[-80144.96230687], [-238633.94069943], [-33719.79282201]
+[473258.30678032], [447395.3158159], [-961040.39989833]
+[289434.16352202], [6451.0348149], [51840.42258977]
+[33980.08894757], [-9835.34534346], [-17825.34259936]
+[189769.75260242], [165335.68669619], [97741.6923879]
+[11741.68869744], [-6092.83228673], [-27661.75700767]
+[-856169.0684075], [291868.07389063], [-179254.75112328]
+[-464044.40023225], [717382.01037101], [-531205.21504586]
+[-463476.76249964], [-398309.32861098], [269697.67572395]
+[-114819.73291934], [38770.24724035], [-11727.48611682]
+[150145.38207986], [-88337.14697093], [38256.29091365]
+[132682.27430296], [6052.04914911], [42873.68933462]
+[631847.561014], [340665.75268157], [-828046.15586057]
+[165840.20526303], [-311309.23623001], [-867881.57744709]
+[-474114.14324411], [-311720.49165628], [959355.8893353]
+[-48339.48378454], [-49955.55563575], [8363.9914559]
+[-19228.57610004], [18203.42037492], [-15825.4077478]
+[-134098.96535204], [-462800.72251984], [549623.87342486]
+[-1023.87428118], [11902.33729774], [46646.49612589]
+[-493241.8987996], [-279506.67984493], [-257905.59192495]
+[33000.61241958], [-76526.2104465], [-35947.90463171]
+[-101510.81204343], [-253664.19385797], [-289882.8101594]
+[-25302.14518266], [-45028.97378991], [9819.54824633]
+[-167045.53916524], [227507.13051976], [-280410.36680768]
+[38881.28432302], [-144342.62442445], [85375.18258549]
+[93631.40610457], [-50329.8797482], [33229.21860418]
+[955947.6379754], [80824.50283716], [788647.86333437]
+[678654.23877418], [-51950.33248798], [348545.98702479]
+[-333524.78144919], [188349.37837567], [-126584.12756561]
+[738206.94983242], [797095.09185773], [989927.26386295]
+[897047.68828124], [-132023.9157196], [-325935.22221513]
+[546281.03563245], [69388.13193922], [560112.5391578]
+[201566.80151566], [-157060.97639262], [156386.71813813]
+[-9568.04053402], [-35271.92236779], [8262.82579873]
+[-366704.12492784], [-473067.84317148], [673827.34034339]
+[983036.67980092], [906907.44547365], [-263074.17143863]
+[22646.69192994], [-2572.20544985], [-213450.94709749]
+[260899.80577177], [273457.23670181], [-300668.73878459]
+[-82869.74668636], [27515.34074719], [-87768.90401685]
+[113478.10483538], [153612.72561159], [-3825.60926184]
+[12922.69241684], [10624.71064253], [526426.02888055]
+[226895.44027292], [126714.70369821], [-125669.31023763]
+[62032.27254564], [7816.46521688], [76694.13212525]
+[95534.2662446], [-19946.19325405], [-142553.72878166]
+[121710.07540514], [-282354.82879737], [95069.64605817]
+[200207.81601613], [70902.01464469], [-184533.51281229]
+[-38622.52844024], [643619.65914332], [-320088.16969495]
+[153763.09408494], [977768.65991133], [-801110.95247073]
+[25336.70960611], [27847.88389211], [13778.53657464]
+[15107.64378258], [-107137.40456312], [67396.22944865]
+[-129366.11515226], [32784.94631608], [127919.43206497]
+[-145398.7601891], [19767.47497554], [141439.43299306]
+[28512.04808812], [187080.0690843], [-618418.6929009]
+[185449.68025621], [-108194.51300017], [51946.329357]
+[-11572.1799188], [-80734.74533917], [53539.96268366]
+[99564.96848808], [-137741.55615874], [-170733.14039388]
+[73369.13787257], [130748.30759927], [31264.68834689]
+[-6187.42485872], [55669.12570394], [-114651.51291331]
+[8413.63300633], [5621.92820893], [17689.75263642]
+[-18845.67827268], [14899.30151532], [-8064.04177251]
+[-353785.53644533], [-66255.57934856], [-477227.57590357]
+[-198752.51825717], [333938.38191993], [2748.06111382]
+[-312924.32759383], [-250130.82626583], [-278384.08450618]
+[345098.32075618], [225137.35907339], [-569839.53151408]
+[-216092.58781692], [120994.22363451], [-247163.04288626]
+[-246371.3819365], [589563.21221296], [321722.1753201]
+[131878.51022797], [-233413.12610551], [36258.91891798]
+[-151314.36450022], [-23144.35241323], [70415.34860968]
+[-440194.27440694], [-308867.52745129], [-386312.80761304]
+[-15204.87482278], [7347.94427448], [9642.83154562]
+[212609.45296851], [-707493.38514252], [-496933.18126686]
+[-863241.84997157], [-559385.05251068], [458965.68437782]
+[-28085.87120907], [-166788.82741614], [72228.94278764]
+[813127.59126533], [-335099.43260016], [-686066.60390839]
+[-757340.36320946], [-299757.08986563], [468877.52721055]
+[-44637.97742093], [-103240.40797604], [-149015.70057033]
+[-286091.29330631], [-322691.84934917], [236160.38282987]
+[-97642.20823693], [21222.42618554], [151212.6498558]
+[288413.57998447], [-200381.60308266], [-17764.73883176]
+[118843.91170309], [814.40634163], [86924.84577606]
+[634633.6442121], [-195445.00265934], [-630911.22615902]
+[35993.60386841], [129477.00788597], [-78432.32452557]
+[-4314.824674], [36206.07148992], [-48383.3699137]
+[366186.42220205], [469812.92513278], [-159149.12523919]
+[-14833.02435835], [-18439.3946985], [160338.79318018]
+[-750643.88681584], [-499767.07130215], [-92709.12856353]
+[-320562.91588877], [-729330.51944237], [-803740.64855878]
+[-190439.83759327], [-287278.5424429], [-32762.53430621]
+[29742.57293856], [128534.69447159], [-89605.22129123]
+[-796619.48693667], [268586.53959758], [668483.55929451]
+[-505618.8292345], [64929.04185002], [-408548.06735649]
+[-139298.39394802], [48262.62088644], [-251006.55455356]
+[-21370.68993511], [-28661.38796155], [-76124.37912979]
+[-24.97601871], [-7296.95790638], [10662.26855433]
+[25335.4761829], [523.12626599], [1257.19333039]
+[-7577.43708283], [8978.59923047], [12856.69937429]
+[-161470.47709967], [-225008.68694646], [-107095.42525744]
+[725678.95999745], [-176501.43448241], [555463.05738577]
+[350872.40988512], [-914900.72499357], [-173706.30141119]
+[-81973.87030808], [-53177.90985629], [24671.70260343]
+[432439.4185304], [-162231.72382422], [226661.47339314]
+[-95121.59789528], [48086.84819335], [265922.82508588]
+[265349.49446244], [437560.82692323], [-440646.14800407]
+[-226784.63272715], [-50317.01654212], [-7823.32857851]
+[-39170.4759955], [33967.80002707], [-8134.95188889]
+[561899.75761818], [521517.00437509], [221446.15612305]
+[-243806.71108688], [567715.99142563], [-458796.71691706]
+[498138.77016312], [921035.37640051], [199868.06683303]
+[-933757.61731222], [667179.80324241], [448996.22874222]
+[-13683.14935371], [15357.82455657], [-26911.61743852]
+[198661.39180132], [82425.40100017], [39439.36041441]
+[20445.89448116], [-31287.65269741], [19874.85490333]
+[-45942.86272468], [76487.64370153], [62251.11968345]
+[198214.8685177], [-498736.73300529], [-114412.09138194]
+[-295483.5127713], [-948767.57118132], [458247.98554095]
+[38093.63536193], [39115.92331371], [21581.27190746]
+[-289486.96417684], [252224.71373119], [279083.17655566]
+[223049.24651617], [-217749.96034068], [350218.18654474]
+[234552.23343784], [75841.31602968], [103011.24896905]
+[-151969.78007396], [438553.15377694], [899281.02187331]
+[-640364.9666269], [-433646.16126853], [250857.13644116]
+[-3427.22648053], [-64341.40948219], [-35287.69977238]
+[145898.80092779], [242231.64266535], [615796.57916118]
+[-518059.68305455], [410171.35871719], [21270.82193135]
+[-9988.52727402], [-95891.01255895], [-102320.97892874]
+[69548.95867893], [-351173.32740612], [98857.74030931]
+[-259788.31571449], [-696974.59037201], [756640.99701308]
+[-904297.83144785], [229386.54653797], [-538424.20260022]
+[-259318.4303559], [-763134.783557], [-936845.55723226]
+[-248215.96044798], [265196.17352725], [-61603.5909053]
+[-695426.4485069], [-483960.30288108], [-365866.9708916]
+[129037.16310197], [-469280.34478091], [87443.46158965]
+[-996494.58968335], [382386.69673119], [56546.31835252]
+[-25530.53359984], [135150.69388117], [156741.20840637]
+[-78658.31023647], [46422.93681627], [-54713.2803552]
+[29730.62895724], [-6758.67403195], [-23909.98003302]
+[828272.34790023], [715605.65992062], [-453556.1715844]
+[9037.24796165], [-3820.85274889], [-10080.81870672]
+[-38269.68886391], [9266.2011103], [10931.24016696]
+[434729.95064498], [22759.07028463], [-716888.69431575]
+[9765.33743912], [-102290.769658], [132975.98312099]
+[17303.11623367], [93486.87971393], [-134355.18157373]
+[7048.13936785], [-52260.75583234], [1520.88518704]
+[-838767.7107069], [990687.94629266], [25305.65555388]
+[-883690.30528393], [266124.23471195], [-304082.52416916]
+[286694.68408407], [-61686.19382297], [-387287.35157065]
+[-813146.36601376], [-281554.38545683], [-541515.27166274]
+[-93154.41866088], [-86924.72921478], [-64621.99557023]
+[-31188.26998909], [86170.45377687], [36029.08419219]
+[46037.71789478], [-115598.94434062], [-14275.79885251]
+[-795648.82993306], [390326.59809898], [-171285.98927321]
+[65443.28281573], [261900.71020871], [-15840.42733088]
+[-359620.35161696], [192269.11535265], [-114384.62835451]
+[-219708.81873312], [491780.37614079], [89778.13342882]
+[17511.23860072], [-1506.51263798], [3535.97602241]
+[-12728.36152099], [127756.61448818], [-80516.18788207]
+[521519.21132734], [533517.27916058], [-557606.29767028]
+[-167827.38585232], [-74997.89552911], [-148952.30475081]
+[52350.64278148], [9897.88962006], [46130.76422479]
+[-421854.45360122], [-228286.55583854], [364764.91601737]
+[103780.17237164], [-39320.14309637], [-8347.04523876]
+[-37089.11344948], [-430965.82065533], [-602647.72825271]
+[397.56837839], [8041.42069865], [8816.87289884]
+[91982.12533401], [660941.88343886], [631674.94937428]
+[-105505.82799415], [-42793.17780243], [56275.41262378]
+[29331.22861778], [-82533.65658405], [-74881.32718591]
+[-40023.29058535], [-20539.43821572], [-23458.21046617]
+[993450.14350906], [-927908.37016953], [-829248.02449238]
+[-57722.24347046], [-285392.73782206], [349817.50410933]
+[309022.03535151], [-504868.4179534], [177776.28035785]
+[641804.80974262], [361990.74769405], [182070.01983383]
+[-460700.0935261], [160485.5039966], [-467038.20557857]
+[-36613.3804555], [60634.54375747], [-50296.2247866]
+[146562.28303553], [-113543.39900417], [631583.50538553]
+[3014.73018899], [54189.51113957], [36594.94917597]
+[513765.39443977], [-62139.28638271], [-453265.80318194]
+[14531.84613087], [-162879.11323075], [-609481.00793566]
+[-98760.04428428], [-326825.84592682], [925420.72204004]
+[-8469.38081899], [-33455.64546543], [-62701.72774443]
+[-460944.24088847], [335469.1604718], [-349010.22870406]
+[259.75823707], [563317.52804118], [219980.5690959]
+[37379.99399164], [98255.38595319], [-122468.08918452]
+[236539.91186774], [38310.71283461], [-711971.82653168]
+[50739.21839018], [5474.84640124], [43864.7876455]
+[132760.12110506], [414025.28498035], [428739.7972034]
+[-161791.76000052], [473049.72158707], [-20485.09246934]
+[244245.81225073], [-345657.69963816], [-114361.65289174]
+[242467.82132364], [-124536.6930046], [33267.38869607]
+[529025.72704984], [-797832.24293989], [27118.97040048]
+[-66876.72504888], [30588.3514663], [39530.41567717]
+[305496.38870384], [-287220.81015324], [-736624.96877889]
+[242874.63789704], [255335.93293935], [-109039.38993668]
+[-777248.62565206], [-286085.8696576], [835255.20400034]
+[17955.70656435], [42045.12686946], [-38662.93055926]
+[131478.73798507], [-206524.72884245], [115893.49243906]
+[-483432.13100174], [-598707.48622548], [-108995.27130217]
+[645114.37408367], [975550.76940656], [220789.11049327]
+[965450.53120252], [274744.19164204], [276744.38034654]
+[-963178.74345151], [366875.00076233], [-378180.30160039]
+[-205923.68809352], [4204.04200171], [-173052.8640186]
+[-21368.78870967], [1253.1860612], [-32223.85721673]
+[463823.67498287], [868436.71138636], [-299818.01940327]
+[186486.43412581], [-818409.81185932], [-498311.54098969]
+[-290012.33650232], [50730.24784499], [-320304.21434093]
+[-18675.18477606], [-151568.93574032], [-186087.06982532]
+[199670.97764139], [-72152.42022792], [88422.68407082]
+[61737.05726613], [-13452.56442512], [-10682.978874]
+[193333.07116692], [-253086.83604778], [-7847.60951457]
+[-22573.28078461], [-160708.16338086], [-25706.71496946]
+[22744.17259869], [-90953.55534158], [88499.22985163]
+[800493.0556637], [843641.55842106], [-558322.66346824]
+[67263.9057771], [-65102.83615552], [74124.09084912]
+[-222157.21707389], [-467713.88219276], [790559.49686161]
+[-600814.41150439], [-775107.76639152], [262976.38661836]
+[475778.74779907], [-379443.29154466], [-83747.47814364]
+[286427.24708764], [110769.62489768], [63002.30043629]
+[-727222.53243771], [14900.24636876], [-917490.14149372]
+[616620.89624292], [406135.33117951], [-105148.09798199]
+[182365.33754626], [-114598.91236086], [303898.71331761]
+[30874.515094], [5391.89472114], [19791.59666907]
+[265396.49207235], [-14503.37791773], [-290820.06175124]
+[20776.29064701], [-6411.90402338], [27292.21832421]
+[164261.49554414], [-12532.23196623], [-125368.39700697]
+[16159.39837764], [21851.32020558], [4883.447338]
+[-199919.64449351], [-798229.60404649], [783496.2978618]
+[162611.7381942], [-14028.41258881], [-32513.47206883]
+[44905.44890024], [-136952.89205346], [-190699.50972668]
+[58600.45733468], [-106809.30662544], [11804.94158649]
+[167677.57851696], [136543.71955819], [-190175.30501039]
+[-385445.3828322], [924127.83389529], [392955.41363568]
+[-1110.45439016], [37040.00560726], [8127.89517835]
+[115586.08765444], [182872.22198082], [52285.07931435]
+[-13066.68327242], [32885.98697558], [54740.84354909]
+[-136730.28763685], [-198091.73613585], [172790.99355345]
+[80115.60688632], [-447401.1350619], [75508.05194809]
+[29210.33428934], [31175.5655759], [-6420.92120964]
+[17517.23499654], [-5994.03895325], [-14489.38467461]
+[132415.93015637], [46100.33809292], [168448.25175716]
+[-19880.0699633], [-52183.54323039], [-44237.81015945]
+[-2832.74282768], [-620.84361109], [-3224.56212225]
+[-34201.16315542], [-39536.25035745], [-357509.60780912]
+[108510.78385291], [-109960.0730707], [-20991.30337842]
+[84108.79491797], [-6762.50387817], [-60313.18167305]
+[78626.09185814], [140227.12964727], [-72433.5598907]
+[-249549.56623291], [375808.80818103], [-168827.75903498]
+[12875.54362067], [81206.59989275], [-131390.35605793]
+[66835.14034167], [-249060.16870555], [-389815.54492765]
+[-1499.81268799], [16124.27298658], [17024.92068549]
+[3057.50998108], [-16864.6357207], [-10173.41429156]
+[-348881.58491564], [-188715.79772362], [-23861.55951097]
+[-50530.36602509], [535013.98449097], [-1217.49188744]
+[370580.30332407], [-48762.06002621], [161256.91703195]
+[-93808.74163421], [-32237.62061461], [-148698.86831326]
+[-171041.16454809], [-401433.26845632], [-124744.99777719]
+[191030.22427855], [304520.41425913], [-956246.18356652]
+[108548.43637634], [71944.97086062], [-99261.25923581]
+[102685.88233728], [-120809.24512411], [113237.21300164]
+[331838.18897847], [-303072.53518824], [-405735.13040091]
+[-156321.20603362], [-666.20426943], [45709.20566055]
+[141348.5046948], [174782.32875932], [230454.67065437]
+[381720.97957341], [492410.67851779], [526256.1100266]
+[-56453.26863335], [139688.47870508], [-266780.54682201]
+[117079.41021475], [-474034.22289336], [169512.19262969]
+[2236.0491184], [-17311.83813759], [4489.77212976]
+[18607.68763255], [-3112.17896919], [4245.64412579]
+[-7941.518746], [-114912.71312292], [34916.88874609]
+[-3775.59480011], [5275.80334172], [11753.04043844]
+[20461.72589044], [-257703.93888756], [-231554.38051279]
+[18807.7156753], [461850.64133228], [-421080.88702916]
+[48550.13481704], [45083.43623176], [40810.32008507]
+[44669.8163494], [-45464.37471561], [54667.82068647]
+[143764.917108], [-194963.96842611], [437337.08123132]
+[46887.28082255], [166547.83070285], [-102711.13539485]
+[254898.26481945], [-546804.07416933], [-860917.13653956]
+[88953.43898349], [-286731.06093501], [-398169.75836548]
+[15816.92429275], [839099.56385478], [949930.23448519]
+[23701.04226714], [39146.41673251], [4946.75802596]
+[43288.88331799], [-563626.00079006], [-265862.34638322]
+[58534.09937335], [66335.31257751], [26000.87982793]
+[-972634.63934651], [190128.14427746], [-140937.31248831]
+[-71081.24497602], [-4818.66960968], [-49174.83220089]
+[-19166.07472312], [63243.4311301], [-24010.25442917]
+[-231243.23737175], [-165691.06337252], [-39856.96634655]
+[128541.15764572], [-16652.87830681], [77635.09083578]
+[252226.76622655], [-173290.54628176], [32787.93661916]
+[-224232.28984803], [-196806.71513078], [-344623.92796515]
+[-2404.93012096], [135504.13193467], [-193624.05321331]
+[65026.87920878], [212886.73825286], [528729.0498435]
+[-480576.10898115], [-264498.70161634], [-178610.39866833]
+[-91931.67514607], [6756.98629839], [-31368.53302908]
+[194675.72669053], [581910.233618], [982747.92496598]
+[-80673.51290819], [777430.50728257], [-896161.11463314]
+[-817905.70819933], [-421745.18095499], [-481768.3008538]
+[123950.37716366], [67545.76664174], [166755.34595274]
+[567657.74783346], [175007.25722146], [-460264.29252176]
+[20101.40125464], [63548.67891387], [-72545.10125007]
+[831675.49603764], [-375576.25618492], [-174399.34839746]
+[-65427.01229949], [-55109.90950519], [-108164.87552813]
+[13266.24877284], [42341.86036345], [-2651.96498359]
+[122573.20440698], [128112.57366612], [94890.57941654]
+[790466.21768849], [101289.18909586], [-288753.38069794]
+[255296.10851593], [18343.30168696], [-61493.98934023]
+[85568.7496482], [-363685.29862536], [-84912.38289777]
+[-91926.96800912], [111156.13740791], [29792.54814984]
+[596350.5144995], [257897.67801633], [312373.05369943]
+[-421.12512676], [-836.27491353], [7609.5804003]
+[-19927.7974089], [21971.86716133], [67279.97392649]
+[-181146.5743905], [344957.28789788], [328656.3495138]
+[69201.7571971], [129839.2236417], [-649620.3546411]
+[-63582.22020432], [5338.7772189], [8834.37593867]
+[149993.06621554], [282864.22067331], [172056.25812105]
+[-433232.63380866], [-638048.93042119], [-1169.66490864]
+[84089.75798741], [-53836.39947795], [721011.47861241]
+[86952.39440321], [-136188.17738302], [53365.69005286]
+[-57605.57239095], [9405.33743977], [-21492.20796916]
+[73188.35418483], [97277.58823253], [73400.08906965]
+[66156.51360534], [-110961.73947011], [-28789.24404023]
+[210470.26788195], [-44119.91576539], [382867.8721311]
+[37936.27140263], [21304.59010688], [114196.06071716]
+[-397028.7538439], [-936781.08084229], [49838.00925888]
+[-2634.11805323], [-32792.08557443], [381103.20555176]
+[-7575.57971772], [5741.93414076], [10231.29442527]
+[55380.16094844], [58213.39353192], [3039.4636636]
+[-9558.81730788], [-49152.40460374], [-7202.93486103]
+[-7027.52237884], [199463.40626852], [-115303.50017652]
+[-21946.90069515], [-588423.45133962], [92763.94041767]
+[310649.43447864], [-405341.81408194], [398466.87410608]
+[-67799.86489843], [-262848.4808592], [71502.93097678]
+[-279889.3966502], [-132430.42469663], [-197236.93055064]
+[49169.41927392], [-62028.54510019], [-64832.22054467]
+[-18568.1044782], [-535.33900681], [-11664.33108269]
+[-8377.39896482], [-61123.97571467], [81325.01455083]
+[-17427.07834128], [-103774.27500509], [-7353.9095328]
+[43694.773623], [-74130.75633187], [-118673.62128971]
+[558699.4590269], [-40914.58325425], [-415079.50809045]
+[848267.90552927], [-565349.81388744], [-982073.05654651]
+[-24408.58998202], [49241.64014602], [-39736.03162724]
+[8963.0007454], [-61064.10504246], [-102259.1403772]
+[-107156.59067038], [-42137.25346092], [-21406.21008573]
+[-24153.00213697], [-31718.52956263], [-47903.91339071]
+[54481.34757704], [72466.34196609], [-76448.98046984]
+[-776078.25209675], [-815598.74432953], [-997185.03048936]
+[-108739.03967329], [27528.13980571], [-89995.96570232]
+[632.03845204], [-75340.41356702], [-43567.47665169]
+[224.44269963], [-13545.46857821], [36134.40854444]
+[528163.70871793], [-64578.64493275], [816705.93164889]
+[147548.23848949], [73269.51519619], [914575.39345373]
+[-745114.75979667], [-103782.11601422], [-328915.40062089]
+[538580.62952221], [-9295.90357369], [126040.2908732]
+[-891386.44276237], [688042.91178429], [287638.48487243]
+[-46699.55290006], [-3067.70058043], [-32089.54704389]
+[222733.07895514], [136226.13828069], [-81620.58367339]
+[-37583.68495078], [10666.13889315], [-10439.51369391]
+[-50018.96392237], [383844.13488821], [-159474.30469867]
+[789468.52255614], [-280730.7416823], [71102.36758779]
+[-403663.36134419], [-74293.50665703], [-128846.85702309]
+[862765.46517001], [-216247.58978689], [-95473.56465635]
+[-15493.26290924], [7399.17059896], [16392.64776274]
+[-143047.76955462], [124469.81720558], [178049.41524057]
+[121929.81498154], [34034.39167622], [-63789.43197584]
+[-20093.30562102], [16265.6460052], [5214.67774294]
+[109627.66594499], [701713.3761029], [782007.05876575]
+[29890.68423174], [-58207.59689307], [238010.83580682]
+[286370.94202513], [843390.85487548], [52077.82275836]
+[-95761.68311412], [-72906.41266039], [90298.73764503]
+[-320516.37802659], [158050.61769992], [661245.17422913]
+[-86197.69291928], [23601.49407114], [31584.79986951]
+[49372.50423188], [705402.94244148], [-213297.88765341]
+[-196819.65088815], [32411.01857177], [171175.16018917]
+[-394660.8261005], [-392687.75511131], [-396022.76208638]
+[-10772.9312841], [44450.42595836], [-22222.70366339]
+[34021.01672704], [-2044.13457873], [14866.75340299]
+[-871612.94492257], [-796529.54636272], [-911939.97631688]
+[815674.96622307], [-470837.48580618], [452677.382724]
+[-47028.26069595], [-266728.29614266], [123525.53742332]
+[-113960.13351647], [-221352.90790674], [-136072.11984963]
+[602413.50819679], [682654.25096061], [475898.65839859]
+[-181992.45689497], [-40989.61625763], [186859.78693952]
+[66240.91350363], [-34823.21393664], [36377.28786351]
+[378491.8044211], [-521678.25218146], [-629854.10442134]
+[-638383.65030635], [-806804.42385004], [32046.74567334]
+[151565.22031991], [354789.10341134], [-631793.35177256]
+[78518.33455419], [149561.49385128], [-115521.77914464]
+[212865.97389371], [137412.51663199], [37834.83252366]
+[-632242.67584002], [258040.94023627], [77735.72887976]
+[13460.09447885], [-16224.00313435], [-5544.89523344]
+[458287.15158028], [257542.30430055], [-550213.60932005]
+[416842.78719067], [-41161.04695543], [-187219.07656646]
+[-20179.83698193], [20456.38264829], [65658.994036]
+[815398.78076672], [8184.9282908], [-840720.51686724]
+[-32100.21579249], [96974.76511261], [-8192.76814162]
+[66263.5328335], [11243.27360518], [-68208.14241967]
+[-147107.38351359], [-187193.74413842], [-153595.21774187]
+[199593.11220537], [-358028.9233529], [243876.13171576]
+[36926.41287106], [34915.1846676], [-55329.47201215]
+[36347.73263931], [11167.35853114], [7309.54310949]
+[-150084.35585971], [984526.02414853], [467821.94763795]
+[54334.33087605], [-56052.03812675], [202355.32353212]
+[327198.85210134], [391538.39978162], [180828.08037327]
+[-97813.85988644], [62422.52413528], [-166250.42322575]
+[30279.76949135], [341720.78454962], [-58068.15440301]
+[16602.34007112], [283500.94031045], [-72145.12714656]
+[-425354.1418728], [-49687.03002633], [-844927.8604207]
+[1472.17746825], [191129.46491305], [55686.51978373]
+[-105289.96536837], [345442.17494078], [18523.53021281]
+[123092.60471816], [249831.35633882], [121728.10966187]
+[-178973.26303006], [17711.8468648], [119335.92300192]
+[-11802.05983718], [-26176.18400806], [45919.09530444]
+[40947.23642757], [-1936.92108825], [-94541.01118846]
+[21287.86711268], [85820.00656817], [83110.46658562]
+[27827.35769608], [55823.72735145], [122109.19263189]
+[-276553.9631389], [-25648.04037416], [568759.78714827]
+[-30972.2053511], [18841.75063637], [-31172.91844205]
+[166710.52772584], [214490.66921433], [-899631.19482432]
+[-9090.20909618], [-41482.78455834], [-13369.77391619]
+[7670.46903285], [12810.15260671], [-6184.27177611]
+[-44493.85678391], [21203.16992086], [-87903.11540144]
+[297633.03067038], [86619.43042077], [-978643.84828805]
+[232706.12920893], [41883.10906299], [82946.90075398]
+[-402554.46532742], [681844.1108277], [-461546.32989967]
+[481574.39855027], [418503.64326178], [428942.97482443]
+[55345.63911324], [28617.77388813], [-124790.7906781]
+[30923.99689769], [61516.99974299], [102621.39178033]
+[-31861.99700754], [-382242.92350124], [62488.37388964]
+[35114.29388365], [-10712.19838754], [16334.7693322]
+[71409.59997382], [-5812.39913608], [99635.65110681]
+[51271.61501106], [-161713.60663889], [-5372.96429692]
+[-4171.98784273], [85612.47529481], [-16912.97585372]
+[119922.8879238], [100702.23405617], [-6680.19446344]
+[4416.91738003], [-87201.77090496], [4337.18188006]
+[8938.12148102], [-46634.97207212], [80708.06385645]
+[-196292.69331372], [809670.63351074], [109698.64709225]
+[613974.58638339], [290990.03653351], [-980416.49770515]
+[107310.26389389], [-186980.43887124], [-185197.45574023]
+[331769.61568012], [-202083.52029668], [-357172.32047807]
+[452760.34605106], [964216.65719437], [-972808.02053085]
+[-139297.42558925], [-75851.18479828], [-171595.88037356]
+[-245229.6578814], [-174260.7574464], [-159304.95686381]
+[283479.57785093], [-208181.03924996], [-179176.39718666]
+[259127.78255293], [3585.28390968], [456411.21300656]
+[-9316.99073954], [10135.18492247], [32505.757182]
+[-444579.35545537], [-523118.33847864], [76327.76395619]
+[-155743.44880094], [-278819.37725451], [284484.1894456]
+[687437.56902743], [200506.17246581], [-79643.55564223]
+[-2702.5971655], [-144897.90713822], [1353.25166373]
+[535936.00999466], [105091.45626302], [-788228.77434265]
+[47812.90421], [383474.04469497], [-355182.63304257]
+[-4438.19153168], [-5409.95177199], [-38246.06852875]
+[-123824.83903716], [-79215.19077061], [-141245.89252046]
+[-62234.19267426], [-53717.20467644], [-7844.13514548]
+[98315.76034609], [107820.54497918], [-56942.03101006]
+[228796.55518288], [-38155.46845537], [-386362.30468045]
+[133288.83612685], [190443.66789482], [-57131.22293837]
+[45749.02101265], [179582.61534003], [-80757.15769925]
+[-43031.83515079], [-166419.29733097], [-147942.42271169]
+[-10678.62348315], [103023.18696174], [-209953.21591742]
+[475635.66541884], [53057.53716672], [84122.70203118]
+[-72602.74313314], [23052.33655687], [21150.88183506]
+[11352.18979181], [-259575.10197521], [365579.06888089]
+[29191.81306291], [33700.46182537], [97671.18110587]
+[-89309.64530996], [304430.5612302], [119171.92847318]
+[61480.59016136], [57497.69317116], [-33794.4866282]
+[-13731.5661217], [-2813.39144653], [37931.99986566]
+[24609.49938575], [-41385.18264708], [-1101.16459863]
+[10492.00788225], [-600681.36991072], [-56612.44477127]
+[97899.54591971], [28738.34647856], [111721.32157243]
+[254984.82009531], [149167.5233042], [343329.71036072]
+[-197281.84344665], [605478.33651743], [-326169.23051733]
+[-380583.46001931], [290489.74908323], [129031.90506225]
+[-220.81489061], [96155.68697447], [29179.71515034]
+[-27711.97709668], [3064.85733566], [-34173.07626896]
+[305824.25116597], [-60102.27889492], [-229959.54709768]
+[105241.39539296], [-72070.29875889], [-4566.96459428]
+[414858.29235123], [-370331.20533403], [-583739.31732733]
+[115478.24185574], [-102698.56337908], [55492.33509612]
+[379195.83230078], [511702.31542281], [283977.93114957]
+[568886.98685288], [-265363.68661934], [-360808.88553213]
+[71498.00112556], [-47997.10874952], [224246.70874603]
+[-90961.73188458], [40238.67006549], [61913.57566961]
+[-46604.61644051], [-206889.24147341], [66147.69027239]
+[180686.66107628], [90343.52601713], [52315.9805085]
+[198568.23098479], [-287233.84833803], [-69501.22064184]
+[-253949.42923348], [874432.22936957], [554596.18706076]
+[712984.63266547], [19563.78960012], [-26013.04629968]
+[-311771.65489077], [-127671.79676098], [182440.99347084]
+[-383340.3364957], [-45089.0768086], [-172840.43155156]
+[83963.07749402], [-41550.79401314], [-63582.50205165]
+[-22716.97628098], [85896.552925], [85506.09162676]
+[-339271.60843785], [-522693.32125702], [-332557.3949686]
+[-179730.70072014], [4894.29252121], [-22551.5357973]
+[-16716.12409144], [6700.40139858], [4691.55918336]
+[-270965.44342636], [50169.44789067], [-34566.47025009]
+[-779951.63434974], [-273220.11006136], [550311.79338987]
+[-274579.94265097], [-147971.47224098], [13866.39898587]
+[-179457.97785171], [-27935.01580929], [-28331.72745837]
+[-636762.54703299], [-216194.55633411], [199366.79114044]
+[76297.01396037], [-111181.85941803], [-317574.58422294]
+[278699.97056423], [140070.00822538], [-512614.08604873]
+[-455260.01744025], [-194704.75574867], [-25963.7380337]
+[297186.54298427], [-70344.31105643], [-39489.05862379]
+[6087.92702696], [32214.50283545], [-118802.10700437]
+[-144380.69189349], [373619.09466714], [254268.55649166]
+[-95895.47955046], [-211119.78762606], [-644710.30547336]
+[-109584.6796374], [3802.110288], [55533.52410965]
+[-98962.62533124], [1135.7992771], [-128808.15282375]
+[-146976.68250473], [-136465.70733692], [-26648.57141912]
+[-64486.34952226], [-20618.98921094], [-99065.04373675]
+[14032.43013307], [27478.23691567], [38389.88114275]
+[420504.85813497], [195738.279347], [279720.35320441]
+[-730261.48104856], [-130155.12988131], [607372.68836565]
+[958766.21518261], [-882184.32063721], [501868.09795865]
+[-63659.8115325], [17945.95769315], [-178441.5672061]
+[-537432.6998275], [-187514.37140539], [7453.68509216]
+[726.59549018], [-13868.1815108], [15796.49983529]
+[-608312.95397528], [148605.63636377], [-151789.64348141]
+[122820.66245017], [5152.99262501], [-29969.88861242]
+[949766.38184095], [267814.78074703], [-333427.87413051]
+[14211.6913916], [-28546.75350827], [11631.55098801]
+[8700.15276092], [-5773.29029872], [22511.03169647]
+[657913.25487868], [-240101.13272163], [-200690.51003535]
+[40506.47552299], [-35133.98946851], [113945.23150881]
+[-1414.639174], [-232275.23147396], [62878.02284219]
+[180463.6811608], [-211682.46258771], [-68320.09217829]
+[-18539.4431509], [12724.83796225], [74541.22766003]
+[-15694.09556446], [29855.66906848], [-24434.79718126]
+[183539.90585636], [-104012.96746694], [212254.25450551]
+[497407.96562879], [-290210.1456328], [361823.24702884]
+[-50118.7309196], [-162706.20093948], [79839.30551877]
+[418550.03714711], [175941.6140589], [15453.79686778]
+[19688.55420187], [-82076.13009382], [46686.59300651]
+[116701.21529032], [-76478.36482014], [-328161.87077965]
+[323470.74950776], [72644.96557262], [327745.39319232]
+[-151872.51144384], [-100780.26574856], [-122603.02756819]
+[676656.17898313], [-280302.11286501], [34362.66700684]
+[525616.07820248], [658866.83702675], [-18859.51141421]
+[-237700.96014465], [534533.1212859], [-687481.44998477]
+[-1877.6691136], [10024.32701224], [8595.00234629]
+[-12739.51914658], [-8344.15659369], [17002.4148344]
+[235077.79239371], [263958.74236487], [402027.20577129]
+[-134916.5098234], [-66682.04312395], [966610.25173907]
+[243337.61609086], [-518442.60932958], [-110777.40875106]
+[-557225.75370024], [195282.5785456], [-190828.61671023]
+[-21875.91571295], [-12435.34672541], [174.40435118]
+[104098.78562993], [186029.94225358], [-118805.21574723]
+[51136.07143041], [-4533.76883612], [-129486.18120896]
+[-11603.32272474], [-196780.29724719], [-169021.07990417]
+[-5054.81494854], [-5645.59385156], [-3006.29298101]
+[-154118.15046746], [58066.58810104], [256132.86337697]
+[-36724.38639112], [36275.52048536], [-2505.97882979]
+[-685609.07105548], [-97948.70541394], [-81247.30695809]
+[917896.44675041], [-596873.28940891], [-158683.91146815]
+[-2545.01316685], [7931.91892429], [-4984.38363286]
+[10845.84185531], [234426.28785088], [95714.10700022]
+[-917.42660635], [-574069.85953007], [-194901.58795294]
+[-1000.16281042], [16733.94647415], [20758.65053162]
+[86176.19158329], [-147410.89012604], [124008.00187753]
+[37723.8403457], [-217646.42688638], [494965.95140186]
+[51191.96068133], [72987.8858422], [101740.97295474]
+[-36752.43811073], [8160.93468705], [-66537.69754521]
+[610764.19380362], [429689.7590091], [185961.19339115]
+[84592.27131424], [857251.91586128], [721943.96131492]
+[113130.09133379], [653679.60314325], [-839302.31171668]
+[-14561.62836546], [-19751.7744744], [87209.97616343]
+[-687304.51668403], [146569.57981374], [-360390.46834362]
+[-208487.68793253], [296320.18138041], [149113.93147743]
+[45387.92700129], [-613391.6653308], [-579011.71559628]
+[-166843.932916], [-205109.39201362], [191706.8850248]
+[32258.30492948], [-3347.96440604], [32008.06502187]
+[38765.24760664], [46937.53064316], [8096.74785343]
+[24999.3965888], [19820.17698493], [165666.71030831]
+[332013.74311527], [-68667.32571314], [-340893.51150195]
+[141928.97094906], [19112.02468811], [-363433.30903475]
+[248138.19535527], [28970.92230218], [-3551.74207987]
+[-142526.61128303], [-190691.00871715], [-149011.26201499]
+[60130.93309719], [-62881.14189375], [281965.49425303]
+[-91482.76957332], [51271.15237346], [-346840.0696003]
+[666726.93731648], [-457858.97542109], [903346.34994783]
+[726626.30491659], [97963.05196476], [-474719.96526121]
+[-487681.61636413], [-374220.71723843], [-80783.2240787]
+[-213584.41954853], [407063.36207719], [-399022.65742768]
+[-60371.57070203], [-169814.50230754], [-226584.97178217]
+[-10037.82737011], [-142223.76675911], [-2770.44977011]
+[94908.12648484], [143083.94717779], [193404.03429727]
+[62801.88997986], [-3782.41569993], [-29644.22239346]
+[64984.84724464], [135987.66585466], [6697.3557177]
+[493235.50421109], [-522100.27000399], [-499204.91381268]
+[-173796.4316766], [125291.52316785], [147642.72031965]
+[-964444.60072085], [416693.84030004], [610701.21186873]
+[-959414.56790273], [-118006.53843503], [415968.21549788]
+[628771.99949682], [-286631.74434385], [-620236.3911233]
+[-24411.00121737], [-9653.25080278], [-9230.6197042]
+[67205.94519478], [37110.55036091], [5345.34266172]
+[8176.71449065], [-37064.35673252], [46569.46115029]
+[-136249.78802738], [77834.1214168], [51547.14560589]
+[-59158.71158178], [-123307.79488894], [-28943.82589352]
+[-221341.05048344], [-10876.57179359], [-62834.44647272]
+[1107.80132527], [8705.39190326], [1380.244343]
+[92367.9119277], [-50534.74316208], [8310.75429004]
+[332460.38055291], [555170.76384047], [-112379.79422182]
+[360103.17617531], [69803.22596839], [178248.15499755]
+[74852.93417015], [173599.84346239], [-41494.78902653]
+[-295049.08604153], [-134976.0583156], [-434683.63561546]
+[600034.74473313], [488253.16992851], [-558630.38826957]
+[3391.73079479], [-24683.37427434], [-52301.28305465]
+[68540.18724976], [-572593.37209524], [-346148.72111443]
+[-134170.22049426], [-6075.91291029], [79296.86385819]
+[-578436.33873332], [-745109.55213902], [-457938.06947872]
+[337894.51925892], [399571.84340026], [207429.91101952]
+[-78208.3636811], [42843.15222172], [-113688.87236966]
+[-6688.65708201], [-68906.44991397], [-49743.20324679]
+[-12595.51789431], [-44882.39698103], [-41299.36239718]
+[155876.40648491], [162036.59725648], [611671.52409057]
+[-99912.7459179], [-73441.36992151], [174633.0693883]
+[-565782.00880831], [-695556.84636775], [214534.4307492]
+[-53067.89600365], [143545.62061633], [-27304.98647014]
+[-983861.16141489], [-683394.17966811], [451447.17325737]
+[11516.42297852], [13193.89171767], [-19107.03317681]
+[-312125.8927404], [-127327.49140459], [127696.86642168]
+[-4695.05102571], [-6163.41509806], [74370.00725738]
+[564850.99467863], [-42923.05453944], [-545381.94372569]
+[243527.88252484], [-144849.63674275], [34145.63829749]
+[173840.08245486], [80539.25508408], [22653.0332643]
+[104150.02790565], [-384685.09077661], [698172.00986954]
+[728795.29426774], [668006.66297246], [345992.37792296]
+[-415945.04633959], [-93238.09655815], [262212.73499097]
+[-702012.65871984], [-17219.41070957], [-138557.93164365]
+[32876.98353192], [427305.73518151], [405708.84025113]
+[-10231.10992171], [400321.23262735], [245615.02573417]
+[-400575.40344377], [-458210.4154795], [-184916.91352149]
+[67297.02400983], [141812.656953], [75203.43018313]
+[74437.10043656], [-72006.13648778], [-175986.2750189]
+[-626405.50725765], [157236.91549649], [-274176.82004893]
+[-82366.52204227], [-59768.80367051], [-205019.37329642]
+[-100152.01685229], [-41626.28093332], [1800.25524487]
+[6871.1952267], [-411725.00890432], [252921.9418925]
+[459973.19379481], [-3108.03511842], [-679109.4783329]
+[-7146.51621673], [99354.53455626], [-5715.46309909]
+[-424084.30298875], [-147172.55654482], [405181.97864188]
+[-166448.24046532], [306632.98205958], [-72128.08362223]
+[45162.73777188], [-223095.27247814], [44661.309131]
+[22178.5056185], [16351.09631574], [156620.79184835]
+[29590.72263401], [8708.91938219], [-15834.77043788]
+[207126.95099224], [14082.64120227], [15543.46836807]
+[-153846.27861108], [-508781.18159625], [-631388.17551623]
+[69877.24985044], [41701.98933363], [-10562.08864006]
+[-296930.54498696], [-65153.24205447], [-7057.65635263]
+[835353.20770128], [197671.56619031], [443888.70707073]
+[-17015.84659228], [32287.31427527], [-456536.00810656]
+[-672613.11936228], [-303826.83397535], [905241.64765964]
+[250062.88804174], [25233.98776418], [-298783.67896492]
+[36819.89480453], [-617981.21962094], [124969.20895764]
+[-515394.1808858], [-286691.17636985], [-983732.27509374]
+[-17429.5563392], [-3533.29120372], [-43127.55316336]
+[35626.98132399], [16683.14678373], [30031.82888629]
+[56649.87372747], [-13037.24618451], [-101725.53272288]
+[42997.72119244], [-30713.27292068], [21400.73272009]
+[-128426.32661691], [-362010.3557053], [394623.63686577]
+[-520982.13357796], [169207.45384332], [-511732.99717552]
+[-586790.28026199], [122574.43382178], [-461079.41950628]
+[396329.99757217], [-117517.18057795], [-305087.55835068]
+[-313739.02975556], [-119730.05458728], [131889.80100431]
+[468276.54011078], [755739.87191001], [787268.85256206]
+[66529.4333819], [119328.60345394], [-290769.64276119]
+[-238456.23102403], [254519.94945702], [105558.10515632]
+[50762.40703289], [489673.09597941], [-463716.53703256]
+[82364.49723088], [-243193.80205716], [-141879.41726302]
+[643942.58290206], [-246888.83513018], [530340.10790176]
+[180559.19863284], [71298.95997366], [155915.70376875]
+[697257.82626607], [167546.1409159], [437057.92981639]
+[34708.36823301], [-62114.02870015], [-4141.96288647]
+[18250.7426503], [-255504.80023208], [-229806.48239678]
+[362003.47910318], [-132546.60488592], [909600.88384934]
+[80728.07376719], [34175.4180943], [-151875.30371993]
+[-109674.82688821], [78987.04015887], [151830.32798777]
+[2686.98952975], [69244.41468932], [88389.69544563]
+[-45379.49710881], [-213277.43699305], [793499.39695259]
+[677486.41330874], [-90826.93504813], [-342363.89654606]
+[177334.83207669], [-243177.86381673], [316872.20034225]
+[173559.28505153], [-46491.44791038], [-200792.44894569]
+[-266403.94058701], [-24183.97738415], [-976899.47450094]
+[607591.48372039], [372047.4684636], [82363.21765634]
+[-941034.91519963], [-759391.28359002], [821137.55802574]
+[450819.70539989], [-952877.92280053], [479046.5618062]
+[75736.30632403], [19594.21036331], [101328.19066519]
+[-67230.88992301], [176800.14849368], [-132012.78989533]
+[67820.95244724], [51011.94366528], [17787.08524391]
+[345836.35201337], [-103242.04768786], [-443594.42465278]
+[7942.90337451], [24683.73202411], [25753.19293263]
+[-33901.23869271], [-10295.61996313], [-23562.42907861]
+[89720.95042635], [-67776.04370995], [52274.84737626]
+[-172333.00038376], [480093.01536787], [260088.99644168]
+[405492.96324428], [-97634.40589419], [-66552.22934307]
+[48232.25723199], [-50158.62279798], [78012.49170242]
+[-419813.0538529], [785820.80229421], [-308298.78363576]
+[755763.66549405], [-207530.44957133], [149440.65862867]
+[45527.02140093], [-65240.06091702], [91638.73308725]
+[9044.69401775], [-7321.1678444], [3310.80175384]
+[-102401.57442677], [-35342.95153194], [-8630.83522648]
+[-234608.98860634], [-70323.51800574], [121609.39794482]
+[3964.55205823], [24960.92582117], [18939.30328278]
+[-8581.87829336], [-127210.42795276], [-408.71642558]
+[110744.81625749], [-203863.83965036], [-248647.51824243]
+[151246.95348778], [-419260.54174285], [-145856.16933729]
+[-40533.8771883], [141186.73409737], [-21335.21893927]
+[-264760.31828641], [-303613.0050141], [-86626.91251254]
+[21288.3420284], [-96798.76280252], [-23577.71230806]
+[-3784.17996675], [-20058.42924433], [26082.31858364]
+[33153.18542591], [-112094.40264074], [183751.87368054]
+[-381730.80646429], [612185.79087862], [-551445.55436788]
+[50146.0609465], [218398.99971439], [-159707.77776642]
+[307347.06848659], [-544100.37243172], [352788.96738647]
+[145791.04752154], [-181224.75528141], [-109212.67653564]
+[-518898.64313083], [-435653.16261538], [314102.33652385]
+[-6663.68106136], [20021.29848503], [13307.19537667]
+[452563.57136952], [912377.14381376], [683676.12339344]
+[113185.73089634], [14892.71288587], [252266.86421958]
+[188926.97359222], [-160658.62751461], [-21760.52008504]
+[22977.52465802], [160124.74019622], [-103530.13769205]
+[36598.15767319], [590170.24041158], [619433.4130608]
+[-875436.81998351], [-987804.72793871], [-894935.52270896]
+[-49572.30854261], [807696.1625253], [-929955.91708509]
+[60074.03560858], [-59957.02546085], [-101032.89433828]
+[88619.13328276], [-101236.88378079], [25563.52254488]
+[509933.20242156], [42109.37900701], [276144.5985569]
+[8695.95540591], [-59340.00619974], [28606.94109497]
+[-20300.18682184], [-59383.4859987], [-38145.01157834]
+[-113017.31600737], [-170357.624764], [-27903.32759832]
+[-16247.44485548], [63816.94528645], [7278.85141257]
+[72219.86887912], [-7534.47454813], [55188.42221551]
+[-273865.62552959], [747045.49719777], [-102076.75877113]
+[-282360.45778199], [-497495.07944772], [550707.91336251]
+[337153.36920163], [219213.67697511], [-465024.44733871]
+[-144521.71204691], [281423.57567209], [691078.03492184]
+[-48319.60495532], [-194506.70484645], [-72605.02127531]
+[-157440.76875957], [-34617.03209844], [645380.97774078]
+[535765.4004494], [544104.90176033], [-704638.62704142]
+[-137073.15487611], [-41623.20940046], [-2215.55632141]
+[54206.94814541], [35251.84748583], [5485.29146623]
+[-931059.00761327], [-317423.53254266], [-531748.5951125]
+[561496.60183505], [-52001.2958542], [-551854.0202432]
+[830401.20707011], [-364751.85577948], [-327918.67627048]
+[-814164.67407093], [891500.26603337], [613880.95817852]
+[186454.54914481], [81843.76689414], [293889.34129978]
+[-247130.53925244], [-615741.19810254], [-744936.45620948]
+[165354.58815157], [-146349.24485624], [-64222.29145669]
+[563191.68301359], [567809.73895742], [701386.79509154]
+[-91557.10159727], [-9156.52096528], [183129.55080036]
+[-64236.43416394], [-58359.63139397], [75590.2471619]
+[612360.73458372], [-531335.42648722], [-264186.39302601]
+[-46997.44693567], [93382.35535747], [-26453.6803994]
+[-861351.4055134], [-323715.63392343], [-56307.95645531]
+[641577.9579415], [321252.96426953], [59821.05423397]
+[130462.85109572], [-70009.327649], [157853.56610483]
+[-19178.64982866], [-887.67278584], [-68751.64126546]
+[241521.35093664], [90081.14158511], [-250059.37411019]
+[285210.40699025], [171134.63453588], [19776.80741718]
+[-234233.07952509], [823060.94503135], [601755.82250281]
+[-315328.64151318], [-480164.53339379], [40403.24941507]
+[-144362.20786745], [-104746.85287096], [222793.50069774]
+[-303486.56419125], [-587644.23906806], [535912.53684207]
+[-247062.76901594], [64574.36053225], [-137061.02970563]
+[474834.62458605], [-533966.9449385], [207486.66300889]
+[388445.74694888], [387734.12511553], [-226850.42909802]
+[7453.97532581], [11909.79298804], [-17178.31930655]
+[-37704.19206516], [-83739.1525402], [-37082.83993622]
+[-35468.36146573], [76050.68416172], [-191897.42319362]
+[63881.97904778], [-62927.3337781], [-149831.46989041]
+[274817.04574064], [-100708.79960061], [131902.99659753]
+[246422.62770351], [167816.31631443], [503913.63599733]
+[-349280.23602514], [95523.75690594], [-824744.61642762]
+[433972.10172542], [154407.61938108], [727279.91135317]
+[-79833.73145797], [65485.39829171], [47610.22232062]
+[103836.429391], [-82407.25465476], [121048.9809629]
+[753520.28387743], [-191806.53694685], [-386197.88210924]
+[-141610.03252048], [-111081.47556878], [-25096.12539137]
+[166732.5073434], [36534.31342693], [-170443.18387018]
+[-20460.63822208], [-10424.65288883], [10628.56382379]
+[280299.65468566], [-320405.14783153], [185749.95282039]
+[275286.22217698], [108953.79696332], [-99990.46738914]
+[660821.45198468], [-84924.78408457], [-64238.43789485]
+[-176400.76035721], [73322.98403417], [75312.07905646]
+[-5505.56962843], [-8604.18183816], [-9498.49409187]
+[82806.07534713], [88848.62907666], [40257.13674145]
+[-19074.06529258], [21597.72213663], [465262.82411431]
+[96810.05986165], [-177859.22578121], [-611981.58846225]
+[-203723.42809602], [57841.8509979], [104683.55193008]
+[464271.5704], [-493272.17806694], [938063.73824276]
+[-62220.92954371], [-2228.64434696], [-118649.80599175]
+[-67595.77752741], [-319259.68584944], [-313885.25532296]
+[323489.93865318], [-109684.40140696], [-62161.69068127]
+[-9748.47862882], [7999.63176419], [68372.48923056]
+[-169033.90743425], [-712315.26577112], [279901.48785245]
+[-261764.87285302], [31067.83680896], [184886.2753779]
+[75010.30860324], [44239.75309494], [45090.52779983]
+[-163062.14159649], [-96010.81905421], [-158244.35254699]
+[81810.41528091], [-25112.91977822], [-475452.06697007]
+[-577575.12018542], [90411.06523668], [-348151.30338222]
+[28733.53648941], [57426.1555102], [94328.89023924]
+[-49178.56728543], [-19185.6867631], [32843.37380099]
+[3620.73592448], [-75217.72827046], [-61197.64637654]
+[-803577.59863585], [-783259.19762837], [-752242.79233841]
+[74683.59735872], [36342.16010809], [-1006.54153118]
+[-22835.3526448], [82319.37613212], [-49239.79761404]
+[-153087.37494169], [85646.59596427], [469364.78638855]
+[-12037.65681251], [89889.42091045], [83223.09005748]
+[452042.64134261], [-116583.09840774], [-509319.25476035]
+[-306365.32882526], [-597136.6618019], [569497.79654798]
+[-11980.86093191], [-18184.21200574], [35272.1526809]
+[-157822.97438149], [-348177.41536477], [755107.99213752]
+[8102.36846626], [14588.17581293], [5536.71803501]
+[993892.35182375], [382996.07030555], [-76194.56228195]
+[-105073.46450057], [-113097.29020271], [73027.64681813]
+[160489.88030872], [56091.22044849], [-617482.96795968]
+[151705.92147001], [-289390.79283217], [-687506.82288884]
+[-188526.19035101], [-72671.8783885], [315914.84349049]
+[145790.90426443], [249739.52749828], [-991544.30532383]
+[830695.59330934], [714240.6668236], [-139682.60710832]
+[163849.79818347], [-594175.96391146], [39511.58916247]
+[396523.35988646], [-37363.63599293], [476583.03415629]
+[900477.15600553], [36174.14995365], [-411857.75921214]
+[-345561.74675639], [525471.75167087], [-197940.85824011]
+[-860058.8686555], [161083.17296699], [-983597.4207376]
+[-23031.33934493], [-12608.75529335], [-52011.38713592]
+[47108.96035315], [-16591.59795333], [-23473.59220889]
+[-137270.47266727], [-449043.06750709], [488588.56213297]
+[117454.05130521], [-35682.36533341], [-447680.11249482]
+[-59381.13678016], [7523.11184193], [-36087.37965047]
+[91848.75056803], [-83392.60547281], [-46951.18520158]
+[-58632.42994193], [110882.51009185], [31536.09065097]
+[264743.22724461], [-460598.36761951], [368245.89602637]
+[367521.06313532], [354604.91871897], [165606.03741162]
+[-104782.71849689], [-163900.75745329], [125752.35796551]
+[-67417.59736679], [204541.7789319], [-343137.38480856]
+[3461.26045683], [139600.35755016], [168560.21266018]
+[6913.61362429], [-120520.10197577], [7396.08194207]
+[-146064.09947947], [-667214.19999233], [-348498.13740295]
+[54706.82574946], [1667.16340412], [-3946.88957173]
+[-79553.75826187], [-26059.58152713], [13103.33783158]
+[135554.26392723], [150608.0080131], [219270.35112625]
+[205813.29866393], [41950.03072639], [-549155.96910715]
+[41248.52373563], [1120.77050504], [8117.98768111]
+[511188.1388915], [467229.79353014], [417406.70831087]
+[32719.19863117], [-135331.74952503], [-243879.55930905]
+[649894.70977253], [432254.92372257], [-574669.57546185]
+[45487.34517567], [-16482.44920775], [-65706.98162252]
+[-311190.39975883], [41084.52823415], [-955931.68996204]
+[-53567.24223789], [16353.62496198], [23135.1099016]
+[-4279.59101175], [-2259.16793567], [18148.15247753]
+[28174.05847914], [-256808.54989665], [-33814.35580759]
+[12491.58984272], [-26729.01679498], [-21619.04795123]
+[83961.43878371], [-383362.8947158], [255483.44619658]
+[789147.9197218], [327290.05466427], [187518.24002985]
+[-755519.06976698], [-427547.80178337], [-425940.76916576]
+[43375.80048282], [-9603.66314017], [-35765.19471169]
+[370525.27868504], [365257.72778631], [182650.26831256]
+[-931308.58179394], [-465427.12370606], [-392751.11423992]
+[-84003.79399436], [126469.86058623], [-64482.4037954]
+[322368.35859316], [727731.33085614], [237608.67394442]
+[57206.25195817], [11777.42633727], [44297.01954008]
+[68776.54136531], [60980.74249082], [4408.89036944]
+[10963.66370337], [-56955.80783906], [-28703.26341917]
+[-28320.55533572], [5504.94307743], [-244646.92590785]
+[-602535.70090066], [174744.75194179], [-300232.43985351]
+[297504.85586955], [584611.65344921], [761463.55744092]
+[981.30778795], [102929.48798609], [39765.28694196]
+[-34129.23510474], [135794.40207347], [-110085.18350143]
+[94609.11212573], [-116075.72410632], [-32733.93370768]
+[-124468.93671445], [52887.49842932], [-52657.97234879]
+[28514.61326436], [-106855.66157508], [7231.6109102]
+[-96028.93547623], [354609.86710764], [-37741.70769447]
+[96503.58659591], [-106036.92140725], [35427.60767911]
+[-420854.0089715], [42230.40017542], [-402078.73417855]
+[91410.8087106], [-12848.15658152], [-10861.36724982]
+[-33580.55962031], [-54822.05168328], [-193245.53771559]
diff --git a/src/python/stars/test2.csv b/src/python/stars/test2.csv
new file mode 100644
index 0000000..18f04ca
--- /dev/null
+++ b/src/python/stars/test2.csv
@@ -0,0 +1,50 @@
+[-2474280.19379314], [-2043547.59700436], [9190450.347124]
+[38563.84559851], [2242411.40458962], [2600575.46994153]
+[4325244.64171658], [-3617960.98479518], [8328735.15171703]
+[-3876988.18603695], [3277136.26510524], [2278408.23965288]
+[3186472.62554742], [8817500.18578095], [-8449727.511572]
+[-2181366.21516197], [-200624.22318807], [-3734867.56581224]
+[9017127.92167431], [6413203.7984631], [1228336.03972711]
+[9350752.41418798], [3535418.99344198], [7993716.35513216]
+[1626722.91260088], [6182587.51970131], [784583.32214049]
+[7345529.17174295], [-8537037.45441977], [-2892002.95076474]
+[-25723.13055998], [-283822.93522409], [105858.18625854]
+[-1027148.02263648], [-3158211.07545465], [-1224960.54227174]
+[-2186223.61449143], [-497359.38305715], [7354437.27698169]
+[866393.75891634], [-2204788.88369108], [8073725.9102339]
+[2637496.08421117], [4480695.94196316], [-7827500.83749774]
+[5257652.13632511], [705094.76401367], [-5734075.10744026]
+[4677225.03841272], [-1775808.55806652], [-4941182.90293136]
+[5433715.46439077], [-4637768.76427483], [1522789.75497798]
+[8785256.57640315], [7458915.21565172], [4016992.29221205]
+[-9361415.20079936], [5531306.65585997], [3161060.44996174]
+[-8031194.36581631], [9745800.08360149], [7519086.43795177]
+[3587.22850668], [35943.1260138], [-8119.86293261]
+[-7008017.49383642], [-6612827.68615752], [8194785.42339478]
+[-7239927.50292993], [1142670.91161892], [6847561.24991368]
+[693471.13636122], [8372860.02254529], [-1536078.08443734]
+[6674122.0861732], [-4339996.22469772], [-2765143.50536236]
+[1425223.15302939], [1931623.42054466], [-2728839.00833894]
+[-3284907.72395858], [-4576203.98730613], [-2185696.48145754]
+[-4599682.7694311], [-2841439.14507605], [-9716131.33393405]
+[-4382279.02780905], [4680393.29748693], [419932.01781682]
+[-2430905.17436927], [-807702.34911408], [7625021.16233832]
+[-2094031.30681742], [1509581.61044155], [284002.74017365]
+[-5126177.53106822], [-9126946.85285168], [8338789.19754646]
+[-764259.8664335], [-9124756.94066463], [-8525115.24622571]
+[-2877477.54181555], [-6940979.5005717], [525026.88529215]
+[-2709120.81944173], [-2180794.3247375], [948086.74483566]
+[8744099.92669813], [8824358.38452534], [6324173.62711181]
+[-1757965.28394012], [1070287.55543178], [7775295.90287786]
+[-6773293.55376735], [9526072.41814662], [6893691.60106868]
+[7365.5018401], [-5497.56423374], [4095.08791865]
+[-1933939.65046273], [-3051672.60066781], [899928.08144868]
+[-6537949.99243589], [-8880709.48049358], [7346050.45494194]
+[-4915442.45222998], [-3874122.62205232], [-8626090.69321575]
+[2156211.44648715], [-4859274.94024185], [-1329704.3667525]
+[-636290.52970921], [7266215.69334391], [373943.94280366]
+[1791643.30832893], [-3547659.6496036], [7128144.44916711]
+[-8402790.13974717], [-3049178.38237121], [506442.1748597]
+[6682585.91293537], [-8885055.78930414], [8928402.17766441]
+[594907.3030729], [641475.77971352], [1582198.90302074]
+[6222139.07175641], [-6634651.16546743], [3548001.92946905]
diff --git a/src/python/stars/test3.csv b/src/python/stars/test3.csv
new file mode 100644
index 0000000..f8dfd29
--- /dev/null
+++ b/src/python/stars/test3.csv
@@ -0,0 +1,377 @@
+[565886.49257711], [90152.18155788], [-352000.65632385]
+[-4014.39971354], [-320694.37886479], [-36902.53579244]
+[-483620.00931594], [-117976.0639067], [-877603.49399254]
+[12190.63725823], [-84057.3917401], [121211.14477002]
+[-13411.5005494], [-41048.60386991], [9603.87372114]
+[580413.62248583], [833102.56766051], [793638.17755243]
+[40956.8215703], [61403.46717076], [163496.51203195]
+[250639.17832322], [-314478.07598459], [-23388.30935431]
+[12969.75584403], [-8801.01811206], [-29874.38820838]
+[-592060.61067926], [790150.46447116], [-239707.43369187]
+[117907.79914412], [-34053.42362832], [64018.58785424]
+[795533.49375085], [-771816.12740849], [367229.96612219]
+[-56361.60912212], [-67998.45985581], [3479.87697121]
+[-113717.44981611], [91337.15998809], [-79262.64467496]
+[263546.99475058], [150671.51654568], [-2180.62907822]
+[-70693.80214512], [-162698.50678037], [-13205.52080601]
+[160023.68817127], [158473.5247788], [236446.3598895]
+[232594.45600203], [156477.17002094], [483680.6900246]
+[-524182.97245711], [761017.43443215], [-961470.8259768]
+[-297851.6815378], [635897.87202266], [756151.48027742]
+[-45037.28497057], [5316.0577899], [15257.269032]
+[504719.77279343], [128816.89672593], [-57118.28741784]
+[-588859.66320432], [-228373.03608881], [-342280.81724171]
+[-17099.55531939], [72709.68236773], [230635.83709103]
+[-151679.1399939], [335084.37240289], [844449.50318858]
+[314487.98493101], [95976.95279581], [48366.28584903]
+[31551.22115932], [-139552.57053281], [320457.33510038]
+[-66593.32573726], [-1255.56020251], [50263.92378248]
+[-134563.89404615], [-68973.90868963], [-142060.8841365]
+[-27037.47659159], [105676.3234246], [91967.32115109]
+[75176.45568774], [92267.34692398], [66404.73626467]
+[141543.27595189], [78627.76687056], [26761.82951294]
+[-28784.92420844], [207380.09685566], [-762844.17942139]
+[-167537.3436348], [-140901.76650963], [-67004.08970561]
+[381571.24418025], [-984047.82412076], [-963311.50325154]
+[177319.58766639], [-42271.48247434], [141749.06713531]
+[181392.11441702], [674329.58250782], [524523.08701195]
+[531877.35793312], [-685286.48918206], [287610.52285412]
+[-38642.61933858], [-22488.69385601], [15370.21575667]
+[-5366.31297414], [-719878.79067364], [493848.69192107]
+[30146.58420547], [-53084.10987697], [7914.37294719]
+[-74796.44214763], [96718.87025098], [12499.43959501]
+[72700.79455474], [238125.74050625], [-216557.43451261]
+[-311473.72935886], [142887.89519523], [-427807.01389839]
+[37467.77412993], [9688.07764333], [-128221.15563899]
+[26993.81333409], [24219.74618035], [102177.41150801]
+[33393.89914411], [52968.76562096], [-21246.70308687]
+[174587.46717902], [-13981.23315053], [-196187.23280723]
+[-109659.84446348], [-911989.0316871], [157785.42347187]
+[-571423.29707226], [987708.86811217], [455176.41468041]
+[-202934.43594691], [307925.01916999], [-52121.82912747]
+[6171.87837899], [64646.95407932], [29496.89466591]
+[-14141.61396306], [28243.5613305], [50705.68086787]
+[467496.9933074], [2864.32864095], [-185439.06522813]
+[58677.96242922], [17083.3060239], [-137237.37530856]
+[-41631.12178166], [-106349.74487667], [-489464.86970336]
+[-24953.29423165], [35471.0511127], [-26829.43300007]
+[5373.73769573], [-27912.36455661], [-47029.33041745]
+[351299.47655564], [584608.95207483], [302349.94519775]
+[-128255.20506304], [-343519.10697388], [-256033.0574768]
+[1471.37885038], [-30404.33613454], [98993.95241376]
+[46777.66599301], [-17831.27703158], [25346.78894901]
+[-46186.45890304], [64761.76070153], [81251.66843633]
+[-19253.38557206], [60731.08666484], [47471.04811891]
+[283065.73661463], [474517.97611528], [171762.53662824]
+[-83399.73424909], [-22989.09407412], [8112.64854121]
+[52357.38620107], [166426.56266581], [-26872.65326661]
+[-196387.75731096], [-18201.68678757], [-17556.0106934]
+[27408.60770045], [142857.97511597], [-198949.17076446]
+[-21082.29523652], [-210273.66900206], [-157825.38136532]
+[-362918.2146079], [-730501.66433035], [-70801.48469237]
+[27207.32369345], [98165.32131009], [-70538.4063749]
+[32756.15255942], [8203.73805704], [-334122.67766243]
+[-582216.63793079], [41964.89977988], [-54183.05226011]
+[-863715.79140859], [470638.69367241], [-60369.0274772]
+[608780.22203544], [175320.53944964], [-697121.32025966]
+[-116130.25261841], [-211825.16744378], [-14938.36068616]
+[565465.53819817], [551661.38145036], [637409.2015116]
+[890111.31140382], [-432702.3092112], [-320317.96649274]
+[-34669.86007573], [-75855.29840153], [53067.95846086]
+[90326.19165416], [344763.14467626], [214301.34268717]
+[-38237.47141341], [31364.46339603], [37340.61627605]
+[135496.19138245], [-186218.53997097], [-6597.72947521]
+[-536608.46163625], [-338117.53346166], [-7620.13814301]
+[207869.52819913], [-86720.16047252], [262351.79469931]
+[-986328.7615044], [383303.64482357], [-798494.87146398]
+[6468.26713876], [-44283.26825431], [-13728.27249154]
+[115313.7635624], [-77320.32055834], [-113756.65263749]
+[589210.81491156], [-287194.85125806], [-775108.28284622]
+[-151499.66867608], [98537.53822232], [-57099.94195537]
+[-365672.21416512], [-370991.630993], [-296522.02694507]
+[-253111.12398835], [-320399.30620826], [-347822.86804588]
+[456605.58757513], [789568.15230386], [-651565.31855497]
+[-106300.37886838], [66457.50987976], [-48819.13302195]
+[-548230.75888567], [705070.23095929], [-15111.43293575]
+[490794.71104338], [88387.55398968], [-270041.10608828]
+[5941.33849686], [-11176.96474234], [57379.44599479]
+[-124472.28671955], [864258.22249449], [581614.41350725]
+[505.67130048], [-139117.48655683], [78366.00156856]
+[-21027.41168085], [13109.60283089], [-12671.89791046]
+[982762.22796355], [482718.04116043], [-336495.89953774]
+[11449.87879623], [-5196.29476249], [-3519.62972581]
+[-10375.3169601], [-9554.02193454], [-32872.06405112]
+[-203128.03599718], [86019.01033012], [59130.84294645]
+[-951243.38317084], [-21104.83112487], [-986831.70576322]
+[-273187.70291564], [-86870.25362716], [-109280.9860005]
+[-271819.84076403], [317621.87975416], [-47785.00349273]
+[229608.4951987], [226412.52334586], [-198407.59072779]
+[-257429.9461285], [-647237.71390078], [34557.57759464]
+[154756.56455485], [72276.98874637], [74191.53672747]
+[102619.41346829], [-227474.86837244], [276333.24606345]
+[32083.40816338], [7959.43585741], [-1032.16630971]
+[285131.20460154], [-229142.57704189], [159898.65977453]
+[-398557.40431633], [-247262.5716117], [-621181.56266885]
+[50090.86256435], [-103779.9828745], [-3429.00534271]
+[193553.38694818], [-121839.09838319], [608111.25652869]
+[-12235.41129459], [6414.98894198], [-25935.57580393]
+[-339547.47708195], [-808128.96889744], [-226526.59285131]
+[-5961.42559157], [56360.28203348], [-52241.50732295]
+[546724.42228476], [20453.47844425], [81640.31013509]
+[181599.64046134], [-125717.31934795], [127049.81196587]
+[167491.56625795], [-167581.83264793], [133304.88682703]
+[33372.64065125], [121509.38167769], [58849.46708907]
+[44096.54948655], [41881.03086628], [87808.96540213]
+[-96949.11162068], [82873.19798527], [1681.67753333]
+[5202.08267941], [99505.76528045], [184645.42530405]
+[-51671.96465564], [23521.8461305], [28588.89402684]
+[87878.40258442], [136755.31411631], [-50620.45673812]
+[66414.40151045], [59947.5106718], [-70808.33060918]
+[-19723.66299339], [-31706.61724723], [-19956.81421033]
+[-22708.76839627], [-20975.66665966], [3362.22437054]
+[-355100.91453952], [-217194.63850858], [624725.46348524]
+[-72324.81867543], [249788.95042572], [62372.61012966]
+[-133762.66198176], [-45879.37613627], [130563.67537075]
+[169256.69578064], [-824005.76071246], [-359139.70212064]
+[237993.46175799], [-282756.14209345], [-514997.3505117]
+[-67339.08189167], [250958.54881914], [51597.52802488]
+[-9952.35260395], [-72916.95190718], [-31931.65636145]
+[30474.8045907], [-212272.40174346], [-43099.25878478]
+[137540.7041178], [-183448.10846168], [108250.73728851]
+[-130539.74725653], [58264.49191506], [103286.66392872]
+[161361.36561801], [29527.56442665], [-18701.00319225]
+[166319.47003695], [72468.22316915], [49809.62022892]
+[243840.12461888], [-171956.83285436], [-116715.80652641]
+[600198.93801243], [241194.67016959], [323883.71145697]
+[-429992.69786463], [-619047.96536305], [-965353.05692586]
+[-189665.25225023], [-32523.55045991], [254587.01267458]
+[146880.93658425], [223024.55201604], [-231059.66413273]
+[-472462.44721287], [109078.62205066], [747474.8686001]
+[316414.28818048], [-621853.51221308], [65158.73307164]
+[-27745.69758087], [179422.05067352], [-196469.28372707]
+[-37152.22368064], [-35397.80959896], [-49261.1102983]
+[-176082.22602145], [101211.19737297], [224305.32251247]
+[-208557.92601156], [-610425.53990924], [98126.22764892]
+[38641.57313893], [-48214.21186061], [-61092.45851232]
+[118234.04748643], [-92761.03240055], [-271210.59117482]
+[-191774.79414784], [-18238.80692106], [63835.57078941]
+[-32285.24055578], [-68911.54544306], [42181.03590873]
+[425823.98685611], [67173.75060851], [45524.96297504]
+[15671.68534902], [-287822.75527684], [-201426.57532833]
+[-656425.95336239], [-185683.31314203], [-744666.7468889]
+[161840.4962602], [-9146.56490001], [-447808.79883208]
+[493085.86997085], [361432.48705655], [-541248.98342298]
+[-301613.7900311], [-96862.62243256], [29169.53102534]
+[-431356.88154554], [638938.31883264], [-681670.40170735]
+[-851204.80985389], [-433898.65482221], [-162085.96898416]
+[121008.34078062], [-326825.40247626], [372093.29714342]
+[391405.53447577], [-282567.95430084], [-346488.28359137]
+[-67223.26791404], [-15346.13424936], [-13281.669921]
+[-20502.68118667], [84291.95882982], [3095.59375811]
+[229235.68342934], [22366.1276426], [842995.91759995]
+[-456966.9361904], [-993484.78990485], [-222065.01702423]
+[2853.71284855], [-28100.57799869], [-38903.0268547]
+[-59416.51828741], [-72662.73097005], [-37405.99392189]
+[-149299.9559457], [224742.11685745], [-93390.65474303]
+[14301.50931336], [-608903.97549914], [-876724.93463841]
+[421314.54983708], [-700303.22406897], [-490834.26156634]
+[32643.18120232], [-51049.77273142], [-91255.24128177]
+[609292.23420764], [-122135.67059332], [-333358.49784123]
+[-68436.16678681], [-33099.47334712], [82314.53479148]
+[274195.17213709], [206673.62108433], [-341331.45907802]
+[-17843.83703402], [-5630.8491234], [-29549.20445654]
+[-24711.61855119], [-29248.4525556], [-42904.21000619]
+[-138667.31965675], [-359016.73126703], [23876.03612186]
+[97428.91922934], [-69669.25754662], [-12842.84773769]
+[30144.91160662], [-2932.37559137], [64200.63572295]
+[109402.49254288], [-36677.68859134], [-108988.97912569]
+[-70324.5098633], [-19326.7091641], [90000.06606193]
+[808542.94658099], [695690.71238984], [310244.47239194]
+[-267756.07623873], [182604.82891042], [9124.46025907]
+[770933.22722145], [-376331.19136882], [-614839.98786158]
+[69064.93468619], [23924.20354058], [21296.24320125]
+[248949.62416567], [883973.19260498], [343694.70582673]
+[-127353.01540365], [349406.31169056], [942042.56069558]
+[84125.62354688], [269878.14707338], [-145164.36620582]
+[-928890.56645757], [-729504.379586], [-676511.98615758]
+[286215.70496711], [338480.48820046], [-332377.89796755]
+[31173.25667903], [37801.66192323], [-266276.7728976]
+[-2460.24657519], [-159834.78504548], [38388.26616216]
+[57140.65664175], [287745.88256548], [74956.09858017]
+[16509.45999869], [-497971.60307807], [70295.8972743]
+[-10525.41801856], [139114.68772171], [2475.16673701]
+[-304901.46693172], [175886.9633877], [-967229.83039669]
+[-357064.29371549], [-167730.99989804], [-49800.66632622]
+[351408.21419274], [-318659.61682767], [-231066.15328558]
+[-29714.89038852], [-68942.99512823], [32140.11953044]
+[-765966.4069604], [65514.59128123], [-256460.88393242]
+[-362246.46052781], [-591253.2508248], [527599.8745264]
+[-217346.23926771], [-269654.36183431], [-685832.38751738]
+[-56031.75273454], [16546.00919651], [-18195.36064698]
+[-246175.54563072], [703510.78589159], [-437372.1988995]
+[-6222.32324703], [-49450.43314869], [-214350.98251996]
+[-171147.78281836], [-16274.84230905], [62733.86425195]
+[55244.99141513], [-291176.4549317], [142073.53135662]
+[-7039.30159663], [13619.22214003], [-9131.68241673]
+[-69631.43243922], [-485476.66055792], [581368.52214409]
+[547.67000886], [-82240.09386972], [11558.59342047]
+[-69007.96147873], [-49953.93542287], [-786896.62313366]
+[-15493.66380116], [24858.73502769], [57221.67989157]
+[38034.76418992], [351458.41760146], [12241.50337766]
+[-3521.78166743], [-534370.37425773], [-292525.12264408]
+[-8923.29072606], [-1049.79301392], [2624.72458125]
+[12110.7372011], [24985.77990282], [-35897.02159092]
+[29808.34843832], [26317.26380587], [20119.11049946]
+[344620.06804028], [-420084.77120896], [307722.59477348]
+[142692.3019357], [-419956.06339148], [-58256.9239131]
+[656003.82580731], [-357976.37880933], [-548593.09012006]
+[488520.84486831], [874551.69962652], [404578.9055965]
+[-113877.35636703], [31125.18352725], [-12419.75119778]
+[-516911.0426887], [-462869.35649488], [472251.3181318]
+[97858.90307527], [-120793.15674091], [118683.36519978]
+[854897.95487101], [-641281.98309713], [-225487.53667085]
+[-56797.2395647], [-125233.49268458], [732348.02598418]
+[-254580.7134629], [-437196.40545026], [447904.51544804]
+[-74296.44743272], [-13706.32548215], [42539.64484446]
+[-338809.00813608], [54908.44243854], [-386631.8774051]
+[-288242.42950275], [235801.47497895], [-278972.82546585]
+[348239.27841873], [112426.99791467], [-828997.11665342]
+[-604220.712154], [-180395.34195079], [-416342.0896824]
+[-55670.9672193], [15519.74921859], [36303.17148278]
+[-279523.70768072], [-2255.0378031], [159318.43550836]
+[38173.43831457], [21555.65145298], [-87506.25096568]
+[-799645.2033844], [286960.76210136], [-729374.172578]
+[95007.41444883], [-561167.83375853], [385696.57137807]
+[-542306.08908892], [-105819.03557449], [-4090.00010573]
+[-56670.56976943], [40827.21543493], [-30812.45139012]
+[18946.25964229], [-23795.68447732], [32505.78249217]
+[-677635.39095372], [-688365.29712655], [381441.42955062]
+[-393961.04870474], [38390.73119787], [-125861.22536534]
+[387499.56738198], [-169264.21902538], [-324734.50743802]
+[-16469.43002609], [45763.48328398], [32386.18353937]
+[-143968.73403976], [-36799.60696854], [-24276.13735197]
+[48957.35990613], [-265216.30222761], [495379.36329097]
+[-369908.70494827], [722425.99281249], [-205461.84051798]
+[-2106.98264347], [378982.34423345], [471425.71033232]
+[-441524.35886974], [-858904.784084], [-673604.97574358]
+[-598231.23552283], [-245857.40515673], [225796.66119946]
+[-726887.17415771], [717859.83035321], [654422.36293727]
+[68849.43055872], [414089.73036686], [69826.39229297]
+[23124.87191466], [-6966.49761254], [332180.57306862]
+[-271565.564724], [121327.70105988], [948887.31014021]
+[-299617.25423747], [-20821.4073942], [4053.70872655]
+[-78881.00066547], [-64694.41828524], [-489312.51581999]
+[155822.184868], [26251.7586694], [261658.29130015]
+[-73892.38696227], [-117648.54533742], [156186.47932712]
+[8955.64218695], [2730.86106148], [-51632.39983046]
+[-81337.74140246], [-315849.82972714], [173443.17826255]
+[102405.69895819], [-32438.31749709], [-657725.04798658]
+[-834738.20474106], [-828694.06744359], [65244.52068655]
+[-81219.02360789], [-47341.49756722], [72214.24639673]
+[775356.33547037], [491153.31697202], [503015.08123007]
+[-33169.01650252], [35566.16078014], [27012.40948162]
+[935123.45797865], [-815544.73933617], [583663.76283666]
+[-66137.37775194], [211073.98525173], [126044.38193159]
+[695989.66164767], [321488.79741723], [-587512.73457791]
+[128337.15956237], [550922.17049192], [32701.70401888]
+[39092.56449335], [67688.01678424], [36305.83790323]
+[-406619.9922672], [-4903.0526549], [-31424.15190268]
+[153630.01949814], [29461.76141063], [-85276.30758035]
+[106047.90825939], [39745.82601852], [56627.6588543]
+[88891.01059294], [-59660.99966852], [48983.95940417]
+[-449817.45124354], [240896.59982922], [150005.87650783]
+[34252.8378154], [1434.95874101], [-10419.30768663]
+[10814.72002844], [27926.51533652], [-21495.19170872]
+[-79484.76481048], [33692.0025624], [67989.2791305]
+[-429227.88578155], [-745678.78329793], [-331162.63599934]
+[88341.23577691], [-68883.82704357], [-93189.90720853]
+[-173066.10675733], [-266076.71539622], [-600125.93102112]
+[502897.91855659], [-27668.63898039], [76729.16187183]
+[220096.60550584], [-107227.37123647], [12023.39749069]
+[284.22844592], [-82356.52361658], [-18561.16276499]
+[-293964.12372426], [601164.5439012], [357746.12976997]
+[29448.27571482], [5101.58805201], [-26011.59000411]
+[38710.53578514], [-348149.31574799], [-411457.96102424]
+[-731178.88354538], [202973.72296878], [276323.5211213]
+[565982.89483436], [593499.00502673], [-158061.61472782]
+[43167.51928309], [-11900.38044619], [-25335.35933827]
+[-30430.64908991], [-27401.26673557], [5412.04660419]
+[135830.8180334], [42857.57734026], [57051.82170415]
+[217213.62257794], [-264331.98582468], [293486.76748239]
+[-43848.63699408], [-249855.5089808], [-119167.7676022]
+[282328.45352254], [891256.90941415], [-533630.26657039]
+[-17953.69331944], [28306.40804836], [88002.75857793]
+[-328504.05232088], [428935.22384126], [-758030.1608378]
+[38949.66377184], [8956.9165477], [13820.93201718]
+[-73595.29109567], [92246.24891099], [52086.03703746]
+[102541.57960499], [869143.93207338], [-182622.06430289]
+[-190643.92248168], [-915010.31631859], [731151.66694843]
+[69308.8812098], [-157007.73991288], [307242.22663638]
+[1598.93338003], [-187574.75610448], [-178611.382581]
+[-138026.15336541], [156312.96617816], [17868.91052475]
+[-83936.40609439], [-160556.87746522], [-68053.44980005]
+[959287.8907256], [921736.35969705], [722986.58356021]
+[-837494.34427479], [417221.568975], [-537467.43612215]
+[577772.00854497], [534338.31317622], [-301082.44153643]
+[238639.02603655], [520885.7289712], [-752300.52383976]
+[-766777.38996071], [252077.941972], [-920282.83169242]
+[97890.2230352], [371902.37026901], [76298.20479027]
+[-796647.3167049], [-882817.37177238], [-347989.13730835]
+[-55888.70414941], [-68329.16673552], [3759.17712539]
+[-11683.13794443], [-12409.93659342], [10860.48443508]
+[-767075.9735168], [684850.25852624], [-938502.08783233]
+[-4977.15376247], [88760.6026027], [-53162.69069237]
+[-241772.53886315], [458375.82136982], [-421021.0196921]
+[4664.73407657], [-9379.10514036], [-31783.75164038]
+[-10596.11761858], [-15039.92857506], [-89.59953024]
+[-189095.48583658], [-81936.80521887], [209357.2943124]
+[12806.16807788], [137802.29830069], [76734.94883101]
+[-53101.4265871], [44367.31306148], [-37742.74148248]
+[227132.56491374], [-1742.81417923], [-75628.1415995]
+[33518.1356454], [4050.06317647], [-26796.81473422]
+[-894486.17593495], [971104.05773898], [-662637.08625138]
+[145300.11701607], [152880.45076864], [786904.36964957]
+[-714009.99545098], [50952.37146426], [289658.83329523]
+[-269199.10211845], [15494.00014842], [262405.16331714]
+[78042.80186626], [-42476.31803427], [9465.39937241]
+[123862.85137678], [25987.7941318], [-90688.30178424]
+[-73095.1641862], [-89366.90463951], [-48395.08959472]
+[-475814.01461792], [648040.33412565], [120380.62731197]
+[354658.35785669], [9871.36599096], [837239.64240899]
+[295669.08665844], [-73006.7620956], [376325.29071443]
+[446039.05203143], [74060.7071351], [-119352.59178111]
+[-57902.03633224], [-29903.34113347], [-73032.66661834]
+[36995.46770742], [82527.50306577], [-28771.00803977]
+[156602.63308994], [25784.11069908], [130916.47537834]
+[-93722.7318911], [-243387.34530545], [740451.33604939]
+[-386662.50068308], [-121169.76286104], [-20520.71222029]
+[-127429.51057941], [25566.43409908], [-125052.91477318]
+[16289.84791833], [51782.77923451], [-9552.918303]
+[-194125.62208356], [-143771.53071392], [28087.56679804]
+[56610.97388146], [63023.31897572], [-231118.56145224]
+[480322.65013095], [-453305.41276919], [-369015.89136399]
+[64133.50599643], [-45231.29456951], [34897.2143639]
+[-729311.5981771], [33641.12602922], [89251.32966746]
+[121788.66661017], [-157213.02501542], [158939.49435153]
+[7447.48279159], [-37425.35818683], [-26119.82369502]
+[-107185.45129876], [-6237.16226423], [-50444.63201626]
+[-395381.93301255], [539713.10723173], [637928.96311524]
+[-400676.78370248], [-185510.4522189], [-58370.8637498]
+[146552.14056034], [10341.58806088], [173630.55729315]
+[189020.51774807], [-350713.31595252], [-379450.78018865]
+[-21573.21919989], [-288794.8410025], [-197779.24907444]
+[282378.84720901], [-242953.4205861], [-364303.14286143]
+[-215243.34935325], [561792.62144141], [552954.50850193]
+[65280.05082684], [98653.15449942], [58638.69735363]
+[31546.37568436], [-14164.43472784], [42705.64613173]
+[-31064.15195584], [263362.7619749], [-232513.73245803]
+[-322570.36174482], [-27566.34919049], [-271773.57821809]
+[-175958.88407957], [391686.93983065], [257869.02138663]
+[2105.31334991], [32228.15517143], [-8782.76560193]
+[-77972.9852142], [47314.57776166], [201359.99428229]
+[-62314.24332295], [19534.70460415], [27354.03098732]
+[-447038.51653997], [324694.77724812], [-465146.85128116]
+[-649633.79827609], [804390.95026188], [-458013.48495402]
+[506952.53250304], [536100.90418665], [-7969.73287053]
+[-9829.6413012], [-69533.08017861], [12995.51846012]
+[25259.3609388], [-60381.1130031], [-33607.93205954]
diff --git a/src/python/view.py b/src/python/view.py
deleted file mode 100644
index 8b802b6..0000000
--- a/src/python/view.py
+++ /dev/null
@@ -1,30 +0,0 @@
-import bpy
-from numpy import genfromtxt
-import os
-import sys
-
-directory = "other_stars/"
-
-files = [sys.argv[4] + ".csv"]
-
-for data in files:
-    path = str(directory) + str(data)
-    print(path)
-
-    verts = genfromtxt(path, delimiter=' ', skip_header=0, usecols = (0, 1, 2))
-
-    #print(verts)
-
-    # create mesh and object
-    mesh = bpy.data.meshes.new(data)
-    object = bpy.data.objects.new(data,mesh)
-
-    # set mesh location
-    object.location = bpy.context.scene.cursor_location
-    bpy.context.scene.objects.link(object)
-
-    # create mesh from python data
-    mesh.from_pydata(verts,[],[])
-    mesh.update(calc_edges=True)
-
-    bpy.ops.object.select_all(action='SELECT')
diff --git a/src/testFile.csv b/src/testFile.csv
deleted file mode 100644
index 6089101..0000000
--- a/src/testFile.csv
+++ /dev/null
@@ -1,1000 +0,0 @@
-0, -540605.250000
-1, -540668.000000
-2, -540640.937500
-3, -540613.937500
-4, -540425.875000
-5, -540431.062500
-6, -540425.500000
-7, -540413.812500
-8, -540398.375000
-9, -540380.312500
-10, -540360.375000
-11, -540280.750000
-12, -540263.562500
-13, -540244.812500
-14, -540224.875000
-15, -540204.062500
-16, -540182.437500
-17, -540160.187500
-18, -540101.687500
-19, -540080.375000
-20, -540058.500000
-21, -540036.125000
-22, -540013.312500
-23, -539990.187500
-24, -539966.812500
-25, -539943.062500
-26, -539894.375000
-27, -539871.062500
-28, -539847.500000
-29, -539823.750000
-30, -539799.812500
-31, -539775.687500
-32, -539751.312500
-33, -539707.375000
-34, -539683.375000
-35, -539659.125000
-36, -539634.750000
-37, -539610.312500
-38, -539585.687500
-39, -539560.937500
-40, -539520.000000
-41, -539495.562500
-42, -539470.875000
-43, -539446.125000
-44, -539421.312500
-45, -539396.375000
-46, -539371.375000
-47, -539332.625000
-48, -539307.750000
-49, -539282.812500
-50, -539257.812500
-51, -539232.687500
-52, -539207.562500
-53, -539182.312500
-54, -539145.187500
-55, -539120.062500
-56, -539094.937500
-57, -539069.687500
-58, -539044.437500
-59, -539019.125000
-60, -538993.750000
-61, -538968.312500
-62, -538932.562500
-63, -538907.187500
-64, -538881.812500
-65, -538856.375000
-66, -538830.937500
-67, -538805.437500
-68, -538779.937500
-69, -538745.125000
-70, -538719.687500
-71, -538694.125000
-72, -538668.625000
-73, -538643.125000
-74, -538617.500000
-75, -538591.875000
-76, -538557.812500
-77, -538532.312500
-78, -538506.750000
-79, -538481.062500
-80, -538455.437500
-81, -538429.812500
-82, -538404.187500
-83, -538370.750000
-84, -538345.125000
-85, -538319.437500
-86, -538293.750000
-87, -538268.062500
-88, -538242.375000
-89, -538216.625000
-90, -538183.750000
-91, -538158.062500
-92, -538132.312500
-93, -538106.625000
-94, -538080.875000
-95, -538055.125000
-96, -538029.312500
-97, -538003.500000
-98, -537971.187500
-99, -537945.437500
-100, -537919.625000
-101, -537893.875000
-102, -537868.125000
-103, -537842.312500
-104, -537816.437500
-105, -537784.562500
-106, -537758.750000
-107, -537732.937500
-108, -537707.125000
-109, -537681.312500
-110, -537655.437500
-111, -537629.625000
-112, -537598.000000
-113, -537572.187500
-114, -537546.375000
-115, -537520.562500
-116, -537494.687500
-117, -537468.812500
-118, -537442.937500
-119, -537411.687500
-120, -537385.812500
-121, -537360.000000
-122, -537334.125000
-123, -537308.250000
-124, -537282.375000
-125, -537256.500000
-126, -537225.500000
-127, -537199.687500
-128, -537173.812500
-129, -537147.875000
-130, -537122.000000
-131, -537096.125000
-132, -537070.187500
-133, -537039.500000
-134, -537013.687500
-135, -536987.750000
-136, -536961.875000
-137, -536936.000000
-138, -536910.125000
-139, -536884.125000
-140, -536858.250000
-141, -536827.812500
-142, -536801.937500
-143, -536776.062500
-144, -536750.125000
-145, -536724.250000
-146, -536698.312500
-147, -536672.375000
-148, -536642.187500
-149, -536616.250000
-150, -536590.375000
-151, -536564.437500
-152, -536538.562500
-153, -536512.625000
-154, -536486.750000
-155, -536456.687500
-156, -536430.812500
-157, -536404.875000
-158, -536379.000000
-159, -536353.125000
-160, -536327.187500
-161, -536301.250000
-162, -536271.375000
-163, -536245.437500
-164, -536219.625000
-165, -536193.687500
-166, -536167.750000
-167, -536141.812500
-168, -536115.875000
-169, -536086.250000
-170, -536060.375000
-171, -536034.437500
-172, -536008.500000
-173, -535982.625000
-174, -535956.750000
-175, -535930.812500
-176, -535904.875000
-177, -535875.437500
-178, -535849.500000
-179, -535823.562500
-180, -535797.687500
-181, -535771.812500
-182, -535745.875000
-183, -535719.937500
-184, -535690.625000
-185, -535664.750000
-186, -535638.812500
-187, -535612.937500
-188, -535587.000000
-189, -535561.125000
-190, -535535.250000
-191, -535506.000000
-192, -535480.125000
-193, -535454.187500
-194, -535428.375000
-195, -535402.437500
-196, -535376.500000
-197, -535350.625000
-198, -535321.562500
-199, -535295.687500
-200, -535269.812500
-201, -535243.937500
-202, -535218.000000
-203, -535192.125000
-204, -535166.250000
-205, -535137.312500
-206, -535111.437500
-207, -535085.500000
-208, -535059.625000
-209, -535033.812500
-210, -535007.875000
-211, -534982.000000
-212, -534953.187500
-213, -534927.312500
-214, -534901.500000
-215, -534875.562500
-216, -534849.687500
-217, -534823.875000
-218, -534798.000000
-219, -534772.125000
-220, -534743.375000
-221, -534717.562500
-222, -534691.687500
-223, -534665.875000
-224, -534640.000000
-225, -534614.125000
-226, -534588.312500
-227, -534559.625000
-228, -534533.812500
-229, -534508.000000
-230, -534482.125000
-231, -534456.250000
-232, -534430.437500
-233, -534404.625000
-234, -534376.062500
-235, -534350.250000
-236, -534324.437500
-237, -534298.562500
-238, -534272.812500
-239, -534246.937500
-240, -534221.125000
-241, -534192.625000
-242, -534166.875000
-243, -534141.000000
-244, -534115.187500
-245, -534089.437500
-246, -534063.562500
-247, -534037.750000
-248, -534009.437500
-249, -533983.625000
-250, -533957.812500
-251, -533932.000000
-252, -533906.187500
-253, -533880.437500
-254, -533854.562500
-255, -533828.812500
-256, -533800.562500
-257, -533774.750000
-258, -533749.000000
-259, -533723.187500
-260, -533697.437500
-261, -533671.625000
-262, -533645.875000
-263, -533617.687500
-264, -533591.875000
-265, -533566.125000
-266, -533540.312500
-267, -533514.562500
-268, -533488.812500
-269, -533463.000000
-270, -533435.000000
-271, -533409.187500
-272, -533383.437500
-273, -533357.687500
-274, -533331.937500
-275, -533306.187500
-276, -533280.437500
-277, -533252.375000
-278, -533226.625000
-279, -533200.937500
-280, -533175.187500
-281, -533149.437500
-282, -533123.687500
-283, -533098.000000
-284, -533070.000000
-285, -533044.312500
-286, -533018.562500
-287, -532992.812500
-288, -532967.125000
-289, -532941.375000
-290, -532915.687500
-291, -532887.812500
-292, -532862.125000
-293, -532836.375000
-294, -532810.687500
-295, -532784.937500
-296, -532759.312500
-297, -532733.562500
-298, -532707.812500
-299, -532680.062500
-300, -532654.375000
-301, -532628.687500
-302, -532602.937500
-303, -532577.312500
-304, -532551.625000
-305, -532525.875000
-306, -532498.187500
-307, -532472.500000
-308, -532446.875000
-309, -532421.187500
-310, -532395.500000
-311, -532369.812500
-312, -532344.125000
-313, -532316.500000
-314, -532290.812500
-315, -532265.187500
-316, -532239.500000
-317, -532213.875000
-318, -532188.250000
-319, -532162.562500
-320, -532134.937500
-321, -532109.312500
-322, -532083.687500
-323, -532058.062500
-324, -532032.437500
-325, -532006.750000
-326, -531981.125000
-327, -531953.625000
-328, -531927.937500
-329, -531902.312500
-330, -531876.750000
-331, -531851.125000
-332, -531825.500000
-333, -531799.875000
-334, -531774.250000
-335, -531746.750000
-336, -531721.187500
-337, -531695.625000
-338, -531669.937500
-339, -531644.375000
-340, -531618.812500
-341, -531593.187500
-342, -531565.750000
-343, -531540.187500
-344, -531514.562500
-345, -531489.000000
-346, -531463.375000
-347, -531437.812500
-348, -531412.312500
-349, -531384.937500
-350, -531359.312500
-351, -531333.812500
-352, -531308.187500
-353, -531282.687500
-354, -531257.062500
-355, -531231.500000
-356, -531204.250000
-357, -531178.625000
-358, -531153.125000
-359, -531127.625000
-360, -531102.062500
-361, -531076.500000
-362, -531050.937500
-363, -531023.687500
-364, -530998.187500
-365, -530972.625000
-366, -530947.062500
-367, -530921.562500
-368, -530896.062500
-369, -530870.562500
-370, -530843.375000
-371, -530817.875000
-372, -530792.312500
-373, -530766.812500
-374, -530741.312500
-375, -530715.812500
-376, -530690.250000
-377, -530664.812500
-378, -530637.687500
-379, -530612.125000
-380, -530586.687500
-381, -530561.187500
-382, -530535.687500
-383, -530510.250000
-384, -530484.750000
-385, -530457.625000
-386, -530432.187500
-387, -530406.687500
-388, -530381.187500
-389, -530355.750000
-390, -530330.312500
-391, -530304.812500
-392, -530277.750000
-393, -530252.312500
-394, -530226.875000
-395, -530201.437500
-396, -530176.000000
-397, -530150.562500
-398, -530125.062500
-399, -530098.125000
-400, -530072.625000
-401, -530047.250000
-402, -530021.812500
-403, -529996.375000
-404, -529970.937500
-405, -529945.562500
-406, -529920.125000
-407, -529893.125000
-408, -529867.750000
-409, -529842.312500
-410, -529816.937500
-411, -529791.500000
-412, -529766.125000
-413, -529740.687500
-414, -529713.812500
-415, -529688.375000
-416, -529663.000000
-417, -529637.687500
-418, -529612.250000
-419, -529586.812500
-420, -529561.500000
-421, -529534.625000
-422, -529509.312500
-423, -529483.875000
-424, -529458.500000
-425, -529433.125000
-426, -529407.750000
-427, -529382.375000
-428, -529355.625000
-429, -529330.312500
-430, -529304.937500
-431, -529279.562500
-432, -529254.187500
-433, -529228.812500
-434, -529203.562500
-435, -529176.750000
-436, -529151.437500
-437, -529126.062500
-438, -529100.750000
-439, -529075.437500
-440, -529050.125000
-441, -529024.812500
-442, -528998.062500
-443, -528972.750000
-444, -528947.437500
-445, -528922.125000
-446, -528896.812500
-447, -528871.500000
-448, -528846.187500
-449, -528819.562500
-450, -528794.250000
-451, -528768.937500
-452, -528743.687500
-453, -528718.312500
-454, -528693.062500
-455, -528667.812500
-456, -528642.500000
-457, -528615.875000
-458, -528590.625000
-459, -528565.312500
-460, -528540.062500
-461, -528514.812500
-462, -528489.562500
-463, -528464.312500
-464, -528437.687500
-465, -528412.437500
-466, -528387.187500
-467, -528361.937500
-468, -528336.687500
-469, -528311.437500
-470, -528286.187500
-471, -528259.687500
-472, -528234.437500
-473, -528209.187500
-474, -528184.000000
-475, -528158.750000
-476, -528133.500000
-477, -528108.312500
-478, -528081.812500
-479, -528056.625000
-480, -528031.375000
-481, -528006.125000
-482, -527980.937500
-483, -527955.750000
-484, -527930.562500
-485, -527905.375000
-486, -527878.875000
-487, -527853.687500
-488, -527828.500000
-489, -527803.312500
-490, -527778.125000
-491, -527752.937500
-492, -527727.750000
-493, -527701.312500
-494, -527676.187500
-495, -527651.000000
-496, -527625.875000
-497, -527600.687500
-498, -527575.500000
-499, -527550.375000
-500, -527524.000000
-501, -527498.812500
-502, -527473.625000
-503, -527448.500000
-504, -527423.375000
-505, -527398.250000
-506, -527373.125000
-507, -527346.750000
-508, -527321.625000
-509, -527296.500000
-510, -527271.312500
-511, -527246.250000
-512, -527221.125000
-513, -527196.062500
-514, -527169.687500
-515, -527144.562500
-516, -527119.437500
-517, -527094.375000
-518, -527069.250000
-519, -527044.187500
-520, -527019.062500
-521, -526992.812500
-522, -526967.687500
-523, -526942.625000
-524, -526917.562500
-525, -526892.437500
-526, -526867.375000
-527, -526842.312500
-528, -526816.062500
-529, -526790.937500
-530, -526765.937500
-531, -526740.812500
-532, -526715.812500
-533, -526690.687500
-534, -526665.625000
-535, -526640.562500
-536, -526614.375000
-537, -526589.375000
-538, -526564.312500
-539, -526539.250000
-540, -526514.250000
-541, -526489.250000
-542, -526464.187500
-543, -526438.000000
-544, -526413.000000
-545, -526387.937500
-546, -526362.937500
-547, -526337.937500
-548, -526312.937500
-549, -526287.937500
-550, -526261.750000
-551, -526236.750000
-552, -526211.750000
-553, -526186.750000
-554, -526161.750000
-555, -526136.750000
-556, -526111.750000
-557, -526085.687500
-558, -526060.687500
-559, -526035.687500
-560, -526010.750000
-561, -525985.750000
-562, -525960.750000
-563, -525935.750000
-564, -525910.812500
-565, -525884.750000
-566, -525859.812500
-567, -525834.812500
-568, -525809.875000
-569, -525784.937500
-570, -525760.000000
-571, -525735.000000
-572, -525709.000000
-573, -525684.062500
-574, -525659.125000
-575, -525634.187500
-576, -525609.250000
-577, -525584.312500
-578, -525559.375000
-579, -525533.437500
-580, -525508.562500
-581, -525483.625000
-582, -525458.625000
-583, -525433.750000
-584, -525408.875000
-585, -525383.937500
-586, -525358.000000
-587, -525333.062500
-588, -525308.187500
-589, -525283.312500
-590, -525258.375000
-591, -525233.437500
-592, -525208.625000
-593, -525182.687500
-594, -525157.812500
-595, -525132.937500
-596, -525108.000000
-597, -525083.187500
-598, -525058.312500
-599, -525033.437500
-600, -525007.562500
-601, -524982.687500
-602, -524957.812500
-603, -524932.937500
-604, -524908.125000
-605, -524883.250000
-606, -524858.437500
-607, -524832.562500
-608, -524807.750000
-609, -524782.875000
-610, -524758.062500
-611, -524733.250000
-612, -524708.375000
-613, -524683.562500
-614, -524658.750000
-615, -524632.937500
-616, -524608.125000
-617, -524583.312500
-618, -524558.500000
-619, -524533.687500
-620, -524508.875000
-621, -524484.062500
-622, -524458.250000
-623, -524433.500000
-624, -524408.687500
-625, -524383.875000
-626, -524359.125000
-627, -524334.375000
-628, -524309.500000
-629, -524283.781250
-630, -524259.031250
-631, -524234.250000
-632, -524209.500000
-633, -524184.718750
-634, -524159.937500
-635, -524135.187500
-636, -524110.437500
-637, -524084.687500
-638, -524059.937500
-639, -524035.187500
-640, -524010.406250
-641, -523985.656250
-642, -523960.968750
-643, -523936.218750
-644, -523910.531250
-645, -523885.781250
-646, -523861.031250
-647, -523836.312500
-648, -523811.625000
-649, -523786.843750
-650, -523762.187500
-651, -523736.562500
-652, -523711.812500
-653, -523687.062500
-654, -523662.406250
-655, -523637.656250
-656, -523613.031250
-657, -523588.312500
-658, -523562.656250
-659, -523537.968750
-660, -523513.281250
-661, -523488.625000
-662, -523463.906250
-663, -523439.250000
-664, -523414.531250
-665, -523388.968750
-666, -523364.250000
-667, -523339.656250
-668, -523314.968750
-669, -523290.250000
-670, -523265.593750
-671, -523241.000000
-672, -523215.406250
-673, -523190.750000
-674, -523166.125000
-675, -523141.500000
-676, -523116.781250
-677, -523092.187500
-678, -523067.562500
-679, -523042.031250
-680, -523017.406250
-681, -522992.750000
-682, -522968.125000
-683, -522943.468750
-684, -522918.906250
-685, -522894.281250
-686, -522868.750000
-687, -522844.156250
-688, -522819.562500
-689, -522794.937500
-690, -522770.343750
-691, -522745.750000
-692, -522721.156250
-693, -522696.531250
-694, -522671.093750
-695, -522646.500000
-696, -522621.906250
-697, -522597.343750
-698, -522572.781250
-699, -522548.187500
-700, -522523.593750
-701, -522498.156250
-702, -522473.593750
-703, -522449.031250
-704, -522424.500000
-705, -522399.906250
-706, -522375.343750
-707, -522350.843750
-708, -522325.437500
-709, -522300.843750
-710, -522276.312500
-711, -522251.812500
-712, -522227.250000
-713, -522202.687500
-714, -522178.156250
-715, -522153.625000
-716, -522128.281250
-717, -522103.750000
-718, -522079.187500
-719, -522054.718750
-720, -522030.218750
-721, -522005.656250
-722, -521981.156250
-723, -521955.781250
-724, -521931.343750
-725, -521906.812500
-726, -521882.343750
-727, -521857.843750
-728, -521833.312500
-729, -521808.843750
-730, -521783.531250
-731, -521759.000000
-732, -521734.531250
-733, -521710.062500
-734, -521685.625000
-735, -521661.125000
-736, -521636.687500
-737, -521611.406250
-738, -521586.937500
-739, -521562.500000
-740, -521538.000000
-741, -521513.562500
-742, -521489.093750
-743, -521464.625000
-744, -521439.375000
-745, -521414.968750
-746, -521390.500000
-747, -521366.062500
-748, -521341.656250
-749, -521317.218750
-750, -521292.781250
-751, -521267.562500
-752, -521243.156250
-753, -521218.718750
-754, -521194.281250
-755, -521169.906250
-756, -521145.468750
-757, -521121.093750
-758, -521095.843750
-759, -521071.468750
-760, -521047.062500
-761, -521022.718750
-762, -520998.281250
-763, -520973.906250
-764, -520949.531250
-765, -520924.343750
-766, -520899.968750
-767, -520875.593750
-768, -520851.187500
-769, -520826.781250
-770, -520802.468750
-771, -520778.093750
-772, -520753.687500
-773, -520728.593750
-774, -520704.218750
-775, -520679.875000
-776, -520655.531250
-777, -520631.187500
-778, -520606.812500
-779, -520582.468750
-780, -520557.375000
-781, -520533.000000
-782, -520508.687500
-783, -520484.343750
-784, -520460.031250
-785, -520435.687500
-786, -520411.375000
-787, -520386.312500
-788, -520361.968750
-789, -520337.687500
-790, -520313.343750
-791, -520289.031250
-792, -520264.718750
-793, -520240.437500
-794, -520216.156250
-795, -520191.093750
-796, -520166.781250
-797, -520142.468750
-798, -520118.218750
-799, -520093.906250
-800, -520069.593750
-801, -520045.312500
-802, -520020.375000
-803, -519996.031250
-804, -519971.781250
-805, -519947.468750
-806, -519923.250000
-807, -519899.000000
-808, -519874.718750
-809, -519849.718750
-810, -519825.500000
-811, -519801.218750
-812, -519776.968750
-813, -519752.718750
-814, -519728.468750
-815, -519704.218750
-816, -519679.281250
-817, -519655.062500
-818, -519630.781250
-819, -519606.531250
-820, -519582.375000
-821, -519558.125000
-822, -519533.906250
-823, -519508.968750
-824, -519484.750000
-825, -519460.562500
-826, -519436.312500
-827, -519412.093750
-828, -519387.906250
-829, -519363.687500
-830, -519338.781250
-831, -519314.625000
-832, -519290.437500
-833, -519266.250000
-834, -519242.062500
-835, -519217.875000
-836, -519193.687500
-837, -519168.781250
-838, -519144.625000
-839, -519120.437500
-840, -519096.250000
-841, -519072.125000
-842, -519048.000000
-843, -519023.812500
-844, -518998.968750
-845, -518974.750000
-846, -518950.656250
-847, -518926.468750
-848, -518902.343750
-849, -518878.187500
-850, -518854.031250
-851, -518829.906250
-852, -518805.093750
-853, -518780.937500
-854, -518756.812500
-855, -518732.718750
-856, -518708.593750
-857, -518684.468750
-858, -518660.375000
-859, -518635.562500
-860, -518611.406250
-861, -518587.343750
-862, -518563.218750
-863, -518539.125000
-864, -518515.000000
-865, -518490.906250
-866, -518466.125000
-867, -518442.031250
-868, -518417.968750
-869, -518393.875000
-870, -518369.781250
-871, -518345.687500
-872, -518321.625000
-873, -518297.562500
-874, -518272.812500
-875, -518248.718750
-876, -518224.687500
-877, -518200.625000
-878, -518176.562500
-879, -518152.531250
-880, -518128.468750
-881, -518103.750000
-882, -518079.656250
-883, -518055.656250
-884, -518031.625000
-885, -518007.562500
-886, -517983.531250
-887, -517959.500000
-888, -517934.812500
-889, -517910.750000
-890, -517886.718750
-891, -517862.718750
-892, -517838.687500
-893, -517814.687500
-894, -517790.656250
-895, -517766.000000
-896, -517741.968750
-897, -517717.968750
-898, -517693.968750
-899, -517670.000000
-900, -517646.000000
-901, -517622.000000
-902, -517597.312500
-903, -517573.375000
-904, -517549.343750
-905, -517525.375000
-906, -517501.375000
-907, -517477.468750
-908, -517453.468750
-909, -517428.843750
-910, -517404.875000
-911, -517380.937500
-912, -517356.937500
-913, -517333.000000
-914, -517309.000000
-915, -517285.062500
-916, -517260.500000
-917, -517236.562500
-918, -517212.625000
-919, -517188.625000
-920, -517164.718750
-921, -517140.750000
-922, -517116.875000
-923, -517092.281250
-924, -517068.312500
-925, -517044.406250
-926, -517020.468750
-927, -516996.562500
-928, -516972.687500
-929, -516948.718750
-930, -516924.812500
-931, -516900.281250
-932, -516876.406250
-933, -516852.500000
-934, -516828.562500
-935, -516804.687500
-936, -516780.781250
-937, -516756.906250
-938, -516732.406250
-939, -516708.500000
-940, -516684.625000
-941, -516660.750000
-942, -516636.875000
-943, -516613.031250
-944, -516589.125000
-945, -516564.625000
-946, -516540.781250
-947, -516516.906250
-948, -516493.062500
-949, -516469.187500
-950, -516445.343750
-951, -516421.468750
-952, -516397.625000
-953, -516373.125000
-954, -516349.343750
-955, -516325.500000
-956, -516301.625000
-957, -516277.812500
-958, -516253.968750
-959, -516230.125000
-960, -516205.687500
-961, -516181.875000
-962, -516158.093750
-963, -516134.250000
-964, -516110.437500
-965, -516086.593750
-966, -516062.812500
-967, -516038.406250
-968, -516014.593750
-969, -515990.812500
-970, -515967.031250
-971, -515943.187500
-972, -515919.437500
-973, -515895.625000
-974, -515871.218750
-975, -515847.437500
-976, -515823.687500
-977, -515799.906250
-978, -515776.156250
-979, -515752.343750
-980, -515728.625000
-981, -515704.187500
-982, -515680.468750
-983, -515656.718750
-984, -515632.906250
-985, -515609.187500
-986, -515585.406250
-987, -515561.687500
-988, -515537.375000
-989, -515513.625000
-990, -515489.875000
-991, -515466.125000
-992, -515442.406250
-993, -515418.687500
-994, -515394.937500
-995, -515370.656250
-996, -515346.906250
-997, -515323.156250
-998, -515299.437500
-999, -515275.750000