diff --git a/chat/websocket.go b/chat/websocket.go new file mode 100644 index 0000000..92ef6dc --- /dev/null +++ b/chat/websocket.go @@ -0,0 +1,123 @@ +package chat + +import ( + "encoding/json" + "fmt" + "net/http" + "reflect" + "time" + + "github.com/olivia-ai/olivia/network" + + "github.com/gookit/color" + "github.com/gorilla/websocket" + "github.com/olivia-ai/olivia/analysis" + "github.com/olivia-ai/olivia/user" + "github.com/olivia-ai/olivia/util" + gocache "github.com/patrickmn/go-cache" +) + +var ( + // Create the neural network variable to use it everywhere + neuralNetwork network.Network + // Initiatizes the cache with a 5 minute lifetime + cache = gocache.New(5*time.Minute, 5*time.Minute) +) + +// Configure the upgrader +var upgrader = websocket.Upgrader{ + CheckOrigin: func(r *http.Request) bool { + return true + }, +} + +// RequestMessage is the structure that uses entry connections to chat with the websocket +type RequestMessage struct { + Content string `json:"content"` + Token string `json:"user_token"` + Information user.Information `json:"information"` +} + +// ResponseMessage is the structure used to reply to the user through the websocket +type ResponseMessage struct { + Content string `json:"content"` + Tag string `json:"tag"` + Information user.Information `json:"information"` +} + +// Serve serves the websocket in the given port +func Serve(_neuralNetwork network.Network, port string) { + // Set the current global network as a global variable + neuralNetwork = _neuralNetwork + + http.HandleFunc("/", Handle) + + magenta := color.FgMagenta.Render + fmt.Printf("\nChat Websocket listening on the port %s...\n", magenta(port)) + + // Serves the chat + err := http.ListenAndServe(":"+port, nil) + if err != nil { + panic(err) + } +} + +// Handle manages the entry connections and reply with the neural network +func Handle(w http.ResponseWriter, r *http.Request) { + conn, _ := upgrader.Upgrade(w, r, nil) + fmt.Println(color.FgGreen.Render("A new connection has been opened")) + + for { + // Read message from browser + msgType, msg, err := conn.ReadMessage() + if err != nil { + continue + } + + // Unserialize the json content of the message + var request RequestMessage + if err = json.Unmarshal(msg, &request); err != nil { + continue + } + + // Set the informations from the client into the cache + if reflect.DeepEqual(user.GetUserInformation(request.Token), user.Information{}) { + user.SetUserInformation(request.Token, request.Information) + } + + // Write message back to browser + response := Reply(request) + if err = conn.WriteMessage(msgType, response); err != nil { + continue + } + } +} + +// Reply takes the entry message and returns an array of bytes for the answer +func Reply(request RequestMessage) []byte { + var responseSentence, responseTag string + + // Send a message from res/messages.json if it is too long + if len(request.Content) > 500 { + responseTag = "too long" + responseSentence = util.GetMessage(responseTag) + } else { + responseTag, responseSentence = analysis.NewSentence( + request.Content, + ).Calculate(*cache, neuralNetwork, request.Token) + } + + // Marshall the response in json + response := ResponseMessage{ + Content: responseSentence, + Tag: responseTag, + Information: user.GetUserInformation(request.Token), + } + + bytes, err := json.Marshal(response) + if err != nil { + panic(err) + } + + return bytes +} diff --git a/dashboard/api.go b/dashboard/api.go index 4c3f43b..e0dea4c 100644 --- a/dashboard/api.go +++ b/dashboard/api.go @@ -2,9 +2,12 @@ package dashboard import ( "encoding/json" + "fmt" "log" "net/http" + "github.com/gookit/color" + "github.com/gorilla/mux" "github.com/olivia-ai/olivia/network" ) @@ -29,7 +32,7 @@ type Training struct { } // Serve serves the dashboard REST API on the port 8081 by default. -func Serve(_neuralNetwork network.Network) { +func Serve(_neuralNetwork network.Network, port string) { // Set the current global network as a global variable neuralNetwork = _neuralNetwork @@ -38,7 +41,11 @@ func Serve(_neuralNetwork network.Network) { // Create the routes router.HandleFunc("/dashboard", GetDashboardData).Methods("GET") - log.Fatal(http.ListenAndServe(":8081", router)) + magenta := color.FgMagenta.Render + fmt.Printf("Dashboard API listening on the port %s...\n", magenta(port)) + + // Serves the dashboard + log.Fatal(http.ListenAndServe(":"+port, router)) } // GetDashboardData encodes the json for the dashboard data diff --git a/main.go b/main.go index c50adcb..37dfda1 100644 --- a/main.go +++ b/main.go @@ -1,129 +1,22 @@ package main import ( - "encoding/json" - "fmt" - "net/http" - "os" - "reflect" - "time" - + "github.com/olivia-ai/olivia/chat" "github.com/olivia-ai/olivia/dashboard" - - "github.com/gookit/color" - "github.com/gorilla/websocket" - "github.com/olivia-ai/olivia/analysis" "github.com/olivia-ai/olivia/training" - "github.com/olivia-ai/olivia/user" - "github.com/olivia-ai/olivia/util" - gocache "github.com/patrickmn/go-cache" ) var ( - model = training.CreateNeuralNetwork() - cache = gocache.New(5*time.Minute, 5*time.Minute) + // Initialize the neural network by training it + neuralNetwork = training.CreateNeuralNetwork() ) -// Configure the upgrader -var upgrader = websocket.Upgrader{ - CheckOrigin: func(r *http.Request) bool { - return true - }, -} - -type RequestMessage struct { - Content string `json:"content"` - Token string `json:"user_token"` - Information user.Information `json:"information"` -} - -type ResponseMessage struct { - Content string `json:"content"` - Tag string `json:"tag"` - Information user.Information `json:"information"` -} - func main() { - http.HandleFunc("/", Handle) - - port := "8080" - if os.Getenv("PORT") != "" { - port = os.Getenv("PORT") - } - - magenta := color.FgMagenta.Render - // Serve the REST API inside a go routine go func() { - fmt.Printf("Dashboard API listening on the port %s...\n", magenta(8081)) - - // Serve the API - dashboard.Serve(model) + dashboard.Serve(neuralNetwork, "8081") }() - fmt.Printf("\nChat Websocket listening on the port %s...\n", magenta(port)) - - // Serves the websocket - err := http.ListenAndServe(":"+port, nil) - if err != nil { - panic(err) - } -} - -func Handle(w http.ResponseWriter, r *http.Request) { - conn, _ := upgrader.Upgrade(w, r, nil) - fmt.Println(color.FgGreen.Render("A new connection has been opened")) - - for { - // Read message from browser - msgType, msg, err := conn.ReadMessage() - if err != nil { - continue - } - - // Unserialize the json content of the message - var request RequestMessage - if err = json.Unmarshal(msg, &request); err != nil { - continue - } - - // Set the informations from the client into the cache - if reflect.DeepEqual(user.GetUserInformation(request.Token), user.Information{}) { - user.SetUserInformation(request.Token, request.Information) - } - - // Write message back to browser - response := Reply(request) - if err = conn.WriteMessage(msgType, response); err != nil { - continue - } - } -} - -func Reply(request RequestMessage) []byte { - var responseSentence, responseTag string - - // Send a message from res/messages.json if it is too long - if len(request.Content) > 500 { - responseTag = "too long" - responseSentence = util.GetMessage(responseTag) - } else { - responseTag, responseSentence = analysis.NewSentence( - request.Content, - ).Calculate(*cache, model, request.Token) - } - - // Marshall the response in json - response := ResponseMessage{ - Content: responseSentence, - Tag: responseTag, - Information: user.GetUserInformation(request.Token), - } - - bytes, err := json.Marshal(response) - if err != nil { - panic(err) - } - - return bytes + // Serves the chat + chat.Serve(neuralNetwork, "8080") } diff --git a/res/training.json b/res/training.json index 2bc6f13..eb1fd0f 100755 --- a/res/training.json +++ b/res/training.json @@ -1 +1 @@ -{"Layers":[[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.4387035155409717,0.4149103310257297,0.5687357856614143,0.44685607698619845,0.7321341888027683,0.5211547818783958,0.6060614318387975,0.545605024006577,0.713794311289122,0.5941413578493793,0.3378074483939093,0.44938171575981645,0.6355408395006485,0.4280229369588307,0.5948639170025477,0.695797599997589,0.6135660610530091,0.5948253954839857,0.6521905015432063,0.2931222781111401,0.25664480491564207,0.5346639450998009,0.30587341253644795,0.6273773427149968,0.7233489360756211,0.4015711085085147,0.37176634212683307,0.446764138952222,0.30844043409499844,0.7250799761546654,0.4819244518809558,0.6388931410810672,0.6127343172712615,0.5812898524509573,0.53986024127246,0.5090583432522954,0.583817693452549,0.4843986546669566,0.7193116428266244,0.4620057185315414,0.4890915002395758,0.48072512253199007,0.35977671976152303,0.42313217758540494,0.30506695840211645,0.5305056231586711,0.40628308265689156,0.509249953841338,0.5796534288999109,0.6027402686641684],[0.17196602923704274,0.550040951029852,0.00011175117898887973,0.0022788733083766387,0.2830701750247588,0.39877812058475703,0.0000019044136098014463,0.04793489113449561,0.08658358426993212,0.006249524454910177,0.058780236650966704,0.4202424575705024,0.8655913212189693,0.00035352832797391634,0.006435407754214623,0.0008805472382020377,0.00003887237722658486,0.00021126158848666334,0.6500932674794524,0.7185612957889317,0.017129361175830037,0.1349002533082285,0.29605207992228694,0.28781542225936274,0.2098148891554257,0.9356482132208921,0.0004479268500138449,0.041369698213774474,0.5826358553643434,0.6228079439069862,0.0005740283497365782,0.28025403706007274,0.3038077944416413,0.16747695855227013,0.2736251661147494,0.09637066661380496,0.9461262605088157,0.3209199145155579,0.3783003972711023,0.34924357786407784,0.35986257587014975,0.04079733815078159,0.005128212402561598,0.8245057452400808,0.00004083350417087261,0.4193064842492229,0.00030394984924797167,0.000008596588518339561,0.16283615994454684,0.01572290912262733],[0.3041325942983708,0.4615304217010692,0.00008306724245928138,0.00006845933984455735,0.38764839921328115,0.4611651628741804,0.00004295360327894154,0.00455033184319696,0.08865919623942105,0.0005213527734313381,0.20850403774954956,0.4526084136532039,0.9508478693971822,0.001015628598410443,0.0022408863989263647,0.0004918756297254466,0.0006950856123939334,0.0005616453938559304,0.551582205498493,0.7423947161736297,0.01935515620978851,0.16951241443024948,0.3843228809093973,0.1367210608876816,0.26804340025524437,0.7177322005362555,0.0000900034136740014,0.4864657346144755,0.5607391850940846,0.3832255800948369,0.00005655674327583893,0.37706483236841837,0.5233609738429754,0.1219318261484068,0.33850832468246206,0.05560502083127056,0.8340968142933836,0.2927032823560548,0.7613104830905931,0.3487934566176399,0.24149428065846668,0.01659305697326525,0.0005104975991541031,0.8110082800269471,0.000003175350232098254,0.6316522233645181,0.0002868979139647964,0.000004041003789441201,0.02660718308980931,0.0003693808236196072],[0.4199045056211627,0.4043926500235571,4.3475283842407087e-8,0.000004207441724944521,0.35026367701089944,0.12412274901256774,1.6641477269738424e-9,0.00015023957595084407,0.11032013058090005,0.000023308980524437958,0.09779262631480767,0.37763533513098596,0.7254925227292234,0.0008434469613170734,0.0008591344294772847,0.00021055784281184028,2.0587631356707557e-7,0.00004620401039622183,0.2747970892718915,0.393949156316556,0.03886750633987109,0.03338722833867718,0.31995721616135103,0.1293795620041378,0.13520141030436858,0.9520650275888322,0.000028706364289554972,0.15464437817666904,0.5447709715802219,0.8699301736877577,0.005401830260430355,0.4516473912661041,0.40338075166653187,0.17484759462256833,0.0446434493093799,0.04741533558610278,0.9358186380933016,0.4020064952506345,0.9156988547525038,0.6414759443810479,0.382339918341702,0.0009894748435008793,0.000007211499573474263,0.8443860176527018,0.0000040598852944907956,0.17560856417093312,2.576309367779144e-7,0.000036653148920063905,0.1167262539344964,0.00006645178795611595],[0.16649261409786056,0.6713447348464422,0.6346071633810756,0.7249634311755697,0.5419071032358574,0.17150658497077492,0.6436440546534485,0.027778425410519024,0.5022431133572023,0.7157109650650253,0.8020520942797175,0.24068027462380764,0.44421563012032816,0.4538961689873234,0.8068161124540151,0.5409129492948348,0.28095790469835363,0.6542277727504237,0.536433153926563,0.3181504763301016,0.610074715585405,0.7083218808008002,0.03119130477120482,0.06623474560098473,0.06047286166339932,0.11097105129750322,0.5069530351139975,0.4154976581339085,0.6656717121425373,0.5304590013426803,0.5041777091539656,0.7437898495018138,0.23379372111028535,0.7188666831602701,0.8409416621362347,0.809885430136679,0.6491351392929048,0.095424416786419,0.0774662136376283,0.5341084877162442,0.5999991397503363,0.128026692628506,0.6617055475475884,0.6906471236137284,0.5513828330363149,0.20880151254905996,0.3557138980554579,0.5252086016426405,0.21001111123880933,0.4444174704108352],[0.6855668918611486,0.8955507413104425,0.7315924709323466,0.4938295837178975,0.20921479897041148,0.6466272511473524,0.5848920947206253,0.6541807700705462,0.8759673766644054,0.7436237271242678,0.45825818454508943,0.07070134028860847,0.22093549708455013,0.054343143448665414,0.462066980639463,0.6422295196968805,0.18455798946027216,0.7716455430803801,0.5396680806893001,0.43541391067031865,0.7134459799246367,0.2074699088289515,0.466239453352453,0.046258720883625884,0.040774139738329725,0.13744136610261087,0.8395477450096291,0.4951575630541486,0.7318115539053739,0.7321665344429599,0.00682704140666762,0.43772227767306376,0.25260640091393305,0.5345313472962725,0.5733744788407813,0.7580779684694628,0.050391591415739845,0.04192410635086958,0.21920994185961756,0.3942997530002802,0.6347953405414316,0.8827813497317594,0.027551884773698958,0.5131824425615464,0.7272946178380083,0.8208616428623252,0.14888879045986936,0.6917694994869341,0.14162072784039917,0.26762905110890667],[0.615913234017604,0.7229134829260101,0.5310541976214629,0.20672521382963166,0.3383578214901502,0.8206815183767141,0.23425353417539885,0.8284832096388215,0.2951468058378798,0.8169123998566575,0.759090918727757,0.2668433550538596,0.462276751118607,0.02258215404514152,0.3153264500977301,0.521292868713474,0.056532025846755145,0.9811164123295617,0.07824257784292656,0.4986987598151415,0.8958612133206921,0.04269840029649383,0.15053495481732534,0.04988752058239505,0.012459548320096787,0.2584704894476509,0.7029151922299774,0.3930644819511907,0.13601797100023014,0.07831200536283324,0.027028830226948044,0.5294284812245943,0.7321220141131366,0.6270586739246414,0.45480876558542477,0.6214400849090692,0.2728430483074658,0.01870436139393604,0.9436342610318591,0.04955973643051287,0.47553110384250047,0.034969995888583065,0.0009562813758025933,0.434281384233754,0.47772953424243153,0.07668474756361451,0.004234613910595134,0.9253391084754907,0.022785801569762315,0.5272632675941457],[0.2370178539070203,0.6650303630830136,0.6179678391325342,0.47542057245051705,0.3414018596034149,0.5718312957203199,0.718162092990663,0.04476028818052302,0.5888198509343722,0.6018175689465537,0.6044569204752033,0.1952522393704666,0.697265643583642,0.1993178319914514,0.8819785709143403,0.586420322077061,0.08379145307678336,0.6897317246649218,0.23260093071924753,0.6824079978488395,0.08260176979203136,0.5892694874104484,0.35737323338002963,0.0007908214379862915,0.005180486827021348,0.5562301653764854,0.5281571485002282,0.6666469960730202,0.5302997411931163,0.35786839035823725,0.1431912728138493,0.5488892899936351,0.6130500069815862,0.13387793136962617,0.7359644626930104,0.7641113184364583,0.13762103960970853,0.19185950947149055,0.01883675676329319,0.30003240836255507,0.8523192017396636,0.17576799037484403,0.015609799169918032,0.6413083868869037,0.27130302508028203,0.17415492501018293,0.09436261483476038,0.7534525412502816,0.7431415278893031,0.3532791640830896],[0.4175834158790064,0.23721495888758345,0.5823203065640818,0.00009104568369656472,0.24238216315777472,0.04397968829745161,0.9144803499454204,0.3803797554520126,0.6517684818462051,0.1638803134640856,0.00005659857445987718,0.8527112948346792,0.00011794495260368892,0.004445256475463478,0.71887670735224,9.92037949667217e-7,0.01931971771756577,0.5052413616874007,0.0000413613038914432,0.13369651166817895,0.09560173461247437,0.7075134820884115,0.0004438414376090505,0.04533584682599729,0.47172967575753516,0.47575047097852713,0.14771219279182626,0.000026838039742241957,0.00022938234132556474,0.8134504028872129,0.12711820221624084,0.6208223915492684,0.8435045771458801,0.43952978418129596,0.23008665925405253,0.06688286974122508,0.6074101909469827,0.18942507139602416,0.046605180695140004,0.02028771984593736,0.008832054754343545,0.048321696015281405,0.6232586836404528,0.9230332777596625,0.5630136671815636,0.7627745577602781,0.1671756536311513,0.37285273577088845,0.926221564681765,0.8226110303334462],[0.48412183671974635,0.3924202855781704,0.5810842990201064,0.0005050487502927473,0.19141159267155408,0.007019483215534101,0.8198696780356527,0.8413335301898932,0.8382380315097918,0.2542568123269748,0.000057379310184500624,0.8663007891874331,0.00006138143381448164,0.002245487921400476,0.7448342461236616,0.0000039148082628195974,0.04327393799770639,0.3170389065944302,0.000009940837978655487,0.19979182176145585,0.037237433470880266,0.5874023195091849,0.0021498527985539537,0.035633286325826415,0.21333674244110454,0.6565248732830221,0.251213823989582,0.00006816309191878387,0.00015312520495061076,0.7157463486935878,0.10086055296128882,0.7976987029307292,0.9531138240620157,0.21733753542466536,0.2769826797456942,0.008045066810251173,0.6674686234639989,0.21465265980808337,0.027288990665172843,0.0019061236028598463,0.0028262193468164927,0.19027228289536122,0.64540899157612,0.8977500292487411,0.5958932409527112,0.4690477700603745,0.06667913113750425,0.06437928453951665,0.9858036900933863,0.5145269269521445],[0.4042123012874276,0.14964323116627964,0.005253717658011155,0.290013764324935,0.37545484728408873,0.254512165342457,0.1102774023938227,0.002965192095905064,0.005142960827561363,0.0001698020812887694,0.7003144216395921,0.003020054297485053,0.8392232620815948,0.1829842703015593,0.6894559232585918,1.0862437824682763e-7,0.1653285258551042,0.000026893761352785783,0.8243007455603347,0.3957124325204039,0.3728405302339746,0.000037205550875730374,0.000001732897823917502,0.3158676858948882,0.31399893812575735,0.7262105511056923,0.002217358294889748,0.30377048754040625,0.15288535517328147,0.7795536059308672,0.000004527517822134097,0.014503850643836145,0.7194397687475944,0.00007346605969497103,0.4876626490890862,0.3732162605853564,0.7899741504967898,0.000004554382627827622,0.07615345947652581,0.5471816571279896,0.4651844476696812,0.004477806267142453,0.000011637789061822376,0.8367889368487235,0.018772600787604857,0.6433061052894122,0.44340998174937346,0.0000026122460682281725,0.4215662685710095,0.1845963503887857],[0.33313903600455447,0.879966852278026,0.19660049125023432,0.34689637814030744,0.7131713509721129,0.3057380600794873,0.26471033693163615,0.0008203929638699627,0.0028623455025487093,0.00004716761147506635,0.5410264953043411,0.0026677654596944443,0.7301343423059665,0.5306070379535613,0.6468945234640603,3.522253022651798e-7,0.36621502071509765,0.000035199355395839066,0.6791262440558187,0.03166066856225187,0.6113694770724508,2.2435072768346198e-7,0.000001924156932547554,0.29615343642801606,0.207084314380908,0.9824349684896297,0.00011140318009577162,0.009468747014365574,0.3025111212520154,0.6661144010991465,0.0000416329899282193,0.013969376983896784,0.579527158484048,7.700592771877656e-8,0.5891135768717634,0.5067557579010689,0.9189015576882857,2.1741636655899883e-7,0.15680721470826803,0.6037916842599542,0.5210263207165937,0.00014996739355751103,0.000024105109278425942,0.5030427021815902,0.11671710638751212,0.28198017051002083,0.19381112724629965,0.00012311709153723486,0.38169565818950163,0.07003631548034911],[0.26190001325597856,0.38153879627678533,0.00042538876188861585,0.5119321612206945,0.0019193120896930222,0.00008213140517704181,0.00046056055683968113,0.055797689195829704,0.00038986735984344217,0.00043760555461626555,0.4341501781751149,0.04056930516897997,0.9096249598724296,0.000023869625996390065,0.4319079103297306,7.350097776656799e-7,0.01655657506569552,0.016496358099967783,0.7961893327528266,0.31861169960632213,0.0007446806582962466,0.16749539719673295,0.000052431042709254766,0.0006071077403547447,0.2042895626724297,0.7825730869647859,0.006154281257014762,0.4945373602921623,0.0035016304654988495,0.9431864904212395,0.000052317636502184856,0.4171059202991013,0.8175609335002775,0.20938490660716197,0.2551910307025265,0.0831530833017678,0.9409623131467043,0.00007621874923998466,0.013382611030926455,0.4893784769313213,0.016184397737209956,0.1910119480120611,0.00020249007070467735,0.9048415574724777,0.0000033808891367442587,0.575493827895144,0.05639979845908936,0.0000010868681840663669,0.008295332916135358,0.22666071698935772],[0.27533040359775296,0.33404229584350775,0.00016060149148813268,0.0000016700588271722795,0.20917283597167585,0.27698930117993953,0.000018117072552692264,0.32195327714915545,0.6793162069417827,0.37628369091331104,0.013005751948962209,0.5619697228539335,0.7625854753102137,0.6545369075242689,0.7694582180178786,0.8071960441972981,0.004567436336915827,0.14631856697049997,0.767047191877761,0.8471037465784926,0.860873650540113,2.8002743893534838e-8,0.8740267627858213,0.5022910292799593,0.00002435565189396321,0.4371135632910725,0.4320944239164898,0.00014922120749197345,0.06063566343044008,0.8191647357353037,0.5343668978727373,0.6248353218278351,0.3355847978494858,0.0844960047299832,0.0007864015703955961,0.6001564691028239,0.0003318940223553637,0.01352864065035604,0.22503850021385258,5.901118396809701e-8,0.4325435340253788,0.00008704427313881686,0.6585767035069543,0.17685888419789542,0.27608563590065904,0.000026398694634823827,0.000003603727641911149,0.2761528551346762,0.5226894845720607,0.6906013618131622],[0.3785287261343947,0.47885498236324103,0.0012957011066427177,0.0001139043322439939,0.08582276856391176,0.06282119148827654,0.031541933603086686,0.33737118283879014,0.7071214798148922,0.17970953068716755,0.09014418454316536,0.6727289255389006,0.8869280647799042,0.3049775758002707,0.6586886994351948,0.046724941097450824,0.23558939930096737,0.08336706992590595,0.8106665584548953,0.52354528131341,0.22066959922660373,0.0011324579822210663,0.8778837128715344,0.8936751249177926,0.11041736134322865,0.38064441617264505,0.11398064954865034,0.058956156778697616,0.05197588281760638,0.9071826393984478,0.4714852757256865,0.7658075139831889,0.12059861216522876,0.16338402086063528,0.2133566559552018,0.5201902094789997,0.004113296251006985,0.0700556651975307,0.05120521834901416,0.003868668932853779,0.2860633195255837,0.0009148165940022912,0.8703133751219548,0.18987990130949617,0.14232821717178126,0.013879951858519844,0.003908858831740179,0.07265678069276019,0.5772440417240879,0.2712796162170739],[0.7342666721614333,0.6208144613351003,0.3607408105824079,0.012831116659569566,0.5745152454217423,0.9763742729936273,0.0026293722801947876,0.41718906485825996,0.23199696318365437,0.8547153835448346,0.33797733396228236,0.6536926981402086,0.3615146122113315,0.4995445995438601,0.42711311847723143,0.28543395735856336,0.025814975181102557,0.9030687533488483,0.6629075090398358,0.4576333320006533,0.6228868172809153,0.0003798975400490584,0.7062788152160516,0.7095747328028658,0.0035624343409346223,0.21474093731306698,0.8976848574089583,0.01647797390934789,0.4178916913928175,0.512008747050844,0.46513944225762066,0.3729129028568298,0.833174536553671,0.3908945270673925,0.16242368739828805,0.15801059989885857,0.19249223619797218,0.045376944450717875,0.9171004304887923,0.0006145748641245675,0.1825328312602643,0.005861591883746751,0.22412338385233177,0.5316290175892833,0.7497228883059065,0.03190886402448543,0.002054630124946334,0.7718689639125071,0.5026564581678846,0.34571123973617285],[0.7726299531529459,0.3490777088928964,0.04519262257555021,0.019672399983726038,0.8528253144450948,0.813419653901871,0.03972980336163753,0.5806026447021099,0.5400795661218715,0.878625335858117,0.45089384560253226,0.3768633281463746,0.6928262416694263,0.4128182809262935,0.6804654410313501,0.007481606128787806,0.29870567996667496,0.5852845964712653,0.672378215282066,0.25179402477944823,0.07472089262835611,0.016558753269994373,0.6300392919973173,0.5989021129699759,0.20644859474897487,0.14434665127041688,0.8329622730155107,0.5327235820113301,0.5528837278384121,0.8384776422965027,0.8138851603030709,0.4410589407162031,0.7581954186588182,0.332931844341236,0.6743911513387514,0.5573857378633639,0.07142630986120364,0.5243519991420867,0.8849494005762684,0.012096691072122334,0.5352945551563322,0.02460190441306898,0.6139660872089703,0.21635301224255954,0.7308030045700652,0.0923319514528067,0.3617761713746646,0.7343354431899003,0.4114364861149613,0.2799651674991947],[0.28299282743704524,0.33074343132849704,0.00017353369609498842,0.000046595073442239944,0.11561962683346445,0.13388467344586796,0.000036623267995081454,0.1720496252807612,0.12668427609931485,0.3916566135521009,0.00415450551319153,0.6637623777526117,0.8814058627859213,0.4713321673395064,0.508766082624882,0.852832629763762,0.003557851903254269,0.07934975863863472,0.6605857950771306,0.6535108908755208,0.9748273987569217,5.367826019742603e-7,0.7101686952035611,0.35670016651357833,0.000042604234537636966,0.6712478950668114,0.24622303570139745,0.0005983249219977774,0.020240024821009624,0.779496253159094,0.609935793248519,0.8891627913530683,0.22806568272720884,0.032092306071308266,0.002443851109441338,0.619413304336264,0.001090723430496559,0.006797612042046796,0.19548638714406996,9.67608614617489e-8,0.5640245936749027,0.00003838614819479101,0.47011267522578043,0.18530811250667512,0.24687615414195768,0.0004691549539834887,0.000004379459484813345,0.3069142328563945,0.6529905879449899,0.38456846052925536],[0.41381775266787557,0.410859975928905,0.0002965015442173605,0.00035221239378187665,0.059544775189506426,0.12158659283781835,0.000029644945858246147,0.21047639859216827,0.24914047012293572,0.19696585783088993,0.054941840247217356,0.8328063805441255,0.8429436328474519,0.7520259600964323,0.9245660444651138,0.8308097139276618,0.05812548857884261,0.012451019063294074,0.8732459905748065,0.6000923845971567,0.8715465842256274,0.0000027595684540415067,0.7366700838452341,0.5857498066352668,0.00044694751142890444,0.5461955063740719,0.13477691461416008,0.032683009337996796,0.028578825999689667,0.8781718504850529,0.5981373431147426,0.9237843477571261,0.13066095246890524,0.008607462001746714,0.0037496493260459197,0.8547892404082359,0.0014650404137108984,0.07504038878871873,0.05169213898170729,0.0000011389498214871015,0.7480284994333077,0.0005154946252639849,0.9662573631719361,0.3631177290153572,0.17269262091794405,0.001546791549207895,0.00003235144026546106,0.061729040683235335,0.8830031709331814,0.7359125212363451],[0.2041439051658498,0.17180560859324664,0.10885290645194486,0.1759831191884839,0.4510684856554572,0.9210352871375443,0.01604028878767262,0.4752290953813607,0.4360709844306587,0.834459208114488,0.7479569166465977,0.7080902254286671,0.49734609798418683,0.8684860815803309,0.7568968794291437,0.3796864805104695,0.23526816348964766,0.815213542730791,0.641886775906185,0.7855343989495285,0.3522807077889026,0.0029874198619585807,0.6724381107063941,0.5349216396089032,0.1405345714900236,0.5890110782577547,0.6983224252657424,0.5360280487962417,0.31539470838699435,0.40229780145053795,0.8260732565226887,0.4516645264639401,0.8317363762418788,0.11899778425037483,0.28154758866990226,0.49344329151776,0.1619330578616575,0.5421389984102151,0.9030790582749191,0.020356770401426805,0.7011538124617622,0.6030941493224927,0.6081126661753478,0.25923262690695426,0.8255653481370673,0.14003897625227688,0.012423790017164293,0.6869259143907963,0.8069893351785833,0.4664904223018852],[0.5297040075760977,0.7749648720076059,0.000003390616549100859,0.22719439371245126,0.00003271634968828666,3.1187306848517655e-8,0.14644763500087948,0.0011830935279104446,0.5918506749495822,0.000013120723947030913,0.0032301501262012528,0.6713771077423064,0.9533661956942278,0.7473165939085288,0.5185211400434981,0.7128317925553228,0.20383451447797016,4.2197426767506316e-7,0.9166658286627953,0.8430291436564489,0.6732185653605456,0.027789889516992534,0.7543580962440652,0.14971665919550622,0.30902790399869956,0.6056539076298043,0.002006162790831138,0.2572507431393921,0.475006821748426,0.9049909044745914,0.7754344202821076,0.8214848127194069,0.000010463063101282596,0.000048542244287540036,0.3662687803652112,0.5456836119231365,0.0004361437671774459,0.004559912927401898,5.3965898535448915e-8,0.19438303171255847,0.7804560173685704,0.0005065630225161333,0.9502052858536333,0.03203515600461111,0.000031590910623264126,0.2751217237216802,0.2437263764306492,0.00017414578272781803,0.7784740164484912,0.8678965891868733],[0.4543710996340368,0.4860277176090808,7.354226232741406e-7,0.2781455824184469,0.00009541168446959455,1.1406353137325898e-8,0.09612193425082236,0.001238863071168795,0.5397786300792113,0.00026175745144000484,0.00226673138419814,0.6176468659534905,0.9325051359171986,0.6236252802947356,0.9189535144688753,0.8825157802204653,0.13977998202980654,4.782613822877439e-8,0.8928988908017484,0.6904705008548161,0.7437001654613092,0.07862276057627877,0.9492229402884095,0.31188544496073334,0.3586902443177595,0.5534278703738855,0.0036265424801844004,0.38378854596023537,0.5063775276806702,0.9070137702699619,0.3820780912337067,0.766064408368661,0.000004889803591083945,0.01949471844624891,0.28645847635800925,0.7393813791046956,0.007056782018003302,0.0045382833717679425,2.934392111932224e-7,0.24349824114081856,0.39113943451335503,0.002030675206545804,0.8095746799419868,0.09465339346669005,0.000017843230936102644,0.3201937374124668,0.31358109971004544,0.0006581514918046976,0.645362456121115,0.9115197694447993],[0.4785867194519899,0.5337266500539514,0.0014365604009344982,0.9495616991109146,0.17860847984646994,0.0009514454321666321,0.7904676717220851,0.04554461005305498,0.7735172395027989,0.25318790522975637,0.23983390380985245,0.820722628121903,0.368267897966568,0.35942830201242887,0.6957717408416907,0.6030900226561329,0.4416741396236526,0.004409799510139814,0.49651966538011794,0.3399723063018478,0.6762331726163842,0.5658853348897261,0.7538329149986607,0.5828998740587107,0.6990956279470475,0.19189895186202172,0.16462840808109397,0.6934079016449187,0.7307446589769678,0.4272970855992367,0.7703603655683224,0.5477306774394787,0.040533841400070256,0.3595600136778289,0.7760049603821585,0.5389678426616865,0.5021143262247296,0.31890765015234207,0.008608826476098078,0.9069916723689799,0.3544416171500885,0.7159351515259175,0.6009466257894377,0.34097237280689796,0.017738739573509996,0.8697866660786627,0.945594477197771,0.19782637932453737,0.7916572232197124,0.8611420744422628],[1.7851344931052492e-7,0.4365596634404174,0.1819917915185142,0.00005366695660480064,0.3611865255056882,0.012248960558746113,0.714725590138264,0.9505536965351757,0.0015345924748790217,2.4033379630030334e-7,0.00003711317638819902,0.1426073417353217,0.7066771318970461,6.071712313529951e-7,0.20233288823256335,0.00436862697296543,0.47308028858547085,0.36039023325082903,0.2270420734524548,0.6760695172192406,0.0000012179364294489261,0.0000068408695092356796,0.06716399769589732,0.11053529530094174,0.1274464635451051,0.9564770582270508,3.2680881619578953e-9,6.251046121391919e-8,0.0000031351570297750914,0.07242196578642698,0.2776834901504974,0.4353951781858532,0.9776444673396698,0.1896317537840847,0.15676715914926204,0.03722977704240397,0.8410226432090138,1.249015262069886e-11,0.6320618554981866,0.1039906698382315,0.00040160697048737616,0.001697980643729655,0.28013793606985216,0.761882384592895,1.107939651775886e-7,0.000044953927811602464,1.674981384714404e-7,0.0051728133855981654,0.36522159384362546,0.5447576790919647],[6.450651016317108e-8,0.5513316891319274,0.05511193745154325,0.0000016632193564255762,0.20243564316595175,0.0012316309420922112,0.017937639936228027,0.6952989009776007,0.002257403570166489,3.699007108495428e-8,0.000002937376908501121,0.2312627803865609,0.9505839587110267,1.3228603212703029e-8,0.458660137111975,0.0220206248845945,0.552833742888951,0.04527331591937926,0.1689418645898847,0.6865765094075549,5.418500362088455e-7,0.000003515786850248106,0.17978101103852281,0.19362902638696047,0.33441191106835855,0.9111561701456454,3.4133310081016984e-11,1.0087321713069464e-9,0.00041900677556129957,0.9077037458598202,0.38505444252068094,0.2947294975278511,0.6292095334890535,0.14383019146806683,0.018070127927652505,0.16979951077950498,0.5943502912519809,1.0126184062037815e-13,0.22612579510198502,0.0024178303494509466,0.0015954887146778912,0.00018523697344301662,0.23519883947690953,0.917178317306723,5.2161154910196316e-8,5.827939886894942e-7,7.3704498695661065e-9,0.00004411690793136841,0.7167158206315603,0.5261031364842587],[0.000007095353001387913,0.766372704342836,0.5264369142396444,0.0058067806562202215,0.13280007093747714,0.11709003522195831,0.013199323490109391,0.5776743999419054,0.0015500315298251814,0.000002615736321502816,0.0000011464221585108175,0.053021196039331496,0.9516465906053947,1.5185651771255665e-7,0.05290406297553608,0.043053914485622,0.5043605435123307,0.2764678471834865,0.32098414044106266,0.3001157690045724,0.000068871390682215,0.000029807649105220394,0.07356028898658036,0.5917831183291864,0.543134258966771,0.9269411325229601,1.7611863993360993e-9,9.416632665690089e-7,0.003727719043578558,0.5383463065976939,0.5097559916855732,0.4602862342194517,0.7313155251245278,0.27987513778827566,0.3912931144702238,0.09404263033002562,0.9288126410911567,3.8417466886991715e-12,0.28473662846650444,0.040727917300101564,0.03113405661955312,0.000017795024616248687,0.13226210776699454,0.810584315044141,9.228111094955783e-7,0.00001107105312486327,2.600648608194922e-7,0.0010756730843811562,0.507033318538943,0.553615062662303],[0.703891306770497,0.3131320446237056,2.286800462724022e-9,0.0002102786703290378,0.04784766730008566,5.110439537090292e-7,5.43204844322395e-10,0.01057845977271057,0.5803494995315306,0.06284383195867688,0.012743485907586689,0.000013789819610788504,0.685322683699993,0.4693536608757541,0.0001425440617290411,0.015224279819868817,0.00008982425588872334,0.0016724578564886172,0.6160442067288486,0.004462894786544372,0.13167761373172587,0.23767315397863228,0.00534334197403188,0.017071153272475867,7.711557361302819e-7,0.9368696742396514,0.25736698544751335,0.280682527652976,0.08088889032648494,0.5337792692358653,0.18695514226582768,0.5719038792205852,0.6924204402174814,0.0024790445316487213,0.000004874698349452634,0.4494944499202287,0.9913144276151656,0.2444548725716723,0.9623708620225863,0.4416564585064899,0.42710732590404366,0.07053494999788165,9.809655847894704e-8,0.9473242779539618,0.09983768238563502,0.41621884711023455,5.631504852385308e-10,0.0054472217905414105,0.0008927295781419816,0.028416845007983305],[0.7422726960283619,0.3464410424735143,1.5441608014071461e-9,0.00029343476206511525,0.05282778354835012,3.6899025358129467e-7,2.424029565996954e-10,0.021010212913064,0.6379531786825163,0.07688667830452185,0.0028466143498456758,6.88356845898271e-7,0.6765452258694301,0.3323177624276007,0.000054685681229714826,0.0008877568705533399,0.00001926732527457642,0.00028178171203377747,0.8019864567594923,0.0017288668835610441,0.13027397824462286,0.23262564239516906,0.0018533039580559058,0.0019883837334133104,0.0000015012627890631386,0.9256920871789859,0.13650264774573906,0.35779219373155285,0.14543768276342275,0.9342001461198939,0.14552992561713096,0.3624959002327993,0.7237594097998649,0.005534308675330942,0.0000018400463759385976,0.13754693807742766,0.8680101428043584,0.45282152086681143,0.7606325375324111,0.4992081275258457,0.4897238799272503,0.058656018191905565,7.7698415235353e-9,0.9566116773121195,0.04787228746173381,0.3858357317619197,1.291250915254784e-10,0.00995916053380559,0.000013177720493339499,0.006882956154813331],[0.5515758417630058,0.00008608113236715487,4.76841396466727e-7,0.00003099154046243874,0.357012628475968,0.18089491607211228,1.1133256885722008e-7,0.0003261903833412734,0.623459701868535,0.4663221299197228,0.023240784815941322,0.026825771276665602,0.6471707876984922,0.2910766229726255,0.10760426318554057,0.008577415549452693,0.000004542311186559324,0.10584412609195128,0.5810133593721789,0.09259543007006286,0.48439200326737325,0.000017042969266488564,0.002259482822775392,0.002025833862273986,0.0001801122408334085,0.8913123696298293,0.2845776054416612,0.14781569053285926,0.022948314531799626,0.9022646524128692,0.000009109892441267217,0.3701500506517149,0.5137619940512683,0.49283535227228686,0.1344637931802918,0.004053035415512005,0.8994667295424863,0.009573252623428246,0.7692404281401596,0.19834404969286265,0.7127379564718415,0.38942556680968526,0.09459016927763898,0.8582134420180717,0.000014177824024130746,0.0008631482407927793,0.000034460517481684455,0.05529615779141645,0.18581661651913037,9.607523074251518e-7],[0.4815743287741004,0.0008039971578378249,5.17402138842746e-8,0.0000480476451348543,0.40176977864987545,0.1888226788230389,1.3259024114751627e-7,0.00033554148892283464,0.546615589352891,0.45127770967682834,0.017363325595596155,0.06982198838791741,0.6329660378532319,0.10457366918142968,0.13250094720247774,0.10872146268776067,0.0000020726074996752734,0.2542830368558457,0.20069319592750523,0.1328921953244236,0.1321956251457435,0.00025580300332302716,0.0022180735843554534,0.020744413624762675,0.0009518058299359183,0.9080674032405517,0.38850329566345015,0.1323596100282931,0.06509402066349354,0.8922366282566973,0.00009433172069859874,0.29307109130156056,0.4023057407650754,0.42446371388199766,0.20313354789258595,0.07130316949418843,0.9740770464293488,0.005539188928284874,0.8571785622608403,0.5863891002193777,0.6996093194854289,0.42955605811792147,0.1290878487619207,0.9791380575410894,0.000010536042294091297,0.0008893540735967449,0.00014085177009591127,0.17689871410069993,0.11646868404021826,4.1450124755219643e-7],[0.0014032294442821308,0.6588326112935184,0.00003205627684797322,0.009012055223105442,0.5144944288975808,0.39583768328034447,0.009658702246285289,0.8535665502123886,0.004741814721218593,0.01571373759862295,0.001083853661444107,0.0006022718119930087,0.7705221573747024,0.21580747083401924,0.40689132115402954,0.5418655210792296,0.6842454655035142,0.22999813689794307,0.7996516094158699,0.3893639583985569,0.17622447058700202,0.1391526887348004,0.020395551812340203,0.004750617153924166,0.2949012539259694,0.8945611182942835,0.22621024907878903,0.3382173963925895,0.2975173636839251,0.15197520582010657,0.1235019606867994,0.053572736870705434,0.3619428883320245,0.2667249030446639,0.4674878556571719,0.006887419070830541,0.8117061260515206,0.00019067729280829808,0.14895947696001713,0.3158710383564246,0.5379208064298515,0.0000726606463673382,0.18777512506925884,0.8257220994146651,0.11441948377464889,0.09852748450883532,0.3539960050674674,0.00021698378419992805,0.14072353326910986,0.001181108804300675],[0.0011899353478625994,0.5862472250476806,0.0000026753459893251144,0.00398902428617433,0.4700578673897094,0.5233569414312236,0.0012524478528217013,0.8999828733466038,0.0011045096967758252,0.066932758354939,0.0002813750546472309,0.006566430960312524,0.7306926955444193,0.3284020140200569,0.48462145947009344,0.7075175815123419,0.7609957256682548,0.3102253993617542,0.7314758597639647,0.5077440628484446,0.09837224134849312,0.060367726723386875,0.05868933490649993,0.000026080936743628386,0.2251775089055488,0.772703630197872,0.13790451759614114,0.49545284160590675,0.1999203798549622,0.2255227198996011,0.1825111456723207,0.09824648572879707,0.029801378878089858,0.18210435861825225,0.57653221612926,0.013988528072447347,0.9398798350061031,0.00002360472652234317,0.6027260246745234,0.6542529852973212,0.5462294254839644,0.00003467672883817137,0.282087783599345,0.8944880112215338,0.26337017855022976,0.04902048855460238,0.49572233311869446,0.0008929958820747869,0.019670989010723675,0.0006678843319869352],[0.05098854978311402,0.7581147384093333,0.005103227494591604,0.08876466232122757,0.6602206268799589,0.7473114554229447,0.19298428151559568,0.6161187628123549,0.16333602023171892,0.6791231764120833,0.04121495761709146,0.06285045745031419,0.3166603272703053,0.9371472367564625,0.606658859752197,0.9636313006636573,0.7822761979217628,0.8036742788204254,0.6171724267364177,0.7675206815905097,0.8657858101674487,0.6784801665937938,0.42991582710419785,0.046447798054324384,0.732755939175158,0.560963686532029,0.9655101570539387,0.8854919590129428,0.9251475202445023,0.2808093248749159,0.7095535487587443,0.06673070778539948,0.12078160321439757,0.8097045769066756,0.623139351302544,0.019363744395277046,0.7696671016756997,0.3689157643328876,0.2608380991981155,0.2921835365596644,0.7823694962428311,0.029277019246532057,0.6756296904837447,0.39335554728409544,0.9128981525781654,0.36314206010572436,0.9705760614665864,0.18410878547919696,0.4769115477195511,0.14308919010583193],[0.3640402756942745,0.37557307639901244,0.7600013546525248,0.5165857858797811,0.634570327537647,0.3680819327475369,0.6965233231755084,0.6016834249632989,0.07638239995457895,0.6846365418366046,0.6627041233758858,0.6161349368077322,0.6029632606983324,0.6008498270333171,0.10628128920520653,0.5808482418938028,0.2847531022671963,0.018493678171642165,0.4055737870501655,0.17407147659516112,0.6024975580312544,0.7776937720748066,0.6177670447231706,0.698105720615623,0.6855726631469384,0.5027853070835298,0.5578148524772828,0.6250083899718348,0.014175376188508067,0.7622791246284809,0.6712056598955322,0.7071422849236093,0.4274472706392478,0.2772168898127197,0.6885483537239403,0.7141639997219783,0.519998427754119,0.40843185287243605,0.302419155364473,0.6245388109616646,0.014822669622491668,0.7582331297795379,0.07284762666484226,0.04630295285908627,0.5332152537575577,0.008392431968020175,0.7053093123105555,0.6549702759664132,0.6854739334576839,0.2367453669581873],[0.6816839306872704,0.7230248700783666,0.5179460753590234,0.1959687271863212,0.7342244313402342,0.975150729888902,0.006303492771385837,0.8824320417463014,0.041574711992917894,0.8783605414830691,0.47450096384351875,0.13059983612431514,0.023999985913009544,0.49301403992162,0.0036503241113853132,0.6972777078624842,0.09081280881828416,0.7703112061698125,0.7262059806699271,0.7673425007293782,0.6639283414858329,0.1484583021850226,0.5615267421841741,0.36460827280745467,0.07025219337626512,0.8224468740472242,0.6320191955969071,0.16123455548008386,0.0012940867362080746,0.37698365508947,0.7024054562923187,0.020833060366974812,0.873068303537004,0.6366074881046838,0.19133705005417456,0.1170212352700895,0.6205695912186691,0.11208628774341696,0.8218027296167585,0.22211101231646252,0.008612189499378083,0.4135304747041575,0.00034957140504765125,0.15671751013148602,0.4258007747758664,0.0021432760790723406,0.04764744771334579,0.9405372514625093,0.266015493716975,0.40523355147232626],[0.5386060457203315,0.43736716109733353,0.5332438109720923,0.2111489182434325,0.5042939684895895,0.2714948019548004,0.5447930390615011,0.5816865166684133,0.5176448336258408,0.5477039614958841,0.4781551120816135,0.0862317562806868,0.18714461690503145,0.8235562812286779,0.2618091844178094,0.3534217908876325,0.4501807956785435,0.16833230457494897,0.40587460747535326,0.13192557749716544,0.49215765235711406,0.7513360002111183,0.66706754049517,0.1314866340378311,0.763560699484885,0.7840512766956391,0.2426622282738441,0.34193124364605854,0.14423680946890116,0.31290392591283916,0.6470271241390683,0.2699745947469472,0.5833717165114825,0.24018220131636392,0.18473371625301863,0.7549678393262117,0.4726367473381324,0.7204931048472355,0.4315753129068193,0.797631413688571,0.08304208420962478,0.8299642982323118,0.027094510798664737,0.005907046990703872,0.6863428652475609,0.08365350327574349,0.46374885141935407,0.5196258048414251,0.48706934635790805,0.325738623941044],[0.3714596946347123,0.00021941884131487866,0.000020827312561378132,0.00026237854014991965,0.2276710933358752,0.5240860519137105,0.7015172802486456,0.8763998588755275,0.0026766489174416736,0.036489227116618825,0.0010541470169900583,0.0007933618157228763,0.7931726665235419,0.0004414515688400307,0.6653403952700094,0.00003011201322213205,0.07487984348035867,0.000742633307817862,0.000027000141520374774,0.6778362703681639,0.33909899758221795,0.0002886445944307092,0.6515375120638229,0.44272085490647184,6.632667393461074e-8,0.9566313866289197,0.000003231736730103904,0.35583119303343475,1.7642071888016894e-8,0.37953283626868595,0.0000019029913843126662,0.5944527887056893,0.18597984353207866,0.2422801208380149,0.27932934484661576,0.33897245805571097,0.7060766077978805,0.011062302664736063,0.8249703299484694,0.0002608924555160479,0.000309638688455487,0.00013843278931642173,0.14295037246639136,0.9189103467479193,1.2445428511592292e-8,0.3532907952565033,0.00014779212647814385,0.000010940483782290824,0.00004243446553773411,0.18032015180062774],[9.666382014050897e-7,0.01155026173216266,0.0001460553314057183,0.012593796155143193,0.000003238343962580213,0.13918851297605858,0.0490453518006256,0.7039704522724624,0.40742423125524796,0.0011020402187297369,0.00018836423540301924,0.6347316343829729,0.525081614817796,0.008190900695934217,0.5610327164612645,0.00031259139898096017,0.00023529567984616976,0.000045912706707632495,0.8051844268065821,0.868650221586485,0.000054704845835621714,0.000323436571656033,0.000003233974058073949,0.00030725738737352623,5.6555993787368993e-8,0.9533477077412897,0.12451793737457888,0.0008059882919031071,0.0011126454704365797,0.9517035929851161,7.800427498056688e-7,0.008543403304468003,0.8032372149205824,0.00000618095531468757,0.0013719739854281703,0.36203652741902914,0.8737817513695645,0.000010111352962016506,0.6418889500042411,0.23605832642144994,0.16126979629996943,0.20458578228484053,0.00015358097876205543,0.9434764866619445,0.2672919565567602,0.4783312303280465,3.9530042699604405e-7,0.000026924891858098205,0.8437425351858586,0.7364197923705937],[0.0006966066615405929,0.8775592670717378,0.8003228574545503,0.009737832369649467,0.6403098297364805,1.5320599671782804e-7,0.5792798365532683,0.9018413611572353,0.26838554462314335,5.790376797743127e-7,0.49677061114092685,0.4119901955710463,0.8758535842341791,0.0002324363437102384,0.004141762973300775,0.0754031865517137,0.7651550895352359,0.11195067023108603,0.5847174346071948,0.05396014656466866,0.000024486374476989767,5.1053798438574175e-8,0.5473328664639034,0.8467317915173718,0.7470653690978957,0.8875067248202563,0.02125595834756757,7.881237892541565e-8,0.01879225623813104,0.7078400263965328,0.000001100495186525231,0.000017281876494274234,0.8809632431056481,0.37149829667072376,0.7178320841799015,0.16111393723873788,0.9845623519596773,0.000006955863912544373,0.00021282220833158515,0.4209890956631069,0.00005271359284435936,0.0008808715598086101,0.5696558227932298,0.7461832002971642,0.16349624872113358,4.1864304473141614e-8,0.09765632440681939,0.4862850420838287,4.658457117766193e-8,7.796546406673198e-8],[0.22030103604377987,0.6175707110958314,0.8864180786397868,0.6220254448165511,0.6985922841733258,0.007558080505416376,0.6009514716815364,0.3695874461071114,0.6568975002640337,0.0626809173762761,0.9315141573110399,0.7052649615423013,0.4848962611914629,0.17534679824781052,0.5844371582499813,0.7812203892799144,0.6557834003444709,0.8650751881588677,0.05783276154343231,0.1024523513578327,0.12023908980526783,0.002969132872974554,0.6343402960551652,0.6152189595152842,0.7042378794336484,0.534225419338775,0.8787788134717065,0.07968158915551252,0.8995052610614419,0.7989323965192137,0.009778201870355774,0.007006848577053351,0.6671714791301144,0.5255898248413043,0.5135201229397593,0.3374003444518446,0.6281788509924398,0.7939534165379506,0.1281524943255619,0.22932380476026015,0.005226080979479633,0.6808303951578413,0.7443876128630253,0.6446581372630733,0.9243106354529677,0.001528598219465132,0.9111738511599912,0.8028507811858802,0.0013408740897499852,0.001536654164924333],[0.2840079210156266,0.6582653845004612,0.9819152760481695,0.20503555314067265,0.8154821339360347,0.000030183236106296653,0.4925970357776488,0.8283020114949865,0.6078855503867745,0.06906814643835497,0.9923900955864452,0.8313763423748007,0.441832870817616,0.23895339228107987,0.11479426786200862,0.5601931604808118,0.8377416514770599,0.9520890932418589,0.23255959488132993,0.2572925936145472,0.02981794718921462,0.0010104193377795127,0.8536391806931467,0.9272003471494947,0.6373467779246178,0.786909636382829,0.9772210865291816,0.012291785905277826,0.6611841556044704,0.9326841763467457,0.00023714058099005955,0.002391709695545509,0.5035002795918908,0.6525039671107523,0.8883182664976464,0.1315048477357513,0.8992148685131637,0.8462225705726065,0.00819517476749544,0.2604232146064739,0.002742859134709252,0.44014686663052477,0.7764479949006508,0.8646343651179801,0.9868486548732102,0.00013641181041488238,0.9783097243931941,0.9332198460466996,0.00006177729769198325,0.000057684909225249166],[0.5580174267057655,0.2759126443443463,0.000010543208887385732,0.012534119496723959,0.4443901883294439,0.008931890003821042,0.000052739401763923655,0.0056698271359270835,0.000027270922596210913,0.006116683991238327,0.5289256408844422,0.3277809515352637,0.9085885889612209,0.0005859920890376694,0.0006074714928219257,0.020377632202508465,0.40932966603776844,0.1768246181304209,0.9789556742958225,0.6843203790379542,0.0003175975969418608,0.0507559036166084,0.14530872463006433,0.20202839581676155,0.0006947645637301685,0.7836017945127042,0.1079027023782704,0.6178947140941548,0.24069020780074762,0.8053641689276277,0.00003898312210488402,0.00042072565038631777,0.9008976218035543,0.008492733206333434,0.00052521744455275,0.7596822001438391,0.9055415113978325,0.002283660659520045,0.8592549383674526,0.001096248518408058,0.004082792232967618,0.11077606425903003,0.36161711863117874,0.9786492541001153,0.00011380887728798762,0.3580455286423872,0.040965386363367155,0.025404772471318726,0.003009006325167572,0.0015393668502088668],[0.5265994670374816,0.22718734262895282,0.00016719439171307193,0.04777557331044829,0.10087460077018325,0.0010989916050109525,0.000054888232424357735,0.17648407215717407,0.0006661834236603858,0.0035549182810961292,0.5004474836499078,0.3368785177673679,0.8977587208958089,0.0042131726167453165,0.0005242993977202826,0.005876702533070525,0.3484153350737622,0.19217146926174133,0.8884499277786552,0.7509109587096758,0.0006263546818043741,0.08507209594443389,0.016879061863428513,0.466952022388155,0.000010329175922412313,0.9228398647123558,0.26295801004164265,0.591680678357507,0.2184071709755659,0.709036639725175,0.000023137156852641748,0.009717667976662635,0.519705661588572,0.01237224429054437,0.004313144170957182,0.5284627746958521,0.8868099002296622,0.07261385985725627,0.6188199313258794,0.012478786784214824,0.009308304382752505,0.06236669054037753,0.20102078980356808,0.7607746498972876,0.000081934215697166,0.03654837136384757,0.027648196583514598,0.014522456931419537,0.05511773364743187,0.04297434909847111],[0.5473527743770981,0.8297139487122167,0.03263443623032975,0.002115435352205711,0.0004366540200699885,0.00008031449513151953,0.9465070933018994,0.858008370986647,0.003120853728677314,0.09081999615756219,0.0016533278687515523,0.9752492231320394,0.36643224810578373,0.0000443760986803805,0.48060732898423486,0.46124830844075226,0.3980819045926492,0.6700138608674688,0.16714990781861033,0.013422052647401511,0.00022385008276867683,0.6049745942497459,0.00028609649576823035,0.0015527126808710144,0.19012523489651378,0.42073952621748634,0.004083168367571388,0.000038913496026551015,7.674487598163739e-7,0.9114362577660402,1.7607366208929134e-8,0.000014599473354847388,0.8539017923680502,0.2987850151113446,0.033573171481565155,0.02255828251050475,0.013395950055691873,0.000024409366403815972,0.374352108023815,0.01216741607807973,0.6207383552442629,0.08968383522407607,0.0007482517744912432,0.6652197232057434,0.037298948930432965,0.45824390533461784,0.04696543342343333,0.00005554772206784704,0.9657893466127485,0.857991889274509],[0.9626674099251978,0.8497479143957732,0.005774883657487996,0.018094886603707352,0.00003958807561730194,0.0062734073266069775,0.09509236655782247,0.24952691086743173,0.0044180634758941816,0.05642543082174735,0.0223993410326915,0.9009163697931188,0.5206506793442568,0.0002667523125706122,0.15209562801898543,0.9609850787391098,0.5649002170712282,0.5178964609986577,0.5706951783779003,0.008770554009522738,0.0014108811378605735,0.6538602167797389,0.00000239833993845213,0.09147670764731072,0.15755262077247228,0.2532166829848222,0.000446774795605758,0.0021053224823209616,0.00003931246369427463,0.9770891344262893,2.6844661643820533e-8,0.00006411922031491082,0.2683354791843364,0.30263835048394744,0.035863937059908146,0.14847834670308793,0.2292670332438075,0.00001593411130238216,0.2584915228148821,0.008384982840092328,0.9671842640741539,0.0016857757543036968,0.0003353736092156457,0.3224246395512187,0.02952030596455991,0.2626160941323362,0.01738490155555668,0.00020211197001801466,0.7217567787938589,0.9662955054887913],[0.8371438317986708,0.6965011778396564,0.000010797022736286864,7.705960971035626e-9,0.000026488738543090624,0.010528947475124938,0.8460821595918164,0.007287756474183419,0.000702680701643094,0.0000015217983765552017,0.000025118477694574786,0.9866321706256269,0.625560851876433,0.00017537174765119905,0.9103211695509222,0.013170587600056396,0.44248295672495597,0.15619041999298075,0.0000016734527012252006,0.5476787946145957,3.450516088334299e-10,0.5612848226421877,0.46980595095662303,0.34453068220481803,7.408065625372952e-10,0.5282296800636,0.4794092649466529,6.62085760174249e-8,0.0000028831213142866004,0.9182390301696517,7.459366393303407e-7,2.7006815429954066e-7,0.9379852105027344,0.0000010426442553002254,0.41660879411058543,0.000046287594798598245,0.0032926152828104496,0.017086391912655877,0.000004799113592824624,0.5397977379007954,0.2574033188277905,0.2298686077370098,0.09365802435302507,0.8310622119628178,0.0006800357490150278,0.456722631546294,0.4638340814216663,0.026274130160869005,0.9204039874930056,0.8796972949459584],[0.9039304779066084,0.7119504416408846,0.00006802300957540423,1.5875178844570788e-7,0.0016345188478341282,0.040131647764878105,0.725088067166179,0.0018696455647576114,0.0002248082608840536,0.000024203979975888864,0.09100439381002876,0.9651320914533909,0.9546388348532784,0.2682650443658396,0.9052599460515386,0.9006047288582165,0.7634477639506045,0.3662886139516464,0.004509373860863874,0.8014525626373702,5.030541383083903e-8,0.6695888633239229,0.8495043951684352,0.27220633408282874,1.751190563972622e-9,0.47569715665362305,0.946582960707334,0.0000642047260676328,0.0026764817793986707,0.7386692688609551,0.000012415525743555138,0.000008872492347985626,0.8988247136554888,0.0000034902017508499623,0.5491188051651535,0.018632503032312626,0.06214929480639521,0.22279302224568603,0.0000017850601580779,0.39103463894278123,0.7176435882034903,0.18167177411253135,0.003276153508760008,0.7729492442856182,0.0008469385827390349,0.5680923171376462,0.4919183004056782,0.0467335062400061,0.025195892910026812,0.28785844874610955],[0.972061394414205,0.8118386656940179,7.021044763549626e-7,1.0292138490040994e-7,0.000014794043366228078,0.07808089424416063,0.16820021660392595,0.000228956651072932,0.00011782624027565622,0.000005350579347317655,0.00028728068976971807,0.931322554549648,0.7651307421874759,0.0015570824737292258,0.4673930907010302,0.904163873723806,0.6208517878931115,0.03488225252241702,0.00008516671603773276,0.2682813649335261,2.5332371720551917e-9,0.8484956275775695,0.27953563211473637,0.8998564461529456,7.64808728939039e-10,0.23431232682482403,0.2631574565209995,0.0000018387332032552707,0.00014697968761094056,0.9537326451373086,0.000005829991045547848,0.0000022079226926024554,0.7320009753071158,0.0000013855151914321997,0.3698476656153424,0.0003374028317022358,0.13846701327550745,0.001539598830390859,1.6909885398207458e-7,0.7613228515106677,0.9678745384815843,0.011931953359872554,0.013089331051937188,0.48417277226752264,0.00015308322511515827,0.31064568295532996,0.128262925727454,0.22646020359093105,0.17486744427585535,0.7700019430537051],[0.8398588511705416,0.9230211474595522,0.000017337082054180555,0.6745384257788527,2.9528068110514847e-8,0.7955387625857804,0.9836979297043069,0.8126808902607807,0.8438993749058367,0.994711274293682,7.057686833611293e-8,0.2218925171903016,0.4819798040019848,1.124059277504945e-9,0.23419070418187465,0.00006668539577336795,0.0018419041838931812,0.2506193185711573,3.6407189860932147e-7,0.002386326321546686,0.991694195891422,0.8725822772886002,0.8465877195587712,0.8303050151945673,0.721360948876455,0.00690484574140306,0.62882385496135,0.9772586648220385,0.31493713173460136,0.509003876171506,0.00002210836175174818,0.9814102664722605,0.8160729169302986,0.9070750834834955,0.00002034843974139802,6.472018368522263e-9,0.6883196611712201,0.9861604305507582,0.9960292621216966,0.5346026357823044,0.1053159488918959,0.04139497283627663,0.8795442524816344,0.542703619448668,0.9662879305843497,0.1928266834493785,0.9907525141861853,1.9097776069107235e-9,0.8684942173438066,0.36505021675154287],[0.9111350991824745,0.938586549999303,1.4803547966548587e-7,0.013104163686379434,1.7164221681185908e-10,0.7340416884037725,0.008219165597775632,0.34728484840323703,0.0025744949035145445,0.41445327895282097,3.0788057147601916e-7,0.7805147497762688,0.9724449730472814,5.6132596441103884e-9,0.21484063311530066,0.21216005984769545,0.002333275578013722,0.15420097106391611,0.00003711211680009705,0.0005934597368881791,0.009861310497607816,0.7717614554372199,0.005267638169665686,0.8677275841731649,0.0160386485860588,0.000026711884146914325,0.003957586311278234,0.831203767403835,0.028429597127340712,0.9654738257597941,5.826330783175782e-8,0.4373848257288907,0.7412602082886622,0.0032959289727285948,0.00000208377125908604,1.907473492444585e-7,0.3446766631721999,0.02345321099671347,0.2618151476802378,0.7182715052220413,0.9501551852252743,0.0010932185008695643,0.01760691938830342,0.6581885249070297,0.29320014290879626,0.001106057893153381,0.1581605341164649,1.0549653631637498e-8,0.6316738092137538,0.9604411050080808],[0.9439738689752568,0.9166251574569537,6.863613617980653e-7,0.022756327833038572,8.581423593904042e-10,0.5850454806585001,0.01267960126388379,0.27099706277278107,0.0006314655354733118,0.39811338860591294,1.3905238751231625e-7,0.748609400372441,0.8341289044283554,2.4433803144849697e-8,0.09160923621007439,0.0700170097448784,0.009375891916485548,0.10541631943522028,0.000027469991079067217,0.005040869618696082,0.003382948023548067,0.8756538549451759,0.012751643608298313,0.8799761085345527,0.012398631922094292,0.00004199128706173751,0.008042178163327496,0.49299173842038957,0.014561609280776277,0.9570886597038613,5.137770464279718e-8,0.3804796274355056,0.6200285155709514,0.0012793598278943066,0.000009422268986660115,9.990333208689733e-7,0.35993627018422,0.014115514614874172,0.0838883976099299,0.32184974127846644,0.928919082687449,0.00044365115364891237,0.006626490317309271,0.4457503226831143,0.21420569414685084,0.005130741081320617,0.1522787670841367,2.443970135817385e-7,0.5294726101378008,0.9723173677544795],[0.8004980316356756,0.7773286187653949,0.000008823738567203701,0.0024627073070601453,1.7491988756852972e-9,0.23543378943566848,0.636546281199954,0.7560971872838934,0.0016413274902881197,0.3642536971862212,1.5002728305435877e-8,0.951251626129168,0.7833088293286092,2.490136861817161e-9,0.8401599351727354,0.0003661224832294085,0.002041431436582279,0.1728369310144029,0.0000012517849573130945,0.015362963200841538,0.0017761109439627626,0.7894011440180042,0.13874100693746277,0.38194013644651525,0.002783770363530374,0.00009735966460981656,0.028002223053068157,0.04930509543894767,0.0007858754792364072,0.8637162199668734,6.717589498798545e-8,0.07970677515822566,0.9324893143730361,0.0012534839318871995,0.000008982068686207146,2.9362614082233088e-8,0.08325796666641261,0.0220703794460056,0.408422832996889,0.28775971471413336,0.579241161206536,0.021426994173826496,0.032197227643267635,0.7742884635377414,0.5017276015077843,0.06781846236928539,0.4233323054191685,5.692337638375795e-9,0.9827712183141916,0.9456298407209782],[0.9667076797254696,0.8131831808090253,0.26834790466544245,0.32714301934740103,0.000003118891484662362,0.42719299154302454,4.8711662325846065e-11,0.3378484301417572,0.00006534450207327372,0.004467741823453422,2.0801612747572521e-7,0.9437678299375165,0.8172535367507325,0.02229226726480253,0.3763134893536562,0.7439073948902729,0.27300504382132856,0.4712769878129934,0.13087833774264948,0.00033749357501337146,2.1792838677109936e-8,0.36823707914897036,0.3078354498438039,0.5935077280047255,0.13295330582331708,0.000015904069278205784,0.23686160275676105,0.04401489472489053,0.05378441236998825,0.9521735942873785,5.94687087135244e-7,0.07045568701708463,0.15118580196476494,0.003801917424954463,0.009232548757776285,0.0006335002749388465,0.5243255817595445,0.006491386893773347,1.5661548735349016e-8,0.8138687280541347,0.9011017806404015,0.2362210123156769,0.000026296355200854715,0.5675771919227041,0.000004965482943621307,0.41257364693691334,0.000028111319597674957,0.1365753641974517,0.7132234798871757,0.877790494542536],[0.1435070861293156,0.5948601808663238,0.7559825746071179,0.7072010530434139,0.8431185510138482,0.15469049868222567,0.0008186065477999709,0.7882168168338977,0.020686923937256494,0.46630771137704813,0.009930230119425966,0.8238195942279852,0.5553161934286672,0.6092726906623435,0.6897213594164254,0.6536462557012077,0.3933387179501844,0.5096478943392762,0.3624556196573071,0.20322778645318854,0.014690646753383375,0.8311880059077671,0.6774075359642713,0.40301057437462384,0.6363173553453132,0.04345962999229896,0.6820114817588381,0.64080502464816,0.6497796171989683,0.03349554919428125,0.34373384396235074,0.3773195874807751,0.47233348982045115,0.22310168949957507,0.5655640425465139,0.7622240624920702,0.6934983379427017,0.6925318483982716,0.005083656698061027,0.6204468068299028,0.2725368666630714,0.6722270928353787,0.6612089304791283,0.8266154159856798,0.020539948005493074,0.5762079746275143,0.11319882670626773,0.5015664716388717,0.6281165482497271,0.782063525002158],[0.9592968802774609,0.525788438324569,0.30338277832110433,0.0005064145780873313,0.011318059853434809,0.001415063752687848,0.22479067827411328,0.28820607818962385,0.030525334516974117,0.004000962795314745,0.9586612443870466,0.9566000807791292,0.9978012414486734,0.967521058524963,0.3228284443504538,0.8874366181053446,0.05331333698241063,0.00006400250011327928,0.0010307196567213405,0.1440154962758875,0.3399568277638552,0.0011279883482437042,0.9675466577099577,0.2497028874339668,0.1302057243527528,0.10507383955675986,0.000003274796848422785,0.0001637359894641066,0.014080574028584017,0.8909862702090978,0.000008473531926773968,0.17108316001711643,0.009251082590783066,0.04292937920096514,0.000012286998397675737,0.6786903339023884,0.2782930140683866,0.000008063200332707157,0.2492309249573283,0.0034627013127986363,0.7752198931810259,0.00010190255713307332,0.03320311027804753,0.8232756432552935,0.0028722728315912043,0.0027341819269700424,0.000732229773448291,1.0969065647110422e-8,0.0010139982403828771,0.87213243110977],[0.9528020238072222,0.35794785558891695,0.2052719603028163,0.002743757866935048,0.01356738243459896,0.0004338607819983401,0.5762969966783981,0.3191982206664493,0.025255879557977208,0.026152916653703034,0.9558031877664879,0.7790025246871257,0.9928174811462446,0.9430009338595104,0.26685244481177256,0.9596528710311509,0.18662429551185733,0.0023829484957865943,0.0058086677752554215,0.11931601639840964,0.43685339302344117,0.028794903461878102,0.9514244130518675,0.7133887685506822,0.14677548358733505,0.2121133160771909,0.0000027543914251316496,0.0007062060997943544,0.08978827686171204,0.891550137477349,0.00007293862052854737,0.12972644571699277,0.10392003576435674,0.07936563478439196,0.0003264819796718417,0.666234112077784,0.3204419156378186,0.00005789443238800678,0.5662877688481437,0.027677050010106858,0.30123894292639836,0.00018202750345352206,0.024921684777438304,0.6653040028406456,0.008705738939474747,0.0033910532763731837,0.000985653678068141,5.4569228305392234e-8,0.006822358484698235,0.8068601008321552],[0.29856431555804014,0.5530680554850725,0.00313695036621491,0.00012147287855455746,0.0000270213533422519,0.000005408488418902155,0.0027849079127513906,0.0006293600418939204,0.35043071158101274,2.613252884635145e-7,0.06043235677541137,0.08875031040972002,0.9589496759631119,0.18226087532961058,0.0003674571424771805,0.7753865171528465,0.000780748301604529,0.41348780857640277,0.000020252810621985798,0.00004971914338300174,0.0013779200055198109,0.00012066774153309735,0.6594506735952619,0.6648049254593177,0.00043979123390430107,0.40845981085381233,3.0896576086871657e-12,3.7585833781163324e-8,0.0017224546095502453,0.6696344861023661,0.036834967790915454,0.6373474044290407,0.6324649550134972,0.6130287550452596,0.0000915748555708621,0.027619130003281332,0.9928818613273671,1.63851712202573e-11,0.5048494943449621,0.33269679893872045,0.6666201816399081,9.085294756223901e-9,0.0000011256951784736637,0.9711678264456133,0.00019327514920388947,2.9055201581297907e-7,2.1974718312203588e-12,0.00038876237692159297,0.0005035512286130093,0.2382397667713918],[0.9949677755336956,0.17351286015033443,0.0004364576147214303,0.0011166686936074973,0.000026720147106399817,0.0009085564650630711,0.00014210939178054918,0.00012147615196110632,0.4874717875765075,0.00064514338914235,0.010739787035610513,0.3816271428800033,0.4281834775070187,0.9565106201285016,0.00016010174414277602,0.8410064260920292,0.00034252426055773156,0.3668511990894887,0.0000056652981200824525,0.00003495750043574956,0.10788701863371036,0.18486571679481842,0.39860012602246214,0.6050699376412577,0.0006780450016729652,0.15473086099093233,8.913418956124736e-7,0.0001390988244673858,0.0032543396643909548,0.9689880153858017,0.03487584219667314,0.6942735390027444,0.21577466413405444,0.4373160225651062,0.00001824411968349982,0.0023780829456322545,0.926425208612581,0.00020670250134507213,0.25268662272953923,0.6000958042959458,0.9745862671883261,0.000005458767222510687,0.000023083979679565982,0.8231832013669494,0.0400201067137404,0.0004980433993239879,1.659654936253178e-8,0.007687388107838163,0.014333789844867608,0.6532387514624826],[0.9792507885763183,0.22962318935169512,0.0002721884558422889,0.0014286408060526304,0.000019197491270690472,0.0016727742708386249,0.0038402837706192593,0.00007436892620682658,0.9537698794436664,0.0007705373380687609,0.3911238603952669,0.4185506192018961,0.24175168574724323,0.9450220391744856,0.005648775233203666,0.9804674235836798,0.003889754747503217,0.9495265109661675,0.00011598986497113376,0.00016383379342757004,0.06734720829587965,0.08420761263428038,0.4863990861274328,0.8338975868417349,0.000034231729751385186,0.0868807480160997,0.000002300177725576898,0.002896494158502355,0.019105587113713518,0.6321121425258752,0.18897127704551578,0.704285694476916,0.7728112416757107,0.49267101689766657,0.018414208576571802,0.0030341169941178565,0.9617757293296377,0.0017703759812528696,0.19423674089939796,0.7136123667502251,0.9806486234575791,0.00016437336937617683,0.000003222410157557917,0.9288419031098678,0.6165562672794601,0.0019637496155784483,6.650931312202247e-9,0.1943166609399118,0.2241866236365321,0.7776832730996935],[0.9991787631704127,0.0005870154037355308,0.00002253431965570807,0.000009522285947419829,0.00013726741391207158,0.000007044646982757707,0.00009791721554749785,1.455070383380696e-7,0.726533195880861,0.0000017448012676727467,0.9859678807345787,0.5491747513005586,0.9374073972775384,0.999869116364974,0.0000010153976676131218,0.9985730036110196,0.000009224321451530916,0.33125397669034784,1.311661202675522e-7,0.000006875694804646224,0.33069650453780575,0.02255890688488902,0.9676733496520422,0.7534351265814768,0.0000027192419838226525,0.03105541136647227,5.832717823975701e-10,0.00006702472262319098,0.0021128424532660317,0.9399799960889912,0.005310430400547603,0.7992594823243524,0.5013317564961544,0.5712725420117587,2.2319684821762546e-8,0.8081043787146455,0.5042757788717065,0.009579180454110455,0.7487984849217973,0.37905445947522576,0.9830289973140184,0.0000016890198217832773,0.000008094492847893099,0.9793660322540048,0.03645040272942022,0.00001111015993273819,2.3408725423043144e-9,0.0001300010017109535,0.0004279423264383919,0.08851909781428785],[0.6112791411440519,0.8805855406489689,0.044286414030487026,0.00007775619890608006,0.6688347665404579,0.1879073103585608,0.24937363885846547,0.5789635885291382,0.8269232571846753,0.010034602743853602,0.8155259013538969,0.227961019006205,0.723068025198089,0.9813589228753439,0.012054458816478038,0.5190116374461541,0.4027073575308332,0.017953959322330255,0.000009072310859132678,0.7588422956702349,0.9207106894414767,0.27267298010533747,0.8263513468716024,0.756841464462384,0.03824305190431785,0.8957997526298367,7.361146819709551e-7,0.1486965048379897,0.000054599405144968034,0.9370050698825617,0.0006785352590894529,0.8624856845515569,0.0000013512912675216038,0.18356448873469594,0.0000019656423605985937,0.9575292434371929,0.013038575371655143,0.00007708133965457964,0.011841955391550084,0.0001707862050336477,0.22123479813555086,0.03166142878514333,0.00015538017859466832,0.058117820770131216,0.011999301881967767,0.001211931027871997,0.0005024095712174703,0.000013312261674035915,0.6993700679545669,0.18440740315657428],[0.3129347647572717,0.9115512344333305,0.003116479015606904,0.0000064629384804791126,0.4899910773103434,0.7385197392579511,0.07967314717189997,0.35568917405471895,0.7382768809493999,0.008167737177478802,0.5355754727539792,0.11790598620248209,0.3232314832515925,0.6556982364674102,0.04543833666392485,0.5600903258303833,0.4438545383594406,0.4225952787268356,0.00035977960181226854,0.8816329428853935,0.8205663519642242,0.3064603623187867,0.8577578093983337,0.7643163110276173,0.01160238238933189,0.874866791721666,0.00000239902277104303,0.2657821303915264,0.0000029822012035410273,0.9212902192245113,0.0004938222810889395,0.9828018041837915,0.00007867771739247456,0.25549950339694977,0.000011039842888766236,0.6680887173888125,0.012124492259924277,0.001442381944509067,0.002926390574065855,0.00032299030368443426,0.5625408632670368,0.35596773702876305,0.008004418787271669,0.06692127039821714,0.01326753542513096,0.009866896279242794,0.00039347130899948073,0.00015981125135481063,0.8506535800256716,0.22903460225724362],[0.8642337081817093,0.5793783645113441,0.028338899926348953,0.000006021522920342566,0.39174811197288434,0.4716513713671454,0.327742086298088,0.7433557678246426,0.5494385505319045,0.0009620147520715997,0.9930000271412119,0.05347718573770446,0.6588808409951274,0.9881987585681158,0.03355878530279887,0.9182278287180589,0.3419801889679813,0.051000843567890475,0.000009318987651653507,0.6967339785267168,0.9196595585824785,0.6370548809172552,0.9697754335733259,0.9250104313401105,0.02073436934998346,0.8867317988240935,2.0483605047780897e-8,0.1472996575242994,0.000007093809684730307,0.9674620626859909,0.002543621890730827,0.9823481889232507,0.0000023450012903954206,0.3360593975991268,0.0000012208988358618327,0.8942807501320319,0.0011760299175324668,0.00002677687955029441,0.014484342289407525,0.00005092610055529391,0.5736207504572183,0.023377931298389013,0.011286950340325218,0.07792598450018745,0.02372972118881595,0.0004614626705658662,0.00007498374253892471,0.0000017111780412739553,0.6055827436197109,0.14729391110718104],[0.5123044073135253,0.0031712883887713077,0.7981230899684374,0.016722793882952804,0.6955664722576596,0.03654804605150646,0.10120645046730262,0.0032273575521444106,0.5756215023315588,0.7562022930724543,0.5086366311506437,0.3414674719340955,0.4985548866224489,0.6498135757761911,0.466959378422065,0.4533958951720946,0.6869307908863729,0.7134308942401087,0.6460651395001641,0.7077911332750114,0.35511581111807633,0.7836667496191058,0.00633039979967832,0.7279622038004212,0.08082709354006462,0.11446449023351353,0.0004344768900623146,0.34476540736747396,0.13362313223341324,0.24823006679716858,0.2665466542367063,0.8015595069356544,0.10232177571756412,0.5942905400742738,0.27371211672913276,0.351811000175998,0.00033596787073281913,0.6696152305669075,0.6793913364101727,0.5601645126380022,0.24055070140988377,0.2809675823252388,0.4997930697390107,0.8285550881145276,0.6263464400206903,0.6396595149472983,0.46284213208033476,0.7728163195211813,0.48806596516989753,0.3071925386126592],[0.36265971222675664,0.17678030282795976,0.37423173102413354,1.0892089366852915e-8,0.5266425432889845,0.00021479069821831156,0.023747315990984758,0.23539868314529933,0.21800858767005227,0.001586375754717177,0.35806047273063535,0.41405934974887815,0.05812665077916195,0.42080080982734935,0.47920869168908303,0.38620196148388736,0.38786784302807276,0.6033038411115385,0.22201450675126122,0.7538551040784094,0.18155745001385815,0.2876966293488209,0.00858231938329985,0.6943587542476269,5.210882964470569e-9,0.47409561585014554,6.941427970200756e-8,0.038964460155902624,7.863034456493762e-10,0.023225338976838403,0.0011359013760988577,0.8356125032811761,0.5284400211141128,0.07820606197504926,0.06494976522451466,0.524884488961316,0.00003102077335723645,0.03822532204833243,0.7001211447876249,0.21138659471287544,0.30594169030249013,0.4635421962377096,0.8471933228855747,0.7411185844811268,0.13277595860405084,0.1568340294484994,0.0009269913353448429,0.027988778682608923,0.26455719176502906,0.7826044751274757],[0.43696718496767417,0.4847125209652492,0.0007901282593238407,0.0000970139716776571,0.8192610360516087,0.0011495464715051975,0.6440404348575365,0.8864644717008431,0.00000840808788936949,0.5283999768024615,0.46874256285792887,0.0000012699532815019299,0.9646330860298751,0.032155295996520596,0.03171419917113366,0.017947478248172156,0.2498351525192918,0.588602614723094,0.8028687140003059,0.39523280129338195,0.6127868461103161,0.006967020230717414,0.0035350716070369865,0.30440044689632806,7.33946184881723e-7,0.7843500376770766,0.0000012849169661407586,0.00013880243922021124,7.81433917136541e-10,2.5266990346697516e-7,2.3030487269115444e-7,0.5565632794898114,0.45531466469005083,0.00019593028783140674,0.00019188550879321132,0.01114681480178946,0.5723231459954428,0.0000031233562624927546,0.6481073363352051,0.6621245192475409,0.3958461805583748,0.2705117433492237,0.6999250171243546,0.8373500392657537,0.0005426194979696681,0.0007994754047723995,0.0006572211741996648,9.304901371793099e-7,1.4614647174447061e-8,5.554034644238987e-7],[0.9104455868713638,0.3923314232458098,0.2590157173908548,0.3642781493594074,0.21041326088562323,0.20004984000511286,0.6783434231053905,0.6158163798701131,0.630318081113384,0.8118931619815013,0.006080124437085657,0.0031142950867270158,0.25580623028406724,0.00011795431168880128,0.0004352172153659406,0.3674851598807801,0.5277075729073799,0.004830430753406343,0.10262853460155774,0.005500193264706661,0.88852290561398,0.7951955231697849,0.5187275320440705,0.6860819631242554,0.3385131252968351,0.5689752206927737,0.2979027661367659,0.00021003516538939997,0.00043864866724067274,0.0012512631172156225,0.0002882693300743817,0.6274902128912107,0.40997299711629365,0.6525127850704492,0.12258351442461285,0.2725232896636957,0.6974222323298077,0.36948165621590173,0.19507230487359203,0.8020668488607902,0.6116573394865654,0.3433298812317404,0.9147626499825293,0.881738938511595,0.09703846478181144,0.39799316451624134,0.862435281368635,0.21511864666374764,0.2691700587753953,0.0009313975153353581],[0.00007245649312532126,0.6837722883296405,0.49590616373224705,0.008508975850324006,0.0005131347114809477,0.2706952953034011,0.34127276738602186,0.8161834922977591,0.44905009354781017,0.0005264839827768157,0.000003264427267385546,0.0033849081235927912,0.8498772492183029,5.821166499735363e-8,0.00006937221512060907,0.4378795989460176,0.4471580550271275,0.00002618791311134272,0.21432921930901272,0.00003673278986990841,0.001506761125507676,0.19908101900596054,0.00032365457801885277,0.7514252319966166,0.22442744565593678,0.785215864713862,0.000008110222249887605,0.000018154503662380997,0.00020002341477832984,0.015469662860621519,0.04720794126579983,0.5686575129379863,0.7650843899893067,0.5524692053505754,0.5055016860228444,0.5875372122048435,0.8910285256951591,1.7096357901641334e-8,0.13480238800510605,0.19980331942397786,0.3343283035806458,0.000004654428851328663,0.6088041452680275,0.9331172304903111,0.00027720976751551723,0.0006844564517320128,0.0028703092422729466,0.0314290963129945,0.3790027604223233,0.031205007905299235],[0.9433442034431128,0.6218800226005724,2.7900460913935777e-7,0.00002153856038520322,0.05787672677675715,0.35885974759039463,0.000005102735674119131,1.5324508032258532e-7,0.6147216303282749,0.00008231887362513527,0.0015803126796449804,0.24075407083907055,0.000016850103592584485,0.058928088818249215,0.000004656189586083444,0.6934149578838192,0.0000015540589120401958,0.002887818908850874,0.03587508501381317,0.00002336574439612666,0.5251174595982661,0.6960141673387614,0.0001669437431837495,0.8365202969662293,0.38697008818561024,0.6637353973751593,0.20300933690308173,0.01395822057859302,0.00002018567356646907,0.8078951868834998,0.6647813835164715,0.6251277739236978,0.00000913985640607202,0.787031050798114,0.3827011145335904,0.26230182747167197,0.8931890514348698,0.4057330767076088,0.5581520507514893,0.8756846387694409,0.9703944788734731,0.000038596677418451474,0.2101876648120193,0.7490564871936796,0.7038868134878395,0.00002813116578404004,0.000007389535841893798,0.4781930539669258,0.02000667634349692,0.8470461893213638],[0.8760887331915075,0.6870535025251628,0.0000010478830289420095,0.00006115138088933232,0.8668722678305805,0.23390262536858894,0.0003136252149414539,0.0000037451634192701363,0.7948498663561312,0.000602117093764767,0.1498473944820485,0.31568294775968975,0.00015882466365540725,0.9915451411586371,0.0003427173952278995,0.5803555210000434,9.460567413068413e-7,0.016220264023811784,0.07141024412155006,0.0000532989696801488,0.9918857345511385,0.7601864793245456,0.03143819586567003,0.6474397539776852,0.6656566761562652,0.8885367172875841,0.8349870437263196,0.3828170734457928,0.00041992863589561646,0.5080605840722638,0.9064020196532245,0.6674109034831663,0.000014672637594290215,0.5506596778626955,0.6213546139277984,0.44532788715993393,0.6798977298505723,0.9586604501693211,0.9253964359587098,0.911488695763529,0.8722527281946006,0.009858037715370251,0.5352907779078254,0.8863952081621039,0.9721529451135072,0.0001838781232420616,0.000199239813634409,0.09135269831458216,0.005858379379211438,0.4077569004862236]],[[3.9971163279113566e-8,5.462646756968179e-9,3.570067090399041e-8,2.7688299042197258e-8,8.010131697828797e-9,3.0000890016880894e-10,1.7425051789872119e-9,7.453621817378356e-10,5.5772931518308824e-8,7.186557381670045e-8,3.9490966770829286e-8,8.16839921343865e-9,1.281686216406441e-7,3.2642763739580986e-7,3.6329632389945134e-8,4.853780340050418e-7,0.0000024221360345813006,1.1687744552120501e-8,8.126047217823281e-8,4.970019579414561e-7,5.978705631559841e-8,0.0000011615547075194317,0.00005082883024874053,0.0000348219190815906,7.231738226508166e-8,0.0000018654183372283034,0.000002761431541823513,1.298399446825284e-7,6.11823127659352e-8,6.020886587753211e-9,0.00001576489786487522,2.785123035653147e-8,0.00000443275335193854,9.569222119008456e-8,5.3025986608153447e-8,0.0000010643040430036542,2.69189916009214e-7,1.4992226326572944e-7],[0.00003288608062986055,0.00003016012244269645,0.000010215665219511569,0.00002963697018041583,0.000008929367740161134,0.0000027739073041322456,0.000010150502099951972,0.0000025851088542613856,0.000011808089350358458,0.00001807769253559912,0.000036337228587214134,0.00016957546455427766,0.00012627421740428745,0.00015616677485800088,0.000009187259591810928,0.00002298246432118036,0.000058774153303306,0.00021086066985774715,0.00017757405621721586,0.00002250867137292277,0.00010838079488141448,0.000007994692888289162,0.00000838704236243024,0.000004496458132259623,0.8936221049437761,0.000003212526166086624,0.00004266170306549777,0.00008057333507363517,0.000022983428782709496,0.000012414451020092415,0.000005331739183091204,0.00006362397728111107,0.000008839874868587983,0.00004413738171804477,0.00046583442840113985,0.0002194160695876832,0.00011157092236836522,0.00022353422188114646],[0.000014580854879727476,0.000012760264980962948,0.000009276039169257702,0.000027757712693354485,0.00001892781661428176,0.0000013318621817083665,0.000013708640970059518,0.000004296545359622614,0.0000266350050488611,0.00001880880065025915,0.000015872308580244968,0.00005551420076326644,0.00011056037123183873,0.00013773106347556255,0.0000057365378774809725,0.000002371275487886022,0.000021875573606371382,0.00006713651719610229,0.00011354912397371554,0.00003980067874709246,0.00012024078219258394,0.000006550030270442442,0.000003652513496251321,0.000005878689879889173,0.9048179393988622,0.000006675755321653196,0.00006576038086110442,0.00008085155764839041,0.000018857338423394735,0.000011555256850998397,0.000017341676761359066,0.000013436273986753515,0.000011469415503088863,0.00005130119408450142,0.0003919707830100221,0.00014785415086375774,0.00003601416775667532,0.00027287366263504853],[0.00004930050137261596,0.00004522874362134364,0.00003126481895702344,0.000012758908655472988,0.000015025547956606463,0.000001391383666746148,0.000013451225975234116,0.000007290789698068089,0.00004567372325245827,0.000035212030600351315,0.000044730790502349974,0.0000839105796923426,0.000104361417587816,0.00018232075978701738,0.00001777237210943853,0.000014854962911726327,0.000017696295020605677,0.000042622345358472864,0.0002816751528479668,0.00012266627873079065,0.00012355152050432983,0.000010620851428994086,0.000008269824973099182,0.000006876080270024167,0.8873052551503506,0.000030877640834249906,0.000022947144013401453,0.0004980527424304921,0.000007399295950006014,0.00021386419960084337,0.000010035598285226958,0.000016143788486234042,0.00001263101357688931,0.0001239291705171089,0.00027733495969051294,0.0000250943774890768,0.000039002942856521736,0.0003641113978709689],[0.000002190215195684128,5.3408109872422425e-8,7.541549586376278e-7,0.0000012437801428286365,6.186817514055425e-8,8.623466666320362e-9,1.1366614795539964e-8,1.87730300348377e-8,2.096394201452284e-7,4.734930183314849e-7,9.967546079092199e-8,3.143193758301855e-8,5.651317467004059e-8,0.00004309337214301511,1.6179769588075768e-7,5.143433102595175e-7,0.00007397891757817916,1.6623416056002132e-7,1.0742349690744997e-8,2.0138147803811702e-7,0.0000049058766784503295,0.000011863026779388448,0.00003673147103106633,0.9217863198565207,2.955567028473596e-7,0.0000385090740288957,0.00000141129383489559,0.000005175843412472123,5.439968964213059e-7,4.192415374414316e-8,0.000040816786783498714,0.000005818840277895892,0.000015354208550710944,0.000001166312277799543,1.0189977793279807e-7,0.00004100487082987797,0.000004644792329661242,2.0487714782523868e-7],[0.000001348507216559048,6.319841879181494e-7,3.4126485850253625e-7,4.4684310407575416e-7,8.018270547035094e-7,2.8724945230005246e-9,5.887985862856229e-8,5.8874397463306645e-9,1.2428095913324028e-7,3.708076534808939e-7,0.000002087637910166937,3.802983859900073e-7,2.1337144426247438e-10,0.000003836881387203521,0.000003363493610399141,0.000013101898102357767,0.000040251894368510246,2.3646776315789587e-7,5.660330607094811e-7,3.842090047609913e-7,2.2445834305641227e-7,0.000018089078729439928,0.0000982559807617313,0.9337721623749397,1.7618531446508492e-7,0.0000031023837111274823,0.00002721600100362579,0.0000268999249759451,8.335702153096534e-7,4.744813460291384e-8,0.00001830113977345538,0.0000013087144881416365,0.000007383338612128587,7.227320950787178e-7,2.421523820200409e-7,0.000010251462448809809,0.000003870620688701624,0.000007464409348023528],[0.000004107599293437996,0.000008023603253291466,2.041473840112936e-7,0.0000037125433542290605,0.000017335803498340927,2.8617465255960754e-8,2.15765036648244e-7,2.5217916322027315e-7,5.691064474633706e-7,0.000003735318240161355,6.219821223991447e-7,2.670681928972241e-7,4.0698917685485143e-7,0.0000014629120968555707,0.000013923550336226613,0.00002867798963097192,1.4086289065319802e-8,3.0918126914652924e-8,0.00004813771907796931,0.00007177776219089817,4.6290169446682453e-7,0.0005608786291198171,0.00022937340783812032,0.9080498491326036,0.00000143278739109345,0.00004561958489245094,0.000011216882180169448,0.00012029816094743017,0.000014974306095225417,0.000001042818505721721,0.000034309734392891944,0.000036616779721629015,0.00002530724098283935,0.000003154833167713677,0.000003612309675642144,0.000005868712987441189,0.0000035570178742131823,0.000002843822939866791],[0.000004629112857649598,0.0000019693840570771264,3.8114973969181003e-7,1.9303791090809375e-7,2.558690513161734e-7,9.559003055188447e-9,1.8996805797778595e-7,5.970855274050114e-8,0.0000016046793654744889,0.0000015055691350329765,0.000006733460972054093,9.864986934676442e-7,7.540516119900079e-8,0.00007291753678386411,0.0000032751414738013446,0.000004798217272841341,0.000012000007683117489,0.00000593149413931233,2.9567349098316756e-7,0.0000016083624822711016,0.000002757811805460781,0.000029047477158712585,0.00001405824420614673,0.9271419287112546,9.214075850112887e-7,0.000009074067208089767,0.00003931054342274877,0.000001702751816751057,2.822778746933403e-7,1.5684110233292103e-7,0.00006355909006361952,7.286100829434263e-7,0.000006910724448906502,1.5304924242770922e-7,2.1943798424167722e-7,0.000007079132152208088,5.036851172972269e-7,5.754928795321469e-7],[0.00001397674782317015,0.000004525536363112184,0.00005299298710639884,0.000014074866501309975,0.0000025414495479101015,6.28546969977965e-8,4.368017752403463e-8,2.100058107652905e-7,0.000009241363502478636,0.00001679128867019992,0.000002121708169884655,0.0002332786823984514,0.0000672411158940995,0.000011566461151419416,0.0000010086190618033849,0.000495375626721891,0.000012674585846099076,0.00008181424749690329,0.00002072894369010436,0.00007266863879236058,0.00012818855802507613,0.000013491911401843601,0.000004264067955551128,0.000055728884360584444,0.000002362899044799931,0.9009355484367414,0.00006612381415275921,0.000003593601781035662,0.0000033141114195226047,4.0017002121570206e-7,0.00008722415034593799,5.253228495357414e-7,0.00014518182897391567,0.00000809166297634128,1.244020097047246e-7,0.000001278603075280716,0.00004495530097819199,0.0000028662902651915427],[0.000011330350286975492,0.000012473172611612833,0.00001843610125973655,0.000008842372753496593,0.0000017529507316521498,2.3234459675735452e-7,1.3401514761629398e-7,1.1406577194884647e-7,0.000009814583785913827,0.0000383337639834083,0.000007275209051882106,0.0001904361806015228,0.00008905476427074923,0.000002806088439965663,0.00000606959671115879,0.000054163142963041195,0.000003267632412084012,0.000013107376591487078,0.0000374697620506179,0.000051120530398372824,0.00004146106694420651,0.00004999399575966397,0.000010144844780561144,0.00004690929187396116,0.000003831350039705639,0.8993387774182097,0.00006609435778183506,0.000004715361890671221,0.0000019178608568132607,2.092116547323379e-7,0.00009311854666361914,0.000002199944373127683,0.00016694923083359446,0.000009395205514842851,1.295136522748475e-7,4.344877852134554e-7,0.000056688354248140875,0.000002835144091884988],[0.000007547747988062614,0.000003008288746762633,0.000028827605429480045,0.00003300323248352839,0.000003837068471919879,0.0000029064477890463016,0.000003776674021727176,0.000002161096647154191,0.000006376628718587814,0.000006885073989433926,0.000014323146076919588,0.00010217250010126796,0.000010129560901951363,0.8798165638921595,0.0000019618266503654192,0.000015300365354405078,0.0002619886787371973,0.0001906796361110326,0.000011037626567525428,0.0000028354991780421416,0.0006701979845676217,0.00000417885008101481,0.00007017947332648778,0.000059972847820752555,0.00020049578737573045,0.0000047578427641226725,0.000005884030846075825,0.00006020294904924468,0.000016973260782485523,0.0000013228314100325401,0.000015990115200451725,0.00001124254982775475,0.000010506502231685152,0.000007057954817874201,0.0001890321675197575,0.00010625765330633837,0.00004364034618670294,0.0000445380728816622],[0.000001543692362817359,0.000008369404947906247,0.000032659689030147426,0.00001919747026571279,0.000008809908962984167,0.0000014177066946903026,5.117245710350541e-7,0.0000028495251780942215,0.000005135482019762413,0.000008375437601343317,0.00001136580807502649,0.000016905209537441016,0.0000135424638337384,0.8906463162055339,0.000108925565597453,0.000013299575269557265,0.000022884656675486262,0.00007868299461767021,0.000008902403710247651,3.3730731239972606e-7,0.00014479422467781388,0.0000017459560813579505,0.00007938375260284842,0.00011320593082565859,0.0001469122020093526,0.000008736437536125541,0.000002307893311683067,0.000014248347291350732,0.000005821315249688986,1.7311469178344702e-7,0.0000015583936936990852,0.00004309779013032772,0.0000031604078150763337,0.000018986713083621594,0.000009840961504270512,0.00024044532933598195,0.000183716696748872,0.00004022978144223601],[0.00001712176735287894,0.000010581482890609832,0.00009533655978029422,0.00007595192065800086,0.000020117817737112898,0.000005319209210301927,0.0000035746764008346034,0.00001222848508537935,0.000015040819921298215,0.000016344329704584992,0.000035468252602334205,0.00038196263628736184,0.00010867808055788922,0.001009523189015403,0.000004386970810872034,0.000014698564662355655,0.00011813629832677192,0.00010136605825882254,0.00008006686555426479,0.00001632538396333249,0.8679530236653437,0.000004631659665307045,0.000048710681660454536,0.00009625853292290558,0.00018345184498874426,0.00007354106848649868,0.00005168273068292605,0.0001179532542830657,0.00004459513907896872,0.000004967226357132545,0.000009862782180991363,0.00003505230178455848,0.000021078480829313174,0.00001273069251709757,0.0005731268596150706,0.000041054498136680136,0.00003151303082733435,0.0004634877069525693],[0.0000021102314988502663,6.063256988523472e-7,3.6683188120254803e-7,0.00001367468250643845,0.000007812080871278504,0.000002151888697744313,0.0000015392950556845485,2.2871807792754183e-7,0.000008776134200496588,0.0000013262844748583956,0.0000011642433033457926,0.00013276839641661732,0.00001462978964914544,0.0000014565379039432607,0.00015087297233222174,0.000003505640121150966,0.000581418111683049,0.000011201297746953412,0.000004030438456149733,0.00000415798992204415,5.6572966771230767e-8,0.9028588930034103,0.000005922083018421509,0.000011985312527459371,5.722826884923948e-7,0.000002863347874499606,0.00000947099556058881,0.0000029270118576970723,0.000018565346559907493,0.00000810877988637942,0.00011073359127525787,0.00000810722263452164,0.0000035387221402472213,0.000005855496442830666,0.0000021992689212791495,0.000012822200936799097,2.2741058323272338e-7,0.00000220858949568225],[0.0000044717749375591545,2.5242689186522196e-7,0.0000029712563031526216,0.000026062191972922448,0.0000024745497161814227,5.405438656164092e-7,0.000016473191296728742,0.0000019734733074205397,0.000006933994063030678,0.000003025116588736863,7.228666133067023e-7,0.00003321429655843137,0.00005223980441069122,0.000010719285230216336,0.0002715107370611625,0.00000206020081813772,0.000555438618073267,0.000046227771196756686,0.000041916233949901006,0.00003147757987507313,0.00000695134304266659,0.9135026636146141,0.000001348016068877875,0.00000105883677118435,0.00008206135402057747,0.00003488108477677664,0.000008128016391888544,0.000014769218435327964,0.00005690039452336532,0.0000029947336737848793,0.00006483896243093604,0.000003219410578974187,0.00008916183522893112,0.00001361282880629622,0.00005657489815989834,8.145668242564491e-7,0.00001374037301526042,0.000003188589456705368],[6.96487954808081e-7,1.4769453441172986e-7,1.9681064934638091e-7,6.075677621721607e-7,0.000001314924529004328,1.3372273576196394e-8,6.504534019980962e-8,1.5787892107192123e-8,7.978578050774557e-8,0.000001154896959398335,5.222879042924422e-7,1.314751397676602e-7,7.310105098598044e-7,5.050754356006108e-7,0.0000019174115960254307,0.000001486806977973995,4.179679281435314e-8,4.816916235779081e-7,0.0000027338671166830913,0.000021690424643195347,5.554132705220549e-9,0.9232330624442616,0.00034760261682065783,0.00015326441672518172,9.055298525557486e-7,0.00001285202761941333,0.000017523737820941806,0.000014891830042280352,0.0000014067212701820035,0.0000013192554051151653,0.00006141270762124791,0.000002443891778832712,3.8844990618440626e-7,0.000009567779465162007,0.0000060257349799541976,0.000005249219857446864,0.00000873987224390965,5.531111555361801e-7],[1.7931132163738254e-7,4.849119385326176e-8,3.760925445674236e-8,4.976757594757777e-7,2.0943752964057283e-7,2.6114022028038066e-9,9.08837118930909e-8,7.02600836739762e-9,1.2791899082600052e-7,2.4034237295987147e-7,9.350504912974169e-9,2.74273499901253e-8,7.670091452484634e-8,0.0000037143964158285187,2.802683379167925e-7,2.1732853993201867e-7,2.3557111388320694e-7,1.8295852487496763e-7,0.0000011402670935085853,0.000010931768927932146,2.8002523332978524e-9,0.9291973028397823,0.000014113884364538776,0.00008680753463763187,5.369812282606185e-7,0.000002131265853230809,5.53854615132502e-7,0.000022250737243536004,1.8954431731426202e-8,1.1822584916045052e-8,0.00002070495145557703,2.0770528578073718e-7,1.7254095006002776e-7,0.0000018483886299286582,0.000009004383932702075,0.000006154312023074563,0.0000018831952291195193,0.000002705268397200203],[0.0000219049377864384,0.0000024209430460395785,0.000003110269151604274,0.00001066179248357154,0.0000051572130817449585,9.281819156520534e-7,0.000001888560730223561,5.085620791422396e-7,0.0000258199621266089,4.487897738293865e-7,0.000004210075942836123,0.000025132986550572947,0.00006633161754902824,0.0000026746159448343812,0.0004716357611229855,0.000011205066635035995,0.0007004268541911877,0.000008232406410608705,0.000009121946329336804,0.000004344668742113989,0.0000018365597574828415,0.8907145156816902,0.000021540366666763182,0.00007157726769965645,0.000004273430363632861,0.000007147414423890942,0.000010255079250694912,0.00001117312509489837,0.00002798451661989015,0.000010410113249615501,0.00006205174526899984,0.000006409753551658588,0.00001731578496270224,0.000023659998269710427,0.000009839167895978406,0.000023091779148109143,6.937428153503976e-7,0.0000033133085480065363],[0.000009080350034671967,6.572292140223556e-8,5.802628961289581e-7,0.000001909206940924454,7.76794936052673e-7,1.8042084918940436e-7,2.938145327643834e-7,6.416900471789867e-8,7.010892940746974e-7,1.1595929517902384e-7,6.346520408802571e-7,0.000018054912423246014,0.000014302841325396111,0.0000083441990681797,0.00003596942076569081,4.193138071406094e-7,0.0010153570169533263,0.000002569981645163731,0.0000059024413463287965,7.019318538660921e-7,1.4006331422015358e-7,0.9066161204558703,0.000001441346481578006,8.946599166747372e-7,0.0000010742723846261905,0.0000018172332991037767,0.000006637969436522992,7.817473461071555e-7,0.00004750403724334661,0.000002888431652692318,0.00004633629005998689,0.0000020243357522468977,0.000004126959745039583,0.0000018375602889809924,0.0000010632943903447134,0.000007908337777040167,7.248025810050419e-8,6.336199192024039e-7],[2.637558391480632e-7,5.5513998585100035e-8,6.066399253004508e-8,2.141700871545866e-7,6.389039771864304e-7,2.4603081941462107e-9,1.7037504881345442e-8,2.2896857173749785e-9,3.481433815852853e-8,1.0517412425994353e-7,1.1338240974477796e-7,9.987356687693806e-7,2.817682634943971e-7,8.107336054072045e-7,0.0000012551858788399578,5.282100398246611e-8,3.844457884671454e-7,2.59836747703907e-8,3.4502152476048373e-7,0.0000022660163927410392,1.5004140437001385e-9,0.9409919801735124,0.00009155601152162543,0.00007327163344175407,2.271170089336171e-7,8.35382175935744e-7,0.0000023081198143163203,0.000009296027999281472,1.155871378136793e-8,1.1637415673217987e-8,0.00010567176913600029,2.8702114965911924e-7,1.3170907099785364e-7,2.0879351715259328e-7,0.0000013878774459134366,0.0000017641470493384598,1.0424574594068347e-7,5.266101932343655e-7],[0.0000032538759709267084,2.2594038305185868e-7,2.139447417286106e-7,0.0000015040258814592052,0.000002986250816794504,2.904867480785472e-7,0.0000011289459752074772,3.9772515748590403e-8,3.000571445812573e-7,1.5002781160907106e-7,2.2557932177129593e-7,0.000013267815414781493,0.00003436776724542634,0.000026486552293106312,0.000022757318869348365,0.000001188288418902739,0.8802875531422962,0.00000313840100798578,4.7629222262985386e-7,4.382551999199048e-7,4.81499379666853e-7,0.0011780655479582298,0.0000011916912467378544,0.000003854128410619958,0.00003558607926034898,2.3950432343888166e-7,0.0000030242950532798937,3.0249684089262803e-7,0.000009524745834466467,1.2298298545725825e-7,0.000007202922234932756,7.203902167108892e-7,0.0000022402876449370683,0.0000045128295875747365,0.000001541817800684548,0.00004741258939619132,2.7619259589730305e-8,7.690898484777091e-7],[0.00001638999934133909,5.994011004306082e-8,0.000001002318901821461,0.000004315928456361984,8.888923860579361e-7,2.501233667724678e-7,8.824829642198154e-7,5.181777483557652e-8,0.0000019014564505945057,0.0000011908408642634343,0.0000019138306420871154,0.00002852153853608585,0.000003946581952208448,0.00006212073097399513,0.00006163918313153902,0.0000025044366768453814,0.881605828398196,0.00001346161635996204,0.000005620168450109915,5.278289869820849e-7,0.000002497147682675202,0.0011144749433183367,0.0000021668589449647287,0.000008706848249345145,0.000022282944326528572,0.000001086772762705234,0.000012073019911063063,7.864652395531669e-8,0.00010086538610744592,1.4383617098392816e-7,0.00000579034052419468,2.0623465309393702e-7,0.0000011295648701948155,0.0000020656010581752062,0.0000033500271412724543,0.000022443786212248478,1.3402622291122634e-7,1.6521014066846627e-7],[0.000003057273687742608,3.355118949966606e-8,1.8532405452042047e-7,0.0000019804842888447672,2.2298118789822198e-8,6.564721279976314e-9,1.0166296766024435e-8,2.7483063686873783e-9,1.7421158044079469e-7,2.1017138430813825e-7,0.0000032466959537459872,7.064765648510274e-8,7.714935913239882e-8,0.00007025818085582752,8.083892317206556e-7,1.4160363500068763e-7,0.9525925678790174,0.000005541975601285857,2.3868527364802397e-7,8.687935534376508e-7,0.000009535826492803591,1.4325529552271256e-7,0.00006178364459341837,0.00006129676356866594,0.000010542818663671496,8.235515704624961e-7,0.00028261806760900785,2.1097880241347208e-8,7.162497305197019e-7,1.6252962942718558e-8,0.000005718691986555181,6.907109979091856e-8,0.000027700966773539176,9.008986542684419e-7,3.013061228481261e-8,0.000007358653363675503,2.0742280972067076e-7,8.326543613796264e-8],[0.00005962296414732197,0.00001961251591807913,0.00005008472589284009,0.0000951158241349031,0.0001505062880505471,0.000004834794095139305,0.000005399814859545137,0.0000033349902630281403,0.00006983044113622573,0.000056169040951933465,0.00001927496364795286,0.00017450161753053786,0.8771365888326521,0.000007485671762447204,0.000008640350199209931,0.00012376407095895047,4.7463214044553376e-7,0.000058848211066788114,0.0006342565705628111,0.00021003745378849189,0.00003399261108852795,0.000004802710506797556,0.00005467747874634709,0.00001650463867796623,0.0001410638154798171,0.0002509404408513771,0.000009658601468958262,0.00003824881276639268,0.0000399192303522398,0.00002984000731369899,0.00003293619291748631,0.0004210463669855297,0.00014380280835971746,0.000006385214413762605,0.0001742335343456849,0.00024209438798155573,0.00013414330840186948,0.00003508176415856949],[0.000007140578794659988,0.00005947347466143967,0.000025999140983587526,0.00002460633528197824,0.00001420467391816364,0.0000012512208027318388,0.000004854257148217277,0.000020390071162528347,0.000041744610046618004,0.000037662307148708986,0.000020932188815271515,0.0002884344576225164,0.888939193150418,0.000015618247788448216,0.0000421790422578131,0.00009161595411971631,0.000004277878290855794,0.00004344697240238725,0.0001202680553581115,0.00003412154290406115,0.00015198737984506945,0.00023642083497456032,0.000029598515765284346,0.0000017786712512285075,0.00009022670132922232,0.00017071961591858098,0.00003314126218765908,0.000007786039049800633,0.00007416429272013396,0.0000016410308552219072,0.000010457658836369814,0.00001582218123583039,0.000051448853802139624,0.0000022590038392777226,0.00006914795580284339,0.0002486218755583819,0.000208009262546622,0.000005440060416003427],[0.000012916708597933608,0.000002734946214605764,0.000016886767777500686,0.000016612164215035253,0.000010041209843877574,3.9996942509573286e-7,0.000009222576086861777,0.0000014935921735859747,0.000021451081324241566,0.00008565155200608206,0.0000043185450853393885,0.000011160349578427039,0.8954987680850148,0.000022927173843298575,0.00003744356162851261,0.00010187485021857243,0.000001768791687277809,0.0000103331255526543,0.000008879242815067531,0.00004672648264802407,0.00006560879811547154,0.00001966925080117059,0.00016646880881453617,0.00000174009626585628,0.00011249873009753414,0.0001595065189239746,0.00015022277331926188,0.0000031089888143179496,0.000011638357046948964,0.000039297855567291764,0.000021359419888035972,0.0000055724097515539914,0.00018619684647797419,0.000044304258475473685,0.00004304858825302115,0.00011333166200517285,0.0003335792832898341,0.000026077455577988425],[0.00004039790952328647,0.00003989163790904615,0.000013654115704058976,0.000009007017584072399,0.000030386201793359553,0.000005632393784602824,0.000015036775011647267,0.000004439432137355838,0.00005726373254169054,0.000015256138813085166,0.0000631276297686999,0.00012092212390324658,0.0000019081630585837038,0.0000356086050622648,0.000016352497022172177,0.000023699392395383108,0.000008148538465050737,0.000003327569145919786,0.000047550397033118625,0.00004355166675474006,0.00021925921736060615,0.000012308738749913324,0.000041135462525222697,0.00002640220363339178,0.0004553981718461262,0.00007810536876355654,0.000004053816561350345,0.0005451036583590295,0.000013484718185484206,0.00022003435228073432,0.000008003398853863729,0.00007781809681068507,0.00006966784231672769,0.0002284055981417293,0.00019351383576537672,0.00003057167981915252,0.0000030694675628492516,0.8804558808265713],[0.000011348949929410884,0.00006026057007553006,0.000012986239483889427,0.00003085964444719173,0.000006159735729817463,0.0000019246726409624054,0.000032585434055421516,0.0000024078941471392826,0.00003632292328516621,0.000035337795216677776,0.000026644449932415233,0.00027104311638426524,0.0000012524099922235882,0.0001594850209018127,0.0000036468645884307604,0.000012003825621609337,0.000005880836714381029,0.00002525468406415725,0.000025459344329389753,0.000034841819536323055,0.00009338331152007613,0.00001530027344124993,0.00003388869449195344,0.0000030615571701509463,0.00030622034245969434,0.00006438745048256566,0.0000015579229425336152,0.0005142239346344618,0.0000052894848210427115,0.00016959037637573533,0.000014203425844487426,0.00006821831844492584,0.000032058982727751935,0.0002184740467460695,0.00027238237508830416,0.0000095024604972994,0.000010126459322154555,0.872985521965466],[0.000016432026619739254,0.00005215188938412466,0.000013031261053937672,0.000013307235297043202,0.00003953694082970743,0.000010711396796890289,0.000009396978227993075,0.0000022168551128516418,0.000036272577285008724,0.000009642020670332955,0.00006745715683752768,0.0001394367378350536,0.000004425856398818414,0.00009133038107201802,0.00004755532643013116,0.00001607114403976233,0.0000031797563721070495,0.000002383677654075124,0.0000742589311656989,0.000004389199829701593,0.00007714113980318174,0.00009893328883141299,0.000029743279801443824,0.0000417186249703726,0.0001790608218458315,0.00011552092087567814,7.946705986308274e-7,0.8805762217796075,0.000003167666733621672,0.00037156655004242484,0.000014440980562838738,0.00019373023340782584,0.00011679616576475961,0.00009170254237415492,0.0001317175437281046,0.00012861401642975983,0.000007796536130214256,0.0007272475453117388],[0.000028342558929505964,0.00009469744174275203,0.000026693635891310697,0.000004942046789864164,0.00003626353833236208,0.000003228732604000115,0.000006798421948417776,0.00002005582177046974,0.00010766019108830121,0.00003930294092481603,0.00004225068053263409,0.00015130609079528734,0.000005886262074315843,0.00009889666168422828,0.000014283282747431309,0.00002293752730990793,5.411591922719196e-7,0.000005953370848851711,0.00019090732489037833,0.00002699944649045862,0.0000842133025156166,0.00006661446271944754,0.00004757036566357748,0.00004769014769660976,0.00025119409603113107,0.000052881884109111846,0.000005067898441918646,0.8827234820992192,0.000001967717614462372,0.0004939281643971241,0.000011786357450941832,0.00019101521057932543,0.000044481994161705964,0.00013822306599335432,0.000128097015634529,0.0000462985885224676,0.00002813927209489893,0.0005754846527669449],[0.00002642225518161807,0.000016423055965993956,0.000029240834219961103,0.00006962046844908074,0.00008950059906963774,0.000004216206082514034,0.0000012776242404002835,0.000012720045652821157,0.000003832037501457603,0.000009198145142374786,0.00007182670761968701,0.000005312599223434742,0.00035823002329602626,0.00019251302077913105,0.0000024864192186819853,0.00012469245707065875,0.000023528189869386122,0.00002128236230699868,0.000004745930569039631,0.000005028506897972011,0.00001672436638440998,0.000006507831092721273,0.000029131813151157702,0.000020406725404169944,0.000053641672089004516,0.000006079954155143426,0.0001984710844902296,0.00014425665889878205,0.0000029286282371682373,6.764400022470887e-7,0.000013400763401873068,0.0004273569542159598,0.00020481735158825684,0.000027936180649931972,0.00015200753712931657,0.8931290715065142,0.00010146822924229488,0.000016208799455573158],[0.000024133616151681327,0.000005006927188484248,0.000020608916450925375,0.00001686204965914622,0.00004561468793282321,7.249195899908706e-7,0.000002146133136538539,0.0000035507689796399946,0.0000058628347553594486,0.000006119805600230755,0.000015537085897969653,0.000003823067427030241,0.00006386510758456041,0.00020203366796207688,0.0000014269340591749566,0.00003720920506408564,0.0000030788789351352104,0.000014956983459160475,0.000011683195247111349,0.000002534661935760891,0.0000030224428929001125,8.798940206043022e-7,0.000057096488671229184,0.000012161542541772726,0.00006292091024535419,4.4772232532802717e-7,0.00005787075243772949,0.00002388313531208908,0.000002688405542161754,2.7113420863881704e-7,0.0000035522186426935367,0.0001230940509859368,0.00016268796824013405,0.00004163964842004758,0.000016184596166560372,0.9119811396541884,0.000025010764270731987,0.0000034635999861442835],[0.0000014770959267079108,2.069116508674403e-8,7.411106868082751e-8,0.0000022228676953916576,6.196897419244227e-7,3.0795879613843903e-9,2.1209075776556236e-9,8.311911403655573e-9,1.776610124647446e-8,2.0998094108838945e-7,6.648696630741783e-7,1.387004372244025e-9,7.028188861541417e-8,0.0000028469858016668327,8.740583061223878e-7,4.3344897681238575e-7,0.00004286129625588515,1.0728157938006956e-7,1.5804873335126922e-8,0.000001952914942197199,2.968352308770113e-9,0.000025978358595119105,0.00009783642362160523,0.00008586179529356752,0.0000018454835866647414,7.856898570885706e-7,0.00001063230556883444,0.0000010006122806758307,3.1309454719987005e-9,1.288971106662443e-9,7.701974947588361e-7,8.119619550285902e-7,0.0000061521910427331905,0.000024137006557445626,8.930059479580344e-8,0.9376428756219974,6.396869912072603e-7,3.804303790703433e-8],[1.689525624894227e-7,2.1079006722534054e-7,1.9600147570593757e-7,1.6080771521491096e-7,3.160275999460527e-8,1.604252683450752e-9,1.1216149115724424e-7,5.5390451660674155e-9,2.7755487378195656e-7,8.109435595451112e-8,1.4398520073036532e-7,2.7361940286365232e-9,2.3548209810571927e-7,0.000006594866989036323,0.00009284494985012494,0.00000465435828229431,0.00001395124339190168,7.51258962802166e-7,5.0832858273210395e-8,0.000024477437432477474,4.170617904499592e-7,0.00000900023553348173,0.9109935932920273,0.00006433962059234397,3.5213076257087493e-7,0.000009775509312512954,0.00003310017612847653,9.238028854286163e-8,5.749813328874539e-7,5.757520864258194e-9,0.00003939047111321658,1.267606921830652e-7,0.00002980629524836837,0.000014428490767447981,3.398667961451661e-7,0.000002729878240848735,0.00014465852422614175,7.610839307990886e-8],[9.665275766972714e-7,0.000003815400434103906,3.876429280771437e-7,0.0000011398213047440512,0.0000028638083614873393,3.994330038798654e-8,1.4293673448036326e-7,3.1100871618565997e-8,4.043422198281091e-7,3.302874575261158e-7,7.123411213217985e-7,2.5278320203099458e-8,0.000011179312107781469,0.0000010140522096171079,0.000012607248958125789,0.000019137477702614522,5.6944497596039266e-9,1.233184881443388e-7,0.0000055796472730966335,4.131299290495608e-7,1.3611742721962109e-8,0.0006471811109504671,0.9006820024381452,0.00025952587170483785,4.91554993710406e-7,0.000001401445952720027,0.00001705348191379357,0.000039069174845986805,4.898738053405319e-7,2.1691317698229755e-7,0.00007210753329039786,0.000021605518224433673,6.753447850612333e-7,0.00000655053146051778,0.00000874953127859564,0.00015421190972960034,0.000022850451288449017,0.000006429300918178841],[0.0000014127112497518318,0.0000016662532187452799,0.0000021151208833508685,0.000006788821336649998,0.0000011354550773158249,1.7004740979574607e-8,2.488658761203967e-7,1.0027253336405029e-7,0.000008258655214647456,9.849399241249266e-7,7.518756267030208e-7,1.9619940416833155e-7,3.126905511509533e-7,0.00008857725523412783,0.0001366366366847377,0.000005369392920177887,0.00003835607261585579,0.000002275023539024701,3.063363687285644e-7,0.00000903275907626728,1.2775334422698879e-7,0.000008192225900063516,0.9179034966113351,0.00004269426381957795,9.84506414600565e-7,0.00004507875612623829,0.00004888902737068757,5.336506430618042e-7,0.0000020669933204989653,2.4144489381188002e-8,0.000053221524320545996,0.000002096761520170604,0.00003680738801194983,0.00010400136395283729,7.681250175490548e-7,0.00003838104921750667,0.00006798694995907895,0.0000334103070645461],[0.000019776241858819994,0.00007109963170700007,0.000006987527217067234,0.00003340057021989721,0.0000643290268920634,0.000001435721858293618,0.000012195786636371731,0.000002468776562477176,0.00005499128639366499,0.00003568234352339716,0.000011506226140808626,0.0000886109984574018,0.0002808726047491301,0.00003371777958359523,0.0001414100772468364,0.000007416073286613188,0.00000502152272399336,0.00008355744480230393,0.8758227285527069,0.00009140322220398871,0.000014303712746089445,0.00006635167675788053,0.00002422262891623543,0.00007178005249126992,0.00031600470854772705,0.000034437337748397544,0.000006594638190014309,0.00007449032816104107,0.00021613277252855898,0.000012419064168852277,0.000035128683918463915,0.00007932679991210757,0.00010254285949328528,0.000007589726551243842,0.00002722921969725193,0.00005114050951381228,0.000006750219416433398,0.000010299395526243218],[0.000020521550090381218,0.00003685115362627775,0.000015063192664578972,0.000025609507114268944,0.000023300082444871087,6.485807728668346e-7,5.639223427342531e-7,2.416141274933867e-7,0.000023579686455028683,0.000012678342332187598,0.00006888250645184001,0.8666808158460088,0.0010013328864898045,0.00010446030802129265,0.0000015651291766737173,0.0003048640359451906,0.00000781853003193201,0.000007797851274897179,0.00005828743028847977,0.00001693576865773736,0.00009421485966568514,0.00008962750588082513,0.0000031049673775233156,6.761889177963481e-7,0.0000828971269372973,0.00006197192958390266,0.000042314679832907764,0.00011957877471771671,0.000007486937905824849,3.117942590636574e-7,0.000011640443180433438,0.0000010194323914588172,0.0000029242070140435436,0.0000016637642182395808,0.00019801661135157694,0.000011447548400903765,0.0000030429585125939706,0.0001511691091327896],[8.031944604218932e-8,3.312695870712473e-7,0.000005186395548052573,0.000001001189465223039,0.0000010269547364316937,6.890979568161065e-9,1.9213035525252292e-7,3.1012616181030447e-7,4.608571256036399e-7,0.000010395928471056784,4.4317523591415274e-7,4.426546938974882e-8,0.000620936331228788,0.00004246395901620258,0.000002760804902489914,0.00002195903069146928,1.2398067311164112e-7,0.000032351858515524095,8.506267063335855e-7,1.7729753903854339e-7,0.000006527041049324505,4.1916373043214116e-7,0.00007976194418661851,0.000001243958783495516,0.00003527484431471795,0.000012928396192512119,0.000029149171422230816,2.4433866683003057e-7,0.00009966269407171802,6.804581277354311e-7,4.6640744325172e-7,0.000006579052164430009,0.00039937448381536047,0.0000018742971372358221,0.000014320079356131275,0.000021973338846209688,0.8869265590360722,7.061542172380696e-8],[1.751121491911643e-7,2.4351358728191805e-8,2.9955556905069686e-7,2.39560560099487e-7,4.2234267756730855e-7,8.85896042341655e-11,5.847891554824016e-9,6.279460397891662e-8,2.602567993695959e-8,6.951332945456774e-7,1.358776049703918e-7,1.8195457803257975e-9,4.5542576160484146e-8,0.000010011472687833287,6.589239778109234e-8,0.000001858215222765131,0.000002048554775799167,0.000021995587252675838,5.608008921420775e-9,1.4068946677123956e-7,3.6183737903921814e-7,0.0000010389897158870097,0.00005186646865272154,0.00010597525644285446,8.957362016652475e-7,0.0000598224540714111,0.00009285279295492537,0.0000034896760419283257,0.000007038317399602148,3.6301863995442324e-7,0.000002649133131033734,2.1601227391268954e-7,0.000008743484661957754,0.0000018214069832816116,0.000005215530610616381,0.000007264484651490995,0.9379043638212483,5.3511572276176415e-9],[4.273816232079829e-8,1.9345630211804477e-9,1.5429857977760648e-8,3.948861910166224e-8,3.3952967180256935e-8,7.428968224916192e-12,6.551144686143658e-9,1.0670070200903182e-8,1.7984882704911674e-9,3.264655586906096e-7,1.496874459593677e-8,5.483080181584998e-11,1.580616502795503e-8,3.9636279569325513e-7,7.309663533325918e-8,3.3625870152132434e-7,4.1475276225622116e-8,0.00001663901511370947,1.5816380976436291e-9,4.607026001188088e-9,7.236834551103506e-9,5.158876211145821e-7,0.000022516451364245407,0.0000049713263319811725,2.5221310732626e-7,0.000007886332750974043,0.000013388571121122488,3.52589680285169e-7,0.0000018168997866160312,4.7382321355641024e-8,0.0000014184528287011657,2.1844310588639386e-8,0.00002006858745413061,0.0000013672451590283475,0.000001948904811155431,0.000018211535276313297,0.9537681959007395,1.0048022781440585e-9],[0.000011002729030813268,0.0000027518132477102307,0.000013099293464446957,0.00000243439115689501,0.00002292500098844404,0.000002312511447693555,0.000004162315494467829,0.00000245997697929149,0.000009856615611435597,0.0000028098814082898876,0.000012798630837425103,0.00016714759762049284,0.00011048667265037153,0.000059179356365960074,0.0000013093199004794728,0.000012361167539013174,3.5750196969285274e-7,0.000009365633236062427,0.00003342993655885317,4.940814198682825e-7,0.0001998149495373774,0.00004625972693847218,0.0000036429859951745657,0.000010891726207813051,0.0002328176804832533,0.0000017300292695966175,0.0000029571385154918336,0.00009547213408819862,0.00003584885132038647,0.0000012941127372585292,0.0001395034483097839,0.00004477764139028077,0.0000028745081387459458,8.619470549717221e-7,0.888922273501296,0.00001875326393904079,0.0001719947522635604,0.00035713604398597],[0.000013917482375186806,0.000016204658658708676,0.00001461550522438884,0.0000305526379756837,0.00003499341345508193,0.0000036783177196499568,0.000006892177372240479,0.000025605664721660873,0.000009335813872366053,0.00005405704013501289,0.00003871638468376946,0.00019313169819238466,0.00008451530043467453,0.00015041747805239337,0.00003139295574827921,0.00008155790721820235,0.000002287934516249971,0.0000553319424427027,0.00011072224855899809,0.000005263590009703814,0.0002420234310200256,0.00012103868779223299,0.000022065262417708494,0.000009266024865528553,0.00025671377949542897,0.000007345886217384047,0.000003190239801377295,0.00016016365380607425,0.000039270389111173006,0.0000023126670872484564,0.000028962342068851683,0.00009524792313147404,0.0000208312729025278,0.0000229096432241267,0.8799778110154994,0.00011891720494621079,0.00015710362086315322,0.00022417950081041448],[0.000004086353684224329,0.00004307361277001879,0.000020098335876236257,0.00002028063467645465,0.000010184782640474627,1.2195867884451057e-7,2.964616488059333e-7,0.0000012072671486082708,0.000012346274988036589,0.00005071397756175243,0.00001876296347070108,0.00023596900681458765,0.00042254631178225327,0.000013371874849085646,0.0000051673004091457834,0.8716322450898798,0.000004431442539848656,0.0002997424309927909,0.00000788233136260034,0.00044773798235874554,0.00005221703342211452,0.000005248104885225049,0.000011576088645917262,0.0001305091022831846,0.0000029087342332942645,0.00030264966341314196,0.00005369834459227484,0.000002731618201239305,0.000021016766640133023,0.000003549547450630508,0.000016059694243763473,0.000005409439558553355,0.000018223483273435977,0.0000015189447560582478,0.0000018459774806094735,0.00001291294911855655,0.000004676642830106408,0.000010130144183678808],[0.00002361729755463756,0.000008954624263567625,0.000006289610442321116,0.000010856383582792886,0.000041642269680619353,0.0000011113343214338246,0.000006724719011702831,0.00000597990857054541,0.000005436854017182803,0.00001919100906024667,0.000012913851246073303,0.00006950620236829875,0.000019083441775097668,0.000021543282786353162,0.000004399681159559786,0.907706753717262,0.0000430217077401393,0.00030278048156903156,4.3127599048662386e-7,0.00007511026570663328,0.000014069651097385087,0.0000067327870955436076,0.000003741589435989209,0.000055673201558668546,0.000010677798005460297,0.00001778885642601816,0.0006201210444192172,0.000001658687925399421,0.0001838634183998546,0.00004346863853520682,0.0000878274072227776,0.000004825838476820499,0.000014959905113701076,0.00011219863851306454,0.0001487116556131696,0.00009995197594765816,0.0000013732435003856624,0.000025312329094565144],[0.000005697551488301973,0.000009930041827787917,0.000026796005997745038,0.0000028345776389295614,0.0000010366576860625748,1.6544934995553552e-7,2.0078864356384536e-7,3.0087762316741176e-7,0.000014592305482000373,0.000007651666013929559,0.00001115373432854599,0.00008279113192860048,0.000025996681082163252,0.0002830640424250483,0.000002061934571248289,0.00035468017843574937,0.00020793893414021168,0.8827935022868375,0.000015175905055061348,0.00039928814842243794,0.00014025822373924326,0.0000020556544971957308,0.00001011306904251856,0.000015797085289096753,0.00002721560864062514,0.00014501766942618248,0.00007359669276236095,0.0000011503023508987808,0.000038273787060850336,3.9581871770853264e-8,0.000012532678091824095,9.91318308096069e-7,0.000001367180698519338,0.0000018404259708958317,0.0000026677484268527966,5.692938613868931e-7,0.00000831646616673248,8.376682619491468e-7],[0.00000348002437759192,2.424892898878604e-7,0.0000020719651906623026,4.93110809873459e-7,4.5344023636191693e-7,1.0727955462455831e-8,6.033957317927549e-8,0.0000018212508747684466,0.0000013926684102786097,8.335604199566424e-7,0.0000018148304595026307,2.1738436235616576e-7,2.5967437125237545e-7,0.000001042171715304344,2.2911653069621433e-7,0.00003469516045373306,0.00002200338162689458,0.9468738466156664,0.0000010537616157073417,0.00001114597463505925,0.0000031105308558728335,7.274887778771721e-7,0.0000014124514104578227,0.000020668316116279433,0.000002561606437832374,0.000001684105133134209,0.00007876840505472034,5.33597139801056e-7,0.000017574278884420882,0.0000014181185963259283,0.0000018088892975536343,9.979968861880779e-7,9.551829907786303e-7,2.155875369419534e-7,0.0000020124134990944145,0.000011524735948481801,0.000014023697930372437,3.311435283777373e-7],[0.000008574076045449519,0.0000010377577879221408,0.000010202428709088732,0.000003511780637469264,0.000004239098798962315,9.582495806977438e-8,6.643383924865336e-7,0.0000036915006602213564,0.000008952660738797328,0.0000036421144077420806,0.000022994443694201443,0.000003711553355424683,4.556853004932168e-7,0.000011090924138948506,8.080246203851411e-7,0.0002068315793827122,0.00006117484524857859,0.8966326449566813,7.430184689655092e-7,0.00031686248973270616,0.000015237373213836471,0.0000018289520601694353,0.000005366675726018217,0.000006141824454070719,0.0000157694977558052,0.000001081137424593487,0.0004389820301188577,1.782568830482568e-7,0.00003455119933839032,0.00006659719006274777,0.00001789530127970975,0.000002338655208511854,0.000008367619122081562,0.00006640349835464613,0.0000019797601263541983,0.000005961316503594217,0.0000287861111342106,0.000012744282288378865],[1.3271062763152279e-8,8.087035880625565e-8,1.8570256951910937e-9,9.358174891241888e-7,2.2747495608181482e-8,1.403998336512143e-10,7.729325552410636e-10,1.44784126487013e-9,1.0541610607491263e-8,1.1675303301920924e-7,2.6086823049682016e-8,7.255115865399127e-11,1.4490835401496467e-9,1.1890656338484957e-8,0.0000011144082030038545,4.925477189926292e-8,0.0000023709898458317226,5.349254320512979e-9,0.0000167733736038932,0.9294521712698178,1.8469790234915795e-8,0.000010844053301752042,0.000027132857828373975,0.000003420584408300329,0.000007510211239637055,0.00002015015303244067,1.8431934249777915e-7,3.5227305558040273e-7,3.208458648443159e-8,1.9492370970781432e-8,1.2340664714450203e-7,1.268775495058103e-7,0.00022672295053718914,0.00002917539169536634,2.494788128552817e-9,1.608342673259993e-7,4.172106848699932e-8,9.025693070637771e-7],[6.760011866847578e-7,0.0000054124954135532045,9.048900336709203e-7,0.000004678299439035171,0.0000045026550115286964,4.64850041731247e-8,6.428068111511595e-7,7.348379638522549e-7,6.746695117932123e-7,0.000004393373909536917,0.0000022543572618891972,4.307675736123081e-7,0.0000012878482767734177,0.00000358338512682102,0.000014326564360371373,0.000006013821469717194,0.0000022726670959916033,0.00011386024307472594,0.000002369726491764367,0.9314862475518146,0.00000554993333647884,0.000041317283486384796,0.000002430494354099359,0.000034912754489697214,0.00001729283715141654,0.0000011585861317309,0.00028224461969605984,3.922136837614571e-7,0.000006603081689667273,0.000008900192374726286,0.000010750795051288987,6.685993017882794e-7,0.000006167164033962842,0.00010458094506961919,5.107671857221172e-7,7.234719711017816e-7,1.1576295069846728e-8,0.000010405450613162328],[0.0000028825266649160954,0.00001270253590874899,0.0000031262172300206865,0.00000949141430593113,0.00003344217470931823,7.689656434390511e-7,0.000003320614229443413,0.0000017290674870649782,0.000004798941778348685,0.0000061114492491393165,0.000013529728055232967,0.000001645857286412711,0.000010836817845482165,0.000011687819836571186,0.00006289807670728079,0.00006254386124082627,0.00001313701025603248,0.00014427078353258663,0.0000039940994551919595,0.9120719083156467,0.000039426986771400226,0.00005717817023792156,0.00002426301025817702,0.000028783728336525316,0.00010399797134249693,0.00003368553665782531,0.00030582445256798174,9.172979499417004e-7,0.000040277110144114526,0.00004850768118099227,0.00003273335104221635,0.000008373728146073812,0.00003158560506637685,0.00019791285393041074,0.000004440254374160357,0.0000024355743201329846,3.152349463116712e-7,0.000017767267288388398],[0.000005825807807517043,0.000016380120007194543,0.000022969057619562692,0.00006442415050493017,0.000004226634617552584,1.5308588527040318e-7,0.0000011887675122085142,6.118926306512354e-7,0.0000037720920243562724,0.000008051884145908336,0.000007516809947257247,0.0000792778745841179,0.000019080150126877106,0.00006965344667664214,0.000004700531726436329,0.0006062200903754893,0.000012340025122401745,0.0006194779571338155,0.00001552532535365236,0.8912260081934767,0.000011393976033589206,0.0001573168333790191,0.000009085552077588493,0.000008194969781705232,0.0000033065271149091335,0.0004994870617178751,0.00005029788837275988,2.7035472820626267e-7,0.00023188687463902654,6.298636796795906e-7,0.000008374454265099562,0.000003181749872360091,0.00001738723877728866,0.00000314719712526298,5.403587772904481e-7,6.499249428198718e-7,0.0000018670549660020492,0.000002637143363927494],[0.000007526133365991488,0.000003990723182031043,0.0000035024849155064282,0.0000019492902225128543,0.000005582601196398315,4.8293653005963735e-8,0.0000026169828442302525,0.0000017623572547860855,0.0000015428589584766164,0.000010993692728448544,0.00006817393282271714,0.000006890409023531371,0.000005897475293770499,0.000010440147150026542,0.000002146861152939394,0.0004592685642555643,0.00015184676940192278,0.0006780484156419696,0.0000010015888377526238,0.0004466173797981148,0.000007842911356010673,0.000004309153512011379,0.00000816700414157206,0.000011168959473169754,0.00002615833588535374,0.0000012938814484819476,0.8658552072014577,0.000001435266459865054,0.00011554759618588862,0.00008494637508807348,0.00000192653992193815,0.0000025470819732328806,0.000002825469810555093,0.000019085416728138367,0.0000015104857334401867,0.000017709465191223422,0.0000011014791445524619,0.0000012385920032370398],[0.00001553820544633341,5.128434836922769e-8,3.7569096091391375e-7,8.148766907286851e-7,2.7368302647947085e-7,3.876300641433917e-10,3.817661305113711e-8,8.632244367959673e-10,2.8170029786063715e-7,7.470509030127632e-7,0.0000010138800449554254,2.573412136892455e-8,9.176687203242618e-7,3.064073686375442e-7,8.708284480041973e-8,3.7267860632252653e-7,0.00010292723656968365,0.0000013897705403155408,5.9544628635298105e-8,9.876314678489718e-7,3.7020131093530623e-7,0.0000037860911331578844,0.00011912339948518174,0.00013018036772696916,0.0000059354616165378395,0.000015474849344520176,0.9076856345355877,1.2722822528209414e-8,0.000005452584059685837,8.099158415184815e-9,0.00011250360097531341,1.657343960832764e-7,0.00001343780312725156,2.973545636042982e-7,1.9740047489563367e-7,0.00007924507417680327,0.000005678968967641377,9.67972850724076e-8],[0.000008705793018222306,0.0000032104628530367954,0.000008862864600912626,0.000013428408524259203,0.000017885231752992037,8.239788282945212e-7,0.000006221372987414298,0.00003344031543514161,0.0000018356131452445246,0.000005017516399719489,0.000006086276689202246,0.000004053971632462211,4.27968753975242e-7,0.00013210664966813325,0.00011654153836614452,0.0001890256764976057,0.00011523661824450448,0.00008881991730007335,0.0000148732171590023,0.000007954571110187996,0.000003903661460989255,0.00009379293596649157,0.000028487309186753216,0.00004457015736763145,0.000022459256940624243,5.925510609132374e-7,0.00019632255983343538,0.0000016912860880003438,0.8977507936875122,0.0008008000487518534,0.000015181662944208941,0.000024131089920570898,4.998568864291602e-7,0.00001975485606184565,0.0000958991320890051,0.0000019519124159639135,0.00006523586473135237,8.752507005751282e-7],[0.000014693030227485601,0.000005142972609460287,0.00000528672911696899,0.000020030955601916522,0.000009199019910014695,2.1834759986065527e-7,0.000018488618487999534,0.000020517608862756183,8.012732178606158e-7,0.0000138875583044849,9.306345836923471e-7,0.00000550926044262493,7.349763228138161e-7,0.000036624814569653794,0.00026466571310297557,0.00010113503539596353,0.00005425574823722276,0.00011274381802255014,0.00018051632882308785,0.000007533500685535549,0.00000334931269950969,0.0000892379467526461,0.000015601914705106186,0.000017810998148041234,0.000010564291068413291,6.419475531826342e-7,0.000059220313531152245,5.676142681241969e-7,0.8995061092721691,0.0007495539271428892,0.000030157874494324918,0.0000070168490698879196,6.679464149194695e-7,0.000005258233534465148,0.0003062477013611489,1.7464525118997697e-7,0.00006438654897805405,4.745475583523584e-7],[0.000007526994988372049,0.000009365854921823843,0.0001249248452642419,0.000035780535004985964,0.0000241870998661432,4.502910769948925e-7,0.000010278526579201266,0.00003190998191288182,0.000009867343973192781,0.000033640164821532334,0.000029545358184593448,0.000006265621719315318,0.00017964233583362763,5.196253629976796e-7,0.000010232558507605445,0.000015948677171935344,0.0000053290864263803585,0.0000742220134955897,0.000025121569575902504,0.0002065969505052838,0.00005363859183263448,0.000015776280374439658,0.0000039665946424079125,0.00001191425962156888,0.0002687103135905513,0.000005031578380687245,0.0000883221227277684,0.0002963271966182288,0.00004842176312093347,0.9033096605939139,0.0000026007851467773576,0.00003478318736484879,0.00026867460861259874,0.00005416048504281496,0.000006973561616644284,0.00004699380848049197,0.00007640869735055402,0.00011479655194588573],[0.000012266251757438551,0.000015385397662581652,0.00002714744555002038,0.000004769589399494622,0.000008172223925884243,0.000004549888835790262,0.000013884729892608636,0.000016615730589273015,0.000009346828558298086,0.000011684692307001964,0.000008314505385379722,0.00001134388636677501,0.0000017718253074455456,0.000022739608862462554,0.00005329607306367032,0.000031220958067638694,0.0001033127973858201,0.000025270686261996022,0.000008588108306985635,0.00003879369211097058,0.000010396809921110825,0.000016930192884932265,0.0000037224679095916363,0.000016780713371421043,0.00005032240298706332,0.000012169553781596856,0.00018066174613289859,0.00044246594487083225,0.00044278093036695376,0.9052681126436961,0.00010045621256139405,0.00002186197449496328,0.000036301247463926104,0.0005497141088571485,0.00000594204627115172,0.000009980714815630006,0.000010880388984577253,0.00037384854044715093],[0.000002015258283361297,0.000003924574206743143,0.0000031470823241029566,0.000004063007543277489,0.000004989547070889396,1.8212261855674635e-7,0.0000012123897335789449,0.000001506849571242446,0.0000017319024229320647,0.000009468679225885961,0.000004302181280074384,4.170659341623185e-7,2.661490221578263e-7,0.000002245616214434997,0.0000025084938410664936,0.0000028788108372712755,0.0000044776240757050434,0.0000017427843786771873,1.651826592936516e-7,0.00003305333330363859,0.0000014924424267141395,0.000009808952123867605,0.000003422584378818329,0.00001198172364043368,0.0000028250846376259247,0.000016520424525884245,0.0000424409661335617,0.000044283366246611485,0.000013392654708390897,0.9370904601270202,0.00009123801199304865,0.0000060814632094569675,0.000010451089653024649,0.00014744156188382042,8.04347225907013e-8,6.967703096401335e-7,0.000006410913014637912,0.00006922751310311983],[0.000006440093208730216,0.0000028637302863341784,0.0000022109125326323317,0.0000025089597628422133,0.000003750281023369817,2.491431586584953e-8,0.000019508369163674775,0.0000023892610603380287,5.219059172829482e-7,8.03496802986887e-7,0.0000018126210208660052,5.586880365857225e-7,3.6723663015822136e-9,0.0000020238058136022068,0.000046494901904405535,0.0000021748699188443106,8.450876002090389e-7,8.50581374808089e-7,0.000006426661335666724,0.000001801108304774155,0.0000013136127043323507,0.000029931567384165565,4.853755769524317e-7,0.000011737198233838722,0.000009023973649159562,3.6001339929182366e-7,7.789798759472234e-7,0.0000818574661721874,0.0005181999515116686,0.8953440360302513,0.00003252299612188155,0.000014821933235895315,0.000004322892947406793,0.0000028939889999702514,0.0000055669355013988246,3.5381613944446485e-8,0.0000056621629081020475,0.000031166320313305285],[9.19217123504496e-7,0.000002129366263228241,9.20126144910862e-7,0.000003822091562737312,4.4815149109429775e-7,4.605195596451766e-7,0.000008891402435874533,8.843294621291586e-7,0.0000010402271433403341,9.174434134605398e-7,0.000011258396024543567,7.360331448190136e-7,0.000001230660919678196,0.00008128593686649525,0.9108505244533065,0.000006598846523227224,0.00005931940345211309,0.00001195897132893771,0.00006482436868065418,4.869422686230028e-7,4.049976234327189e-7,0.00016610880335271938,0.00014070019845795263,0.000021063214253501308,0.000010617744949131185,0.0000015905358950082547,5.054091531207674e-7,0.0000017216709279157276,0.00011361988818842703,0.0000032945909287133626,0.000018805045011053787,0.000002465224313072385,0.000020084817178882545,0.000002465773685918186,0.000011395926138217152,7.566895825548831e-7,0.00003208694994758223,0.000004235798376672602],[0.0000021209384475126787,0.000005058663725348875,0.0000011738139168082763,0.0000012812164323294046,0.000006398687338821692,0.0000014496406708282394,0.000001524604817394564,0.0000028960372751001554,0.0000017426148015872901,3.586504450003813e-7,0.0000064999716412380836,0.0000021478772762616556,0.000008897915257537806,0.00004482754815947017,0.928439408801695,0.000008050205404053716,0.000009679458009041753,0.000006069779088932213,0.00006522425785090709,0.000004600095368490881,1.2874611216506757e-7,0.00008852393777408735,0.00006938270865351691,0.00005799916018811811,0.00014639954280481202,0.000002010802583316026,0.0000028988502968650574,0.0000055835285600213014,0.0000025872797004688546,0.000008470019161319516,0.000029404410619971353,0.000006876594171298869,0.00005900818636053652,0.000008848954997023907,0.0000023120755028442375,0.000009825242816374673,0.0000012164447749686005,5.604683029737482e-7],[0.0000015517388276066577,0.0000011329914732928613,2.1943254753050883e-7,0.0000012627112726606353,7.974899057704851e-7,3.617197739099495e-7,0.0000052778732218938,3.0468613013604694e-7,0.00000109349204314545,1.0871900775947573e-7,0.000006252204215129034,1.5829400118292936e-8,5.93324507133279e-8,0.000008820504728779652,0.9204019298428301,0.000007308986431359081,0.000003485824090392638,0.000004291223866809704,0.00003361047824516936,0.0000015181415139783417,1.6509739124711398e-7,0.00001766397923401647,0.0001772284308293576,0.000018162927255796017,0.000005388173270750043,2.667625043463427e-7,6.399792633898442e-7,3.5659136081375234e-7,0.00009440979516509003,0.000006903129518067739,0.00001863150342331949,0.000007505534658458863,0.00002781398755857988,0.0000017955647891150454,0.0000068982784692452645,4.5898124571245303e-7,9.088296852878812e-7,3.93922725021087e-7],[0.000044210685927338344,7.228559587941429e-8,7.744097851991575e-7,4.38202186517993e-7,3.420296948243524e-7,1.4892884512516779e-8,8.544460414628991e-7,1.585425380286599e-8,0.0000024635579164816206,0.0000016454589236210227,4.463133506712756e-7,8.805152271057507e-8,1.325423712817468e-8,0.000002386307023630251,0.00000777512298643465,0.000001863466808608097,0.000008556545038203027,0.0000014134307748865616,1.0800845994876221e-7,0.0000018599099883336941,9.859037427020594e-7,0.00014027217723906721,0.00018567669814250625,0.0001851760115369644,6.737073548711193e-7,0.00005077620339035948,0.000027977755217623335,0.0000048740618053951145,1.2654983731846302e-7,0.000002094228665497621,0.9115073281428755,0.000006979678294060569,0.000022373074091940524,0.000010468745052346494,0.000013303625945813148,0.0000042887368146021846,0.000004651106197812177,0.0000035241556721888123],[0.00017096269203598858,0.0000034322527113418746,0.000051000346162930324,0.000015513638227018576,0.00002898543919967823,0.000006279459187858069,0.00001432653065243096,3.4310117928066515e-7,0.00002479380440768758,0.0000167321530598078,0.00001331638677449793,0.00007776917450003331,0.0003236127548363189,0.00004974685623154486,0.0000854624563564029,0.000033862003800489365,0.00002568596111250489,0.00009897339022587901,0.00007881415581083893,0.000010920790382274216,0.000035304490669993134,0.00022139308474809855,0.000017782211544815018,0.00012285687276752106,0.000007113721401113386,0.00016854101260231944,0.00018488455291888024,0.00005622126191053078,0.00009960149619174946,0.00006256869271738195,0.9005822774171363,0.00041249732204429347,0.00007335917740604028,0.00029486349480203075,0.00006574100054471162,0.00003715588380060153,0.000020229199606389088,0.000010505541005283041],[0.000022493265470117243,0.0000025072138078909737,0.00001308444806593047,0.000028971894056180033,0.000009932602018499067,6.290435229847015e-7,0.000002117806962918035,3.55304926203997e-7,0.000003828027838969656,0.0000020105535578881384,0.000035738045455710555,7.874914432645207e-7,0.000211186588077571,0.0000858462000736407,0.000010212822513333466,0.000019893282092265075,4.2903051494595966e-7,0.000002269087959975011,0.00003503734820843374,0.00008407459880394006,0.000010920271945035198,0.000016459051205368195,0.00007380296875637046,0.000062094746757122,0.000009908866777689993,0.000007313425713747714,7.313758097877791e-7,0.00020209396007516206,0.000025152785968699902,0.000002492114407168011,0.0001456887422479245,0.8768795017803096,0.00012143628355011272,0.000011096618791127422,0.00006652621692020513,0.00019438587503221446,0.000038584980514918216,0.00003094502713243547],[0.000005036128260909309,5.712337172387772e-7,0.0000015021913027795238,0.000003992241095819155,9.110011180840048e-7,4.5388236853316236e-8,1.1947764087177316e-7,6.462858642678074e-8,0.0000011500483317838933,3.845301699559072e-7,0.000011073248815579364,5.6760891488380306e-9,3.186378811032344e-8,9.312582941721638e-7,0.000009203482227445055,0.0000015289364414991824,0.00004544976220066531,0.00006842951845365578,0.000012089655039797154,0.00035199179931971666,5.035629233682557e-7,4.967137284811191e-7,0.00011402399621614929,0.00002506695264585195,0.0000037468784266422695,0.0002326375593218389,0.000014192263813773997,0.00004694701770612429,0.00000510760705955218,0.000010700425336534278,0.00009078618068872884,0.00030399826604114266,0.9014051808445235,0.00015473463070407104,2.2661089442567556e-7,0.00009179144275588498,0.00006138990603792958,0.00001575785400819664],[0.000008634319641109544,0.000003847070481420498,0.000009579383086171427,0.00003095730480281434,0.000035430709455481495,1.76951118426406e-7,0.0000019845107821086122,0.000007210771968007282,0.00001933140230908208,0.000016052585762770155,0.00001703756799391103,0.0000032573008966200103,0.00059787224709015,0.000004909094891854984,0.00001962275962057002,0.000008814095821474086,0.0000012391640519780694,0.000008838685490753708,0.00001755946680471623,0.00004897059555982414,0.000007417289614556673,0.000004710419117381654,0.00001499951734435062,0.00003430304700133345,0.00001270325377862935,0.0000527039150833994,0.0000812000567317985,0.00002888957637061363,0.000008985494944004133,0.00019655871400163914,0.000005708945544031368,0.00012131718790595131,0.8841947647992501,0.00002465698430971346,0.0000027597723207678495,0.00015591096422563284,0.0006268927765288576,0.00001768983180583132],[0.000003648119587374771,0.000008502812532316674,1.6846736712512834e-7,0.0000011952506589965349,0.0000017067827080191712,9.137033000435077e-8,3.3181970438516536e-7,0.000001917360027919105,0.0000032642354053297826,0.000011505769936013204,2.0278176534856593e-7,5.068619658903727e-7,3.6694760633663587e-7,0.0000027472337187112047,0.00000694946533633966,0.0000024539175013004093,0.00001563749863909403,0.0000036258797616018432,4.207051037060482e-7,0.00005905524237942468,9.156374451996935e-7,7.100918454872587e-7,0.00009962378587739764,0.00001209000158500374,0.00005236414808790271,0.00001489133013548815,0.000009914796570034835,0.00004207146681271351,0.000001387375169847152,0.0003537620262122393,0.00004197731468567665,2.764707331814178e-7,0.00008467512734316412,0.8846374871272314,3.508955571811005e-8,0.000033898504018731095,0.0000012552797758088717,0.00014597648803714572],[0.0000011761127284460711,0.0000014284577474654714,1.4062300669360996e-8,2.9028878060923587e-7,1.0294516962084179e-7,1.7681828538588454e-8,3.162730508662502e-8,1.1760723826768635e-7,7.193082382513522e-7,9.052420394237447e-7,4.9383762984318444e-8,1.8164052703628376e-8,3.779947695429252e-9,0.00000397971471200398,0.000007139987303024049,6.476204929138364e-9,0.000006335311644208592,1.740872142060863e-7,5.6517496667689756e-8,3.654037801015356e-7,3.0813660177197155e-9,0.0000011231036426151788,0.00004408443480903067,0.000001809761344733526,0.000012880543346994923,0.0000022097381455051463,4.4764950046805897e-7,0.000036583352831519635,7.328671372827785e-8,0.000002541274388388213,0.000023118286053239477,3.828444102642332e-7,0.000019139213245917785,0.9279699380635191,1.7480881275198614e-8,0.000014664242363203451,3.0909834798077285e-7,0.00015989760526345976]]],"Weights":[[[0.1962528103489801,0.8634503752757452,0.07400365555004,-0.6653156690862168,-0.19749456631093024,0.4035931314771752,-1.500844275444047,-0.5270476505141197,-0.4515780192695796,-0.2691505582839345,-0.1587931123288427,0.7026009317875845,-0.07638407258501018,-0.23567683752114316,-0.059166901107659264,-0.352032940256494,-0.6978671009570774,-0.4187558948152616,0.49037392071410935,-0.5248542003369915,-0.6610724373780247,-1.549138130627269,0.1730552045551977,0.7950008650608683,-0.9951659697921995,-0.5331552960793124,0.5420470200427999,-1.0200842067089926,0.818829785820668,0.740933451077169,0.22554179531221655,-0.6339405915902838,-0.6067696012914467,0.08651806091598173,0.7030554014741152,-0.7135351066303747,0.05976798774762564,-1.0385182934578956,0.4014061134021728,-1.4622605083440332,-0.6082436792634981,-0.6716642676608542,0.7964272901487162,-0.37813195895849183,0.07401844045100515,0.22702786946662293,-1.068291461437816,-0.450395611899291,0.7237244101835564,-0.08781510984531832],[0.686124869822577,-0.4415106098928282,1.1391585953215402,-1.0269247520232558,1.1633534810610526,-3.847113181166933,-0.07336730129090556,0.5414688901535442,-0.2568313446785134,-1.352399221517216,2.270139035656839,1.0061255728090872,0.5715037895223621,0.5921825182156323,-1.2504362125574273,-0.43937170496053757,0.9925911514249237,0.2558922035914962,0.7232125720558339,0.4627647785580547,-1.6602649747925944,-1.9340728194039272,1.1538279251934047,1.3971739861119976,-0.24076622308307324,0.605481742175549,2.1581510333404323,-0.9548533825709201,0.19117631042950572,0.3699058532703986,-2.276988518406537,-2.348499445363245,-0.5292368809877828,1.053523149129924,0.8689034576185805,-0.581383326223903,0.4416653675081472,1.7480954649943825,-2.555393700921571,0.31050837627085587,-1.137907542896445,-0.36403135762772937,0.036887198408991774,0.22938579000435136,1.05971422226,-2.6475200447477243,1.5763564476182452,0.42763419602755437,-3.4979054852547864,-3.059866441095876],[0.02156518418857784,0.2274194270393401,0.5230602351116426,0.36337567879771315,0.4418401906660248,0.6572269773576089,-1.3296701759713263,0.4936529104073871,-1.2560704942911454,0.12074084036310273,0.830155374847289,-0.820366696432618,-2.320803971030406,-0.5963283856063061,-3.0107701407426966,0.7689899810138191,0.5349701246098827,-0.2152342164781665,0.6291806117566983,0.7118302838476238,0.09757153970535988,1.8897543664359127,-0.7546901814691147,0.33476467832241147,0.6715012780790477,0.3016280439106702,-0.9714318530059289,-0.4295400042305834,-2.0185431916995715,0.42773455634271523,0.5502166603952475,-1.9789981521425009,0.23003646513403225,0.933608110115848,0.30438969629448354,-1.1496664655983162,0.5780330773452358,-0.6291767622431039,-0.4935120412624922,1.5905423647635013,-2.1441019968928754,1.0040898932188527,-2.4436027490912524,-1.7427442290924071,-0.9568517358531258,-1.527948585642348,0.7483929194170326,0.8709444802591234,0.2072133131258999,0.20896648928673797],[-0.2632850998383775,0.3593272273993599,-0.545690440378886,-0.44986217500127046,1.5210831151970587,0.18557103988524493,0.7266150660310371,-0.1766417738805692,-0.3065227688761012,-1.5617080262460012,0.4822211564522727,-0.22335836235377876,-0.4994948690277847,0.15953247863700315,-1.5134399545605763,-0.765352046929281,-0.3547872541388534,-0.30629098864645177,-2.915973066179415,0.15118161034261296,-0.2803066142493433,1.323031342583277,0.656873212137788,0.27798552415861966,0.2030491830809447,0.8210757690320067,-1.833178163871596,0.9061941382933489,-2.137273949940602,0.32803120819145426,-2.3409039787347536,-0.6729465812024933,-3.266843581689985,-0.2056045081904739,-1.5034753277329704,0.12907363025888904,-0.9609706132088921,-0.9762545094419636,-1.560587587411729,-0.9840319608866406,-0.07344933428923063,0.8860964974056186,-2.331913318260221,-1.091952633137132,0.08779401291540545,-0.14486655668673587,-1.4987062282950705,-0.3118912836136631,0.5138017158101306,-1.497909552725759],[1.20874547269643,-1.2278798982016295,-4.163452344774762,-0.948950724918145,-1.8817065920270248,-1.007737481762202,-5.405562974693875,-1.6999912075981634,-1.0568741888002264,0.15016331330267915,0.13290991912667788,0.6222633710608974,0.4491645360308044,-1.1349715411754493,-1.9038136854631902,-3.06872713875911,-3.027736682062516,-2.617159189435896,1.7379964869958215,1.2664535469985445,-1.8432588470549978,0.6615450830164253,-1.7498475660045358,-1.6513347033217232,-2.402506685033695,0.5110845590239795,1.483941248684421,2.1492619524223464,0.36183024508928496,1.9609069455419357,-4.867279884315318,-0.7850084003517928,0.23132145971810122,-1.4729672751691678,-2.1773990677507586,0.13269538983441817,0.926636694340319,2.7652737097502955,0.23459867749519941,-0.4984278126871751,-0.47856107012489796,2.4293006386250884,-3.044988446221256,0.7579195121809933,-1.4880838562740506,2.109094165460489,-1.8837947216601854,-2.87219163351357,0.11884681154423427,-1.1487630809227],[-0.4085034088284796,1.0035783804109324,1.5964500480798254,1.551320777685938,2.129212135876123,-2.542844852594647,2.8115667364987305,1.6008425544217932,0.10159255880736164,1.8528860218527274,4.0919954008011,0.7636648888507344,-0.004810503718593947,0.30807134881879433,-0.34933084289946725,1.99144237828946,1.1052792226352306,0.9895904955951191,3.8141193011787107,-1.0541786637860984,2.653434354086615,0.21494565084554304,-5.005436601917782,-2.01089408547185,3.435277844531551,3.109973583326143,-2.2867677246486675,-0.2433783646093878,-3.0077701960475833,0.29062051081346624,-2.2832834786988543,-3.1259688744210594,-0.2624928368150532,3.0576829641853633,0.756832708828687,2.609853207327316,-1.21271507255295,-2.9440169549708495,3.4837783655297336,-2.558163969962472,0.5215714640235668,-0.562269669006134,-0.6612516562952541,-1.2286941011066694,1.2164659080294813,0.40972094192090935,0.28608496705253467,-1.2123431706318806,0.5444842055631974,0.07279908037636874],[-1.4453367577267604,-0.381647352339587,1.0447778450064158,-1.1183106403529748,0.34764249244149154,-0.19968638041050304,-0.41025987207016634,-0.2217917057846927,-1.3287510251503727,-0.9641375958141328,-0.9466629381081542,-0.5104902811368727,0.9339695360230355,-2.719527887393439,0.5571299131005332,-0.5973065219321527,1.0472928243237964,1.3076131721384996,0.667584409417653,0.8281867980647227,-2.175056533618575,0.40841550036573,1.3727908028155331,-0.002547476525358071,1.7752591424730526,0.4280833797860251,-3.155517548615088,-1.8496541757147045,0.8652344701278045,0.8019766395124577,1.3844226590255109,0.06623768731522794,1.4207063536858449,0.6611797132030475,-0.6022009317493607,-0.5989440206393427,1.3868231879384403,-2.456513052743718,0.591701813424927,0.3974375568034378,-0.1527283571744135,0.027987365345407703,0.2712943966415666,-0.0508129474042619,-2.362979456622826,-0.44415624356627714,-1.671820303238364,-0.012136881861022355,0.5405770006633138,0.042079313222427486],[-0.3820719301987797,0.8775721729687592,-1.8628812460396795,2.1150209276123175,-2.4621213882994177,-4.783716452823281,1.772808443285861,-2.5005085035742267,0.04609089878693824,-2.8808371886701925,-0.0147968559026461,-0.4343217063716324,0.9720953107542699,0.8308017735038343,-0.7512396081835065,0.38046593970001763,0.08608486748068082,-3.7832759221835315,0.6049291171631421,0.3187332299797114,-0.2097271700673801,0.7978361532668432,-0.44933614810559697,-0.11998121930195575,0.22782691825269705,0.6179985751266757,-1.6013512066273503,0.22930210450591626,1.4424592252405308,0.7452121351073926,0.8867825737380854,-0.9633361656948753,-2.274329531674771,-2.401714459299603,0.7077147885517479,-0.3289389636354047,-0.7889413366464708,-1.3790862966249786,-3.6027749683314476,1.890384156355694,0.6473423713231335,0.6968535261260972,0.8919052223678994,-1.1075849551456698,-1.9609918782184312,1.3733635711926908,2.075295076956397,-1.7405456581590808,-0.13230871061383934,0.9855560728448252],[0.10855119372408989,-1.9823319232589944,-0.47812806990383716,-0.4817335201384399,1.5228765243468199,2.214454085641183,-0.36335910497263624,0.26278534332039605,0.18210183515618125,2.894727552599533,-0.5871399062653077,1.3907974256795381,0.748435590463975,0.0058278554928566555,1.8841072981332245,1.8468757698541503,-1.1916737139351965,1.9682241281167823,-0.3552808614267459,1.1035907849433968,0.17078670473652943,-2.6831298007932767,-1.1418239766187697,0.5396499095745654,0.7832215148476188,-0.45663263625884093,2.8252158912212377,0.20823246153728697,-0.20126315456142171,0.3673998210542064,-1.1569498257658093,0.4978285053039012,-0.10232683169916153,0.5745581054958065,2.3944617618155766,0.5760384598022548,0.4835949773746123,-1.0890334797064045,-0.4349272778078555,0.37758244015408915,0.5092713874231486,1.7180577081208355,4.069417304767432,0.366414769829661,-1.4690707970738266,-2.047227337450033,2.770867551393903,2.40755366384924,0.9803074098808464,-3.5746678395069162],[0.13262447845326802,-2.114574444408131,1.074627827251767,-0.9966071087733728,0.6427160443743257,-1.3778384356148914,-0.49104093058348225,-2.4368469436868287,-0.03838057008414747,0.608943702413902,-0.2936936238342178,0.4027526832935739,-0.9197177178635569,0.37741673733917014,0.3039952279085352,0.1238408049393687,-0.9162607913640438,0.18394537671483105,0.781834201827234,0.23865057640399356,0.020585047097606803,0.41023177112350306,-0.773879052072706,0.9405530455823448,-1.7156406573524883,-1.4639543300693103,-2.292752671838536,-0.08980147900789757,-0.5315963294253602,-0.2940061070915181,-0.7601967524817358,0.5816744363261115,-1.0908756833363138,-0.572579772772024,0.17827571728269728,-0.14531918772063235,-2.7403179744744586,-0.3383902936745794,-0.7042706220308622,0.15757491355849013,-0.6121342514390352,-0.036223674489321324,-0.41581559002673085,0.8111752623305045,0.3706505490664271,0.08216689291177731,0.892845506674356,0.3114169912026816,-0.17806911682444979,-1.0589999144602689],[0.35309638820032535,0.5575070190186914,0.9673568890445868,1.5324473060631163,-0.3368598993817058,0.6475896899444151,0.696653178535901,-2.2367451134636616,-0.3742908336500261,-1.9704418254867246,-0.5349892250375522,-1.2556027145402808,-1.09482981164113,1.3538255930655312,0.32176154345283475,-3.1235843262194494,0.6576772215728854,-2.0653855158988637,0.20184814595322823,-1.5238312828470482,0.925851933209387,-2.5621622058063673,-3.330637381851457,0.9555601163067262,0.062035493925633324,0.1298732738019259,-1.6206508610349042,-0.18387982958861035,1.8068528377003539,1.168974440460521,-1.946784314809305,-0.877661413302527,-0.16755984416864117,-3.0273784350709456,-0.4257635921466989,0.3663517238654239,0.3608507590590121,-0.7953631452529739,-0.844276242631788,-0.5427187211477257,-0.1376054369784084,-0.8303779464407347,-1.9174332843584185,-0.6418107657545817,1.6642840279200448,-0.1743965605298169,0.32053480428446973,-1.6257693437344212,0.6745309239495231,0.4740982657621678],[-0.4024966814418148,0.38153641611080735,0.5226584990531938,-0.6678498038600654,0.20399997755369728,-0.2533175127442871,-0.4445680992276158,0.27728410887668875,-0.38614089849380556,-0.4927723622560851,0.08942071946706065,-0.9219525035379584,0.05146230113851293,0.8019974215815829,-0.7637320844712355,-0.8071859166573413,0.05681460111519094,-1.1602737559363923,-0.5193685133940994,-0.8712184379708244,-0.7567386532842757,0.389708746351935,0.6861705782976968,-1.4891205057322552,0.9698950423635061,0.46408814263470666,-0.45085405538647827,-0.37185826820143475,-0.607053165436143,-1.1168585881120017,-0.5539391898810454,-0.36334579268409534,-0.28159541161570883,-0.3451052943822983,-0.4079842479742058,0.7754503160279476,-0.5811312603619257,0.39486549974102775,-0.1462571840027266,0.923840151584812,-1.5243094660938752,0.5794519341060614,-2.2527080805966624,-2.502043509797682,0.9187185056715126,-1.714423438595427,-0.027690820187134042,0.7359218007035152,0.11150149142019669,-0.16736822773503768],[-0.7531264243337646,-0.4239168457036822,1.0184289919396885,0.7817734385306241,0.8862744143308693,-0.7997564662509381,-3.7371511592823943,0.37475396541141714,-1.900871727320256,-0.07327575520754785,-2.761430287160606,0.9462853697819277,-0.45289218886755434,0.8963816063912813,0.15400938804254755,0.46954603584024335,0.31005936501267645,-0.8135823153255669,0.2820350777664954,-0.2453419054994977,-2.889265746778744,0.6071230118974104,0.25302594401734907,0.2489207731620797,-0.3513991126795312,-1.9543177503505693,0.4658004609284937,0.1909556100127442,-0.023165475919128882,-1.481545970111154,0.2391026444955242,-0.0737386280182202,-0.4834897235194514,-0.2779794735783769,-0.029225163486575247,0.6015979818849791,0.33370269885213155,0.4062373888332446,-2.5691463478206837,0.229568823033455,0.0333145502292305,0.7829747095846218,0.3708111433197099,0.7205432617049708,-1.8292379721143208,-0.6177427538421465,-1.7839485063432368,-0.4747875960010608,-0.1705289777494071,0.641903400723778],[-0.5367202883681353,-0.2980945488875424,0.9636543462402416,-0.17435798888730691,-1.7672390141340995,0.6962789629780152,0.827125566111791,-0.09073811202902261,1.7308494812069828,1.3070586638759434,-1.956438918843466,-1.0878905937018233,-0.26517061704285727,-2.5525297382058043,-1.8567318277544782,0.2332959473044957,0.41750000510618906,-3.1769771789599557,-0.037021727680194745,-3.067972379179696,-0.15105770347679182,2.8306920036841805,-1.6314173387821693,-0.26931454351195916,0.32324783365927223,-0.9044201651548384,1.6681583159131508,0.5924502716209431,-1.8117833900500488,-1.8888890213712386,-0.740618206351679,0.5925045060517883,0.19279388152418223,0.9789221434007737,-0.8241222034768206,0.4414356583515584,0.4598500753362943,0.5097453329957182,-0.9099058581645757,0.006247922767818489,1.1493363830905794,-1.471522803401984,1.4799476190988654,0.6330613812524308,1.2518808899390843,0.9762734350242718,2.363747810178748,0.28696489201812,0.8208180704024546,-1.6491323487667497],[-4.835278851061976,1.25590574324617,3.757991114459736,-0.03367091561163493,0.8769834269707839,-0.9747733633512219,2.2480795920730916,1.404187083934026,-0.4496402733053311,-4.679750401961088,-2.7651008980730776,1.4327946000437524,0.40343371805460915,-5.118493303140923,-1.3715996634471876,0.9124878121147633,0.9177246774393564,0.3139402744136099,0.47018768682660367,-1.1311871642099753,-3.4633967977487976,-3.11646713650571,1.0372162581917581,0.7386958811206559,3.5179483530424345,0.7774497774290011,-5.306041820293851,-6.328868352556461,-1.164278109094534,-0.5654661189265012,3.134348129716913,0.46321489823187456,0.9865822526747231,2.0569401000693386,1.4766092337186891,0.9934683605394311,0.4474583454753356,-8.00885459863987,-0.3887810621606011,0.4850124563451839,-2.079681848922663,-1.7801486625809642,1.4398536200460463,-0.2334870009560135,-3.141421488108252,-5.2323510750726,-2.9811024529305477,1.41839469545289,0.3433300968045185,0.45618976340395384],[0.22389862354548287,0.8858166168554101,-4.773895579281081,-7.075633725863077,1.328471439418653,0.3328180609447291,2.9582569739890463,-4.0536472028151564,-0.5807290165974264,-5.37668830139635,0.1973099379465022,0.7575171242963505,0.7721617904522686,0.8686398165895289,1.0562090213077995,-0.12821026253334447,0.39894225593974436,-0.772029899222575,-3.7353201930602333,1.826436788361506,-6.7244515361854935,0.29503394381775633,1.581841930087169,0.299781034983904,-10.135414389897813,2.8510143994606056,2.83579396656416,-4.700521437509637,-2.7044675987119544,-0.5269574195512169,0.4031412914287472,-5.417092583795076,0.7431218404649025,-5.216666992932295,3.386354342174727,-0.928060540451066,-1.5779365120492697,0.6273960925971849,-5.721028460674813,1.0199052308824181,0.44060580380925024,0.3112976727446606,1.4386037597010708,-0.2707418178321994,-2.1939107675862792,0.9675704890120936,1.2933356326044614,2.9636870916670204,-1.6058346351628352,-0.7411468156809508],[0.13851452061868819,0.6665778498078249,-4.51753856434322,1.9890611014876436,-7.105796305366664,2.221883957409249,1.481083763182801,2.120237399425741,-0.07668047504611593,3.3719853882533117,-4.80150363494148,-0.6475238684914221,1.7020011711566858,-7.609103235653339,0.46240666630164046,-2.9284062252440783,-3.0174701475514185,-0.7077168564124986,-4.639129402685649,-1.5183259596123473,3.6569326308309047,0.6167708731363353,0.10253110738146409,1.5880254042384967,1.0261774990008499,-3.6387954704023953,-0.30887315752377115,4.821297892488128,1.6882773935501991,0.242477747118394,-2.3689109065146727,2.5275034962739933,0.519387865279358,-0.5569891438217096,-5.45853356010975,-6.489220727219952,0.4038490076840259,1.5907920013341175,4.537392142157266,0.024410354921026736,0.8240709425906075,-1.8163930570468947,1.098637631262341,0.5088609086850502,3.0493002515288583,-1.7856575461526456,1.329265996409135,-7.912811362719836,0.5110019979515882,0.6085256833500147],[-3.9220545896696737,-1.657226399483003,0.7741048395391151,1.8071900432722625,-3.748372839904277,0.09126972928448361,2.588678900411205,0.8995868780289432,2.2304646740110328,0.7215093483777809,-0.7769488805454992,0.34723741600935404,-0.5783058134150622,2.093525894441225,1.481102584299262,-0.02191487026472555,-1.5756326289921192,-2.077726719082786,0.9568086900946388,0.6159501027941753,-0.002472135458606917,-0.4026024246276165,-3.0322057600744823,-1.5037180629477243,-4.832326817147644,0.8446332077024442,2.598555937236205,-0.7570448819606443,-0.9087456255938805,-0.2594406023620431,-3.0726254472141346,-1.1480605099341632,-0.1362574050081468,-3.7661730394425823,-0.9478956138548112,1.2249017656347994,-0.14196427479905452,-1.0905937788072362,0.6244549517562429,0.8848541144864214,0.7773577643244316,0.5259875376020966,-1.7207843196303825,-0.7214968076609964,3.814380401360275,1.3761010818545802,-2.042570933644184,-0.7002382306952211,1.2763127037236293,0.8635578830764293],[1.4127567152711824,0.5725366724036465,1.2557999983437107,-0.9453070253724432,1.126087362002788,-1.6610167523311434,-1.2196755211995234,0.5459772118632268,1.6040465092585732,0.21669770299668492,1.3184313636899074,0.2404172998886055,-0.9072319917606667,0.07537768804863688,-0.4982987149005482,-0.07356216402456009,0.9291576320088755,1.1271871501672954,0.34523116873625415,-0.7906287792229312,0.23382866920473463,0.6751455065525647,0.2890178049845235,-0.31865043422993095,-2.5431236170378884,-0.1568765959468222,-1.5887786175052123,1.480080146007315,-1.4666087606695655,-0.3846908099180009,-0.010792874247284414,0.2716158439915161,1.0580188630188745,0.2926165673513916,1.4281043913786815,-0.35006517506899204,-0.5662443881114662,1.511689447994082,0.2133820726913652,0.7661817574586075,0.009263883405229354,0.5908101840289225,0.12695092730110677,-0.9144680657475514,0.7382148534999813,1.9005712923401237,1.6575330672479673,1.6057062244062867,0.4804546969376221,-0.41336129692834983],[-0.18376345383684303,0.3658207687626449,-2.573823157490455,0.2520876320750506,-1.976846749299024,-3.571521706598658,1.207550572666699,-1.6404925218476436,0.18469804928897787,-1.7433867254077366,-0.35429013505385804,0.2429029930491088,-0.34837299127279914,-0.10385539276001832,-0.3596296984976211,-0.5305208570496026,0.7444590678653942,-1.647368064773679,0.0792430861625289,0.31611015578594687,-0.7233086020052065,0.647851342295099,-0.09232382327708369,-0.4043683624447138,1.0249892300642023,0.2492336338450258,-0.5635115658570446,0.13321433035461336,-0.4056414595465324,-0.6711428811901786,0.9041322054211088,0.22569235643217678,-2.120904918493664,-1.8003965996903075,1.8205858988519164,-0.09318671365804772,-0.8617861389428919,-0.41314400973214344,-3.326950211217175,2.150758422570891,-0.10468310347735696,-1.4249338970363834,0.9387097591621976,-0.7781942608401177,-2.0562053136179013,1.1562897160999217,0.6031806841262493,-0.36528651267868767,0.6815070997043874,0.15519436585389842],[-0.11338346761085356,0.4375514993660634,-0.2702172609011918,-0.23462043058615412,-0.8184012744666995,0.6705046072381947,0.883250390141489,-0.5859341545429743,1.06128002703771,-0.8160836627722242,-0.12109338863736857,-0.47742085663857453,0.02674693566410504,0.9939355940109021,-0.78656081465769,-0.713429217939367,-0.14042453898778376,0.9139830231426354,-0.5063420443402126,-0.22889132365026033,0.13906187953907412,-0.8204136593911688,0.403309458328821,0.43227323846973226,-0.9390628838290194,-0.2354441545215653,-1.4174929934851537,0.21080055092024408,-0.081802143870962,-0.7751239444230904,-1.052722614195361,0.3878624247247834,0.21676995806851368,-0.5935215489638394,-0.782491897107007,-1.0057247785461199,0.38008433373913486,-0.3709637402327864,-0.9210581258251974,0.18936295260802236,0.6816946685320691,-0.1643210831690039,-1.791861506093748,0.7900912022709518,0.6508286826500194,-0.6145183003255884,-1.7847860493576475,-0.039849043668637674,0.5490749029131955,0.18943649867978465],[0.6887319746890309,0.5659640381957878,0.33374887896191996,0.20230165330017014,-0.6978395965219243,-2.2269036004850187,1.9459745306629954,-0.9741567340463875,1.1915054109616565,-0.993445355438412,3.093179732397415,0.021148059492450622,0.16789584326591223,2.2199347819529955,0.0213793812610455,1.217491497337367,0.8274600062281949,1.1270494406874552,-1.6937655184582598,-0.5083790518040301,0.15199378789845913,-0.23150890033466384,0.9984564801039785,0.9457331997442192,-1.0641829856137002,0.06835152065673444,-2.0094601598765887,0.15576597622582117,-0.04519185587454911,0.22587350804271092,1.326576268241997,0.5327925778148389,0.9213503395768353,0.8910249571701412,0.04908929744709373,0.1559956066181199,0.9155712575889465,-1.3706222866805138,-0.22647503244803124,0.11477881666018916,-0.250347955722092,-0.9258053516617567,-1.0496664354780443,0.18802885858957227,1.7289609794298177,-0.43493190667658926,-2.4189276930745507,0.7314319613654554,0.4367320947101011,1.230721435701889],[0.7114900880671876,-0.5484872714287652,-1.491035726254403,-2.0510165571293544,0.8063103221971873,2.1873585090033103,-1.2314561983729366,0.1382588089057936,0.6899227438466176,0.9590170199420431,-0.6589203209939867,-0.20875912592315563,0.44567049982238105,-0.3892752467840908,0.5071321006131745,-2.6122481307737266,-1.247853321527031,1.3521025631236652,0.86888228613329,-0.8846631311087353,-1.540558704393132,-1.8273697803061504,0.7629634709936095,1.0735132358341672,-0.6997879016263958,-1.4984252470744481,1.8849580327837119,-0.6668371653447498,0.5627986100070712,0.9949992347036548,0.4518800351400618,-0.4464971479731511,1.1668212173517263,0.356378409982092,0.006332133914575963,-0.2568356849906104,-0.6636552715004281,0.7605412270258248,1.3332933425916182,-2.4235714798357537,-0.09724649445186931,-2.0037553256798843,-0.11975938484057924,-0.2712038808163914,1.7447065839422007,-1.1716043644573393,-1.0649376678694418,1.1449529466489177,0.3517583212120323,-0.25930812000677717],[0.8066028570697277,0.05521040201709135,-0.371034979458524,-1.2375440148855785,-0.48323079165594557,0.574954775845427,0.16620666281088373,-0.14365716247311197,-0.18886684282630967,-1.6511290430264067,0.3734280254084874,-0.06557054236035409,-1.2064442331927074,0.3258380134359529,-1.1783225977438456,-0.1403121849893776,-1.4163494319333607,-1.1955176064029502,-0.46202610185519816,-0.8965590712112531,0.48669961128139283,-0.5252851507693077,0.03010936057383341,-0.2328555401545252,1.1216120683311748,0.5850501488931993,0.7090518459216477,0.8000865149722122,-0.561314559622468,0.9748553560310765,-0.9767457537416238,0.8830087803131454,-1.4934227338837232,-0.6993023833251083,0.7198803623410797,0.39746651747550676,-0.7211826835768402,-0.5082469730133974,0.20788672211545048,-0.8602446825541298,-0.45180495343646127,-0.11831506875914582,1.261624938345603,0.3871176737217479,0.8005779696385379,-0.9435892105960045,-0.6705339405451731,-1.4839155447638483,-0.9923864117868818,-0.5351126404298445],[0.5684166882849483,0.776920182002067,-2.1445308258950524,-0.18739015820826535,-0.23003012924947736,-3.6541888973064274,-1.7208089335519579,0.7864144708744742,1.1909130954463387,2.1205324930830596,-0.04864624421086302,-3.1214055905389126,0.3652947835273868,0.928393690587987,-1.3628481713307852,0.6384038068199337,1.0347502568203986,-0.9439400350974034,1.1923363570441947,-1.2607241862301195,0.5487583204869878,0.7682130020656194,0.4572979294525481,-0.43910706750711415,-1.7336886139069831,0.7130207546750997,1.7821859601517853,0.8735361269963463,0.8825426594999701,-0.2940866928797019,2.5022005985666422,0.14907193222651582,-0.056277441457452775,-1.5676371070992234,-3.5607109391669116,0.853125069756685,0.7447396247392062,0.9438934362790583,0.5719466436570632,-0.02368244872565752,-0.16220783764157376,1.3271198678511813,-3.3403090261826516,0.5911135075473632,2.472619031774977,1.38714226148338,-3.65922659074933,0.5681656034538775,-1.1169167629030907,2.7257448662456656],[1.0073933251945786,0.15126169976552145,-2.4462854457251435,-0.437329143884147,-0.977505514105733,0.03586961928375408,-3.481001409982401,-1.8607180623955,-0.5275601907870451,-0.7887366517143869,-2.0573468274756213,0.4563444152760693,-1.3445941177235454,-1.6762910706064167,-1.0419995157404955,-0.3632041516816772,-1.5145460340735926,-1.0102580697622592,-0.7842766098159083,-0.8307971745494411,-1.8725817204403001,-0.10609729713651636,-2.0745602181793164,0.5842342484269363,-0.35616923105713744,-0.6336382505336366,0.3106685231075622,-0.7649562385973325,-1.4080529061111846,0.8879111443042823,-1.569966269897032,0.31017762259879705,-0.9137549083493163,-0.2113562685715047,-1.301439789695949,-1.5354723999847708,0.9398205180311269,0.22796326103329512,-1.6023345772423574,0.10952853952572683,0.6186245243887198,-0.4456306489550257,-0.11524374254433083,0.0779177305633903,-0.5521814815121142,-0.8407935265668364,-0.820237940625628,-0.1921180611130363,-0.21961468556022154,0.2435789129905835],[0.09874003461078272,-0.23407314312524669,-0.8444339001365669,-2.6531783027057245,0.7575228237295027,2.6162404071178886,-3.382606066878615,0.8595383438663607,-0.7020021702801992,1.971993402394416,-0.845034439789679,0.3186857775919955,-0.9522891357043144,-0.5410770433803239,-0.9550984320937996,-0.11715368709930596,-2.2635797820770303,2.291699980570482,-0.4169850756708937,0.3906443365209447,0.9773798058345781,-4.556525069370559,-0.07221392390900212,-0.7043454756835555,-3.9912338327437875,0.2683188014052178,1.7242066869787882,-1.9529425641213745,-2.1740643472968006,-0.9566003733621103,-0.20899101268101408,-0.26386234848436746,1.44831275192791,-0.4523660059402573,-1.6422657155173523,-0.2048238017513293,-0.722095049571943,-1.1329156863375445,2.3657687017443565,-4.498510425265868,-0.7523942349061099,-2.897346399139572,-2.7352052716131134,0.0020330706115905413,0.8222811615023825,-3.4116431127587683,-4.71771766135945,2.3654298836478236,-0.9694768954156149,-0.11213579629346386],[-0.2709574204924387,-0.9441102545534675,0.25995298400254235,-0.35795711394837176,0.6299886918566884,0.20060270018278756,0.2573083776636826,-0.22957648644314896,-1.728231980578332,1.0562497808573796,1.0857863133718062,0.578003647433837,0.46409146425581155,-0.34867744951712,-0.3739425491357655,0.5934320828836849,-0.7416183822916232,-2.1498485186613916,0.15635525994265084,-1.2030339312679443,-0.001676038964296945,0.4222595980936049,1.009330705763868,0.7008650129318442,0.7581753596849292,-0.5208252336867253,0.09291311031799723,0.9177935808305244,-1.9860215390975027,0.6529723035644431,0.8925652868749901,0.7395271882668849,0.07724149197040439,-0.7811425305269043,0.5507479344993574,0.5675231572649713,-0.6915925189274177,-0.7753394110098524,-0.6217920137122318,-0.659558508726436,-2.0968545419864575,0.3141833391970475,-0.8011661807605504,-1.1879834157857843,-0.7109469552169827,-2.2223333839260144,0.5412564709276524,0.039290872668358866,-0.03668586030658575,-0.48466897909053314],[-0.31214746572551216,-0.3913891037373702,-0.8058452618999482,-1.2988103167096383,0.7647390470998109,1.4075995931982455,-2.893772441297788,-0.009577596467723132,-0.9178165370086508,0.5168225013235161,1.0989160193967284,0.5967863238038299,-0.03085024675875845,0.9599586950942365,1.0149093157785862,-0.09025007531157504,-1.462083771216553,0.999635911257378,0.11986926403962404,0.3940715929331575,0.4661474667383886,-3.5570523263412492,0.20770123626555817,-0.15811286332418267,-1.8272227381370623,0.191876130915341,1.351696904624425,-0.10906148078259355,-0.6578447939173738,-0.3084290909474982,0.5389865200915797,0.4801438911344277,1.370742178971519,-0.9868625429870271,-1.5244652258225644,0.9481186117264703,-0.8041740556613775,0.6694445923645783,1.6891748926944696,-2.622013814698969,0.4620475568613042,-0.3766236850007194,0.3782582828798869,-0.11424717280564808,1.1164499943042387,-1.1431999941376907,-2.8369009768316578,1.3603270817130666,0.9540392150119235,0.5538878285892515],[0.7238711000146053,-0.1913099574387239,-0.22879167740178444,-1.5395597479776486,0.07958921423409437,0.9751932850967469,0.5419306173575682,0.8428061618800654,1.1187292895860117,0.31701762479225315,0.9462693096867538,-0.8705582501991648,-0.12861354210596107,-0.6382905689404261,-0.7438852136145915,0.6945659591771348,0.4276758162932878,0.24100706166269978,-0.49490503151596055,0.40833902115746173,0.7529831056659306,1.0935470582325646,-0.07205055292203062,0.8425120871724263,-0.36293144311085807,-0.23478757592030794,-1.7082695236010383,-0.6417976896516719,-1.3871388017867792,0.9116102458189776,-0.10487659413406408,0.5644467590976995,-0.2685804363039139,0.4382936589252347,-1.6310823971331716,-0.09213442253370241,0.016862190396661036,-0.7933302742045556,0.3934230293562417,-1.3122880399463424,0.7618538363637478,0.293747974785885,0.5475192486183548,-0.9454274407374678,-0.05969256623918248,0.1647508243244147,-1.2462867773918176,-1.5274527867890981,0.40296202395608915,0.45990080820595947],[-0.19311246560534387,0.36443419908528224,0.003005573422693881,0.21345093099117673,-0.312217803187338,-1.0613256029006362,0.5348194048053971,-2.132318817533488,0.05233739262870403,0.19578548452509786,0.49517697379790204,-0.21554990283814385,-0.42082890802532164,-0.46141352786132006,0.7222323904428541,-0.1724025384256715,-0.8547274300779475,-0.2306989328457323,-0.4338946414386823,-0.23050071694335822,0.20799951930883187,0.27958337851312126,-2.016503147404241,-0.5577292393627962,-1.1615684970671079,-0.9720617067344977,0.5376751143726551,-0.09046870374311779,0.4750850676858772,0.7912494979922363,-0.20641431074769487,0.74855544541663,-1.1533406167814757,0.3943501889787224,0.8996914247478327,0.7614439190955112,0.7459259847745313,-1.5719517184698975,-1.0499610821713659,-0.39666819939429915,0.7013435054912849,-0.7028647552759693,0.7285322266293254,0.2628585830419298,0.0023030526008888407,-0.8520079204574679,-0.4358234344868531,0.3217378136163416,-0.8127405476405353,-0.7396380937040773],[-2.103318023561878,-0.7258958047053125,0.6449397312170425,-0.5351557648801858,1.0888397254741609,-0.026441912601587438,-0.9688408054227587,-0.06059132368451128,-1.7504914901748925,-2.018283413871313,-2.6129174361072205,-0.3789512999513759,0.9650144224476773,-1.352911157774951,0.06514188153778654,-0.5078671981535258,0.38806747807459585,1.683229171255842,-0.07790945523553074,1.3321632796615535,-1.7708811120774846,-1.0566780768035866,0.9307230795356964,-0.0025706347053254127,-0.24732313285818394,0.4990720581533827,-2.843052125487036,-2.1346132996281844,-0.29593908808058955,0.6855227913289065,0.5998675369480043,0.20869259907801005,-0.0882828661739891,-0.38058113986880354,-0.7847247569526207,-0.2364166104964298,0.7373179463673218,-4.0963389528420935,-0.018434662203281778,-0.8119900036682485,-0.7000999393911786,-0.5593857738568782,0.02316775612332741,-0.4851483304424994,-2.0366873478572707,-0.59548027005677,-2.117961644670692,-1.2400057877223296,1.4342566213902972,0.41525320436719215],[1.2883439426443346,-0.19890196525620396,0.0741780068320656,1.2652095229261067,0.019152013714762064,-1.9459311572934597,0.17107263029193343,0.5976256280598888,-2.1327224390570936,-1.469156333174546,1.9504684672253996,1.2831668411629509,0.09833173177848503,-0.776991578956561,-2.287443996826639,0.6348492537842542,1.1565979488822713,1.5256063074590447,-0.1899686291602721,-0.07674905195962187,-1.2141308596854186,0.5518513078490899,0.5755888473225169,0.9292446753655564,-3.1123513066953503,-0.3632821910470887,1.3691341720294496,0.6984533879291652,0.3423823426864092,-0.11096242441334721,-1.1529404920015092,-1.236809434382221,-0.38467331321804693,0.09227817223747664,-0.8895913975349233,1.3225116969178554,-0.6693268567406963,1.078949705841617,0.04273895454299294,-0.6005605290943272,-1.592988928183546,0.5164160260030097,1.2857539483374463,-0.9297314365205988,-1.4160487056838136,-1.7565704367888018,0.8899599300991988,2.751701168508573,0.3093677006806354,0.5980321049882577],[1.0478558072717623,-0.23719554723467326,1.6337373716506458,2.039107230886215,-1.0444580728975148,-2.7149107667301338,2.080876971773812,-1.5550044854372949,-1.8595745742328034,-1.99399446031826,0.8706467238792291,-1.3572749637923602,-0.9598775454579525,-0.3719238537524908,2.3544531623634257,-4.261890627148444,0.07445931360940775,-0.47916708638389344,-0.03591184736576182,-1.4577079625519112,-0.4816678539718515,0.003594380148304152,-4.019816505797,-1.329514972818519,2.8959561803361917,-0.15043758999235354,-1.6628668356090401,0.7131120349250982,-1.5408265408931112,0.9451435870618463,-0.7289977251281223,0.4772453712546014,0.885935056294814,0.0570132143422896,1.6147085654019062,0.42583983662596364,-0.2510734944685057,-2.749171806174109,-2.376510193509343,1.3149373376175226,-1.542827007042544,-0.5818685936323472,-2.469679555428493,0.6519992159708502,-1.3459623342818647,0.4636974442519563,1.833282668130752,-2.751021883125436,-0.026028301805469937,2.463607172804753],[-0.18453241236155543,-1.6055169000428566,0.40314288054972713,-2.080862058767281,-0.8101056360020975,-1.1494426069916683,-0.3526685596951742,-2.4536617332833286,-0.3241046524893688,0.08678126675455129,-0.2003083336363938,-0.5910738335328257,0.16492628647973423,-0.06170123619520502,-0.9000410242396387,-0.03246295977776605,0.6955806461698252,0.7163961970715219,0.40964928406526324,-0.4966085690177754,0.5312142256852267,-0.16560040183552363,-2.3926577904359263,-0.6716044339659111,-0.0031884940409995194,-0.8563705544437504,-2.769023847108765,-0.46184018946845645,-0.18346030483151618,-0.4416733625625371,0.14701616903606324,0.07968361715647419,-0.9683011822277519,0.5012000151626533,-0.06386467770184047,-0.8116128142537162,-2.596774999013626,0.2973864244467387,0.9847533721318411,0.9509210655730587,-0.28747015724031727,-0.24473847137622842,0.49415814982863976,0.08000371938703818,0.4596146435396555,1.0181924563545206,-0.1010207439998572,0.3824456942646848,-0.4197653798087275,-0.4980070192452912],[0.10759699270080421,-0.5897690382312537,-0.6019581879999981,-0.9290265892531878,0.4388963759984795,-0.6027479690641735,0.7902400262483232,-0.6604125134643618,0.5821965916337688,-0.188801575373133,-0.4139140595050134,-0.41812728124955845,-0.5175276317092362,0.19380750282849338,-0.24814938727246577,-2.05468604112994,-0.8309073551288325,-0.16122842456418954,-0.02984881950283358,-0.47613905854534727,0.9072218060971006,0.30244650275702856,-1.1605514195354414,0.786829228079894,0.5706812237373596,0.38848122139564595,0.9881791708907087,-1.0158544503741502,-0.6739540108283534,-0.3239965584030984,0.22864061479304607,0.20912909513680944,-0.23680595032089574,0.43360315619037637,0.45672478332997685,1.0331117658329443,-0.0648046385900496,1.228911372500794,-0.8188709315680686,-0.2909927579761374,-0.6504723525332112,-1.066663176289005,0.9290477734746687,0.5534298447627632,0.8267589818217722,0.25987456645264145,0.8558257175634737,0.5122765569924211,-0.7633266171771915,0.22462045870831657],[2.054345526769482,0.6585769673742454,0.026515375537193284,-1.3273448402428298,1.2413695392871322,-2.1927787407173382,0.7183489653392656,0.7389485038840263,-1.7046802564137333,0.9865471009032161,1.138741663251705,-1.4540836310598475,0.8180245172865407,1.5063241020127391,-0.016279732000094107,0.4794385504282544,0.15539690670600065,0.804115222209318,1.1207025334361875,-0.07990907997527541,1.560568358482695,1.1718408434116974,-2.13901145054513,0.525371689213663,-3.3575393441676895,0.4679486825072603,-0.8267366289472801,-0.22041596968356286,-4.118016298985588,-3.4141633500420494,-2.10026307805553,0.8898416727017122,0.649488575299984,-0.46454097734519667,-0.3329768466226331,-0.3057776410842194,-1.8839401420430328,0.12381342994868881,0.7429233393622873,1.3307031244640275,0.8899859660174897,1.384683977461421,1.424617028778461,1.1670798390371107,1.180255628564019,0.010357568474842985,0.8029424130780173,-1.1665153112060536,-2.410624279325864,-1.9702481331542006],[0.933809774995451,-0.6208113050524873,0.21407185243333537,-0.5002281434369145,-0.024916273172614283,-0.16626681918188088,-0.471971305001352,-1.1808500520265426,0.0007277902259491388,-1.4167038950046595,0.7741006413339595,0.9497933061023546,0.7827392272362145,-0.003600924783209701,-1.0845416307148186,0.8147111853911185,-1.609823714891248,-2.3696252589598568,-1.654211109388532,-0.29713826364000695,-0.4743579833155962,-1.1925699298010854,-0.7153144798682186,-1.0408847750402437,0.3102820436829361,-0.8710465047370342,-1.461517265723064,-0.6065447047604177,0.4247571810337341,0.08570701334097158,-0.9906993926315062,-0.22784454332240012,0.4467778343574569,0.1960110925582345,-2.0660668586670354,-0.028996919049167517,0.20016793982337158,-0.21655430756649724,0.4168744003799929,0.22587078069619096,0.8014995082931071,-1.642868519238312,0.5366870071909176,0.33648871669069336,-0.9139272314709092,-1.178299116348779,-0.6761960894039613,-1.3873708546063082,-2.3588855415943084,-0.05919743217563464],[1.359673255257032,-2.6351294159059178,-0.8414400794673476,0.14393896113465968,-1.2517749125654172,0.8069016210439665,1.4844805167992743,0.15731656311177206,-0.529923439804203,0.33089142109051095,-1.0778368447075957,-0.9059497661799066,-0.15627923178284223,-0.6164481677161165,0.1901575745560402,-1.7083930617093324,0.12903725895291326,-1.475665173757052,-3.3708931019150454,0.7156728294722431,0.308394551399788,-1.1216852374794832,0.036476012657762846,-0.7408367614611344,-3.4078234480731373,0.29224989223059267,-1.3438350546861675,0.9552619104884889,-3.6612221391548565,0.3511553199313253,-2.0581053241212866,0.31152918573749827,-0.5853491640438151,0.7796227269423772,0.906815897605004,0.15547158781522122,-0.8595873793862041,0.7223878224147767,-0.18833564970457073,-1.3227198662062867,-1.5734438058119133,-1.4811879964697083,-0.3208387873333572,0.25948942246503726,-3.1759226709995163,0.2317379072993251,0.06056402974570085,-1.2818964630384402,-1.329057009203969,0.7658242875286044],[0.4210203103336456,-2.7178747198358884,0.7054793972698252,-0.36592431901224526,1.2095351839427098,3.029008847520401,1.0149057112492155,-0.18625483090627193,0.8573162979173655,2.7187938749996463,-0.800225071067884,0.4387517372285506,-0.0850251369293657,0.8950927320511377,2.0818183660173415,0.518242676786387,-0.26534947415240934,1.1680089072969124,0.15288851483909438,0.1580562394511793,1.2871365632290792,-3.3275157536749806,-0.4443961522284902,-0.9241243316658063,0.16577655880516207,-0.7618983601382509,1.8541753132537022,-0.049605618118950465,-0.4230227810589475,0.06586118500921236,-3.2484623520941343,-0.5453432566683799,0.6291055685337018,1.3468470562084969,2.203176800399694,-1.7111352988706316,-0.4820850915643731,-0.10696302810978298,-0.24948162460752218,-1.07865455476443,1.4504168120138303,1.8153596745476155,3.8548371861350548,-0.9034696561402071,-1.9505623675005304,-1.7424025486143695,1.5489184568846521,0.8581251597713545,2.1082785842637612,-2.2903884057480988],[0.9604135343172131,0.8432808900515771,0.8640938075913875,0.04040029066752621,-0.7969586381715518,-2.061173318574917,-0.4889631583741455,-0.6703752085510863,0.5657583155108625,-1.0194236698083565,0.9835931621595129,0.5697774952335741,-0.10931689673952616,0.3034411700242823,-0.5443506000963666,0.4186190909842742,0.8494099216444196,0.28370429553680776,0.19507489085365662,0.18177620896464056,-0.1835831014481526,-2.025238465373298,1.1728294494086071,0.14657432461249434,-0.025564056123184527,0.1714197728317419,1.014919851180968,-1.323454098452046,-0.1598705202494177,0.11734238448573468,-3.016209336577357,-2.395696280201843,1.0105365774945416,-0.4615810386480977,-0.8718259870410177,-0.4599991238988916,0.11643700654650546,0.3967093665719079,-2.4073874940939834,0.761300967316048,-1.2393145489810404,-0.473742465522778,-0.2635529961717677,-0.5316786494936996,1.513161275551157,-0.7817920881628883,1.8258066293950503,0.9425123101153049,-3.282844172855521,-2.487792874214184],[0.018219673713488548,0.8425204959765966,1.009076920397896,1.3504886499744513,-0.7011378371622188,-0.5450750188892384,0.7705187439050508,-0.11915732718522672,-0.36256562456002955,-0.9161192276316578,1.0735682706767804,-0.32058333810056655,0.07521544504655892,-2.051214260260185,-0.47691025968547035,0.8746771433559347,0.0530634852731468,0.703343967020636,-0.30013484496611115,-0.4120408744065828,0.4252152760714241,0.26185541522745737,-0.7388524464087801,-1.217664425897956,-0.8729632059144509,-1.0329088948587173,-0.5933744404858471,0.9369600494212313,0.007672253987442193,-1.32360440851276,-1.5045754113131864,0.07639446541882407,-0.33139143412800676,0.14171202304597705,1.179905234818582,0.15730934083975437,-0.07318246195817191,-1.523729645143097,-0.4860857386967074,0.945246191540756,0.007294791444318271,0.04122581139552913,-1.7812220732208792,0.3474664093163099,0.14970735946332875,-0.3236193489494265,0.5699088108987826,-0.06916782843886254,-1.148763473535783,0.4398504786391603],[1.6212258343995298,0.04368232328720034,1.9374728427826524,-0.09243359042431971,-0.08324691746723561,-1.3500984145044572,2.001092965048521,0.038214305399907306,0.4921071190177138,-1.2449367056038907,2.2525832791833564,-0.21101762757052334,1.0416940283263254,3.686051930702405,-1.4799818117728436,0.19245116602933426,-0.18364909511552827,-0.8338434671544421,-3.612786036546608,-0.710913827419341,2.2777601758213883,-0.15422424008988533,0.8672331829446464,0.19363562365627865,0.8341377618112471,-0.26874583833193294,-4.597390089555953,-1.841547192484869,-0.4086128265467399,-0.1686817842364456,-0.7402892974213355,0.2916791677655168,-1.357456113156561,0.44390363442477215,-3.866145908417715,1.1177401118459187,0.6093965626756701,-3.249185915254174,1.556972039535324,-0.6453907253737391,0.7026102335385705,-3.0658651294612085,-1.7608273075558372,1.0932245641372835,0.021386009795974506,-1.885187792151044,-2.3872997806744762,-3.961394913390589,-1.1657813785645823,0.15241004385766374],[-0.4391992062502334,-0.6853368975559501,-0.8709745744792522,-1.0872114767564585,0.9390222040519948,-0.005228735930604206,0.21156351241379473,-0.08346844048602056,-1.2893754343853565,1.29006765391821,-0.8977261483775659,0.6144799635147683,0.5750378000576486,-0.42522842073723627,0.5115764207073105,0.9034801383158889,0.3203177131571609,0.6712725533325978,0.5860409736784593,-0.15905735405693752,0.5009026422440365,-0.19799626125744713,0.6263363138503308,-1.7046292685813333,-0.6727383500932624,1.1138788822511012,-0.0336595499481296,-0.34670349424544433,-0.09140417010657134,0.40155964421415824,1.2876175954976876,-0.17506787116151473,-1.3393603245707648,0.8215695101730757,-0.22344009755969094,-0.6651733536070067,-0.01961330670701808,-0.4212461197057061,0.7388328155444073,0.965577712598764,0.2532348748339794,-1.3371735975692325,-0.12065551323537424,-0.6725598831707745,0.396253798961361,-0.1895627203660388,0.4556353827408279,-0.18022808382643846,-0.9931595475527525,-0.5474443390787181],[0.23528442975641156,0.26193761044760605,0.30210715878124345,0.9294239539248671,1.245322408161483,-0.043740138266422667,-0.2996153530025383,0.2619373343974317,0.3731483244802896,0.6225650032478721,-1.0829270221413358,-0.553071005849976,0.8528491953388825,-1.7271368844647081,-2.115902693625983,0.6017270922557961,0.8194832406547939,-2.5480699650426266,1.1705559943715473,-1.1797064802173347,-0.3140584089177756,0.6591979641737484,0.6327212242462914,0.5236219946802219,-0.32680457889954323,-0.2965558695063286,-0.40215809087750526,-2.1370292754739744,-0.7454345698240646,-1.1633527779846513,-1.3981447265931444,0.8937463198778544,-0.4486101715629292,0.9072069231929268,0.06012976590582238,0.4113064848974159,0.9113827106883002,0.028275506375851273,0.21704405958003659,0.9810191814482385,0.6315286278013337,-0.748577685802053,0.6199271314337229,0.970601500626875,-1.4794494222313421,0.9630286770429678,-0.46967730631097937,1.8406926188068369,1.3526328075021485,-1.6762236979170002],[0.5028598693686525,0.4252113165143566,-0.3798652741661518,-0.22678890902224952,0.7908071443369706,-0.6798551671620087,1.1078082724989187,0.025565332570661875,-2.148813406150888,1.4161987771059332,0.5632967610075746,-1.650222326226364,-0.5520071612515784,1.1669220277015375,-0.11095025483773126,-0.20489450562889472,-0.3675197178732782,1.1820958583904766,0.322933050251695,-0.29463572030615487,-0.29497044581740006,0.5914497504796739,-0.7483791098229203,-0.9989650141612145,-1.1304229545055213,-1.12262129673708,-0.5160000054394779,-0.9742945705326315,-2.013958224639419,-3.0380137080158622,-1.341054456419493,-0.24792664653652047,0.27710030074350706,-1.495097765952625,-1.8603825656252995,-0.9506277631233456,-0.15650573146642727,-1.674348087823537,-0.3503840666661211,0.4628698344370827,0.20061458222048165,0.7286425504880533,0.4825816590838276,-0.5977841192770103,0.7664014182158058,-1.6914191796013978,-1.3933926360211266,-2.0078355267443126,-2.849183479098869,-2.681846401461658],[0.8774129733029609,0.8588575403683972,-2.501668688812873,-2.2638142191699924,0.05738294252985646,0.1333647670921648,0.11585680324029532,-2.650518257015762,0.27612658367234866,-2.3907793593602897,-1.1105780584169973,-0.2194932791032951,-2.713869420009487,0.09827137887267058,-1.8751321253059505,-0.027752692785200657,-1.7310947108332602,-1.0806226898757438,-0.001641573405059245,-1.744639169819199,0.8626398112266855,0.003967781474699435,-0.7101752795266261,-0.1387209860836813,1.3067166342509373,0.0682874202388936,1.18747829427644,-1.011219919026704,-2.361763152672274,-0.2784600889846719,0.11667629157741681,-0.7246034316162873,-3.3283026566030536,-0.934629920137842,1.3842396220540005,0.5221848771372001,0.3138476694012643,1.0912824212173853,-0.14643222533528857,0.7616836140515256,0.3235125703745325,-1.303445176470667,1.3935223319562464,0.7314945330060653,1.0225430880574917,-2.049337306300196,-0.03921782974070247,-1.0754642630732427,-1.1800575147362853,1.2146085528397979],[0.298094966343589,0.5167530148252863,0.6506358496310932,0.8793495307702898,0.8201548852755962,2.1756684259336656,2.4496485444082787,-1.7143043429411748,-0.010561315775645775,-1.0243153933421985,1.262719590362795,-0.8188569941412711,0.42622254282274796,2.0957193294129186,1.0428144843973193,-2.992326215726706,1.6295567923813872,-2.2846644787667887,-0.27474496303192486,0.3958413198375565,2.710964320862947,-2.5130847769511147,-2.966736662454266,1.9469055445627272,0.18447871698481805,0.3385548255677717,-0.4451956145925794,0.16265685216982567,1.38988474581608,-0.40163677279288856,-0.7630941195775423,-1.3252421773820917,-0.33766389694320964,-2.666849060756821,0.8636131275239752,-0.3554900023419931,-0.6323871548208422,-1.6528444683164918,-0.46849577952464166,1.004682369017463,1.633175962754858,-0.5393089470139785,-2.136653877053192,-0.3584008341800216,2.6668065298166455,-0.03242393368381007,1.7790996718425955,-0.889247023346724,1.4762043953310835,0.44117878963106005],[-1.0725029791761405,-0.33729622488307076,0.7240777911536495,0.20452166105618014,0.47449604830954256,-1.0840289876954585,-0.45080561758666526,-0.6350570835987458,-0.6500911246420185,-0.29089739084984945,0.8199804372725846,0.8285492917057447,-0.08558069722901746,-0.16356058277835686,0.033516658182101436,0.5864701676742645,-0.2749270787542072,0.8004278750083955,-1.1969357329529433,-0.4928366492581135,0.14118862920061948,-2.0382878664405553,0.9574474783248259,-0.22483477331734256,0.17913610176824482,-0.13067907746056487,-0.42178072194064337,-0.3135115417504934,0.5996629791669287,0.6387280366605949,-1.3615508611587839,-0.4602786589449506,0.8086193868968394,-0.4907928492415981,-0.3617106834685199,0.5601529502428048,-0.6180988623164556,-0.5940475183921103,-0.09769919036031832,-0.23160991058548072,-1.6206916448911728,0.24050706124231552,-0.3237007944050975,0.7627499492747689,-0.47572844971897393,-1.4595087161137386,0.9891686474661598,-0.24621960455368175,-1.33281141795142,-2.0843817983228385],[-1.0737596919300731,1.396438594916716,-2.3988914389817335,-1.5217034178964743,1.8090666175010426,1.0502483237779414,-0.5868478704519637,-2.991748424552482,-1.2636333900786945,-2.462140341303507,0.29871760282431575,0.8441726298171035,-1.8340259086996553,-0.30111673744146744,-2.102303853507291,-1.024589450480045,-2.8638790337982325,-2.1364933194438653,0.4004035919441121,-1.9721321809829027,1.122369118319541,0.881644627810919,-1.720344422196076,0.4900376116039339,1.9229781086914521,-0.1332754420316518,0.917015050565419,0.7297122314889565,-2.227370804003996,-0.2763873241417254,0.3889920955925293,-0.7492360519583041,-4.0598893449478,0.09023254532634936,0.7090604458711633,0.35177301355887497,0.450067769314325,1.0841996221152146,0.8925445867225033,0.5234702545083477,0.11474736649708113,-1.8619065783510997,1.68964963206403,-0.002013919986394508,0.848057916420245,-2.831025154109743,0.11982714746923179,-1.5462074274209259,-0.8159988661688251,1.4163876806181859],[0.4462550598623924,0.5889532311552556,3.6075174857394545,2.3024933103918457,0.8437373744938056,0.28178941700116045,-8.705322662445646,0.31452779470152264,-2.1993841127526044,0.15448196085910068,-3.159894347114694,0.6237811929982673,0.38949881829967237,2.183830253486309,0.6074322559660664,-0.7926365858175585,-0.5590370347279329,0.20888571056014454,0.9750381148834419,-1.7687088604676071,-3.5895173565425345,-0.8631079017719181,1.8251222972169254,-0.7256442349503762,2.779776617077748,-2.3320705286821397,1.1744186340729499,1.3136140201729951,0.7306105831859867,0.748966493025661,-1.129557865937519,0.908449887631761,-1.3830874583734833,0.9166095140749145,-0.5099100974084221,-0.8091495047234588,0.05101279064368812,0.6521895475981213,-5.319190000887904,0.721443742827778,0.010731589079365184,2.039915305354479,-2.4361194870762164,-0.24050621276701376,-3.575068771188453,1.5688840816644871,-2.436995248194023,1.788202736290885,0.3897099371970512,-0.7009065596979864],[-0.009596593271890589,1.5853832968299977,-0.6176077540979347,-1.5386414645868913,0.3142164016733295,1.9829736239608773,-2.348219359158114,-0.652483631164685,0.38971116999087557,-3.068428839825499,-0.11602731582115919,2.48032598698885,0.4224596479709553,-2.5231403712954044,-0.2645553971659056,-1.3499139968782592,-2.8399064817204485,-1.8100043181296819,-0.6973513150549743,0.9546325125450917,-0.28573676105559404,0.7154719021041667,1.9835830661190113,0.6851166018307777,3.9407396263130106,0.4007016214682004,-3.0366573613924293,0.6239602453832861,1.3324665164558833,-0.41124368210069745,0.8232953635522833,-0.11777643940363518,-0.7600124009274115,-0.18118631981620925,1.2415802495735695,-0.5932326236538259,-0.026322490931495166,1.56134815152007,0.6192191481341821,0.35347537370492277,0.11026486222587263,-1.6620669620980504,-1.1670929253021052,-0.7219880595837919,-2.636854373269613,0.7723177121152346,-0.607971868534025,-2.34706781755776,1.7012785936243007,-0.41193135801845565],[-0.5289824488193595,-0.3746430964654961,-0.9970629381603333,1.7255424822040077,-1.9944383632594787,-3.6919791598868916,2.1254988567478987,-0.6035372647605008,0.20661560521446007,-1.8472081598468273,-0.7836734255134457,-0.16362739360546516,-0.041568269351020815,0.3483915815484749,-0.08435745087276716,0.9213700161640659,-0.37630617076804646,-3.286335289709576,0.942012295723069,0.6398359029321068,-0.7085046739128771,1.9261817684689853,0.41448657210097195,-0.8925514417743952,1.129847890270184,0.5276641285064443,-0.545938911790784,1.3424279684762248,1.2144110409552746,0.4712534454486271,-0.2984797797042875,0.8494345315578798,-2.7889623283897196,0.5020179721693176,1.8485022083934215,-0.6877876697212769,0.3840660974146271,-1.0902655992306072,-2.7304038359039464,2.829130039318742,0.3482886304976534,-0.3720332168910857,-0.6558277019018243,-0.1692645932581378,-1.7860610258467997,0.3118813294694587,2.109054932082237,-1.3777468954869763,-1.0852023692029154,0.7135730196555674],[0.5485450680037052,-0.21199624320897825,-1.081930292825696,-0.8100596675298829,0.3858231168618126,0.6592507496689429,-0.891176383458574,0.7270818399755952,0.8003227532363235,0.5093450405073905,-0.19198945626994507,-0.5748154705821317,-0.6780134064291222,-0.45017822511620487,-0.9427411410036622,-0.010810691391444914,-0.22093143678998178,-0.13339833747808805,-2.2090006028186098,-0.02103476176964121,-0.12325583897573503,0.7536456347455759,0.24430894410524487,0.8237921953041808,-0.7441929994177714,0.5240351618131354,-0.20378394226098084,0.05368109975672297,-0.5754912447616083,0.3680817044569501,-0.5164767901331415,-0.010019187823707011,-0.8796058153528058,-0.8151274069732207,-0.8492265008985147,0.30191192399502714,0.17923480562981844,-1.0196244805812336,-0.6641341411602238,-0.18531560729517346,-0.12264134458385854,1.3607061027786143,-1.249986336528472,-0.7534626361812317,-0.539763255231605,-0.9850288323186588,-0.1083755302932093,-0.006428985835884248,0.848637246359188,-0.014599969046712609],[-0.4129904620086129,0.2177296469361806,0.6861064684816864,-0.7950172156634906,-0.7255045303553157,-1.4781870372601433,-0.8839385863232414,0.8826644241131898,0.15915699174890752,0.6406579959469934,0.25611141096242546,0.032261894753125686,0.627592487298982,-1.1284776566032806,-0.390646727108943,0.29476986384612536,-0.17478289078525866,0.6560547269973969,0.17075774696612778,0.541458362591246,-0.8470793578334547,-0.2622987603787466,0.12515890067515273,0.021440119480246746,-0.319600174612386,-0.16042659653297855,-0.8230171399375287,0.29513983275149147,-0.28037627298345913,0.25789087871503197,-0.6205290668468117,0.5895215320760891,-0.26782369704932457,0.01265357560369404,0.8835163499334964,-0.49627409035868764,0.9807562972393341,-0.62086904911202,-0.8893468914042802,0.18500360154134732,0.109947831489791,0.022103390044894866,0.9865041848002744,-0.2731266075372611,0.7106021725010508,-1.3467650976617913,0.688240289412685,0.9042913117428137,-0.3814135852365931,-0.8338633108950912],[1.3700877496490507,-0.6203523885387016,-0.46566973559995367,-0.3260872167007004,0.16164762142552605,-0.08643612812657486,-1.098308957770769,-1.1896862004285884,-2.044403165051652,-1.0072272900655708,0.09281646116379147,1.0156832939048566,-0.7766968707858336,-0.6036715384029832,-1.548180151398519,0.6178232746266872,0.9090352609278602,1.0237043241689747,0.8451049958385081,-0.09831935280648076,-1.295762826215036,-0.43371086528096314,0.7440639416347943,0.705790236015834,-1.5456062836235698,0.3268904163989927,1.3586326067938366,0.8258730332784131,0.1570195633954438,-0.33032449945642933,-0.8566130472533976,-2.0976876947672847,0.6159820711872438,0.05408359245087843,-0.2942436194372846,1.0598490353908896,-0.15572279212427945,0.2624721683204174,0.030799182852232914,-1.595905827949991,-1.4086556305615843,0.021207401327842386,2.1417880777696285,0.9956799195502645,-0.5048895152109087,0.33591425388924034,0.5600943232980058,1.4321896309512767,-0.06258705835356534,0.14705442328967022],[-2.1751191314781355,0.15387937713871003,-3.8178644344657435,-1.0123429214839976,-0.27544115501732164,1.28253605179488,-0.7647625571301903,0.8295416776314464,-1.8449111619216476,0.45467703093956946,-2.896543025205803,-2.2312656944258324,-0.6066878618920053,2.0221920749603046,1.1092214114736783,2.3968075546892664,1.2993205561035677,1.1768014761391,0.25686636607335506,0.4800906878214758,1.2767973815802232,1.6920298336852393,-0.41821733775609504,-3.3012640222537972,1.138675929784025,0.0479174799227902,2.4475295061789404,2.458911711255668,1.7305148884171626,-0.883035972396628,1.5731261441795477,-1.6225824325549327,-1.4995093611179242,0.5771854890283598,0.9918438900292103,-2.362561489348706,0.5754662907462789,-1.0784481267500994,-0.6704811756117075,-0.26589230539105646,1.0982410211198308,-2.597000369996654,0.8752354329222127,0.12203735042986082,3.041925479629818,0.06227334072260232,2.5896403886974872,-1.5642888508746864,0.9015059701298461,-1.4987166759943449],[1.3455391249666993,0.7078190293591146,-3.9514127366790928,-3.2568045736436426,-2.6183210066339093,-0.4171438612761558,-2.395113597384793,0.5223908461428493,-3.4105435316075434,-1.336445404340011,-3.1607658004360233,0.44118640681399984,0.8863523710904717,-2.6952644840725615,0.7375604671880847,0.6455625784069023,0.932890696916686,-0.0026768232720617547,-0.2713567677529441,0.41704348885439596,-4.1989477818869725,0.6325070265877054,-1.0953683364835536,-0.13024889872209383,-2.2647572213251266,-1.9576657414806815,2.1991960643064044,0.013902315057349778,-2.390889460629965,0.35946802452132576,-5.966474161200067,-3.360304497092423,0.04944003681990382,-3.3173023921971545,-1.5629524391808785,-1.4570422340883387,-2.012144487506442,-0.5307075365668935,-3.3724628686016476,0.11715378569089162,0.7325108674379174,0.8042651578271233,-1.472387775215998,-0.2503192634992808,-2.501579847158452,0.30993991694950845,1.0890937489155286,-0.9106239471019141,0.8262939810259842,-0.6921253943829797],[0.9075767607078558,0.644573602940698,0.8492625162265609,0.6932199977825775,-0.24796925974124337,0.6981928832375563,-0.004652588374210968,0.4225673828384909,0.7926345135336993,0.369921601679489,0.4078002028851467,-0.5594754223352871,-0.5846356197665405,-1.0891926102089893,0.7611457614722985,0.8493618632122346,-0.08751870911836243,0.6547436750785158,-0.45021301190216906,-0.6796367917155735,-0.3276760666949217,-0.3235704489251723,-0.3708477440867892,-0.662598466020371,-1.2079118942749174,-1.0341282594429015,0.7504859142254149,0.13099903680845384,0.3492404966390405,0.630242472757495,-1.621772825655777,0.07005984759305747,-0.38980183369918897,-0.44125856358286586,0.2557094578200528,0.7016081744780538,-0.39447794528087854,-0.10707594766787648,0.2243239180397808,0.481367001184737,0.2656263997716362,0.8717849777249048,-0.5679984426135238,-0.7133086159668458,-0.40286285620175394,0.6221692109796665,-0.06147713503462116,0.7605177895495208,-1.268517940598991,-1.002692656049599],[-0.17676366063417265,0.2832114229752199,-1.7536310081365922,-0.408806639357579,0.9486589245516348,-1.018198974524111,0.7418793002089538,-1.2892839939859408,-1.6831249602038787,-0.11616814869999399,1.9732434576181157,0.670259095283263,-0.029881808421479028,-0.6484804928562575,-0.5989318526071225,1.666834389389862,1.9655291609477568,1.204130759789779,0.6082441664030295,0.05129118752786896,-0.3070731247828129,0.5452446053342289,1.0850333404848205,0.3810744092626903,-0.029631395131472435,-0.5481215821861333,-0.07997671808297188,-0.14733198735508063,0.4577737815271019,-0.3380128184626758,-0.01248828677958847,-1.3268372075969308,0.3091490251185767,-0.4310184084692202,-1.7713775889250711,0.6661567423734284,-0.6472317900939208,-0.7253534589938324,0.727464433168763,-1.2670854328084256,-1.1949480288439573,0.6662184427737455,2.020559520803104,-0.18528745965669774,-1.3184467850690749,0.010975056540583441,0.9129883302083582,1.2674785264835424,-1.4236167111276976,-0.8337568461273397],[-0.7761640525988384,0.9209891390505429,-1.2183165166895356,-2.0153930838900282,0.28610204331354405,1.1501901789110303,-0.5381395873565616,-0.840041035410953,0.7754460411939557,-0.2301726683839585,0.7535302894738047,0.09385427024278095,-0.3143487971001404,0.9834583595201677,-0.37127294332570626,-0.8687721793119146,-0.2968802876573057,0.543870986502497,-1.415158667904613,0.4524691796432431,0.23102948462507658,0.5214475874304062,-0.22261437854917523,-0.37425667011722863,-0.928049631172019,1.2071273021911364,-2.3425037281585457,0.47070540317864573,-2.228584781166501,0.908587395380585,-1.8947525135176513,1.0204865800280885,-2.601172173545351,-0.3995534430083128,-1.9652200414499625,1.1019236460242703,-1.5424635691782167,-0.1459530158366264,-1.7405373367770918,-1.736693411458847,-0.07997395546238308,0.38496779082430843,-2.28005157590463,-0.5638089012000084,-0.952135289946928,-0.9568726356638748,0.047076166373917386,-1.3990181971437805,0.20856682164327703,0.06409532485372611],[-0.42761626795968344,0.5943800773776947,0.1622199970887772,-2.103731004959424,0.30375547079711923,0.6010290768437067,-1.2641427570132604,1.0649934916345714,0.8985051628783939,0.9137746201675551,-0.33920352543617627,0.05809843741367399,-0.3824145479126975,0.5258283354967898,0.7139266840046203,0.5803820498364153,-1.2759025741060503,0.7356180573369148,-0.026067181229565257,0.9404259316589613,-0.7837608391346701,-2.935145390631762,0.7911912365395768,0.3999993059218013,-1.224092850173369,0.1548893653894423,1.4774308449256612,-1.6314541570892909,0.5905634786190385,0.21374608967359252,0.34447705672843926,-0.7775517866928395,1.1476155000581998,0.6507514716555253,-1.543227181824437,1.0361458092419629,-1.3856655490390515,0.2167427997642914,0.1170197693224913,-1.6371278276479122,0.8432947220669788,0.24010087846128614,0.5921864363153814,-0.2195482670602672,1.3849852260548525,-1.4910377668169357,-0.8099222411633497,0.48108980184545796,0.1746626688787264,-0.47039375221820506],[-0.4712115151782631,0.43925115923172187,-2.730338386045563,0.04357139542423609,-2.428961965758983,0.9105418749817155,0.6364077995788474,0.6440327271843059,1.1305393608232042,0.8872972543611963,-1.8237253711480668,-0.802132526508928,0.8955628791306753,-3.087527623959426,0.43967790827764036,-0.3694869259769115,-1.5788445737616776,-0.0307087802197321,-1.8089728351138517,-0.8144045819074422,0.870104903852097,0.2716987736611521,-0.3941760695844875,-0.3559842473356517,-0.31208683868739484,-0.8816634803505372,-0.1568577217828056,1.0283960427594636,0.25604615901712785,-0.014119194895762638,-2.008132173365796,1.4295918412495985,0.6585974830654758,0.14703315092776445,-0.9263269086618424,-2.649114003468417,-0.524597527095817,0.32504542091166666,0.7855541580280158,0.8938198369393431,-0.05295855832067532,0.0013197793710097469,1.272887289077714,0.20350260543431567,1.4406929516805256,-0.82955106549869,0.6260208439021797,-3.16486309198075,0.36610813742916193,-0.3826418168308133],[-0.6371080006994524,0.09869165422849403,-1.5157186706268992,0.3071342957770391,0.1797613418048199,-0.39467679493759494,-1.0862959856533008,0.4227521879857811,0.08529716780462658,0.2194583717785822,-0.7365068396512933,0.0771280097307161,-0.6957544606303652,1.1762646217813009,-0.039627716824213344,0.21208724725962902,0.09184606564530787,0.2879624233303624,0.6570168996955502,0.37880464773831707,-0.5170239529484538,0.9907732481878869,0.04851227040883848,-2.0923778682916105,0.7815537487345983,-0.8112017043680829,0.2697486505784021,1.1514175395071014,-0.35830746246236006,-0.7088821371000309,0.4224941703572594,0.4711572873454159,-0.7998249536530164,-0.5390240644423349,0.03999554474719742,0.04605065443948465,0.35349743190862576,-0.2645019256776938,-0.3929827589181008,0.9536306895521772,-0.7391625837140917,-0.06542393085308441,0.5637518522631888,0.6791088613318282,1.2604529241561717,-0.5834155595712265,-0.07979639802358643,0.3646693818561071,0.10527298510208273,-0.5461797928056543],[-0.1488624520953753,0.28318932850638057,1.0762481742480667,0.1924929033848271,-0.20105466896165636,-3.695968759980966,1.5689818377798397,0.5565405465704597,1.1458591808906995,-1.9210126601688655,1.2442910169276284,-0.27559184962922456,-0.845797534784876,-0.2850449897461395,-0.1453297518954642,0.3767270390786538,0.5229875244358311,0.3830676055556282,-1.1974547302255627,-1.0109834482626077,-1.0506516595819773,-2.609998864205436,-0.553221145692508,0.6461528945474558,0.6343862311324769,-0.08970286348911514,2.530553216082308,-2.5861300992183596,0.6398296619787722,0.5906863376652113,-3.6665406437281374,-3.6642350751589885,0.20485761378829484,0.3696103693874686,0.1510952565627376,-0.7723024264187887,1.0192213974373086,1.214671456298121,-0.9125104923604772,-1.0693026420877687,-2.655089084869524,0.023674482135237738,0.877715698803151,0.1892781115893178,2.0573030339349274,-3.224301272986565,0.38167121164060314,1.2255375446289116,-3.741934233069608,-4.294822417211277],[-0.013769959755773106,0.13740974265625,-0.3718887572635429,-0.7290758669768862,-0.26039080316640356,0.48267927336577354,-0.5425522847148874,0.98762666672124,-0.26081432439065916,-1.2358237148909412,0.010736679589031937,-0.3260635432305564,-0.6970724915130626,-0.051473771819816064,0.5250367662122013,0.3176098866100461,0.06829713790035807,0.4475612967318245,-1.8469169294541496,0.39920675291874735,0.145958712018804,0.38964097519580343,0.8951670196669806,0.028330345099889572,-0.44000338144003054,-0.16642942691242898,-0.9537564552528659,0.5050039732970812,-2.2822879915718275,0.24395248570412492,0.08733694239512754,0.7872325885432448,-0.9105005102247928,0.47904272390104663,-1.6262665549461874,-0.5688828937969715,-0.10100754377049945,-0.8441013156808297,-0.6363859539552924,0.2730875799666895,0.6698426643520877,0.3541330407808809,0.37584085141163587,-0.5965193928606894,-0.7773462702352788,-0.14565496998924235,0.46831514319223844,-0.6184287004039177,0.8922201120129495,0.2156763112403063],[0.8071311734491097,-1.412734666920348,-0.5849237031993089,1.0096367414046306,0.12662967873171296,-0.9334320984437294,0.6670571056931485,-0.37228639780814715,-0.08843925455831322,0.2607731327520862,0.8180499365453023,-0.398833225627369,-0.41080902941704756,-0.009282555260366315,-1.6205110436589396,0.5761183395797989,-0.5798143623533835,0.23613817269143902,0.1802135352317453,-0.6021209857646139,-0.0068743183177961435,0.11720173950232785,0.22216199597463804,0.5044818555304861,0.7372823855189801,-0.28663259522593765,-1.6512519393162894,-0.2804715677770025,1.1079199841848675,-0.5160223364674575,-0.1761464920046248,-0.15793105739234856,1.175121790798106,0.4101333109492289,-0.7694660039236453,0.6837268757761642,1.025382347735376,-0.8681560917356561,0.9395231514250708,0.7625701652077309,0.6372281176495324,-0.967372278700359,-0.3426479168833748,-0.4317609770389245,-0.27207813882363496,-1.43077298623749,-0.933933792839902,-1.2202568112647318,-0.9448669183766959,0.4634976172533407],[1.0498969020214628,0.4698500790118021,0.6725050773931049,0.4079747221527151,1.0291380121970928,-0.06599786514761528,0.02416061653331974,-2.516119089343137,-0.8188320853029103,-0.7105508049524814,0.6649025606007802,-0.21677925480959617,-0.06779381803922568,1.3979419949840526,-0.06540358713508443,-1.7954504716337167,0.5061581168228199,-1.4486208244329537,-0.4259952215937456,0.23625377703543465,0.5778920188369628,-1.74503086865818,-2.1086355922889584,0.6511695700978539,1.516985324302026,0.943592229598863,-0.7916558626608764,-0.73439422478052,-0.17001836441396365,-0.2926315672113044,-0.29279099218231097,-1.1539714920805393,-0.5464182905545231,-3.52067322225261,0.6126220537427512,0.33214790441572095,0.07530779920617545,-2.3036554351971548,-0.7795118751104251,1.0887491452782843,1.0655449482958586,-1.3516783285856424,-1.8249607588163776,0.39938080187721964,0.1930156655734407,0.9974446350215844,1.4217685555064485,-1.1316191019173873,0.36729084699062114,0.458923365002611],[-4.13983007065783,-0.5987319243886764,0.2594949628429669,-3.412457877987828,-2.39832213286457,-0.4334875552917084,1.002763414975869,0.012064546013642654,0.29016723463952737,-3.4521325716108597,-4.082892981256291,2.1869536694529845,-2.677398617864069,-2.290326912667939,1.1649941914471063,-2.1333683495007354,-0.9723692709871871,0.4886257371385762,-1.5995663799033606,0.7053816158222701,-4.724378436444601,-1.2620698088403584,-2.801736376592918,-2.1817789649331214,-2.0505278160806806,0.16323203469164044,-3.096667095065355,-4.581714259154798,-2.7879499240230436,1.2526243755021502,-0.13579909204166332,-0.870459411030548,1.2995021578778478,-1.3776292451914856,-0.33339650523501374,-1.375921045956651,-0.9075442886937742,-4.868437632581948,0.5365235255121421,-0.29214482566781835,-0.6323147234158716,0.4666415184407563,-0.42687829930138965,0.7180567670499843,0.04760028403151205,-0.8374378836908846,-3.8972744553815595,-0.5875933076703845,3.4083335724955495,3.0611031942329743],[-1.1574505148740377,-0.4552566207349308,-0.17508046201576422,-1.849785206657363,-0.2576516498601029,-0.2134263353308263,0.20250826185881882,-1.3450999267880515,-0.7249378221424153,-0.10231194626956576,0.675880800732073,-0.3862829705965823,-0.4257093760490167,-0.042438406279692115,0.577075703664237,0.39306387274937143,0.24068555105521974,0.8891006624518755,0.3293420763085764,0.3187170121757577,-1.5506481529859972,-0.9084940698798099,-0.7448745285030588,-1.9315915881595975,-2.6577976142213373,0.2855356021617853,-0.07212284188137486,-0.3121313773168884,0.7448801062913474,-0.4203948346106756,-1.096002066760802,0.1853450497017949,0.09347774622132843,-1.5192179769503338,0.20182514550969033,-0.24275989430543543,0.008111622625706673,0.3360553441339885,-2.262933800651172,-0.6400735687092115,0.6311339952260407,-0.5850741736619847,-1.5056274563237675,0.2679840063734476,-0.41464801506444204,-0.3840598739031036,-0.6479251672713092,0.19064890847741198,-0.2688011658739269,-0.56185281261704],[0.6207701081688882,0.7650493389709535,0.7646337542837122,0.21858642076878257,0.9419458136895053,0.12161344048864696,1.329373070897589,-1.5962197533465856,-0.9135267838546104,-0.7161430292102295,1.4204090390380846,-0.7040561557513295,0.6967030581291552,0.717111550552013,0.5472497829956533,-2.8403460279940336,-0.6365629684588345,-2.5885028410090896,1.2233325517416034,-1.2867537818335422,1.1061870756709913,-3.347600087576425,-3.3728668054183273,-0.42049069904994885,0.19321302703790225,0.7823212662201535,-0.7374404972400151,-0.03677420227009824,-0.07066895947813201,0.4898298181377562,-1.067170678646913,-0.6621034686508955,-0.1217981454157611,-3.236665632440496,1.0977443357511103,0.9881579923734898,-0.508790280215705,-2.2752277143399264,-0.4842661376232737,0.841368578613631,1.0571508848769438,-0.9161173879113788,-2.134195455332742,-0.6818838241303198,0.5596517034925101,0.2780639406182524,0.3620216167069265,-0.22180192392705578,0.5056690716752731,-0.1445143550452467],[1.3327930777263053,-2.1261070813232363,-1.6969904641429159,-0.4976172772320044,0.19724877047101427,0.6370110092831126,1.2965756286666055,0.20726330073042293,0.37230127265573704,1.013402089642158,-1.5653392535788049,-0.740645039601839,-0.5482036505654989,-0.4594575372404367,0.7155147584575674,-2.2023609714868666,-0.9970480556147819,-1.8603533212281333,-3.249802448152106,-0.5639060992847043,1.2317635417215338,-0.4563373389143187,1.013936013476967,0.562144630043461,-3.2583309024670246,0.8594932290592783,-1.5497311854254834,1.359468275484951,-2.159898152408626,1.2359371143661413,-2.9933372526646136,-0.17507019934652449,-1.2934553042259502,0.8766467422320177,-0.1746251572626624,-0.20900414652458307,0.40194443965186355,2.019681334214192,-0.06051256411922414,-2.1155549744262583,-1.9245222291269364,-0.7787829187289437,-0.20602183693649168,0.2489503829662656,-2.2558315010773673,0.9844419140807769,-1.1407812381284284,-1.54547218293594,-1.5607717982359706,1.3732407052923605],[-0.7015255036989443,0.9718475385562023,-0.3684736793235269,0.5377164059449447,-1.8125755323762365,-0.7875333114835296,0.5851281271188654,0.042225752569363444,-0.14370226172382985,0.08468130924219412,-1.8783131826948267,0.7531314299524363,-0.5119668754817401,-2.2226171715200795,-0.32008602708175127,-0.03531646701846929,0.3657120198262994,-0.4334363261877103,-0.8513664045963998,-0.870261282895034,-0.2857885510773355,0.8452833165461334,0.8988449513819701,0.39637388558382375,0.22583058108446083,-0.4502040689403729,0.16622151362708398,0.11833943937868169,-0.1822208183952264,-0.5622585987923353,-1.4516546959856613,-0.40233349396823853,0.48170243885405895,0.7244994130219206,-1.669665400994979,-2.59339656869996,0.6733649169505586,-0.4299415433077299,0.7440339962499212,-0.5594870869292344,-0.9090359600701738,0.2727458682809699,0.5986646923776608,0.25317628935035397,0.27394513017045846,0.5796289585153083,0.9021084126147253,-2.157254230223368,-0.5773627647241053,0.8986420021411149],[0.7589889627417474,0.053006070990576144,0.39913789576379816,-0.49111348161735646,0.4735526996818657,1.384039773367224,-2.037771782389188,-1.4608079843835533,0.5299267484379475,-0.7224211925237474,-0.11814844495257358,1.2435872215148431,-0.7699699174854765,-1.1666011523116888,-1.2907564437473693,-0.38461480522277386,-2.6422024023897546,-0.9869478118236872,-0.3592622927015798,1.0124770404818193,-0.14962736272232055,2.0020445477016646,1.9904409920364468,1.7918623540730685,2.5941581543854286,0.507925780783167,-2.767118299551962,-0.603135494029439,1.1414744556102694,-0.3186387113740914,1.046112290263444,0.5780136122317684,-0.8910218058198482,0.6258553971706686,1.2536114746428406,0.4574528863788075,-0.6679823429065204,2.3408342659790335,-0.28073202421533106,0.9936604171516118,0.7535003235552947,0.07164346456663286,-0.04367475045386908,-0.13137812829009074,-1.2965480871149198,0.2521458892718559,-1.1811480817210709,-1.1044379326202602,1.372877154183611,0.9057749218414262],[0.3843790364240541,1.2462561220086597,-1.8576245099353645,0.9065930374815787,0.5331709210608786,-4.884975460057569,-3.166348775054433,1.5749049761471732,1.4113836903546058,2.070709128670427,-1.95580909326159,-4.937855584621935,0.31197240102626694,0.3626865723758993,-2.1305510048604184,-0.5713655268832734,-0.2891163144859677,-1.7797860879169727,0.903773027892986,-2.113388987486983,0.7188005738690882,1.610786773282382,-0.30912950153432334,-1.2042349052611279,-2.6568961161921067,-0.8550559851226714,1.506138322100833,0.9578440720867786,1.2111721862860756,0.8171731058353698,2.963822856807771,-0.17820815677557042,0.15870397591476285,-1.4062822502973087,-4.186473749187014,0.8539627595252192,-0.6101203253003974,1.517586591283842,0.1506269520507475,0.6284128205964066,0.04630370436838319,1.4250855734350152,-3.97026487363115,-0.12263849992314514,2.184531593140286,1.915710882252042,-5.128753314095148,0.5154122842450033,-2.921844703088566,1.2816579045176912],[-0.03115191564311134,0.5141985773756526,0.658817071012024,-0.11729302504069422,0.05780953759836221,-1.0740068713059863,-0.6176189350419854,0.743263084403233,0.6130691088940082,-0.728171078196367,-0.3267169556936892,0.2381623919849797,-2.0594021766759596,0.6841872260038403,0.9384939326686963,-0.9438546928996937,-1.1623898479487464,-0.43709367603762495,-0.7490802918161311,-0.1601069909663796,-0.02970393559288205,0.8390758954443772,-0.30516873081353274,0.14625353744473396,0.002174034612470874,-0.10913851155947119,0.41151913002910473,-1.341996881559243,-0.8800185068896978,-0.13919348429187287,0.3018021129987119,0.8432027661425822,0.8286648394537797,-0.36144519404832953,-0.3896185572887289,-0.9428961792222389,0.5126443983347503,0.7704451302089765,-1.1624160357162452,-0.8743478546958676,-1.105872919437062,-0.44209200259451026,0.9011583820852554,0.09069976355730527,0.2866444441997495,-0.22413656895304354,-0.32712262223878036,-0.3866041698149484,0.4476098714688699,-0.8725189543670587],[-0.6219150885676827,-0.23328903211395619,-0.6440027696445514,0.7674010271504974,-1.9180314569983428,0.16338880485165497,0.13911333564931389,-2.156390383587135,-0.11938530871637873,-2.356839376565725,0.6102631401315988,-0.02811431169048274,-0.5784672575697044,0.870134860860271,-2.8692480148386217,-0.6420558870807318,-1.0620475595750565,1.4820479186228097,-1.605901687546975,-2.205180975416479,-0.9386098100993027,0.5862296008818557,0.8641719981518052,-0.4225628682785187,-2.2443412416243187,-0.2795200812892942,-1.0839375451553501,-1.1591134659190923,-0.7396351578280044,1.0307572257619848,1.3285683604051575,0.08163604183182041,0.8647517730695563,0.03301213165159972,-1.2609650913884842,0.6850774943811164,0.6586523380397968,1.1110155689966603,0.19329129289302188,0.40237071843602407,0.5395519287214148,-0.5056720019660819,-1.0696528156071488,0.5679389291247942,0.9936372878511739,-0.6819287349143011,-1.0248799423905102,1.2381205101648385,-0.39367614128683814,0.20667809759242814],[-3.2313809188664773,-0.03463332691510924,-4.940685412684274,-3.0307187505607796,-0.46040748469459575,-1.941691581929138,-3.8152288539945287,0.05855771711447588,-3.2857372741225213,-4.332645962768678,-2.745826032015622,-3.6844655301397795,2.2434190857264795,-4.460144896967238,-0.968618339754945,-3.7024866500246354,-1.378751169706813,-3.1554182758056992,0.0832674568477695,-0.735933103970397,-2.881021216222715,-4.897113544606728,-2.6706351412340976,-1.4321164472691557,-3.1028271088204127,1.3485830868780244,-5.127093630424893,-3.4813065324185795,-2.454727271008283,-0.6333008287746278,-4.676608655972014,-1.4507608051075216,0.30339695232860403,-2.660344998839131,-1.5227551665403727,-1.5336024808700557,1.6502501860961212,-7.759574390523519,-0.05389834134726426,-1.6686052721117368,-1.4809819412391423,-4.69223052231023,-2.1816407857952993,1.3981764798480982,-5.801327158946226,-2.819009954699682,-3.7861835720854935,-5.727860104708832,-3.183163122853832,-3.731615606510183],[1.521696036647562,0.14738200844809377,0.8738790330212932,-2.1927869106800926,1.8974583447898705,-0.9040424800473634,0.3256918580707083,0.9175787942263507,-0.40377018272232484,1.2013679480643915,-1.786555206396749,0.2894611537066049,-2.7155166489943614,1.142554914351912,0.41037007962480837,-4.139446600009293,-0.4237366716479747,0.5117993693787793,-3.1639337135358994,-0.659102223106938,1.0093061704347233,-0.05386511501685558,-1.7636344949451668,-1.484123961701499,0.5540143228486977,-0.36957693691131766,-0.1550817703878219,-1.7779128070713657,-1.3156519158527171,0.8829062710752317,1.128084014986506,0.992285411154262,0.3720768938892292,0.44660894774096577,0.020004405859690495,0.4127075441997345,0.5149918271726768,0.5389719007586729,-1.011436305075457,-2.036628425559909,-2.0318172283897393,-0.4317912604573245,0.25515505116612675,-0.05734734458589759,-0.5837883400440063,0.9668696437560267,0.35715582775509996,0.6645300697625436,-0.7668948156827283,-0.4658945765088965],[2.360558435338536,-2.214828219857663,-7.035120735703083,-4.43159093365428,0.12552528993033044,-3.4395943430220535,-7.15157542778953,-5.676561474887026,3.0071780662333087,-0.9712079950544615,-0.4272418442402236,-1.666685127359983,-2.1574196718520713,3.7168563850921816,-3.0140417151782475,1.2507702757921206,-6.183655743558847,0.9121526363562881,-2.2318340818656193,-3.493410691671831,2.1445676156065563,-0.21534936045100903,0.12626977396615377,-0.46003261972224524,-3.591095116816684,0.7221335703145957,-0.8677356288441738,-0.8129997562357643,-0.8869494466714195,0.15411614644144397,2.922586739356032,1.8080386622142017,-0.26594406861584013,1.6533678864808912,-2.2263045576343234,-0.8983394246414489,0.7497493748642413,1.8017426398824974,1.5506453219412566,1.5165605544424556,1.8857711689979848,-1.6023319981839428,-4.202948748597783,0.4924246124886007,-0.00616821945959094,-2.4210141740588975,-8.453317421839111,3.018088218179856,-1.8846398812692935,-3.456955762022542],[-0.03277659302738592,0.021639995069754725,0.5978493201265527,-1.4226862741380026,0.5042690227486994,0.780555075007814,-0.6071636772315406,-1.6342264931027872,1.268284271397246,-0.8867844776330307,-0.6526228526850416,1.5529305084598992,-0.3123548128012267,-0.39090424504166565,-1.3381889980335158,-0.01319976317003488,-0.13515564678709135,-0.2894293842423505,-0.5674833637929937,-0.5326782983739309,0.018761075572845294,1.388035450197096,1.5210027832430677,0.28602087667650994,1.3798677898750968,-0.04434466082692613,-2.0985642041597967,0.06456690183509556,1.234545835240541,-0.4481877988785833,-0.6476483237183904,0.4289360123410797,0.353102043099272,1.6913880075909733,0.8601500901476045,-1.5036065492282134,-0.11745532884046103,1.8060494686537842,-0.08712555697277441,0.9512383923407012,0.004677446661312585,-0.9830193356042148,-0.18549747436761016,-0.3929283761178596,-1.9813628814984425,0.08467116332437301,-0.16204927844452044,-0.949407368678634,-0.35336461835219607,-0.9757984495211146],[0.8411419412572001,-1.1176428588386937,-4.7037857181306055,-0.09394763860613213,-2.7760483022743845,-3.044390883608957,-2.9544571968927653,-1.7674631308003848,0.21507714422871754,-1.710496521570062,-2.6381446796127483,0.808355268683227,0.9674508303371918,0.4230941647096503,1.1934854341753804,0.05959193944011004,-1.521838140099945,-3.1211532625502256,1.5364514717117261,-0.34937221403015906,1.312267405010263,-3.6489378742192553,0.9256124620076124,-0.6911248447202265,-2.2036620019602555,0.30303117563872145,0.2621458691738346,-1.340451228012132,1.0262536046796558,1.2581214817672304,1.4290172474078526,0.28460228488350875,-1.4321130812151657,-2.4183068758359947,-0.8089799617611374,-0.7996818453542021,-2.3477822451626973,-0.34917205310914906,-3.8496633128385263,-3.911881342895636,0.9899267362781352,-3.1506539517449372,1.3613708385161811,-1.1501578531385852,-1.1442862246464875,-0.6918178204867872,-2.094974916447476,0.5416484524221049,1.0377500303299612,0.8274607008429535],[0.9801388662249387,1.067710639103559,-0.9881554673153223,-2.0879285092797213,1.0684553446544856,0.3016995886399465,-0.4745202386076733,-0.3525616930406302,1.0124349792493361,-1.8811173366842189,1.1578024074623645,0.8151772331727419,0.8419953878219456,-0.9161459017929825,-1.3971667133371948,0.18299469546513333,-0.8091786481522619,-0.05870487470584955,-1.0276937059250522,0.4151915659579338,-0.24621554580816032,1.3765721147427687,1.1245821148955617,-0.06359019228852486,1.5974046693137636,-0.328795867173264,-2.2855842060169804,0.45347929473730686,0.7773177452477276,-0.6093585078658922,0.6835706186666416,0.6513833788524226,-1.131546218675643,-0.07207325736323497,0.8558059491753103,0.1686518370464686,-0.9593271620276627,1.100585018505886,0.9120701263830876,-0.478685710183235,0.2575275379801291,0.08937355903288861,-1.2630291124634843,0.575190452074049,-1.6696699712837189,0.6877570779344526,-0.8850898061518375,-1.2729886808894542,0.08516051739977043,-0.9100754902581761],[-0.4527256838206223,-1.70388695018907,-0.9539794048979021,-3.4319755803699317,0.813566489739902,-0.4179710852965385,1.6049900666615606,0.7359621008115026,-2.059540472262872,-0.550060470861409,0.1508232199940737,-1.5980924380326864,0.0260973373180729,-0.495380476920063,0.3258506536144412,-1.6537085725215557,0.7992859007375062,0.27088137058297895,-0.48138795537834733,0.870178904451351,-0.023064681325307056,-0.7484088962161989,1.0732053007477522,1.2143462588989646,-3.5822091690989515,0.6615142728687682,-4.536230787828303,-0.7942671129554248,-6.643040036969954,-2.1400389370540767,-1.7737281708580428,0.7908670558959304,0.3865921982466018,-0.7111348422040014,-1.0146242729844168,-0.7583019489531915,-0.37984202077520185,-1.0238871628779298,0.7260166005704488,-0.7661012568674184,-1.7305799564516153,-0.28706126910274543,0.0908236796360716,-0.09899363082181975,-4.281807661097026,0.16754302014741257,-2.94280168218494,-1.1854579288354798,-3.2320139559572083,-0.35309363066732136],[0.21925478404947116,0.5051182793221234,-0.6720029061128744,-0.4057386422157232,-1.1571953701272202,0.9093380021704429,0.03126411935387568,0.0061007288181435144,0.43807090716907304,-0.07120654774100724,-0.16208689702058007,-1.2957737047581384,-0.37670405774870275,-0.19935359476853518,-0.3170269584363446,-0.884794334678387,-1.4239199646110012,0.21522742136229644,0.6531620484075767,0.07544024880784304,0.5768871021897589,-0.09076093595694372,-0.4157160078109303,-1.0034274212135115,-0.9523136090027521,-1.1461854076543603,0.008445082215433858,-0.4527616577849285,-0.18658186381760863,0.8723505021472401,-1.925744792841197,-0.6935730607439827,-0.6234598147588961,0.4534558419366205,0.5365015713411778,0.019295431364381443,-1.4823633312523932,-1.585595598884481,-1.0050471216476164,-0.913172774993582,0.45896752188691803,0.8092522274767443,-1.7390316348150343,0.1209040589209742,0.9404929632233229,0.633214740786641,-0.5448170535651853,-0.10254184698829384,0.001943755664703057,-0.10374825743525137],[-0.8455136446633049,0.4235292054203562,-2.6544785334696654,-5.893425455181362,-0.7571611611598369,-2.6672267962750285,-2.850659287646629,-0.229295925145979,-0.5504273581486929,-1.9826677450658559,-1.014616248869366,-0.32810357190778644,1.5063427128374827,-0.4313367858069551,0.13435030909757031,1.1222381269711759,-0.3266085482157346,-3.1580687690124765,-0.5644013982527223,0.6467774565095584,0.5759569873944721,-3.5283556297406293,0.6430712839192351,0.664804117482861,-1.8473944530698772,-0.07234446115249156,-4.242420217529884,-1.9996207189505952,-2.809390597993485,1.148796547760735,-1.8917309708115952,1.0995754668507227,-3.295901629427984,-0.9321574136787769,-2.9800970083573532,1.0206556565001321,-3.1294557351324497,-3.533280610493258,-1.5930103384701095,-4.655430385575004,-0.8335978477600736,-2.745960816750352,0.5711825434211963,-0.04891386628603559,-2.762619257951919,-3.1249883526094018,-4.120782404117165,-4.743015183476602,-0.22760667608185614,-0.4402249974311641],[0.916009145220954,0.9038524027532476,-1.3641899773437551,0.28998723351317396,-2.2262461266986855,-0.08930039239483302,0.7254688933691075,-0.19892815212066625,0.3972533944281484,-0.4338360984306745,-1.5350883458126967,-0.3894923074615501,-0.37190386223262495,-2.318924956353907,-1.1114721796158975,-1.0182725817868967,-1.064010308257464,0.037158867841007345,-1.2103810333755691,-0.8950206726592684,0.8630390937427392,-0.44295983440735165,0.7439302945811059,-0.25916670839048755,0.19826693057396413,0.3764368750658128,-0.6666648818521372,0.011979506455799356,0.5544346373288188,0.6881881716383041,-0.8474205682442205,0.24928692291394108,0.07748902651720335,0.289230566756074,-1.1711678405823214,-1.2650453192797908,0.24608189037799735,0.13580847282347727,0.1042649712950741,0.8090799697422055,-0.32803965347295944,-0.5623667620649726,-0.8373389998624768,-0.8053294481875961,-0.23185437688553287,-0.16354636498064112,0.7177926077804816,-2.292596652648483,0.3744212984231701,-0.4500786920458577],[1.7055241749741867,0.13124913814021902,-1.3906014144662393,-1.4232444454061155,-1.8443717773892685,-1.494556125198173,0.663663514588272,-0.28702772611970906,0.40242406198085573,1.098563794373149,-3.945266359570494,-0.9974091889412722,-1.4309479439663437,-4.687576671976631,-1.05486003874815,-3.439448354874898,-1.0945400601902509,-0.8903687919199647,-4.2283629327043375,-2.036358034660135,0.24216795589318507,1.439953844138443,-0.37729227057394377,0.22209373525555984,0.2622209700846091,0.22403161952130507,0.8972636977456407,-2.084091981701978,-3.1478836668032044,-0.5843657317288442,-3.0132116018814457,-0.5063391967090529,0.03690526123893873,0.7504435913848061,-1.3028366167665701,-2.982902905678423,-0.22154970221973225,1.7633264354947757,-0.8568776667487435,-1.254828290021878,-1.0497309952042109,-1.3332810448562604,0.2283788882257291,0.7843341273286721,-0.33137572181084435,0.2567282538117642,1.8217758483202768,-2.259294371022966,0.8575647775117026,-1.6788260140254245],[-0.8668140141642472,0.08518987607170804,-0.12770372527103327,-0.925025247361,-4.57607200307091,0.887858816350635,-1.0442749072950666,-0.6155454603535964,0.01627001087353411,-0.9294435615860639,-3.6621628924867355,-0.6148017976035953,-1.4395132911372186,-3.350387335387284,-2.3029787641087314,0.43063234446460397,0.11014685322711633,-0.4828116981310991,-1.4306723197182807,-2.378220940892491,-1.5512308757628246,0.41495976029070475,-2.515434428734104,0.9766766951137529,-0.6851226037353081,-0.4037095155806573,-3.6879427787921233,-1.421472641925987,-1.3266665391435137,-0.03243633355197578,-0.41833422171358325,0.7349755022073813,0.036763974857119866,-0.024485703591610716,-0.10850996235851093,-1.1584547068254423,0.6038534525689855,-3.988522319415446,-1.2287184517724716,-0.09257574744958118,1.2152701260065608,-3.9862203017243436,-1.1508851862048939,0.05995525536159314,-0.9920234315491973,-1.7221765111819956,-3.4382646346785366,0.3316657942318886,0.7022893742739584,1.8927046997672128],[0.26601885514463214,-0.6205578768298212,-0.5749651929242836,-0.4937580145553972,-0.20835916123856021,-1.0445239845063132,0.3064566724355183,0.4443286110749998,-0.7816035495085448,0.5321940602699474,0.9144380684143555,-2.6409314118014398,-0.29288100455278265,-1.0228849919268383,-2.7179700320009887,0.8703534085676664,-0.07890052682951831,-0.25249056606195985,0.05672285033825309,-1.2345852403435558,1.3212894820413912,-1.011458516541159,-0.8283319097951423,-0.5217351759807876,-1.1723990999146228,-0.8412371945777437,-0.84077656253416,-2.8181029435484457,-3.4556962425662756,-2.9776968168900613,-2.9419280724257653,0.006539568287963464,-0.7816387836302038,-1.8275221288210715,-1.8553346349065802,0.8809825823737476,0.2145382026217311,-2.162312909110749,0.26782517483008755,0.6830238876386763,0.6714034791046521,0.8523002183022425,0.584318799985101,0.36408498638473485,0.07686001677014624,-1.4051745536988698,0.006602661558927603,-1.6339408102692292,-3.5313051086728495,-2.8270294967831466],[-0.6346835909573765,0.5110275870496249,-3.7902354000911256,1.9381789898274084,-2.020915303849502,-4.912981000861085,0.628994739248826,-1.950309775600044,0.045616030746074156,-1.1090683517084603,-1.3878585012975304,1.037568151509276,0.033773818667229186,-0.6734993154972819,0.7218027574702655,0.02412522157930471,-0.022758305216092338,-4.725170170461321,-0.42963677131428313,0.32327621596132966,0.24418880365589019,0.7144055550706858,0.6490600210680164,0.11288372281472234,0.9302953733925423,-0.39398850332402585,-1.0828430951135095,1.0331469360951604,0.7734949025944479,-0.6626603936327912,0.7150680468747657,-0.5310568580619851,-3.3236767553006388,-1.1438360436560855,0.6408309500093381,0.714796157122621,-0.13711763333639906,-0.628032813117941,-3.207808377623167,2.171593380228787,-0.3665239770632871,0.47677814236800686,1.0324099391899515,-0.002567426752027823,-3.620233416238718,1.7213709746624757,2.4837350804297382,-0.9465488482816871,0.8302909496818355,0.9475382238876636],[1.520144966547818,0.20606789156795988,-0.836608873914276,-1.2406176928694064,-4.608942279254824,-2.430046811399372,0.07591986063304303,-0.952405661234387,-2.9329768251646433,-2.164249914891361,0.10801643070229333,1.8297928873478797,2.4338328802041937,-0.14710105471731594,0.2794461941377396,0.9255717756407357,-0.21192475135327257,0.1332167179049382,-2.1586899083122773,-1.5642385085023263,-3.3210241216025738,-0.3642078276666469,1.611414278667943,-0.1438827840557315,-2.6877840182733586,-2.1124149753922246,-3.0088022748510492,-3.2503321625288457,-1.0437304231125022,1.673500722182131,-5.06969576473063,-2.3724198788515936,0.487795508737409,-2.314784251760152,-1.84301098319923,-2.2838092941414123,0.3254427168545211,-2.314148686851331,-1.5467349271918858,-0.2668765903943943,-0.2646220569144136,-1.7193476360551296,-3.502124173749425,0.4217534189860956,-1.2578066810092645,-0.3554984233284286,-1.338529023649499,-4.9109490788800825,-1.660516732534018,1.239731265973746],[0.9536684533861963,-0.6684256227245632,-0.0061620156406439475,0.018281096092576336,-0.6156685746146587,0.8796779124557655,0.34164193006377763,0.5147375468271689,-0.6946962688889236,-0.33673378280077465,0.9263800101526682,-0.6994081599939725,-0.2209337604039037,0.599009394183187,-0.127424210047862,0.9917966949618187,0.4166812905500279,-0.06609034633746229,-1.0223451218947293,-0.457174261713532,-0.9583116310194597,0.994287107353266,0.3608078585376801,0.6875703318115267,-0.32691574439093957,1.0152016019273602,-1.2255128670869588,0.4500351232148217,0.44843704944534324,-0.8662223984236037,0.47752969592074235,0.23961367562976787,-1.0039482327715301,-0.013235187758884,0.4119200102435907,-0.5699501421055858,-0.9406047385456474,-0.7603070471550989,-1.2251303047250377,0.5554098669910277,-0.24429273807005614,-0.3874188886578715,-0.15046363742250946,-0.7294303921341613,0.26308095168927914,-0.6233371475884583,0.31886265205378717,-0.9152012875276334,-0.4370846262295102,-1.004617081099919],[0.8893176549915531,-1.7583785845484998,0.2527718834615438,-1.4396078299254704,-0.7376578258085416,-1.311214155604289,-1.833199609910226,-2.634085986174793,0.09608453363985472,-0.8590102618543753,1.4776841658840012,-0.4959299460227463,-0.7912427546398404,0.4395559847569533,-1.4184066599190426,1.5686133284164794,-1.0342848042421142,1.6336948658103811,-1.6635254101480905,-1.3331037795952312,0.34870841525910246,1.0374856505868848,-0.5101656340728893,0.7958858939465511,-3.1536977165118536,-0.5090883078764473,-2.3371339130951685,1.671266530510361,-1.8318501077342293,-0.3325775225536424,-0.6884375252021716,0.3466728262361364,0.7050764558019096,0.9563488635680139,-0.5646208681700162,0.9843372149116061,-1.1222847617460634,1.729372395271364,-0.3388907082842804,1.1897883348310505,0.20006811510611033,-0.683403332599456,-0.7714410321698884,0.563908883140999,1.3707268964876487,0.14290217163006813,-0.12437440721023577,2.2751493934737246,0.9037408227236554,0.5423254273242721],[0.2648562857817726,0.587365769322092,0.790790110944833,0.8426541410936944,-0.5126485902661222,0.34270056409759836,0.13563962309462452,-0.14386355281824562,0.8296111793901471,0.7416843754977703,-0.23841375004954085,-0.44514832537991916,0.3095378400079605,-1.3162895680192988,0.9891754657781814,-0.5108355792842484,-1.0419596267057012,0.21184999244509162,-0.12337605072650056,-0.035321399106239326,-0.982240944856963,0.6338818097399675,0.02310612584577817,-2.6078305070002967,-1.5383189406204048,-0.8664233949574637,-0.6916588402393896,-0.03130240126900774,-0.3318348619276005,-0.4948398597160859,-0.7327464946916208,0.2663786375344812,-0.41138679338999684,-0.24533130719001991,-0.20159908148389746,0.4048071170465693,-0.6887679758993793,-1.4794014430109594,-0.758882862602103,0.26440374643075526,0.8111392437392646,-1.1427787558341116,-2.0600456957217768,0.8001860127580219,-0.2575626806609869,-0.1720194069433057,-0.40589374898749725,0.12457038388772762,0.5715726035080522,-0.23052507810507633]],[[-0.8779100962693683,-0.5081145275630925,-1.3930863652261094,-1.5118150942584756,-0.652668230351734,-0.8270146281048795,-0.15671336791655394,-0.8491668121006581,-1.5418885274501888,-0.8373496742247782,-1.3627522243728734,-2.751752787425997,-2.4729061554887286,-0.4086699240904561,-1.0323895196378288,-0.23920132611591569,-0.9430956213063856,-0.009482598488279493,-0.30401461309597166,-0.716668401860561,-0.9694590940861895,-1.5135542446416506,-0.1729853929965421,-1.4259083282111438,-0.8660319312500016,0.39672173477934797,-0.7222191783444846,-0.7962211232378602,0.5798255093147444,-1.2389287656563612,-0.5577401824148217,-0.4160230609541754,-1.5404964723284589,-0.8474033691668096,0.6007642501370816,-2.388534472087213,-1.6971265363913484,0.3356745206716292],[-1.7751530556226276,-0.18362882199689234,-0.7844821774221563,-0.6745133985514359,-1.4926937592113891,-1.3522000015235398,-1.7642608265502255,-0.5439428947766489,-2.0158625587756323,-0.7695705838590177,-0.7951047275675752,-2.1988526482786797,-0.43547457708495907,-1.2296442851033698,0.5199802664304056,-0.9387631593841943,-0.701611637133916,-0.4217818381824446,-2.2729483030139406,-0.37948473049025466,-0.8409072620425085,-2.0661233602641906,-1.2008252286135792,0.4096632018832423,0.2571948850030903,-1.7821938467650267,-0.9433908778243663,-3.154607576359399,-0.8291493339910376,-2.2911630649973334,-2.2925910899499193,-0.2330720651145617,-1.4265021630692025,0.34221614423538654,-1.4851177702121756,-0.273342976438581,-1.0706101130598964,-0.007324411377269239],[0.3295065197721438,-1.2709479539771193,-0.038162672158005756,-1.0250518956607249,-0.6569030576882056,-1.1002766810544808,0.3661626082241011,-0.7342105517276365,-0.8776000596511958,-0.057804736323868185,-0.19962994223860325,-0.6584456105758795,-0.236552706926026,-0.1604163001182501,-0.22626586910165844,0.2268435625049264,-1.5053463551643225,-1.27772826147506,-1.0019625064866922,-1.35158152321661,-0.44639959437523985,-1.285692570196387,1.3011591936476439,1.6559631199910825,-0.9325797052302512,1.2756065503407692,1.645329254806728,-0.9846228417647724,1.1391339300637566,-0.8397137132082596,1.643791870995774,-0.5870759777660021,0.5873542483259537,-1.2376609243079133,-1.1508096289796637,-1.3304598266468068,0.9166732658189122,-1.239020073352131],[0.39779177786799685,-0.29259750645622673,-1.0271466221751016,0.062147750124853726,0.5430369319732609,-1.3181881850913328,0.07642515071165672,-1.3619253360897796,-0.5501761094851872,-0.43916150856093794,0.3778644918841802,0.21758483773534237,-0.44042722150289115,0.5087124568227087,-0.664072788222161,0.25114482273425187,1.8343126192016643,-1.7398054387639723,-0.5429096991245965,0.30764332627665886,1.339168493401513,-1.2900553398798589,0.29684498753147714,1.640699004755422,-0.8815561316877547,-0.731628872242772,1.688315627392052,-0.7277332990298121,-0.19282243232578122,-0.11802834511794767,-1.22739681926248,-0.3733088390996659,0.2866493863907814,-1.0354205349015788,-0.15067359851358667,-0.49974348340499103,-0.13407105036793493,-0.2806090577351571],[-0.8248270683149621,-0.27660742954295003,0.06820294201327824,-1.2006591121010755,-1.4474787551762445,-0.38209909736411496,-0.5645896964966648,-1.137440679428658,-0.21840246128795174,-1.1637265858987424,-0.1989597547138877,-1.9304997675596787,0.20710218683154555,1.159673414778426,0.3309177042652397,-1.2031206354984003,-1.8774577819761686,-1.1681689923167164,-0.6846724078464358,-2.399410512935299,-1.4002030880255631,-0.5803092222009755,-0.034141063949120656,-1.1242661392575006,0.5240687448243923,-0.360919784632737,-0.733276354908335,0.7302369018625845,-1.159074317393939,-1.8386734357709853,0.8204204415725533,0.15347622126699895,-1.2818305554926266,-0.2089594039212839,-0.02759095279987135,0.3093987698434785,0.9206520805079398,-0.8112223391470291],[-0.09097798956628943,0.009647476583724725,-0.8706238063845891,-1.0985370799970584,0.22726401786678743,0.1189238781044876,-1.3435066783640068,-0.4510508572224441,-0.5751572354652015,-0.7629776990973341,-0.43800948515446486,-0.20496451264105414,-0.5426082801031976,0.20189818958151215,0.7498699810301643,-1.792071953343176,-1.9935999947921197,-1.102735612141471,1.6713605407644985,0.5101396046477511,-1.857926909417,1.1690280435052123,0.13371399553707733,-0.16542332801099932,1.014214761301319,-1.0783203782506146,-0.14056161650798163,0.25098804789509965,-1.4898143143909592,-1.614811376350327,-1.5894253634790836,-1.0880649766611992,0.030006416711747516,-0.2442908995994926,-1.280808604008737,0.8214435597036891,-1.9292496320709211,-2.2741981649972027],[-1.2434980613025708,0.2079137942296273,0.46328743510673626,-0.576698873161906,-1.2329659753594264,-0.8162977734367017,-1.3570670579551671,-0.6005859473359731,0.26776421818088125,-0.08718309377127602,-0.4823879941235869,-0.3214975262291641,-0.4797527327612423,0.22463408271076926,-0.25100657402647714,0.6815539920779047,-0.14652285038207558,1.355118791384948,1.276096538034663,-0.10577997850738893,-0.5617919617323462,-2.02088396264177,-0.33099914031527217,1.1468489839925429,-1.3579526594442228,0.40535824169406265,-2.777654192039741,-0.9554299318021107,0.46421453589667533,-1.0525292088729903,-1.213985068154601,0.8807543456473995,0.3406437159455069,-1.0701950004080896,-1.069720238753994,-0.8078174731925752,0.5303419860909231,-1.4081089479847433],[-0.8271616139873866,-0.6586007552132592,-1.5149747481968223,-0.09410724013970197,-0.11679425486750294,-1.4485582103842802,0.009834274232246169,-1.1037284895003083,-1.5115417518275645,-1.0135195620245114,0.13654446047611668,-0.8173991032933163,0.12568923774094945,-2.172931123674226,-0.3629596953130047,0.8224399676975216,-1.8809318332340887,-1.926232300123337,0.27298416519134516,0.8297802053138166,-1.4270637476388437,-0.29751468378845985,0.41689827408549646,-1.4841376092534975,-2.058772990090074,-0.06765776226180195,0.6306880433940286,-1.8021365822731996,0.5764093129378207,-1.9686650940575574,-1.7210641871065386,0.142893380158411,0.6880533427614719,-2.0534127345881052,-1.5887500426675505,0.18771732816970224,-0.03997904048718902,-0.8345822100045451],[-0.8335406478732134,-0.10999298634169678,-1.2169853204747658,-1.1735120661081917,-1.5525476620278447,0.01752289302361254,-0.5689503970493601,-0.13003720602583002,-0.05021373844689831,-0.02770836270271121,0.2603140293216824,0.487176118460213,-2.055631345182583,-1.318786485313279,0.4831803908448112,-1.7443579816541914,1.0323659418950457,-1.528547315487399,-0.9800947710698252,-1.4989943029630206,-1.8742253872956103,-0.13980203007284944,-1.797137556753955,-0.0820651905893565,-0.9063771761049653,0.020656585526558878,-1.8214318091278925,0.9764416438282661,-1.580102116780387,0.5105093023410561,-0.9161356384383617,-1.7728150879235804,1.4191782750618116,-0.5893965651924326,-1.7822320355989048,-1.643087872753519,-0.16431822819317293,1.3186366101698936],[-0.15295064058268712,-0.7809505534326342,0.13206658397713805,0.3067847906642314,-1.4669603041889696,-0.1194747868398278,-1.200931867540955,-0.3964075691371029,-0.8231910774937998,-0.3220690414075935,-1.2853263470796157,-1.043125736904353,-1.2617254787329142,-1.39261649188779,-0.4016507463393998,-0.072351549630109,-0.601505962729159,-1.5229844138477453,-0.2536766465807184,1.2900406370755035,-1.102696530407282,2.3230562375776205,1.165236202979766,1.2975811684558487,-1.4263423994055069,0.06951832824937772,-0.6031340658606567,0.49221913989804283,-0.30531095176704126,-1.2976806919779376,-0.24335756875957246,0.5208755519825046,0.16278259622696523,-1.1693174770536874,-1.267645774511255,-0.5113417296440108,-1.2143959309257557,-0.44350228500655564],[-0.5323793265416608,-0.4251861448565767,-0.8309800546535862,-0.8239382401304229,-1.001599204315611,-0.14003124335255876,-0.5015696312241351,0.11480742230879565,-1.3949600353604812,-0.9463606490727198,-0.94402842297494,-1.213471966919445,-1.7070721369455528,1.5531413792760977,0.4194529537713201,-0.8178762764768079,-1.3184231625956322,-1.0568420850986306,-1.4072537295405179,-1.9061386697176728,0.5994022416508014,-1.0109432675510917,0.5293737516271174,1.1373450147616528,-0.7304223199233213,-1.425709269494638,-1.9375926503668575,-1.135051723930478,1.3839337316301488,-0.8326613432657702,0.21329294482167768,0.4461474836717038,-1.4678961932869852,-1.032209650021791,0.8353232614013172,-1.6479884359913406,1.7122725380991541,-1.2872561846976702],[-0.3853983592910696,-0.6872083306930242,-0.6121054456629675,-1.1783596274875332,-1.0119574157080546,-1.676928302383071,-1.5074132798513071,-1.2172557616584585,-1.2936229863196853,-0.1065751948520341,-0.4444231071337,0.6609800436864897,-0.7982174331936309,-1.6478646331173001,-1.7137702458377453,0.750483183572008,-0.26063864089595884,0.07806319155523048,-1.2723998653095616,-0.7604042425786289,-0.961542080349594,0.329908982271225,-1.4273304040443329,-2.000788758256681,1.048297322301405,0.5711463711564096,0.4379448996810061,-1.0225288619903132,0.02717502430544557,-1.1117663557953232,-0.8833637287227746,-1.905733400063525,-1.8789564522350597,-0.842071697836027,-0.023972195747170057,-1.9034107165757592,0.3691996952094699,-2.453986391643805],[-1.7949435735789816,-2.0542732683444114,-1.6322646093894246,-0.3980510062066576,-0.6292474424342027,-1.4589968705072947,-0.3271055353546328,-1.1924721697530374,-1.0939076676773827,-1.6196733255639764,-1.7513551387345174,-1.8676126645477438,-0.506575617955684,-1.8623107996766972,-1.9056408425165876,-1.2030090872520944,-0.9687699546008384,-0.31822170820306434,-0.9523138970608279,0.901119974064249,-1.2410830892254734,-0.5463743295100587,-2.5133162815289083,-1.2617769834099826,-0.43898678654760337,-3.236145167857146,-1.0330657644020027,-1.2372695418503192,-0.21506304574952453,-0.7577446839631337,-2.1321864920869857,-0.46092420449610083,-0.2775784416035017,-3.3159814836162975,-0.6497116948095344,-1.6811416927187899,-1.83611178358996,-1.2923628853501758],[-0.08887135190091607,-0.7217928430543435,-0.5214096133612162,-0.17363899830018864,-0.1478549644807641,-0.4644097237795868,0.08383293770323937,-0.7328374935898212,-0.8330097083175422,-0.7258116558496075,-0.25661116034751263,-0.24439766195028723,-1.4731458912919566,0.7753764290616355,1.449582410555622,-0.7596552923359327,0.32409515484217616,-0.23698562345980487,-0.9342784605378952,-1.6948533965011052,-1.4886659581990307,0.7669010489605081,1.183884884391209,-1.3226004548072816,-1.464108088103485,-0.497072225818202,0.06542651291579862,-0.412285486804982,0.7764699183864728,0.6588702245209855,0.5829110301603255,-0.2789729375409791,-1.617877639798737,-0.767805999717629,-0.8069564384181933,0.23812593496309736,-0.8525015303872371,0.22551249042164054],[0.004838587722980436,-0.7039002156640546,-0.6536442124246069,-0.4661981656318807,-0.6079501814679151,-0.3387197069274476,-1.2729602693711048,-0.9506817918086649,-0.7630162950961502,-0.10008461797402714,-0.2541839091257102,0.6032145999174412,-0.8855579174526449,1.1521225390872196,-1.3013050304795077,-1.477417581433861,0.15957938166452945,-0.19596343483817724,0.7534298297869182,-1.0201604165744653,0.5879439343281133,1.6216058953502466,-1.8312568631385826,0.849355268718088,-1.9190875158210898,0.5844015515102989,-0.5638206944100501,-0.41294156231983403,-0.39888590098429827,-2.2413447710018186,0.1412065128297288,-0.9541581936315021,-2.526117152119484,-2.009739547044474,-2.185360760773859,-0.581287922279262,-1.5695539461848473,-1.513822731381288],[0.14403992217589512,-0.1589750828309198,0.07098163766201199,-0.37169270424871265,-0.4680632540181612,0.03553565622846693,-0.7068258668697156,0.06607870846315116,-0.08232065633520715,-1.3266222942231214,0.3373690630361051,-1.1723014967939218,-1.4759357900743697,-2.268249789390057,-0.9758893942106146,1.0286449211370132,0.45603256517074353,-0.589593672970338,-1.8873076825065074,-2.1806802247955397,-1.9020553843240706,-1.5448930502891165,-0.5469241961288817,-0.22230170940687444,-1.7261394302468605,-2.1484008759402413,0.3237528894362565,-1.431831368133419,0.05532633658190362,0.9174833490224376,-0.4136012553830083,-0.9345849084271918,0.46642685265637424,-0.544021823579535,-1.260180833364824,1.845322026042731,-0.8899194910147766,-1.553095586037079],[0.36374730207544304,-1.6266401711239202,-0.7955580563436022,-1.344773246216443,-0.32298274919406333,-1.3940178494632265,-1.1572719630931503,0.1098142300323496,-0.005930690319364027,0.39435535568356717,-1.5892307864667403,-1.2117969437505662,0.6567831253164441,-0.01063734734408266,-0.6071582468871626,0.6518144761728912,-0.8774114619096464,0.886875323240051,-0.9382974960921348,-1.942193718844909,-0.7557603831834105,-1.8119198631842885,-0.5010071838675288,-1.732634449516148,-1.9658462899173874,-1.0453551209117682,-0.4909313009267532,-1.6144929793966316,-1.063615428558431,-1.6479353427215084,0.36522687862584075,-0.6604088259565557,0.44966897952103996,-2.0022738918987377,1.1486547930809001,1.9290566081277711,0.8924181137780178,-1.0179076788249881],[0.11028092650682837,-1.089952564050488,0.3266031393342278,-0.8172352924017531,-0.12248991619402462,-1.1851345087407759,-1.193735459836945,-0.8026709088483805,-1.7806116661812532,0.08952437234589211,-0.5635153431000799,-1.961639511167285,-0.031662691035373364,-1.7415060517048147,-1.0238983425433623,1.1666813090989023,-2.343130759685722,-0.9244523044935956,-1.2547202583500001,-0.7113220985488228,-0.3385740538759046,-0.5198685102494895,-1.5110818672965778,1.5861035718875982,-1.7270144214147902,0.179151705165003,0.5283573856972276,-0.3364051625475164,-1.8489524052241013,1.759275017514099,0.5589719889876218,0.8821558523401384,-2.2309017821274866,-1.5328591691020514,-0.10264288395568544,0.02757369043140293,-0.6412277225345375,-1.3549307319469235],[-0.5649521002155748,-2.0073654035062223,-0.9199790636361636,-0.960221694138138,-0.9879829174400618,-0.08909975926872238,-0.3481388240057239,-1.8937143194981108,-1.2218191412725483,-1.4446448305665724,-0.6506758970455034,0.6187460725717204,-1.323979375136879,0.17584440345652028,-2.3552357549737257,-0.17695897067574293,-0.1481421446767074,-2.27925035983151,-2.279680113553114,-2.410781276420688,0.2972607264088964,1.2400229500187505,0.019360282242354785,-1.415792374409052,-1.1056540694388781,-2.0468110283897984,-0.944802472543034,-0.9191811343393905,-1.4994665278025048,-2.5075181186327216,-0.15765509501617314,0.3667763708559163,-1.336068745913603,-0.9080673543776927,1.4961516796308583,0.5873887599842328,-1.3367705797639169,0.6345762801181168],[-0.4178567757846035,-0.9141836560592413,-0.9905167537409626,-1.0127176148214518,-0.928066328311092,-0.5541533379410152,-1.123456984433883,-0.5689792181728927,-0.7173608210446943,-1.5283032186270729,-0.6245425751067006,0.005966398912060549,1.0794915119396669,-1.2698286221639001,0.16112512858133074,-1.4107420982152694,-0.6501441560754853,0.46334531295286313,-0.6450363543902443,-1.696096233925796,-1.0643735287041285,-0.8012682696189914,-0.7747233678294319,-0.23439955338582302,0.7730238620880207,-0.9294030923590201,-1.4506643984133687,-1.0267998266881162,-1.2185289381436866,-1.9936299132803252,1.2672830793151044,-0.1924294525399394,-2.0926927842676237,-2.032675910435704,0.955088975569075,-0.22800309823559659,-0.9530684931769023,-1.8839597674008468],[-0.8969710866916288,-0.4831857766100203,-1.1965307122734568,0.2957690541230967,0.20872900984124168,-0.1649024417465508,-1.1040939503865757,-0.9090426908416944,-0.4639052679021221,-1.1653917008749348,0.104688168838037,-0.8882029074415108,-1.5472722752148629,1.056351393833059,1.2596158985986614,-0.9236555436605721,0.7952100076858148,-1.8309238547547118,0.4511495683078137,-0.1871554293517622,-1.4426876189268096,-0.032423098745318936,0.5517895898880787,0.3999100543682994,-0.7460602229351233,-0.37156268556531874,-1.9449086825931652,0.04684729158761849,0.12432261123473033,-0.8412034454105312,-0.1841243234151134,1.2155253624128413,-0.2593613255133588,0.4624341060760683,-1.3692229494075547,-0.10130245609976034,-1.2166172202346353,-0.5450904959042477],[-0.2212129888987558,-0.545040787085397,-1.0496935584993412,-0.18050460990857248,-0.7037749159617687,-0.39204895289452313,-0.6033216953255165,-0.8603302652349769,0.21886936075513388,-1.4085966161649386,0.28346687713528523,-1.6192915665694612,-1.6235955066257275,-2.029879171338403,0.22455575196246713,0.5334336957787383,-0.8721667156960465,0.8575744644375517,-1.0747153214895129,1.2265859169758644,-0.2600226500417317,-2.7733807761798377,1.031735585936091,-0.16958455541316042,-0.47081251405762786,0.33816241115313095,-0.09652547385884189,-1.7415257286679524,-1.439880021745856,-1.2149218386655514,1.0490235040368028,-0.6999367066929336,0.8949640184081702,0.8822405562013022,-0.8163075914097354,-0.24001004869087547,-1.6516598092693053,0.03513519507547626],[-1.006781822657312,-1.8427054478631442,-0.4949762730969265,-0.6893681545386469,-0.47955540280316017,-1.5609703679084936,-0.03606819196918912,-0.24544250075508922,-0.8994347859313677,-0.8908380680169781,-0.9316533330722195,-1.8631235086685285,-0.4764026223211992,-2.3137840827356033,0.13898345716205968,-2.0911637187522074,-0.17581726213627719,0.6722350023953364,1.1965391904951794,-0.5462501994068829,-1.6687141706114024,0.6829699853165129,0.41106454942542886,-1.7157166752402047,0.9666823974530137,-2.0415307893570827,0.6788739364813587,-1.556166242187893,1.0059420129989807,1.3673399256561198,-1.9332608914572509,-1.211585372912615,-1.232511463782868,-1.303743907285796,-0.9320525872836688,-1.311382478216836,0.24339847929661804,-1.3239137376026988],[-1.2802044894422768,-1.935747569821109,-1.346268606883141,-0.6507400285485491,-1.4215598853462634,-1.4461998098038094,-0.022365703526759304,-1.3111820084976493,-1.112348829848144,-1.0205126044776056,-0.5819180622020673,-1.9776102736441197,-1.2636293286968445,-0.7707241037483562,0.4303790008666061,-2.1428021788560128,-0.976494680532336,0.5324033742385147,-0.7960122171727817,1.227890952685428,-2.0598471724025824,1.0141834465425867,-1.6126834202519027,-2.606720900399804,-1.1058991742747644,-1.5495561744849027,-0.2708006102976538,-1.9662840557289265,-0.8989123708504629,1.1239044011819976,1.2712796444711334,-1.1082334556579374,0.31908893548283357,0.6837554113939833,-0.5787069593896922,-2.436197551703644,0.5519516742475085,-1.6208252487819048],[-1.1807765047273155,-0.28400152303599124,-1.254510755070722,0.0548718381091265,-0.25903199900424967,-0.9426163601762568,-1.344837314671322,-0.33710875163427717,-1.716577455259201,0.13902519949300704,-1.4092400847822166,-1.9831885565756215,0.9727864297519272,0.40823175812185725,-0.5624013241176745,0.9742257881166405,1.352802384662646,-2.4037734024102964,-1.7830697521633256,-0.03333335496965594,-0.004259133113767728,-1.6877749887386964,0.6043772978536801,-1.4796544115717571,0.8530812876769791,0.5090810256419092,0.5443077591548551,-1.2932081459456504,0.9671100004481371,-1.2276953237947525,-1.5473511789749996,-1.3796781681866446,-0.27994049825489314,1.364256017655715,-1.8478303006952848,0.5188098129642796,0.6544452930255994,-1.6770152778804717],[-1.3864207509759772,-0.30385021597447515,-1.6950191635020693,-1.6596055494468909,-0.525446708765861,-1.025270912229578,-1.6443614206290498,-1.7714251317200056,-1.0444269126976389,-0.8663652969620746,-1.0243951574768455,-0.0953201087058966,-0.3130450223068026,-1.3880510002004067,0.40808587583302713,-0.49318474191440087,-1.7301163048835022,-0.14422194581264552,-0.0781707425749415,-3.326515485084753,-0.8657888507177431,-2.3468355212261653,-0.4987135031125053,-2.39629638335681,-0.5925473718306535,-1.0246763349468173,-2.6030872510274436,-0.19521751437389032,-2.2788160968119957,-2.4370496756973727,-2.2541885542518942,-2.1401554393130864,-0.5530118687647478,0.2778611043349538,-0.82218987677634,-0.839614160788093,-0.4884008124882772,-1.0007528824324123],[-0.7823705958168725,-0.5087688957685974,-1.2675756480373648,-0.8616769145858733,-0.6065320751412329,-0.39371946268401603,-1.6038116960611541,-0.005232977156787556,-0.26506966823883166,-0.24361068764844165,-0.25185977349227234,-0.07311336149017307,-1.6462298638847264,-1.0821053734311843,-1.4804139294284073,-0.5457799319439383,-0.7342793684108673,1.5697050694691976,-1.1158849465017702,-0.0543466989001348,-0.7952381566286837,1.067412154020223,-0.5078550413955685,0.5653451423728404,-1.8762185354355116,-0.21701935495423755,1.162114417859871,0.7622121379492268,-0.9018596412268284,-1.8283566320193438,-1.6816975229695634,-0.9119070324228931,-0.28335015952384857,0.3671468837788086,0.009133675717634723,0.3062834003476119,0.21405929426057332,0.20094439986425444],[-0.3589787547608064,0.1369926766079271,-1.0208447318962037,-0.9074478822685773,-0.0594025338632104,-0.18414323528429818,-0.1087673917378867,-0.3651709911391096,-0.7492663061113701,0.05024067631582912,0.09030801674805214,-1.3799362998574365,-1.7632995164375482,-0.5085253882644702,0.033175365073918196,-1.1341346794698839,0.93280905258568,-1.6443516478838776,0.5080303602924536,0.8064636942412536,0.4268238736068589,-1.2184342654901075,0.2720183090431798,1.0299441267861398,-0.525174117353773,-1.1309290803722425,-0.08864317328414864,-0.7050162726961926,-1.3454229951116388,-1.4284676240310372,-0.28423202509515194,-1.2318797388613898,-1.4169765234506202,-0.6609662413794989,1.400585406237537,0.6185350998601762,-1.4841003742584977,0.013078809450939663],[0.3168867575101896,-0.6454400493501862,-0.9994292656582398,0.650545563621502,0.19897865663031156,-1.257653105095684,0.06646048849866892,-1.2147935476860776,-0.4789984691372028,-0.6121291147703146,0.1729355840023948,-0.5488102841379293,-0.46056759247176643,0.7067212714192027,-1.4178995976456557,-1.141406822000907,1.974643868656172,-0.7790494893898005,-1.5406220071891203,-0.11990134936007087,-0.5920502318797,-0.1612207797184238,-1.8546366286781344,0.684161869195328,2.5209191653400165,-0.6957075975403423,0.3237892570123449,-0.3451255776636832,-0.014482359924421434,-0.4133241694384875,-1.4075402074832335,-1.0719098156097215,-0.8700172497512136,-1.4792496516803484,0.13977264826369304,0.5238205875689641,-0.10757051149481986,0.04328205796523467],[-1.8753142321789742,-1.372987161843799,-0.9347941571621208,-1.4287072951939699,-1.7497353847700758,-1.6611834876317215,-1.229123967877438,-0.572380701981046,-1.350559009334271,-1.5047164183932351,-1.853048334889696,-0.20689780435633537,-1.599000719340125,-0.10453154907483495,-0.0751529127166109,0.007465808177369644,-1.1886195681536151,-0.5033526819987085,-1.1921786738885491,-1.0312874778986771,0.2762893390250763,-0.3374011430857502,-1.3093457188446085,-1.7710519011146433,-1.1698767310539286,-0.7785378712636829,-1.9174084113918164,-0.14198814363095333,-1.4010361193076175,-1.1848918960276726,-2.464704155399653,-2.578909070871698,-3.061376895223112,-1.0900022977127442,-0.4530997216282335,-2.2559180041998825,-0.10281492575749297,-1.4311945945995235],[0.36698397950261913,0.08536936708800318,0.10748843265567744,0.4053338379480111,-1.6178962816387787,0.0644525194567022,-0.08679963694920301,-0.41213529252662534,-0.06337653980651392,0.045903662257498035,-0.8860888296915722,-0.9122909787332261,2.4976288760861602,-0.9035287886242113,-0.8434442991210795,-1.6413878104681372,1.0719726978588169,-0.7308371995186769,-1.3316146815260261,-1.1271046268671774,-0.652364321437587,1.8564169965485122,1.9121007004087416,-0.9420435928949749,-0.5171151739683032,-0.10555363927270986,-0.7594406363360892,-1.2685704819228893,-1.4014236992859264,-0.3185605602470264,-0.27368293971568713,-0.6975708450760872,-0.7266640992399773,0.4577211334755346,-0.6419526986310475,0.843526761544256,-1.337633539917268,0.7955237207966145],[-0.3630055673982669,-1.2494872837492679,-1.2663406550850582,-1.2210848014428097,-1.8183734642260454,-0.8053609611171413,-0.5145054363547955,-1.7428592434703793,-0.18322927083257057,-1.4546161131256659,-1.6780408894915175,-1.631194702185557,0.1583091971446745,-1.8841857043162835,0.539741086134192,-2.4348535616210207,-0.5101550519744462,-2.359092293499408,-0.45933395017715023,0.16002415282616278,1.0577711338255118,-0.04539072889013181,-1.696551187198534,-0.39575242199596,-0.26245386805250004,0.9390889527293986,-1.0210190555066978,-0.8444338292878822,-1.6501608020672593,0.5730410712386224,-0.09580470939325286,-0.0737005519826414,-0.37524193268535005,-1.062775050581877,-2.6542958112595056,-1.9489514409423887,-2.662277761700356,-0.3045326055940559],[-1.75801128288812,-0.9858289598301904,-0.005100717246751444,-0.1439003011109159,-0.4038474360465742,-1.8779364552191997,-1.604175860946585,-1.583176084172805,-0.31801409996615776,-1.4383144223181172,-1.0364740895492714,-1.0550117377378003,0.7605199775991479,-0.6357938172722941,-2.3311010370883154,-1.3483807296365173,-2.5523598884862073,-0.3593373130491646,-1.5556592216687912,0.22185198818582427,-0.5349889419263025,-0.2168752811409648,0.24312447412340885,-1.3479521517865025,-1.8212552444822097,0.16029272935272038,-1.5603731039190232,-0.9749744400692129,-1.9742080534798532,-0.014999910170374012,-0.952731901301879,-1.3191475219219404,-0.5514149947381546,-2.520236798658498,-0.9756887411697557,-2.0337679282179555,-0.1675235741725477,1.0656870181196112],[-0.8739971969796675,-0.839289817821276,-1.3999910420983857,-0.31320468349481917,0.17230447006466182,-1.3486849235731393,-0.5865597277233833,-1.1941297990762256,-1.040704193407591,-0.4779145991809661,-1.4061773938898783,-1.8734197400443047,-0.3632789987348072,-2.0781944331995326,-0.738114367702504,-0.19763176165674243,-1.4439803540218574,-2.0890155469500202,-0.11073921570152911,-1.617606530889889,0.7139538608458207,-1.3726091693222666,-0.42623722316884965,0.2679121601344658,0.5708845083782771,-0.47438153745651995,-1.2027789635187467,2.214417102441235,-1.1376783006493512,0.8533258734023257,-0.6028716317413674,-1.5058293615375349,0.7927964446702942,0.24720139835748717,-0.667033662009593,0.06734190955495618,0.03031841245786346,-1.1085838937643968],[-0.5491239187629929,-1.336429111611375,-0.4642129252887439,-1.0237847222335035,-0.7349906833660003,-0.8081529552458357,-0.3230950525517635,0.046771251166439334,0.19618551467976048,0.08477658483254169,-1.4100104861746197,-1.2383150787248807,-0.649343158514023,1.170014990845919,-1.5497473023111654,-0.5440850709746157,0.366271227914871,1.332969069365575,-0.13773580180918696,-1.7912942956078755,-0.1353294017274126,-1.1927074706339396,-0.4043623211445088,1.425348156713893,0.029611005515689275,-0.3653646779498182,-0.3461914877730536,-0.24805368133015718,-1.0465333076014143,-1.5228857090938965,-0.574910671935946,-1.3330112367059976,-0.2643431029305086,0.08317369112813969,-1.7277297507649423,0.3562607802016769,0.5891720541271057,-2.1047112069299847],[-0.376860857693662,-0.2058253884577061,-0.06529187135288753,-0.6323896942587415,-0.9881683493533323,-0.9216746797633278,-1.2746806654199396,-0.7012644766635848,-0.5275808519091189,0.048414986010381016,-1.2014371675940636,0.20455792314579924,-1.4016882916915085,0.4063367400773478,0.4246590014393225,-0.6240451892445033,-0.6529321153661729,-1.5666080235102529,-0.0006559065054753208,-2.160612658814327,-0.5938657053889805,-0.1728004623922917,-0.7015107928577529,1.828001204395449,-1.5042051682533772,-0.7334970119764572,-1.0190059977607313,-1.408262298996844,0.3923758478951796,-1.570530102421053,-0.062422879479767955,-1.4118271773356141,0.23510750927452953,-0.4817162230678769,1.4431520458830434,-1.7374922827312047,-0.9994772015137352,-0.14237454179617473],[-1.5935533798328603,-0.8020491109642679,-0.20743314827344744,-1.0807381305969488,-1.218013017003247,-0.5142134096266504,-1.6756711180970965,-0.5213078982888734,-0.8800982135799259,-1.0902935559176465,-0.7125626521543851,-0.6436368507442554,0.5175507593768225,-0.8077342195180747,-1.904602240504773,-1.913554398499317,-1.9255731274456762,-2.433561760132536,-0.5033219536337988,-1.6673266737752948,-0.8059088833680045,-2.66193920235701,-0.49510876183354624,-1.9171737653480585,-0.2491975509330846,0.20816123685432691,-0.16214441436077504,-0.6018888669352912,-0.9851787973555559,0.3676557489388638,-2.7922448300671254,-0.4783907111907263,-1.0283670861582601,-0.8934275847021316,-0.23969550183186222,-0.07807794702078137,-0.39326151344379606,-0.7139409701182197],[0.34281278677334104,-0.6362782359279683,-1.1254106890666622,-0.33205095509737587,-1.2197228619258644,-1.2845612552995895,-0.07675876991237122,0.17985347574653393,0.49081278645181636,-0.046141933496210256,-1.295669946292261,-0.7868651939740552,-1.7235395937440747,-1.0679528717343705,-0.616253438198812,-1.4390228398277498,-0.46027785217855993,-0.10478153448602243,0.21971188099445063,0.3817966818466233,-0.709611412286055,-0.09550863260331903,0.0919991822955912,-1.3239970659620899,2.2615468815995006,-0.02809534237067095,0.38542113852609006,-0.19935070125504797,-1.025265340012385,-0.47625196476196696,0.8541943729468116,-0.8614658500875252,-0.1958127104028152,1.2019115956320432,0.32427076673556865,-0.7792873349037671,0.08702613660164513,1.7533576170087761],[-0.4843572462186427,-0.456278229700052,-1.1919863834910414,-1.2445288152090712,-0.11701608925470543,-1.188633138923068,-0.4617547998287279,-1.2019738906662412,-0.441194375684309,-0.5138326520973011,-1.1438816912711356,0.34815174177233715,-0.766801320147082,-1.540080610161323,-1.7325836939817783,0.5330753868327187,-2.5277271984015,-2.508937011979515,0.8661231385716285,0.46797403955772177,-2.3419649309787607,-0.6457417873673366,-0.9179569525876861,-1.4173563494072685,0.11596933481551899,-1.9593728761280456,-2.618653755916061,0.7956919695197193,-0.6208353843117602,-0.3686252046498954,0.2774422288193678,-0.448933861157911,-1.453714352400215,0.533962808795925,0.2889811799105216,-1.4057855963250572,-2.1838607976064637,0.40279356470335553],[-0.1767924854209992,-1.1329896316428862,0.10826346613389588,-0.9546608589550911,-1.3250604997924686,-1.764338467122464,-1.1671680107509266,-0.8571767861442423,-0.2586424085908807,-0.5336271653943134,-0.24473730946641273,-0.9512101170589142,-1.8731366798785962,0.9068191704963837,-1.6177147478486567,-2.0898263093544083,0.17252994438058328,0.7401261228219741,-1.9052069492809363,-0.16654320796393376,0.22145755068689674,-3.1744248360271885,0.6946626751443885,-0.650392971490227,0.19578561543376846,-2.180426170871123,0.43419498747126983,-1.1054674562268008,-1.5209514790792231,-0.46167023017582687,-0.49453218301705104,0.2926061264697118,-0.39274972396865426,0.6219529041462445,-2.5467692611147625,-0.5569915242240242,-0.7207950541443751,-0.18603884404389132],[-1.5422885159592714,-0.5910836152061983,-1.502198610612108,-1.3197729139712777,-0.314967199886101,-1.70923589397846,-0.5575643513027957,-0.9562603162808754,-1.258243186401712,-1.2609930685034716,-0.8248142145424713,-0.8865157299386252,-2.3803380401428282,0.18497923397858862,-1.3111950797382395,-0.3290005369575534,-0.9311823851990055,-1.169618921878683,-1.815288824306248,-0.5885273706646459,-1.9322396545892118,-0.6643298503462057,-2.290687873481765,0.9012093660830186,-0.9393761857675724,-1.7679203149325586,-1.1427825752085525,1.102135836184482,-1.4854961266949656,1.0575193321488607,-1.1766054611617256,-0.1351725292602732,0.004414456192134795,0.13911919600903175,-2.2257057736182295,0.38567403437735653,-2.298493291685296,-0.4498506177213173],[-1.1251685074052387,0.22313146786824256,-0.05014761931632049,-0.15372287051735067,0.2881852569717706,-0.008904903830627382,0.39363768608746563,-1.5020934803637105,-0.2020245702658109,-1.1630055729781617,0.4537880753455653,-0.10808209670099478,-0.7372521102461241,-0.9512008227221078,0.1573702969543999,-0.5828451046189397,-0.44539993561205854,-0.021469141783164447,-1.0375843953045158,-0.7213876570181259,0.2280203407854609,-0.951794710319276,1.9321577084775057,-0.4883820024020466,-0.7960785868874128,-0.8014550871663921,1.2072618364314907,1.9364153870651344,-0.7578087692099472,-1.1036019982016791,0.25374091434990653,0.5190716827551064,-0.6042920596977457,-0.5854909767451351,-0.29979721785462704,-0.9942885489648453,-0.3534231754093506,0.06988275662308588],[0.20816531161725496,-1.2864448651169216,-0.07673087505973392,0.13714615498759986,0.37927547063937855,-0.7717888908370393,-1.3325914265742858,-1.1105484969252215,-1.03767076053125,-0.8558455900406959,-1.2385387848779201,-1.3179339666933816,-0.06735747079179578,-1.5398048176780637,-1.7857450538149504,-1.5961738043412306,0.6909074498055605,-0.37451215439973246,-0.48517408759719177,-0.6945607496319129,-0.9120343641705858,1.5548403398341548,-2.1573643932208366,-1.6391177367276177,-1.1696940713982626,0.5907579877566546,-1.1448867052881138,0.17428570902511256,-0.5036396897442876,-1.2842049867607266,0.35293076138534824,0.97117231830366,1.6031874046596781,0.14124859438006496,0.33357669425049186,0.04821233661754388,0.8843897470040137,-1.821464044327544],[-0.1616318253539951,-0.4801734761866166,-0.6406648650897102,-1.0867319860937288,-1.8278177545931973,-1.7028069781551183,-1.8429769530059195,-0.7388866217526957,-1.363435566898915,-0.40491935553350095,-0.8013635055962625,-0.4920101091783115,-1.3048862370414138,-1.3018552069525544,-2.3400358024934937,-2.167881598408544,-2.2192591266559174,-0.9055514860372633,-1.1569069390945053,-1.611099771228628,-0.27573521689575453,-1.9033814780692806,-3.1321898090118223,-1.001630819356032,-0.8899813021663258,-1.081806526783489,-0.807285007103002,-0.532403220387917,-0.3402456501095156,0.2930475114405209,-0.615229764677247,-0.4389157929400756,-0.6518644017912227,-0.698036299088111,-1.5194922549547258,-0.527544729198949,-0.7827115791018632,-1.0705600904882584],[-0.5113831481126793,-1.0126836344812458,-0.3509674865502422,0.22594190300812078,0.3044146870622561,-1.1487908962529285,0.05567102656900715,-0.7794555779985994,-0.050491859974374775,0.30545236174089585,-1.3651328362807513,0.214803163345444,-1.7324920100162884,-0.23185808199926494,-0.8783339314416881,-0.47104389925278195,-1.4883895388796178,-1.148774251628567,-1.770863192619823,1.8131171096432332,-1.6472873903849765,1.3298130585015955,0.11111149724514739,-0.24488167792923146,-1.430554834097601,0.7188335706994364,-1.5587095710119132,-1.6063057693285716,-1.1861911805276273,-0.6006387609056364,0.5144547619177667,-0.537299779864307,-0.6587482519998517,1.7608889403831425,-1.2238394816469642,0.026769667412351605,0.28409271534823344,-0.28562796457159495],[0.07903448786538524,-1.5484676752387698,0.356779099684602,0.215699667590134,-0.3128735578035792,-1.5094822476711351,-0.5710469073573367,-1.4723852022571893,-0.032750031230660434,-0.6818417430682782,0.2416948838461821,0.6956912113193483,-2.1987210254873246,-0.1261603234462306,-1.2559533426734877,0.36298346642704016,1.3187814796392436,0.3803348713243036,0.46476631444571626,-1.3404123397963845,0.34184666018250975,-1.5663293634409194,-1.9361512069373812,-0.4529150988110415,0.6071187963669014,-0.046957562512045574,0.6980701772490499,-1.3866164612971228,-1.0579233307223304,-1.5059009166990833,0.3366442441841941,-1.3304046582535893,-0.6490407261606471,-1.5474835825675994,-1.023033875973784,-1.059122353641555,-2.0432245009044747,1.3803538035618488],[-0.6235533734350409,0.26393611002049755,-0.03526263042592032,-0.39958091207338886,-1.038444207030783,0.1164367241871151,-1.1654340004122423,-0.5995651311742761,-1.2258443981170009,-0.8959255052279055,-0.10411910000047875,-1.291668127730547,-1.1317085271832028,0.8065342369898691,-0.6100110579784713,-0.3618992052108042,1.392626266345814,1.4534676091410967,-0.7615678712553285,1.5530224571269358,0.019684172311572223,-1.5209329224457144,0.3689070027369244,-1.0812181548240791,-0.8210374243243905,-0.04175052537581185,-1.128728209879457,-0.14207216733023512,-0.056120693274308735,-1.2612539592238925,-0.16100919774675518,-0.5741586786541371,0.9250000033212401,-0.5609194528417571,-0.27260054477961604,1.4006721878152992,0.7983604720703414,-1.5175844164512537],[-1.218145726915532,0.11397342017670525,-1.097113104573105,-0.6640493488539725,0.3881759954935485,-1.1735059953586386,-0.011655151378969927,-1.53490672437403,0.0473280005081907,-0.9119482882504567,-0.12764576882271084,-0.8352429100746105,-0.3721144521999691,-0.6017503766915754,-0.4134143481901745,-0.3369677370668865,-0.35597806012448713,0.45685406561661523,-0.4571252675353593,-1.4122512758932693,-1.0502067739027146,1.220296169433849,1.4716513819204669,1.733437773094333,-1.0502818413678585,0.1995182260216637,0.5427908718605442,0.21655352969935554,-1.4240843786215738,-0.05362739067343428,0.6428126781625493,-0.8298716334772345,0.26591693571444613,-0.36986389986787926,0.4118246014305307,-0.7233607222321562,1.5305871898258212,-0.2794533077937417],[-0.821883315617038,-0.3567900614077474,-0.45550779376478945,-1.077372679896793,-0.8042879735947106,-0.8572138993884646,-0.09200503288901293,-1.5558179419765532,0.07040081689877516,-1.1737783378895859,0.1472587695864469,0.870426229334601,1.1026620659893567,0.46740897742501103,0.3354731191675702,0.9619234822483838,-0.30205266007780324,-1.1343981190446326,-1.3549693999062238,0.06343538987277163,-1.612019917176165,0.2396257192761899,-0.2352145803841236,-1.3295509896433073,-0.9154025951994914,-0.015806920157978348,0.36295162647943124,-0.7675335399664379,-2.1407175155126743,-1.6272592454114714,-0.2437925236982637,-2.0038522270865458,0.31668090395202386,-1.624789632976234,-1.5452996576671483,-0.6361245575295322,-2.2291248223152977,-1.8141541177411162],[-0.825568057614348,-0.9078156024438787,-1.4555857784712272,-0.6613985535398784,-0.388734020733989,-0.03893884066820541,-1.6374745299159887,-1.2144411751937503,-0.3075305295534028,-0.008458590143949032,-1.7301925384507568,0.7633163031172279,0.9626187257638776,-1.012121848747218,-1.510905133810933,-0.4255659036928958,0.9710635416644237,-0.9144460926449867,-0.3953684601362351,0.677203783365574,-0.2462622212539511,-0.930484105346181,-0.7800706025480246,-0.8972906650340423,-1.745057047526936,-1.2182881944705235,0.5269787825229257,-2.5076090304244674,1.0553956445840635,-0.9729319621921712,-0.3581965197267921,-1.99708725688983,-1.8623235354606416,0.6081389974252888,-1.4417102680849836,-1.723172884572185,-2.2835610245885234,-0.8857982953008439]]],"Biases":[[[-0.2464254370341246,-0.34370268871679654,0.2766950491216807,-0.21338165892942726,1.0054776645686172,0.08466967402506896,0.43078637483391735,0.18292850371673747,0.9138840977872366,0.38111234029524427,-0.6730803232515961,-0.20316912697263206,0.5560618494920094,-0.2899221058262583,0.3841096503973995,0.8273655440930502,0.4623270051370585,0.3839498130499889,0.6286817878724904,-0.8802678440614294,-1.0634809388823387,0.13887856625655098,-0.8194830147187695,0.5209819172018882,0.9611347131670129,-0.398923081905747,-0.5246466195800407,-0.2137536204276634,-0.8074205451797893,0.9698017277192891,-0.07233371448508674,0.5705632894213595,0.4588204519095978,0.3280706093295076,0.1597800269432677,0.036237337894090865,0.33846536419135365,-0.06242564596222976,0.941049698393034,-0.1522706620854767,-0.04364092401113971,-0.0771377360681008,-0.576333374735757,-0.30992855619794196,-0.8232842096412664,0.1221742360636381,-0.3793524710768527,0.03700403725248421,0.3213508482666535,0.41689607016378305],[-0.30811074473576416,1.4103433096640043,-0.39412415517133437,-1.6110096901591404,0.9392782495363895,1.1548304136564,-1.9127708976549747,0.11345170616861577,1.4566030812962099,-0.16407692887546096,-0.04230640979625699,1.4968367763617865,-0.06008582281589269,-1.1854757588388993,-0.876295401646328,0.12174254697957732,-3.1064975292892663,-1.7026768755173223,-0.8425524505749123,-0.6056611476981543,0.8242239317882861,0.37521474047050374,1.5638727234737644,0.3855710600447606,1.585134065703969,0.30928143833892574,-1.3001619116085688,-1.2077767370212324,1.2850258673825492,-0.5074837007041526,1.03551867011161,0.71455373978484,-0.4729271395257903,1.9038417588721388,1.4702357408750395,-1.2947631751373379,0.9568283391494041,1.9039189524813993,-0.396736752413234,0.5510068646039029,0.6300820341795671,-0.9661991217837167,0.002447249217454934,-0.4775400595724874,-1.5200076962068052,0.1321489124350644,-1.2472174682279553,-1.9596468498505633,0.05416390059826589,-0.162184859668941],[0.24757781160549885,0.01897956030164205,0.09866684729022415,-2.098917847265432,0.31218182187745813,1.7115215504293335,0.24712868073715835,-1.7597727233644913,-0.2682249499308578,-0.608177684523514,0.7737701869493802,0.5039573137954335,-0.25979031075997616,0.01093518027377927,-0.4908526400518967,-1.0153738054095152,-1.9199580626802166,-1.3633663516381505,-0.019021363366692155,0.6454188478433254,1.0264830291393332,-0.11812591853633474,1.3036581752903815,1.0182254053934174,1.523489021078536,-0.553286861982816,-1.2882721592607231,0.7598480938942275,0.3251959840793474,-0.7459393613743656,-0.2722433143407012,0.6534245075003051,0.3372377422482807,0.539735372886953,1.314249480954395,-0.09640918565518704,0.1148406907542442,1.2053753379640768,0.15423274769527567,1.0701334719737385,0.552833477869374,-0.9254630016758821,-0.9044581765058043,-0.8817830087045873,-1.719645579023248,0.4767989740814112,-1.4389797885330828,-1.596565605317554,-0.2670860854253213,-1.1370603275100484],[-0.6514918135084077,1.5047628189184843,-0.19420695712700717,-2.428749680087259,1.284491995205525,2.4520948134355796,-1.4933661029582803,-0.8326505175882669,-1.1417530568990524,-2.444529047820239,0.93419005364861,1.7489641086803744,0.014248667845176442,-2.675769310038634,-0.9076965116478902,-1.59518206500125,-1.965939985133191,-3.3119686064380778,0.1375029286370471,1.5775157091700844,-0.34250447239762477,0.36982138942407017,1.5566614409121755,0.9519114891462923,3.2999582436206354,0.006285150082517439,-2.9108176287793928,-0.1775451556455291,1.826944775368849,0.8298629354564317,0.5824054645583211,0.3514902236004645,0.09983983168243163,1.1094773108886118,1.621501504604264,-0.10775413829707563,-0.6206049249540169,1.2340982429305263,0.03472729291464629,0.8787730824490906,-0.5161212447908001,-1.3900174080261034,-1.2431555256260458,-0.23530125656207554,-2.481918169495204,0.8122242415057812,-0.4404699119898415,-2.2849432232093854,1.2238739116400612,-0.8697016049083429],[-1.4175791491925835,0.34983919363621097,0.5490275541541011,0.7557662164643113,0.48024039878372204,-0.5136616236707728,0.05639638051538773,-1.4230052633122703,-0.04336487900528055,0.7274994715872348,0.9039926937658862,-0.933403640028978,0.19675861092025584,0.2764728727197343,0.7072208657478559,0.3364210522605232,-0.08498762017344795,0.8683742445111459,0.5798860043208874,-0.5317838099104979,0.23962677257805448,0.6076643830209041,-1.419424657308525,-2.0882906503824756,-1.5816135104517735,-1.1087987232924068,-0.509861180949279,-0.2508151057558644,0.21358814859047992,-0.6692624448928971,0.22312553625781048,0.31720508106133555,-0.03367161743418379,0.5444967377689496,0.7655598258306693,0.6878219845809747,-0.13068619989216565,-0.6771796595406626,-1.4273210296144274,0.5333143774734743,-0.29588198175543473,-1.2156552790128055,-0.05762823921014055,0.5402878152476203,0.20395642287391638,-0.48015684814286114,-0.1581927000432234,-0.2208178397018986,-0.5121178928836226,0.5163852968906134],[-0.34735683018668007,0.9990456094775114,0.8254575587429499,-0.31216427378394884,0.07549972313534237,-1.0032843212833042,0.3162773466149078,0.20879942676463142,0.7240788058708229,0.7661739285726349,-0.41307009156480834,-0.7207165150838137,-0.2988833766095274,-1.5680151172427226,-0.5961429958049068,0.6204865542556925,0.025672083397977954,0.34765514968696026,-0.0439425443216028,0.34440076295418603,0.6629686170401498,-0.9259127786175319,0.6513157785696709,-1.3601165457100977,-0.9978530097995538,0.34360793698762215,0.8959359299901809,0.3023922675523126,0.8411745174952768,-0.49695037093777855,-1.432495804667771,0.3731019575063783,-0.0714977546015096,0.12614834496082777,-0.49657861398922787,0.4212671448015469,-1.0593840974234794,-1.436394457150211,-0.48955318925118363,0.002531966487369743,-0.17174918036338713,0.33799934622673555,-1.2567156985910783,0.6451465500038662,0.4433095136919076,0.2668121686074923,-1.137048957928188,0.15042898297424395,-0.535319305425553,0.09975565115739324],[0.3552779112775542,0.35051240471656936,-0.0402661389523839,-0.04208958162270269,-0.7270059015496129,-0.5501937250248939,1.42764020078323,0.8345343892096078,0.1940511284056916,0.43969296501678123,0.9191681206747917,-1.0088000213879103,0.7258934102635461,-1.1754629893031674,0.6566749883009199,-0.6723004378701515,-0.6042388170533205,0.9553540043542997,-1.7493481956161376,0.016191565395256055,0.7494659264182691,1.1847126168849689,-0.9193451072850364,-1.0247995924404087,0.4914668413041973,-0.28934333909725485,-0.26961364499003715,0.5815336344675172,0.3176271412043503,-0.18530106736139026,-1.8698839449998803,0.30531801710308804,-0.11150573208171352,0.8302729934527421,0.28110089393396054,0.5431796067121237,-0.1849681170049118,-1.303471720926739,0.9381941838593304,0.5995176597042005,0.6471456120402412,-0.46154817194957537,-2.4350742783264403,-0.6139036144432076,-1.0611293638929455,1.2469945638215172,-1.3124106656223422,0.22094180433630395,-1.6403278962240777,-0.21855334196968945],[-0.27650493106363894,0.5536836581491392,-0.13477802887939722,0.9087340423690465,0.11324695109679,0.1600524947630942,0.597215307030803,-1.5716775147457398,0.25441548646436113,-0.22632834120905176,-0.013396353374955306,-0.584805333606716,0.9504822889395856,-0.03183540369955994,0.4450503798549456,0.46695832479212085,-1.5906389240613423,-0.30208526528279495,-1.3996487491235792,0.4814645563041467,0.1253785511717006,0.635558560649199,0.13498501052466225,-2.602225128334036,-1.0615457381611961,0.8067639303563946,0.8765295628689854,1.0364924427802518,-0.2916975922968549,0.33060670631683053,0.03971516521128302,-0.2555397097438711,0.7780600895614834,-0.10254814649001034,1.024872064054467,1.0133062551156247,-1.1545346320535628,-0.2946264362599066,-0.931112079391387,-0.47147371733559174,0.31063469155136014,0.18256576303305655,-0.5784503429938473,-0.4871225780401634,-0.31581090768673664,-1.0003826378490688,-1.207675107125106,0.8018922339361162,0.7595898295934167,0.1877217414454252],[0.47231121722218,-0.25813971741946506,1.191491402731548,-1.3465422856172276,0.766675771147526,0.35578286795607894,-0.4127490082309474,-0.4701397720924694,-0.24419583648081442,-0.2886329985610318,0.4491584476112005,0.695148037250366,-1.7037837512610552,0.2300786215560087,0.6665416830372871,-2.0565541371270406,-0.6055669206976061,0.07213832471380706,-1.071411595033551,0.597554797928706,0.31860364596276175,0.4568726892532643,-1.61638468020577,-0.39028160303927445,0.5504092696533363,-0.5032422139471368,-0.38635253766583205,-1.0660899467646174,-0.4544514077277861,0.24541946080101973,-0.1343967050875568,0.6684244193355454,0.21286020304550574,-0.4960970694724599,-0.04831801389130388,0.27741678375870943,1.115345808862238,-0.11652231573153625,-0.8676560222925155,-0.002648868349011621,-0.3561610018522002,-0.6152524458760387,-0.48230054684942747,0.4858187434675572,0.2942067798884394,0.521917017012845,-0.7432606116891112,1.1500831991245841,-0.2056299249536334,0.3931355122199155],[0.8802277585497935,-0.6312477608093352,-0.07436352180703687,-0.4445681626698763,0.8465620524380781,-1.0459284121428614,0.14096494597624531,0.28230514558116077,0.7432859601032961,0.8043354472662286,0.3756621145099099,0.15147157226160354,-0.8150763785906606,-0.9454229873767861,-0.387749808983114,-1.7946222926344273,0.5570693068793964,-0.44037603215844456,-1.777905978314355,0.7625896495490203,0.25011595177754764,-0.6098578271276252,-0.8923718650002092,-0.0006357665533571673,-0.07280991944507603,0.7392976772588229,0.8508170390955243,0.19217678108865832,-0.6525974877147337,-0.4885125659159068,-0.4685746709100826,0.9132832355811947,0.47486230580958416,-0.7392280153625,1.0463690717055891,0.07439399563502505,0.7982159273636509,0.4985892605829252,-1.0793971975913759,-1.8028262879896688,-1.0462492932238656,0.292280864204195,-0.3588948472306441,0.636727843464567,0.9693017606062297,-0.28599088127123373,-0.5933916236045355,-0.107456484360692,0.2938617666135428,0.014260416846821028],[0.2887405173325908,-0.7544462297583461,1.5762127754925104,0.16589551539173372,2.0575318522651127,2.413981224583799,2.602355617681746,-0.9071015449548927,0.9477772554314098,-1.4799147072409338,1.3283453537002547,-0.5611217275807742,-0.5064685246638874,2.3750628093215473,0.2727413026114841,-2.0099392369436453,1.0833681026297506,-1.987180293709591,0.03515456053703684,0.10798377690846547,1.9749335456879886,-3.4539565260912766,-1.8586778996579219,1.6932326486359925,1.6434093250242052,-1.072304269700322,-0.35800409670016536,-0.37313123128260084,0.5316911094413244,-0.6080460298005603,-1.2693517982571698,-1.134965031883506,-0.14130519131052757,-2.7754654420716514,1.172473118749423,0.8121137275535999,-0.36865662312609687,-2.903099064031232,0.16851016879524067,0.036703186635167875,1.729706118792353,-2.0200267389950737,-1.5282787744898512,-0.8151667305293089,2.012160985377661,0.8683849714377468,1.8302618470430982,-0.614976887217745,1.2977932160180872,0.4900810102664755],[0.5135958744509066,0.23434319315684946,1.128511287941464,0.2390006123159166,-0.26297972206968145,0.4183657148556716,0.7434136270079211,-0.81438013955632,-0.4608604576897063,-2.231974307334206,1.3599794253262663,-0.0629390779247578,-0.7821942374843807,1.113847174328377,0.770427044953861,-3.3971269747508814,0.3029897014400717,-0.9965201310245958,-0.3326936583385607,-0.11024301207127304,0.7241625939720416,-2.758148330012341,-1.6782457983222852,-0.6198052366879465,-0.01199760293763541,0.8197542155757618,-0.8254024234912799,-0.21389004192458697,0.05319322934352397,-0.04220884944418397,-2.103221402389114,-0.11232265724474078,0.8532119637073953,-3.934321069085945,0.5984545307056174,-0.1260304635490608,0.8498967795963819,-2.207630679202905,0.47977409433293833,0.7024953914161708,-0.4199535414655655,-1.0145384998931481,-2.574832346980342,-0.4616917328736609,1.3604833476967262,0.7832375043741147,0.256424661031497,-0.2952010927458329,1.1533150662812683,0.35697669440881064],[-0.06133685778980323,1.016686848479042,-0.2916812082246036,1.9882999531541707,-2.867295137812215,-3.7427681259778383,-0.5426906849862708,0.36782997671316486,-1.647127999120813,-1.557277802456524,1.4773311853847515,1.2561487908885924,0.5763581817628339,-4.675839624284225,0.24390772256099105,-3.0902768839333175,0.24775173406322812,2.163762846133656,-0.4227065448609936,0.1670283031277206,-1.9958622027419082,2.6284912021749354,-1.4156600784791695,-2.9932308706753235,1.2496806783340861,-0.42850549802041826,0.22158521424967248,0.5970811168040131,-2.017295229339637,0.5367401800157027,0.41476155869696707,1.4238585408921811,0.07925573296579222,2.74766203452333,1.0143303051435293,-1.4251899784992028,0.44291370281387815,-1.7383543639182129,-2.104516276452648,0.8096032623184624,-0.6050207894947974,1.4013503103605136,-0.8083084081573783,-0.5558786726623697,-3.9619950944577376,0.5505203029712497,1.0194586495714264,-2.3811355147701923,-1.6933876778185704,1.1895079056984148],[-0.6344960410131244,-0.3561518228640349,-0.6959457004827133,-2.558367634791496,1.142012604728152,1.5349030576006488,-0.46677240363574046,-0.6725825448851113,0.8894783662554985,0.3020439679651824,0.5077263992191586,-0.607875971155678,0.02781707875523292,0.6625334891651654,0.11859054630479944,-0.2131657603833839,0.003703735356252222,1.4881321089288864,0.6627146179841138,0.08358805441913178,-0.2592781219560241,-2.7219993434098986,-0.3506195436629709,0.33983107825410724,-1.3563391308383534,-0.9067797465111475,0.5053257890804088,-1.88546283841315,0.6263176785979924,-0.1533650143298275,0.4649123675326114,0.16735944201730893,1.4490538753031983,0.7693083476072161,-0.17268641378419605,-0.646178713402952,-0.42536432176156397,0.509300225558982,1.7233433294457,-1.9425888118277752,-0.5187104321405173,-0.7951463448602384,0.8674234037782077,-0.12118858506458681,0.7356770838762272,-1.8226825429701143,-0.7901409653090808,0.39122133670787235,0.07549118544939097,0.9982260653167409],[-0.1780107141265198,-0.3254932498039141,0.07193062322646115,-1.387683361674194,-0.4380425327063108,1.3488083596157585,-0.5498223850519779,1.0564984151069923,0.5572511243316615,1.2487207711684736,-0.28404899859113625,1.014513366679529,0.45609944713493294,0.10076156720940921,0.3756033627052174,-0.9950945326808778,-0.347011822105285,1.0558805592825504,1.0706231452960024,0.016026353049549292,0.426141785282566,-2.074357635637962,0.6588294438147665,0.7948940570392597,-0.5642919027524921,0.8347221662514785,0.8702636531836692,-0.23695211449772483,-0.25136667543674085,0.8070571973071297,0.4215359378364516,0.30601680859315095,2.2632116721393367,0.7429138305598507,-0.1516307794204147,-0.589828481318725,-0.8345116396664092,0.600048807034109,0.6673161265446581,-0.6227251616732951,0.12094635334897556,-0.8212216817329234,0.5135994678645837,-0.35247872479029446,1.2780322778075819,-1.123029612237254,-0.9580539002265607,1.416771724453757,-0.4941887002503059,-0.44380126240093765],[0.72138615225101,-0.1363706020978486,0.1982799794459966,-1.0244739508646326,-0.25973074157262904,0.7016762050747791,-1.0549269605387073,-0.6668140186166358,-0.04348921592301449,0.06923099405606593,0.33150659199123145,-0.38597588541538064,0.45987688013280453,0.7749322785731987,0.7206259430325131,-0.44847811811121896,-0.6691996095300035,0.3588526738002082,0.6028892851159336,-0.0356641397949373,0.1855120983146391,-1.7695658033335555,0.7765378349937723,0.8026641459015998,-0.6473425667153269,-1.03174482595608,-0.09449232203131722,-1.1160886878369722,1.023800321244577,0.2637111498542088,-0.1562196193644715,0.3780623861469463,0.766751860433348,-0.07770572620541062,-0.7010937895741615,-0.7547463980837384,-0.7715697863663893,-0.8748784319619262,-0.36358769743884467,-1.4331941096441194,-0.13864277307284795,-1.5644445545258128,0.6969811947109965,0.5027841197209133,0.20083530327770774,-0.227827147989298,-0.3995935685240019,-0.6961396555434669,0.2563784178840334,-0.4379940179522494],[0.5117312781719471,-0.07460843615449873,-1.5595400386886524,-1.857653607056318,0.9506241963183636,-0.7149733096586399,-1.9536568808726236,0.18698898526369576,-0.5292597751643039,1.0204593883116764,0.4618604748111291,-0.2941241488674714,0.36769515888302184,0.036948400712530825,0.24877950176354624,-2.2755499224469524,0.3943844058782603,-1.0075968548452472,-0.14992113125991674,-0.20440378559819747,-0.9757769851444971,-2.2567732562809897,-0.23057809071502114,-0.6726205733092139,-0.6466789735956896,-0.28122237344985523,-0.2781893791297764,0.7979188630893788,-0.3504695651469273,0.6519451114026386,1.02357533928618,0.20963163887491468,-0.024009941500817766,-1.0513328356899938,0.7217813416591428,0.48739456218077853,-1.9013281839366298,-0.663056100817497,0.7068650997088857,-1.979081397574928,0.23865990730247466,-1.6762665100436671,0.5837738563264546,-1.0158433778332194,-0.7460060847040395,-1.1138841108087647,0.49727432695715507,-0.12822146370652426,-0.709788506152551,-0.6853262756643491],[-1.0240326227521854,0.22336224208595537,-0.4562670631388043,-1.3334177498928008,0.741105107349532,1.2283379849858496,-1.0270676066252922,-0.4339495523211629,-0.8932467839846966,1.2808168314159698,-0.9816033400993138,-0.11883137284862394,0.48430674451900024,0.43452242938185226,-0.33766938736278285,0.6923164231540723,-1.5230076476949457,1.5363072517516,0.11084080690768176,-0.05354176765670318,0.7909000794003652,-2.7038535523301563,-0.600266327450898,0.14095084252841722,-2.021224014421039,0.2148290077757601,1.1372089148121522,-2.127763588677365,0.07755579298434391,-0.18758446162129017,1.1187470724732467,0.961902396830624,2.0604361631665706,0.39630988539150086,-0.5803906325554871,0.4709087392733371,-0.6204897566184592,0.03100527222168804,1.6621578084095385,-3.0852009976696517,0.8535773684951407,-1.3738143330213388,0.6829599009919747,-0.28375142806748765,1.9692814475386842,-0.4356589009000608,-1.405105885091571,1.0213514305150335,0.7915443531227122,-0.7453017951638741],[-0.03168590841059328,0.7250913351656989,0.04094792762264021,-0.6647404879755348,0.008834930324221517,2.326527460069636,-1.7273003359209314,0.6842804511792463,0.14996503520365942,1.770974937216524,-0.29112638553938547,0.528610619475116,-0.7626479729623491,0.15773070788420526,0.16332191496011125,0.49979675848748367,0.5252626784113328,0.9061624958459756,0.838049680277887,-0.2856267766600232,-0.439668858136131,-2.0660876578182243,-0.747652517736827,0.5308562147453546,-1.8343431537524306,-0.23725233797973894,0.7692109951112469,0.06146252843057205,-1.085112245878552,-0.12325807579161618,0.32143722094858196,0.6305901600498104,1.4621451432953556,-0.4091542246555569,-0.2687940636019588,0.6035763117141891,-0.24299430015155782,0.7012844840049404,0.8441252804782943,-2.4960772472336137,0.46974864458934784,-1.296629599785338,1.0438563299553276,0.7514611756996199,1.2237924391542525,-1.5100183053491112,-1.2861613673050627,0.11975536859975916,0.2569993899908024,0.08370731543564383],[-1.0484457557570814,-1.1814951402454894,-1.2966667513365753,-0.24499262267538982,-0.9610935537743072,1.04889767620986,-1.2227089045310442,-0.08958720490241433,0.660693190775494,1.100743717659206,-0.011170679733689692,0.2893404354900177,0.020234539003410608,0.9276801751318934,0.12083198788441603,-0.40062909062219837,0.2832845241457985,0.48461330993702445,0.4636934577631068,0.9041432987835961,-1.0751765551030972,-2.2533009690841634,0.5115318301220603,0.298027223111892,0.016365655848578107,0.16800260141185808,-0.5123747949209777,0.2534238699207908,-0.11717276472343513,-0.08747092923477003,1.0190627417161207,-0.6740914625852056,0.2272414176128444,-1.0150927247918613,0.5876672430393186,-0.9743469491475811,-0.839740898094177,-0.5004878172455528,0.5427395951614917,-1.2517610848370575,0.3907507066568108,0.7949979037869024,0.061127503362055094,-0.935713634786338,0.438068244196141,-0.6717662871945559,-1.5387395073157062,-0.5745404923898288,0.4765257922583449,-0.6881273626383718],[0.6891631941142415,0.6872818991422937,-0.799526734464972,2.396043007696413,-2.355425296629627,-3.2163987861945245,1.0620184992771737,-0.6006787618659768,0.476182530434027,-2.9239162955572073,-1.710143366366247,0.42558713500161544,-0.07984246952932608,0.36564781039169986,-0.1428479639321573,-0.12259780428356956,-0.34459584655056213,-2.968455061348615,0.7416620258313422,0.7486927407869826,-0.23241013244050016,2.1767063323565297,0.09496860980833709,-1.18615475797201,1.9935724428375288,-0.6688391408107623,-0.06438614210404812,1.9172482617770903,0.6462631244263016,-0.2270350194903325,-0.08894542022923412,0.8799058271743544,-2.344399678756429,-2.380452230970232,0.7125187984251947,0.38439736323187157,-0.6091369329452139,0.2888015604966696,-4.362514613647323,3.1043913482301706,0.5693376412422738,-0.9626599837664164,-0.8143991486027632,-0.32351090812320427,-2.4385068514072312,0.318362771282586,2.4049245008207656,-2.348244714925663,-0.10254601888809677,0.35450139744321363],[0.9850129324042911,0.5018254785342358,-1.977257180054867,1.3699727952770315,-1.7086509615133596,-3.9725174919896964,0.8095459542265956,-2.141715470641378,0.24257007648682344,-1.5983896709371084,-0.262854244421968,-0.8746201911123965,0.15982405937645558,0.8383147886079626,0.46293160297002744,-0.11085265905397887,0.43039260241178373,-2.5649659824737436,0.636274418352444,-0.45819751070787645,-0.35861855974768697,2.07549786266837,0.2959686810869978,0.014669074507513686,1.4098597998133553,-0.14983184329111116,-0.006786079817345506,0.4909986075723409,-0.1792574559526272,0.062195136100892834,-0.43461161699305734,-0.5163350030231051,-1.387699736557596,0.07435790876054318,0.38709677084945515,0.7947734477743841,0.2836051788799406,0.21009323821737885,-3.6607091777434317,2.4329931699573546,-0.5806187205161001,-0.4054843443289342,-0.8618866929702956,-0.8871923917836172,-1.6206685728523402,1.0306722613568775,0.8395372427488159,-0.7997545794400172,0.043483906971420176,0.28398719233914743],[0.5489780451896408,-0.3759158204525264,-2.753830639802981,0.9970706942007148,0.4951115728895569,-2.043595322940956,0.6987519815307186,-1.092138843541422,1.1826630972445826,0.027386666185199235,0.23426816057040176,0.48368288440933827,-0.5734285768378592,0.09565297897020725,0.10544061836124366,0.3942317576551181,-0.2116120963731385,-0.6943363312931624,0.41571520799435024,-0.9866938480107941,0.49232555468081696,-0.44932279045292073,0.47010021154045245,0.22180540302897825,-0.08730034717525235,-1.0437296658524486,-0.5413426890710691,-0.21704670167125006,0.22490903990109892,0.3697728074914609,0.49527909234434386,0.7225627109161282,0.15943692562959524,0.5665617246248177,0.6017040553518623,-0.5586080452818637,0.14557498864562876,-0.13076353009453737,-1.5385127935130325,0.10585085476863658,-0.23304803334835478,0.4476088982032165,-0.6229989954958421,-0.6563965739349982,-0.39387298165903667,0.17770285991209347,0.371613054869475,-0.45338644686914786,0.5046528608967118,0.8772699857719635],[-2.8793861893672843,0.8262100624219908,0.3742679534216967,0.07616371383831137,0.597961707327971,-0.6220660147113484,-0.12215709935874454,0.7453859031064426,-0.9732038656503579,-2.2266474144420156,-0.7585046874772313,-0.1309913011876227,0.8837484236955138,-1.9501087943145157,-0.5224038965530873,1.1481474441656443,0.5263267932361462,1.5083000683569368,0.3024099192009031,1.0273267213330386,-2.526490232930725,-1.8685294861138444,0.7308579034756008,-0.4244316697583383,3.293888111584303,0.13918943545032764,-1.4730273460887486,-1.4017755951919941,0.3771671803663987,-0.46388576739554965,2.49580630746978,0.8072662802891332,0.8019986757377987,1.2397642704137362,-0.28831477208687206,-0.5783487634305362,0.8555345796973033,-3.4453267877985083,-0.2787882990414339,0.08818925427708646,-1.8960764752806496,-0.08381723121049144,0.13406428032105897,-0.6207251562612611,-2.838637395108826,-1.2885715708170304,-1.9949312692656946,0.8233643211569951,2.1107417139930322,0.7469274992009439],[-2.0591593779928523,-0.4583696265084734,-0.308800100946496,0.18182984050750417,1.0201243541867862,-0.4813179514575375,-0.17744850798356926,-0.1987111825577082,-0.7668913374708647,-1.7012819951588407,-1.182891547157221,-0.29788343899986797,0.5470349604186814,-3.1210546424592454,0.31800578936700524,0.6049265103370579,0.9248383323886467,1.15460056266529,-0.6502168664868644,0.4709367841586154,-1.7603800212625267,-0.16265306765458237,0.9014613134707684,0.7863430817672211,1.0192443881432771,-0.31716961556982,-3.1730070612484824,-2.473407530741865,0.5739070591927793,0.28128388205433713,1.7172189240538005,-0.18033127878675964,-0.1854588870720822,0.46817649134151507,-0.03341933013345697,-0.09270530175668426,0.9344471649248498,-3.294406466380293,-0.3228534714536381,-0.28873346254114635,-1.2596737041163388,0.13002175693062026,-0.8529960723530343,0.6215925829735771,-2.7481806481310587,-1.897487984779709,-2.2686238968377985,-0.37641254904106464,0.04675798481760313,0.716975893065452],[-0.8192715920141352,0.6073750309305519,0.7713046590522824,-0.6183345816395338,1.194231557645719,0.034767981941505266,-0.7340375180453055,-0.47337420961537097,-0.998329745634456,-0.8938389680551094,-1.8928562267360225,0.36283907589044007,0.8073030681253368,-1.4183928792036988,1.6931346322075613,-0.23406020573347144,-0.019745222762854796,0.6790100716747187,0.20587386194766252,2.066431289236776,0.08332917982193416,-1.7654167102880298,0.6848865887052125,0.09065611343430821,0.6902914713912577,0.3192291334836012,-3.19314780770236,-0.5093563245707514,-0.3466130572155348,0.6993675069406974,1.399756131263508,-0.11531258579536457,-0.2371530474444166,0.06339069275663198,0.49750073734809475,-0.3302386203262875,-0.8702881493242123,-2.4318037244759645,0.7687463331907052,-1.0711023967187276,-0.3923303652608707,0.08141139997618331,-0.011599487093526801,0.7143149691459908,-1.9243809225482524,-1.0421478004125024,-2.838822207921507,-1.6159270335489961,0.7314221603407581,1.1827558834967076],[-0.04044232078380248,1.9149041633024282,-1.6123228528491345,0.13178396275506526,-0.5440837528388873,-4.443597420291723,-3.240358431031446,1.993279861633322,0.46872858558753555,0.33096100609081286,-1.2611054651877078,-3.341273280513248,-0.12211665607309054,0.8271271497673767,-1.6063949349842739,0.7125172961801912,0.23782765778822826,-0.5874222422353432,-0.3089749181643695,-1.1838703501118208,0.14474768377215066,2.51722585168385,-1.3896313114276913,-0.07055580002233243,-3.2452571956601126,-0.5974790391692388,1.6690030768930986,0.3304296376978801,-0.33302671612448254,-1.0523123634603893,2.6491836259213275,0.568281793329363,0.5989626569338452,-1.949818445459998,-2.7442777266616853,1.2434079145254127,0.6659925846191015,1.1202558144327641,0.9383288895991034,0.4397128770558483,-0.057683383553392927,-0.040358859950023064,-3.367426447860969,-0.35014731809412986,2.623930794004138,1.4054727241374996,-3.51495192488735,-0.1933895348938649,-0.9544607631968745,2.0796448270384764],[0.3355126003269971,1.59636522843467,-2.2919022401359133,-0.6288943696866445,-1.2030258097927824,-3.538496370552253,-2.601703632839541,1.9015774274294193,0.49054105522363745,0.5975621409755143,-0.8628072142404111,-4.522214902694916,-0.1091963552363123,0.8178527394913531,-1.796829219479923,-0.9341154558475997,0.022179289588276824,-1.5338851193536254,0.9055534024594888,-1.2822794664371722,-0.03762661302819541,1.646586762608819,-1.6855878512257405,-1.4707241257518795,-1.655877416518717,0.7955789846931501,1.1601028690383568,0.6022406804827931,-0.0021674441895956176,0.3541777177739373,1.8873792031911878,0.041391156529558965,0.5357085212797761,-1.305012303670279,-3.0927854011860103,-0.39053174362371657,-0.8330376103568427,1.4856944673170538,-0.7258221078439212,0.018892217215144818,-0.013642131197012615,-0.3354421317631165,-5.273173206700927,0.5673250912660929,2.1208852510527585,0.7503683643362933,-3.5181904498669345,0.4672978258236651,-3.366168922319974,2.0838762522375625],[-0.5519035174797072,-3.164918057166577,0.8776976692184408,-1.604580558862185,0.41869967377160927,1.8497184644465288,-0.6532823426520172,-0.523453309206677,0.9823761546139943,2.299981013366406,0.10205156123195688,0.6989354598805866,0.15648729330063066,0.09300641389711053,1.6892059566720814,0.25219262062868203,-1.446576991712717,1.5585033092979448,0.5846163380557081,0.5224853948239928,1.230123606941782,-3.2013221801843534,-1.351748206558936,-1.732137888726143,0.30890213910728914,0.2843141015416774,1.7348455621707857,0.4428132887046124,-0.34842580628393754,0.6750611442091843,-1.7363763904693401,0.4415006502640276,-0.8428180285405356,1.1044367786892237,1.861227751487284,-1.4938461075037905,-0.6532378207964222,-1.3396418144294846,-0.277836816502378,0.33245070642142055,-0.4679259821072348,1.6001747472306111,3.3159066534756616,0.05547907310335406,-1.9176757224000969,-2.180728074948172,2.2987154097141453,1.8856703031389628,1.3632522355233392,-3.227825389856504],[-0.5202102582828412,-1.6654371350488453,-0.1596439115626327,-1.0502754543177006,0.2956158316902568,2.716891013137297,0.8997241359652625,-0.944219726393021,1.3403370009473559,2.063453539048569,-0.40858132203049097,0.7486628626372586,-0.7386371560273529,-0.274975963308351,2.123341816417465,1.5696999759630617,-1.3048836998432443,1.8163025434872044,-0.6161165041649422,-0.01632560946808752,0.5272422624419976,-1.13679946942422,-0.6728587675655203,-0.8506818290131727,1.3570101507809513,0.16509436391692134,1.232064206542792,0.05655707990011331,0.5164963562878341,0.264671470461712,-1.4903470813358017,-0.9506128574168542,-0.5623145140408301,1.600910526824819,2.165173562719099,-0.8436335107062525,-0.18386964352835602,-0.9087610840564744,0.4956327111151586,0.6219479766998763,0.4099386233392428,1.8635415230455117,3.451112734480926,0.8338107131067868,-2.696048011434291,-1.8459680682013433,2.484766529401781,1.6369079260168693,1.9423444765733986,-2.784187149135809],[-1.1610746876617712,0.5388502150920416,-1.5894356443415565,-0.6570775472242448,0.7938426040952137,0.2363168685318735,-0.05019892163377062,0.874753060164841,-0.21593383513145648,-0.25941250394839954,-1.1837788850686122,-1.498468021802972,-0.4254692908946535,1.1476849303630225,-0.5174345978856875,1.473534186785738,0.8527822123818994,0.7702950736553971,1.0439845176357738,-0.19414415704673108,0.06208434107346836,1.3827383714020323,-0.7829795582384436,-0.6113383355092065,1.0924538885291857,0.7417011958618341,1.4497287996581645,0.35114658582300257,-0.13493571271690358,-0.20285568467663379,1.1438050763323035,0.2016894164216502,0.6291710450705845,1.0718563771030605,0.40067894409744786,-1.0749836376926751,-0.7645820175855141,0.27328508745417757,-1.0184059263795233,1.1616851610589625,0.5347159784556803,-2.240407079838125,-0.15812678488677154,0.035393290287436194,0.7130296759724751,0.5430425991318727,0.5950231234683867,-1.1433219714931973,0.4723636439587421,-1.5097875276839003],[-0.24985840168447154,0.8158721459568109,-1.6861860765707146,-0.6970727631015762,-0.5028469137449517,1.152556874793081,-1.226678243160336,0.969651153425063,-0.47252193306532536,-0.2663458536792944,-0.8989386046241299,0.20492650921344868,-0.5178747043423997,0.9714952049881216,-0.6740853461643603,1.073469632031739,0.8254131399115725,0.22031607251010848,-0.5810682950623774,0.06707385109997763,-0.5950979409726854,-0.3327272397268069,-0.3610113117405453,-2.023892215794196,0.6195908406583682,-0.475536931463226,0.610670534842078,0.19949164085999518,-0.21286804617715355,0.5898918768582109,-0.10605527955619684,0.5603920859805581,-0.1476484640485121,0.2984592351367327,1.0229096096873813,0.2598562503441445,0.1898061206580767,-1.1302694219527352,0.7953660431984322,0.6530759434402394,1.054115981844851,-1.5775786366002864,-0.07081997459099482,0.6106641074787335,0.07417003328801575,0.564460720306947,0.8035931136626486,0.08767246395744403,-0.7391996143502614,-0.9867710332740044],[-0.7487006391587899,0.9884918789163716,-1.4549013694381572,-1.316469647407376,0.9397187129353961,-0.19821169315574325,-0.6659718459620572,-0.35643516250173285,0.21129818260095296,0.2950681663788822,-0.25032263745347866,-0.47081895879430596,-0.1624745221150262,0.6798534315212375,-0.6759320653763469,0.8801927022032423,-0.02033998021243694,0.23261746245825263,0.22069739120107504,0.7142734699811627,0.5874032086153269,-0.9452338180884895,0.13602275468830305,0.27939891049056376,-0.13002557126806558,0.19715656535537204,0.8844622422976011,-0.41341338229443125,0.7839190777420421,-0.057414665211044165,-0.6799094027138046,-1.0154461235378591,-0.48553998358131717,0.8709062492377111,-0.48894920541570536,-1.5622376400692082,0.6309661486401493,0.5415771146479226,-0.37113589699914673,-0.6189103675918073,0.18128742155636604,-0.9042378826335957,-0.14147609586632462,-0.5552663214169516,-0.6923792517331436,-0.6240258492678159,0.9064408054600401,0.07553462867062281,-0.9939255055709711,-0.29114902184933417],[-0.2869133052516479,0.4357290108719114,0.8927339527732369,0.42432460717497833,-0.07811441761371882,-0.7410568887790011,0.5734881410680656,0.6420608175038056,-0.7643138500907275,-0.2810874883783994,-0.41041820955035735,-0.10482874752587586,-0.04626401564356513,0.7576847615751352,-1.75535928426961,-0.26717560724154815,-0.17938691533773515,-1.8218109827882254,-0.5386490296219676,-0.354008305205498,0.4175585738676193,0.8300174030064883,-0.5292495229590204,0.1374286527383013,0.021326127860798575,0.5319665772668986,0.13938531123985223,-0.406932159691187,-2.2559505452346107,0.5122432974800558,-0.17892214849493268,0.14201783204665927,-0.3695153896089661,-0.1771664651974737,0.24259351420915348,0.34817124943973443,0.7716289275397241,0.40488760108005306,-0.21401241279572966,1.1684168758420914,-2.099809373706396,0.8288336425905548,-1.742581790099328,-1.8371569088678292,0.8440039284682279,-2.549663704791642,0.3314536865769355,0.6016684117940477,0.8157293778019992,-0.6859375601234938],[0.641216069063797,0.9661696176215688,0.3931888156005985,0.8781195502794752,-0.18320049354970552,0.39629628900717745,-0.34805170453930057,0.6624739905383569,-1.1797268504471488,-0.11573850518717892,-0.08720564189696083,-1.3939846261562083,-0.43231625072192614,1.1094597701120024,-1.6434137420513832,0.18253161293865727,-0.5751410044634542,-0.8663964894333657,0.7632620890198043,0.0908912153557753,-0.39410152794819703,0.9200263596413931,1.0742646803965092,-0.18583735246884855,0.736910711129996,0.9630671791373002,-0.21188584236766111,0.7334116376211887,-2.4560475918367937,0.02649489407245258,0.5175531941711576,-1.6073004823283508,0.2500154570827055,0.07942762318768583,-0.10346965265955657,-0.6664554675977006,0.6360285200874224,-0.3075131178582803,-0.34364747973296234,1.6545615482236133,-1.849430975105444,1.5438670106106023,-2.77964505764637,0.057854042079055444,-0.16443427198703858,-1.2036824678930234,0.9742185131353488,-0.47527314928760844,-0.25266978335407564,-0.48053592680033863],[0.5572288439740547,-0.6333906524429601,-0.3894867901786417,-0.6501640979502626,-0.18682368132117985,-0.7337342546006962,0.6242219021888933,0.0524164510183495,0.45674955381708704,0.6841703690991255,-0.17685593149560577,-1.4385859609390819,-1.5201338438867023,0.7386325179281791,-0.2728543297381391,0.2031539713311581,-0.25675483563441925,-0.43721917141175287,0.13832238109858483,-1.0128210564768099,0.725366689941864,0.7160416223316046,0.008781077505174777,-0.3987572653853433,0.2024060632040398,0.825345292132718,-0.6872848270421861,-0.28284147572362606,-1.1734840668056012,0.33028065729155803,1.1599361913782322,-0.6314056815278111,0.6182255696770151,-0.8065755641139352,-1.0766151238438086,0.34983536540876925,0.4715687826972581,0.5520433838081912,-0.12916961114595119,0.4477157321573342,-0.8774045937849837,1.0059223261821768,-1.3282477096570042,-2.623641163199285,-0.13564166101900302,-0.6792878193649143,-0.11756865473331651,-0.6573782276825307,-0.16323564143717093,-0.5601543135824074],[0.4656804789612831,-1.9245519200107117,-2.346129139989681,-1.429087227208517,-0.520141352790176,1.0121688723890032,0.2837161335133648,0.799671078118961,-0.4176095197252237,0.264846323649964,-1.6157897404510857,-0.2092847277916667,-0.22087691178176713,-1.6935696129078472,0.4242802254506304,-1.1436069872539796,-1.0665628204911013,-0.984009854849571,-3.5008254013745597,0.4578333455449778,0.6966158382195382,-0.9264807002275114,1.1728222014806027,0.16633549430996347,-3.177483004089101,-0.06815832497989334,-0.08559698778628227,1.3673390865477042,-2.934091722111942,0.6947157655086565,-1.6703021904750746,0.9058387682130112,-0.2875315105131554,0.5749911879506793,0.8573979883462806,1.6775603418688054,0.06363935300550795,1.5483042347095886,1.1271218738854554,-2.378159987282276,-1.3702668420783495,-1.6457244768312966,0.8266794294033535,0.620010535053931,-2.6870234647240006,0.8306818718221366,-1.0103535566276374,-1.6823429204698759,-0.7625013378504956,0.43146430149198034],[-3.7649204837596235,-0.930958148358646,-0.7608410047451378,1.223060125443436,-4.151636193648505,1.4696005785605704,2.664628557439805,1.5960591777685604,1.4473557895236526,0.10361644781824564,-1.1041866904910373,1.0805810284742872,0.6635315482243828,0.9954106747229031,0.4716895860774632,0.8561959940033329,-1.3999425474794276,-2.6270442836739223,0.24051176622923398,0.03722454665075387,-0.36237292162035234,-2.1359433483699988,-2.3873707405783673,-1.3185692832083205,-4.299846165427588,0.14972474132161093,2.190938657027485,-0.451831307351181,-1.010308952073364,0.6601065755317574,-1.311603251735297,-0.499726603363476,-0.2913119502650807,-2.7169169771597503,-1.6086854415319838,0.9853904538673116,0.40743977460829434,-0.5485095061829022,-0.7581066335784444,0.39991127355537975,0.16568960048642484,-0.08757481909227245,-1.4068371373817152,0.662258774828032,2.419024542157447,0.0845231884466551,-3.1337957083901764,-0.6345491494998649,0.06601236776505592,1.9831602213782542],[-0.6996089698542565,0.06328536880646629,-0.5084928357731939,-0.7635299561466726,-0.005206970761621933,-3.1707620791300437,0.8803156369582925,0.3274746672384311,1.277762266861932,-1.0566657888983844,0.9999859802818363,0.5956156416327908,-0.3095048674441949,0.6013978040576888,-1.202148811245409,-0.07248381624962652,-0.7228089013484084,-0.1521550663769714,0.06788166741606817,-0.6304762201030002,-1.3784515024467416,-2.20749500771441,0.04988275166175581,0.21271396507226567,0.29984441452671506,-0.747708860919829,0.8998784394344018,-1.6815832154295092,-1.0074693937894157,1.0057489819682883,-3.2177501844245526,-1.5698582174400058,0.025447061097801635,-0.883942040133613,0.831706541433028,0.7038559002712633,0.4803557226424922,0.5330341314844167,-2.1368695077396227,0.8623717361293257,-1.257609525048315,0.25276105391173215,0.3711843228665323,0.026683670096292383,2.6801291568704757,-2.2838578174582946,0.7599106950935988,1.6589077617538983,-3.519479477431721,-3.249092223089878],[-0.04254751359669947,0.5333566996520985,0.25433839529409574,0.10113955650227836,0.5671620224444105,-0.09755348721859664,-0.708745069224744,-0.4554705424570368,0.15373070271644249,-0.4930566564185716,0.545912886293319,0.3195393440839442,0.8709448906639052,-1.0995916467099134,0.45282850861684576,0.30959521248893523,0.3964989969502051,0.6746032713577123,-0.3962369073439679,-0.6664482861478754,-1.0807049716155444,-1.1682250506196545,0.14665609212156672,0.04798566845624086,0.054038378614199085,0.3574980398270667,-0.1278561270947731,0.45296048935836286,0.9522468838421696,0.15022077051100513,0.41031815764234275,-0.8293219941468019,-0.3180573026656886,0.22363129177415705,0.2647091052163098,-0.46275130282893767,0.12328942895245046,0.7282985757361249,-0.9071839303517771,0.0887792469516756,-0.973073102037661,0.49340904100544947,0.5148847954941057,-0.3563882240452701,0.9208359606652868,-1.7980644031523165,0.9572127798981297,0.4248900320136937,-1.5383461470078346,-0.0974057947359116],[0.023564048101442723,0.9334615714923016,0.36884639713295286,0.06981340457875486,0.7747428898297254,-0.30289573372903383,-0.19048435354591944,0.2280240061616413,0.040339160955860404,0.3225588457780409,0.2801437595267718,0.004068307822946098,-0.501444786756922,-0.17352536889598333,-0.28978249918163745,-0.5766493413841319,0.5756512458883314,0.8938730276003823,0.30650583001656617,-0.5604912766437317,-0.06556590728937314,-0.051720607790297475,0.08022050294103356,0.70452625295513,0.3107108980081912,1.0817238987017384,0.31497126987192703,-0.8271009067643044,-0.4817170039276004,0.7714602036892656,-0.4210111651062166,-0.14986059320466455,-0.20241507555226682,-0.3149302746315327,0.531872545409172,-0.5979113953242879,0.3649869747361704,-0.04257423655446105,-0.34103052604177203,-0.23836947994770774,-0.5922673539751101,-0.1628196042728399,-0.33232069298378797,0.9460399511046175,0.9661016657682419,-0.22160067705877454,0.17352568398138882,0.3259914188418922,-0.7378481115346434,0.5124766968835457],[1.062431095339992,0.6348264582098352,-0.13657956820748454,0.3478758723109294,1.0084442394811104,-0.6550910751204808,-0.27287349317933984,-1.0465070026786265,-2.439522670295405,0.21527839497020193,0.6626880941138246,0.6580210721060951,0.41051713385324495,-0.5943496351626709,-2.3860536239444445,0.6138268049829436,1.1651862394841248,2.006731485945706,0.5652422978665491,0.29020607904834955,-1.7272917326065806,1.1953966802649074,0.8195057172302745,0.6229217530979413,-0.19067104837982554,-0.3516557583247948,0.2521512055084051,1.1341254232876914,0.3292044902971099,0.7608954804489984,0.2606470861557562,-2.1128146764921616,0.7473886765067225,-0.24976830605284034,-1.7853974029480404,0.8258392879192963,0.4864403577349064,-0.6225073274802467,0.8701515305321683,-1.7847401703923294,-0.9337363334615258,-0.5073343359983493,0.4959293713109538,0.8585981810262123,0.031871099342830514,-0.22083075218403406,1.0436959476357566,2.2532983961880046,-1.2526117559760912,-0.9077624201610421],[0.8407899156073139,0.23715350405826968,0.3337735587350585,-0.27782630650361795,0.13541771971277852,-1.916902425418477,-0.7604374899289035,-0.49654439908395187,-0.8379452070387465,0.015777031634124715,0.664237580741068,1.1017994973555845,-0.6183495076580596,0.906790765716997,-2.393047208182065,1.005499105229672,2.623877820647056,2.8110093787654096,0.4437094071055431,0.6497052619446712,-1.4365562890734742,1.308370969516025,-0.21976437149172826,2.021821557435065,-2.862842623414107,0.9851873288681591,1.2433677067761326,1.0045087673820126,0.47554183475347334,-0.3259338386601045,0.02278145875068735,-1.1514657769013883,-0.07118160391066418,-0.338816159442135,-0.8520200303678479,0.19236971141672857,0.15100191389263665,1.3681367586745974,0.26110315246190957,-1.6035742189763011,-1.1149644959542298,-0.9638137594024979,2.5609486925994562,-0.06943336030812834,-0.704052221791794,-0.8053994306891867,1.219861189820265,1.6309204359637417,-0.08664021407409304,1.1791197930045125],[0.16710566256511816,0.13361880858626216,0.9334696080002584,1.6254268408874992,1.6048124171192792,-2.111400917598201,0.714429475524575,0.9029811913574579,-0.2171864485115769,1.6977144593754876,0.5856028737735446,-0.550352488847833,0.24541851399717712,-0.5105673997817219,-0.8554195869314498,1.8549217188512501,-0.17279944438692688,-0.01013958636338996,2.8378940842661713,-0.764993159912461,0.9444379015685397,-0.23489250207906012,-0.4904759619298075,-2.221486843714029,1.8563736023966975,0.25310517419334755,-0.20101317147987724,-0.008516058762761522,-1.7019696841026537,-0.6605487847452725,-1.3864843717052031,-0.8990186438017691,0.15438701149902054,2.348499112182303,0.9254855276731291,1.720985900385561,-0.2708055329985729,-1.7265348451745626,1.2421826513473626,-0.1418917780802503,1.1852687866611074,0.026490244166198443,-1.3627594915214927,0.24151202169050337,-0.4240817232152482,0.04913289078623916,-0.9713903875312566,0.08259137497324631,-0.6357511594317031,-0.20397165954666543],[0.652081315992751,-0.42129159718826437,0.6171151876165085,0.3145905925321158,0.5146856502234933,-0.5988353812037521,1.7799191403330736,0.20429875880324458,1.335592023313838,0.549234072331898,0.9041939666563428,-0.6687386098031851,-0.448617605242306,-0.6679506145273103,0.9590440556099122,-0.4259902124679882,-0.16077226958303165,0.4445558155156736,1.1155643267913187,0.6828457369586469,1.728221173668807,-0.1560564113381681,-3.8613460472618533,-1.5716213224077193,0.8820035300829571,0.9159254042022131,-1.2393608377625343,-0.4949419909358541,-0.9668201087389089,0.5739025351604647,-2.1254449341335144,-1.8411621432418457,-0.400835893582214,1.9754800397490007,0.7675802887123484,2.078339632505746,0.14328831389340937,-1.4976002108081323,3.21264876494226,-2.081958613056708,0.5601259504764244,-0.47463913662651214,-1.0980374323106374,0.17673561311143576,0.5944134183399762,1.1663921897800351,0.18723750039518275,-1.612118111222164,0.7602564402765247,0.5991499322602042],[0.9818516708166947,-0.501528996868581,-0.7432056958260509,-2.2725133320293565,-0.39727863011825426,-0.10062585147393699,-0.6012926527607007,-0.15561989429735174,-1.0282469588485648,-2.1646638603320714,0.2917170718759484,0.08340536938978245,0.5292188289996684,0.3032021291476127,0.13421289818508836,-0.1866184458697136,0.7159100037407699,-0.6436178898106365,-1.3073237248921945,0.8430310651732009,-3.0606931986917383,-0.4948390998932024,0.960217444232581,1.2908675321848957,-4.147019097685993,0.9448415955928456,0.09080609351197114,-1.9276982432564518,-0.6817131046034745,0.24438777894778335,-0.3265850998612974,-2.5979756489229295,0.0995964798109073,-2.297810185116524,1.3191318566293309,-0.952854254705797,-1.3190427897146604,1.2703324497119504,-1.2864941284351739,0.8363191064022302,-0.2859577795080753,0.26137106728302506,1.4646410186669714,0.19009089496673603,-1.0556121884835283,-0.5148460762590319,0.8866814915693325,2.092228607798412,0.6220077297009916,0.800830520533115],[0.30954813443558515,-0.4395711554631443,0.1414011432978933,-2.2330825756520443,-0.25832744815146325,-0.44683195079762206,0.12827081819800687,-0.4513730634146034,-0.7508506638689771,-1.6492737053402202,-0.12187384045831952,0.6784846461449349,-0.6199609258919925,1.0127212258684497,-0.39320611756781876,0.36797395587187737,-0.18891810159618,-0.7957826962404775,0.4389473959558638,0.39743895294558573,-1.0100814918342564,1.051487066618415,0.3777058911744141,0.9224850137730903,-2.4172167125863826,0.8362426787945154,0.9206639197054587,-1.404286866131855,-0.5263646696526719,-0.04655298477912181,0.43248032441184614,-0.6680740322988703,0.8103983830202299,-0.19757591110653155,0.014894876931302124,0.9476324894423724,0.5424753578971158,0.6319412802525384,-0.3328965991148763,-0.6730740984586466,-0.6068257035587761,-0.31620291113682264,-0.6762680780554469,1.0563634557687547,-0.7050897692091787,-0.26388004137335513,-0.4283048046021777,-0.34819608962672405,-0.9466969809877189,-0.15041408098376838],[0.3192474942214481,-0.5741532367901535,-2.0332765543023776,-3.153889906994358,0.331098224335553,-0.8780679108576757,2.2877763484492832,-1.4218233454322136,-1.6106421723225604,-1.5427365291791268,0.4201856666993617,-0.26285419892654527,-0.1272219184322497,0.5370210062872692,1.141149590731136,0.734018621013339,0.777656176346486,-1.185712163370442,-0.9904988882868149,1.5264165839224286,-2.125531799030536,0.8506548402407842,1.545340584804297,0.609070255522549,-4.862147875841219,1.0722946897207275,0.32146482254097497,-3.0830516957045107,0.04873775794868373,0.6644606142323143,0.5688398625909411,-2.918792399712638,0.6014320525185964,-2.4048415135498504,0.8966884478001861,-0.6310563599161735,-0.10711690704146316,-0.4966734218050096,-2.1215029036438002,0.2728105004603671,0.6630642956977489,0.6191041454865078,0.47925506519541927,-0.1018953925034952,-1.2868735257018435,0.8438556476327775,1.298196623692361,1.4899303106214812,0.4058668765479937,-0.7344204912046186],[0.06986741493490446,-0.6286566843924059,-0.5915035203232327,-0.7083074507915695,-1.9199728274618106,0.5976051611800753,0.008274658324842117,-0.8530151090313708,-0.022301648979557106,0.22818354108306482,-2.4826664253541977,0.8287549019329457,-0.35485738575732995,-0.6805696882843454,0.39953625177682495,-1.8245273404185285,0.09404131257736559,0.929759908350562,-2.0877014926151443,0.09875951031991294,-0.5639958043557227,-0.8067608670544244,0.7342468684386994,-0.0035515663881983133,-0.4491867281334053,-0.5984085129000806,0.5960849930571803,-0.13535372975927915,0.054208719873434674,0.26609700512958195,-1.0302026065950378,0.6686715474301425,-0.2841177564016064,0.9242158328645943,-0.2739556444371928,-2.8760982882232975,0.21512666056923765,0.8812564220332717,0.21045709483063763,0.22563736204844392,-0.6238115468188246,0.2956555297103042,-0.37310806763974824,-0.7733128480370848,-0.8451022962344099,0.5106511248462171,-0.7228506499669785,-2.2894593273343062,0.3559766556337672,0.4508678474042987],[-0.345992472153266,0.47057870105016286,-1.1159259844290146,-0.4944903190060403,-0.17000986605253476,-0.19373734533458997,-0.06605496341642197,-0.4889872758917015,-0.15857245255900634,0.6140071648102473,0.40393451954903753,0.6058030876994902,0.42998661270837085,-0.43245943441068624,0.1298968435750524,0.34737664588368167,-0.7783982126777986,0.39893049149685295,0.8915679129172199,-0.7400038738233367,1.807521011576939,-0.24734713224529953,-0.87529795401058,-0.6378061476135858,1.1631571409643673,-0.9024878464688902,-0.8755441730857726,1.1673475018400483,0.6935327968957217,0.21409917228499323,0.7432202457223713,0.4786934618982563,0.2142988700508081,0.5661187648219601,-1.8805554736330259,0.10079749310690987,-0.37874566900079715,0.9605626103954952,1.3907489655319396,0.1504436366275879,-0.12518499550864692,0.34447134262067347,-0.1525835847974521,-0.3664385958802434,-0.0662938428115914,-1.5821092068229323,0.8806722276784258,-1.607473050574308,0.013842130095270173,0.27982873854158924],[-0.3204976459126413,0.58043565592602,-2.312311549149433,0.11082277998956389,-0.9896140008781731,0.04509894628029913,1.0083861877586462,-0.2035288403597767,-0.4353445165932941,1.43355793058038,-2.214652222552599,-0.3737885940442941,-0.6229020155084846,-2.0491510837338844,-0.4285775918149322,-1.2965844086323348,-0.9592900687838004,-0.0681942615275728,-1.218263903955529,0.5894160439723393,1.6012327986786135,0.7579691658751965,-0.37784386423189664,-0.8826007258007654,0.5899625703258985,-1.331782466554518,-0.319227001981601,0.5735259531537543,0.2663638907543351,-0.026161407612583343,-1.3906801449667523,1.672554803145749,0.3100367835648685,-0.2351975217676544,-1.2979784724504069,-0.8924773433371643,-0.8364619683526233,0.7683586072723806,0.8222078043182539,-0.6369244315722875,-0.5556516785666344,-0.5567017587779061,0.13197181057974172,-1.0360243357418215,0.9545328698865007,-0.8731751311273224,1.4618328417585653,-1.629634929130926,-0.041426670942248785,0.2664618717012035],[0.8195172542965163,0.13718415139065424,-1.201389453584732,1.340035230324719,-1.5883544358909354,1.3754714928079814,-0.26791179644463714,-0.2838593191094531,-0.682997708130688,1.9253297145598494,-2.1326214048498593,0.1581068720661211,0.37121401241852714,-2.3815558018171696,0.06987107192636592,-0.982087861820178,-1.8286469814290154,-0.5867332857030431,-0.6938334162289709,-0.16381605877044395,2.0136982753934487,0.25836533759608565,0.7346652691161707,0.16447007431221192,-0.16649078542424448,-1.9153886566699736,-0.22918685020201768,2.1217724316276296,0.5342500640110435,-1.0972002015179476,0.038140234240919314,2.1356817359356746,0.23254097144734048,0.1356872527394343,-1.1195412496325163,-2.7546473652177244,0.013064457061184597,0.5679741273116872,0.3316706532536602,0.7659960396442385,0.7097450295877631,-0.2233287951919078,0.6712257606354274,-0.9499992591449661,1.000772147949319,-0.20876743196340677,0.6865591666917626,-2.402872767334349,0.10111741922392499,0.3176270077593327],[-0.08394905670107851,-0.268463889340137,2.751472464844648,2.8361479937941523,-0.7409263651840584,1.3483598509810621,-8.195309925175486,1.9188534192933442,-0.5815772558356227,-0.3420008592342135,-3.453496579482932,0.08408807403132847,0.5722729669879724,1.9042427666138337,1.2153140515070027,0.2204514790618822,0.2630410009078572,1.0386254801146744,1.7767425448046015,-1.8687045387340575,-3.1083825441416155,-0.25384099128206994,1.4385680773740632,-0.18264970850349346,1.33896160734313,-3.609420636170449,1.842498447634699,1.0310304682572253,2.5712420011097303,-0.6462405931080877,-0.18120159554506293,1.1994108427278867,-0.0024879110503311565,-0.6171214888666516,0.650078574587107,-0.11968828341896953,0.18939421510687762,0.9224592077137953,-4.902616412384114,0.8866731671209931,-0.1029880686985651,2.1335075190253043,-1.8692935524114278,0.20317200046115966,-3.334334817673226,0.686308308658695,-3.5343770201355063,2.049792521308918,0.8729296960583666,-0.011311805963046187],[-1.0333352053677163,0.8080109935378038,0.11234969622488541,0.10005537620273489,0.7953427455770293,-0.8985200297976629,-3.3699368940880943,0.9394562044449696,-1.956477848959631,-0.06169793807904393,-1.8407614761613589,0.596157694266889,0.6750663756985131,-0.4521255690831928,0.6448075666999249,0.16555964071083543,-0.7433588622321999,0.8521786833209297,-0.8467569303316331,-1.120899476894204,-1.316478893299641,0.9869473632460587,0.48885731581035835,-0.6418573731320754,0.9108149059537934,-1.1371727825672282,0.29723075622830464,0.38790427903311886,0.6412361093817394,-1.8807273634702202,-0.8858014283283359,-0.4272022371455379,0.3727105311999811,-0.9697023194624251,0.29300016187057143,0.5633137846469182,0.48282296621722487,0.40574532878181774,-2.707481483624331,0.2618762981655671,-1.0151039767062398,-0.06469950277144683,0.29787512572458563,0.8412841338633247,-2.0353918072403947,0.9249685877331967,-0.2745264935329479,0.48105350305725697,0.694674209946176,0.6358289493086782],[-0.06977107271357046,0.050777253331842805,0.508301935075644,0.13905652490479672,1.0042936156270372,0.05447421326284782,0.007654331939566463,1.4202246726713463,-0.4676280900192503,1.2913470006288608,1.0236532192256151,0.8524628418838984,0.3530523447694329,0.29013210048127736,1.4099233428358222,-0.9901516090688534,-0.5447755309126788,-3.4282036293274034,1.1136216788447169,0.14318177701340448,0.27817832872492637,-1.5468332032266499,0.9885559471022987,-0.7738696993837646,1.4916176415868594,1.1824739039187357,0.6808784006451569,-1.019046719513571,-0.41180184758838034,-0.6384673167938067,-2.9861392445193458,-0.3689602947152806,-0.9549361583645574,-0.49729382280844375,-0.5516358497717265,0.9221700563691904,1.0415038619748969,-2.415022433245221,0.0631805873771986,-0.3204106372927359,0.8321342637826711,-0.017349514261327158,0.7837370535624525,-0.26385297613429803,-0.9368080688768723,0.6447886105908767,1.3041236007244292,-3.3254566984271334,-1.480049267678101,1.027227292404093],[-0.09793220203191945,0.1551730454415185,0.7848740356614426,0.3211607120155611,1.0362942222621097,-0.3615487785806577,0.41417975738684026,0.7583147791475728,-0.5733796947316635,1.51378765991559,0.9098659586893965,0.36802454702785126,0.35783611288261735,-0.2922991461779479,1.6760452319302799,0.3526719791784804,-0.17009888594042913,-2.4144735564747424,1.0130853785907106,0.23157257874001919,0.22023893304398062,0.4112466983851662,-0.3690415762313752,-0.30713898657829053,1.2036396998653365,1.4279042343842432,0.69755323756855,0.1170746603032731,0.8375910478185818,-0.030919443674102577,-1.6479568189273814,-0.7642833211419622,0.8360325047726236,-0.05809277648807119,1.4319106359842377,0.15288796558461287,0.41749242637287637,0.20793986333206524,0.9099711969114875,1.2460430840733736,-1.0830235147819394,-0.11262485938862159,1.3676373627654634,-0.34728170513141826,-0.46391089932303486,1.1132296654029312,1.859325636692718,-1.8881796556378831,-0.9819326053156252,0.01432157403203931],[1.888668732813607,0.3057264007157779,1.149543620324013,0.5360574155636836,-1.094856554173859,-0.6522862023119086,-0.14073943794393395,-0.6524672791323339,1.3441472578841007,0.15818026895069554,1.4026570787987664,0.5642445190323757,0.4576972758050047,1.9521791669224917,0.9278583783129339,0.012062344495231402,-1.0518274610577856,1.6361489476483921,-0.23290400365319,0.613212488558266,0.05655014299833948,-0.45843780272702694,1.206326792092702,-0.13392857054891547,-0.9498448056708155,-0.5019837243232487,-1.8984944547667488,-0.11587791917162284,0.9678755042732134,0.052927049838640966,0.2576396381158775,0.5563494194859162,-0.5696827090427876,0.4144398317749309,-1.2572342004352302,0.04576290689391647,-0.3637564794933432,0.05452117348371597,0.35638903911623393,-0.13891644753764537,0.9649202794866041,-0.744659080288305,-1.2888696336999013,0.09693120275768405,0.8971975428951368,-0.18131309280695698,-2.040089005056387,1.2484700084768103,-1.1815718784841307,1.0544598981816533],[-0.3556603232547599,0.16769379033973436,0.771863200736077,0.3307084941817532,-0.40982455935948164,-0.7067334173470956,0.741067606585911,0.05134524239674443,-0.10514152117617513,-1.2468177766937483,-0.7368502900445538,-0.276280288106056,1.1767337866173526,0.8616462694467544,-1.1799853167130236,-0.7704858950186034,0.004803284784132334,0.7357947275035785,-1.8628864183918568,-1.2837614064193885,0.2100006968868962,-1.0588041929294603,1.5737760742701306,-0.7239958045671928,-0.8095854150282404,0.9984071521357156,-2.0793346215736137,-0.7888788097875009,-0.6504941038549753,0.9274686184194849,1.5552364492660775,0.04772417147583756,0.7221338508252827,0.20129264892293508,-1.5662382933877448,-1.280743972081637,-0.6952317659190157,-0.961872245546582,0.1858360587851446,-0.2153817221350937,-0.5109306462195871,-1.2988864039615553,0.05568054150026069,-0.6072109643108069,-0.39073654035258415,-0.37965474274846267,-1.4764222148550197,0.8542509283239909,-0.002434788219896066,0.561837025765095],[0.26504164075477155,-0.2903851867062602,-0.2728419368848011,0.07995054147123298,-0.28498188939298974,0.1465837153742638,-0.2676557862736005,-0.7017945051231487,0.6835341901454263,-1.2932211207499955,0.5667113868095267,0.5792407524531398,-0.17464251209302617,-0.5889625145144073,0.6321039782404889,0.8049090883527079,0.052886343709419484,0.33092510206833087,-1.0405878723265105,-0.5433537350058845,-0.19153982416280674,-1.169984371589661,-0.6784326422535173,-0.13726167714277576,-1.3150757329166831,-0.3912464671675744,-1.991088029995081,-0.723115453513067,-0.5541436016557695,-0.70464143618269,0.8348811530463728,-0.2234590024446463,-0.17248208956609754,0.35908062841680155,0.9351812563413805,-0.6044635109896137,0.25060948655491694,-0.09227699792070534,0.9496289681349768,-0.5482563288242622,0.6576847064136091,-0.31517931755204565,-0.9478917097162428,0.6167810786458511,0.3511653676550801,-0.6827945682820139,-1.394684115886324,-0.5525895357197106,0.6156270912432695,0.15657813634886925],[0.4391183446060375,-1.8731099210408453,-1.3496305210114863,0.2589997818098837,-1.0156413862682994,0.27125515547589296,0.19293210973520386,-2.5793796570761454,1.072235172162822,-2.5240253894249247,-0.34656465704363953,0.5464345267214675,0.8798007378521071,0.8197931787189219,-2.727294843203246,0.7423371447298599,-0.401849122463435,1.261768214332548,-2.5356649954562847,-2.3281814058054,-1.3111635233601902,-0.05501805869567442,0.29016020373551654,1.0255733377052134,-1.172544324385062,0.23722483981588452,-2.012178984481965,-1.3310189471438971,0.02988536850552401,-0.3244153231224796,0.07308653159966068,0.5122658493466127,1.2451054870177947,-0.1587902728891192,-2.0411195183442885,0.1573479311088279,0.7000527493026977,0.9006571254258813,-0.08645579634679873,0.9769736533656058,0.39062328757534537,-0.358538782421273,-1.1825460843644076,0.8649025376954379,-0.4478221208873624,-0.47285204079044674,-0.8134292312874017,0.7437903271829627,-0.023861641870593815,-0.980116578953282],[0.16788410948180107,0.46245512763415797,0.4911626176713223,-0.20068055013859126,-0.6496805984249774,0.558647570105491,0.4503115506229079,0.7992028598371306,0.35305101143689077,-0.08149049105417265,-0.7954049039800294,0.023580364972637533,-0.09644826115861872,0.01604291595842973,-0.2331074166463124,0.40632885483326475,0.9886595784290245,-0.11409695039556748,-0.8929547017345444,0.6278632251164141,-0.22914165632336864,0.10335230972597141,-0.6288862249846816,-0.4505206252871639,-0.7423497330570199,-0.05974553923344073,-0.9026030349686511,0.6657259200507607,-1.656079568748886,0.1148193726040513,0.08925820238078959,0.10731508148863768,-2.113469263737965,0.41615725305239326,-1.9755247124947677,-0.5557644648060034,0.5175398938912351,-0.5462737185970853,-0.4228965177164916,-0.4680651552734771,-0.8514327696717758,-0.24042705210594992,-1.7178842919575816,-1.4204943763122326,-0.26549715233274906,0.3826165347891964,0.4724954208256314,-0.8050631412639168,0.6666822511016963,0.24946164636496543],[0.5018106295650897,0.24522748078394088,-0.478546903604338,-1.0874832478812904,-0.0908621736188511,0.24137744632345398,-0.6672411903640718,-0.5926439553863835,-0.8006591221650744,0.7100760927243557,-0.9145050422316272,0.11923925196594712,-0.6325205052044277,-0.37164312028942165,-0.28912422435645047,0.45466811841015153,0.39719468556345644,1.005808878795949,-0.1859619491986335,0.17890265802954916,-0.04449427077913434,0.2043823549954877,-0.5069654287586932,-0.6951575241670275,-0.1304819988055614,0.6254953479096953,-0.4428256013374827,-0.46741455224598616,-1.7963676226789909,-0.30584626558314754,-0.4151911871345867,0.8589457544510118,0.6761564777917183,0.1440074778523448,-0.9253554816761219,0.11464242511797199,0.9366218121338503,0.12386748524262876,0.22710149257738196,0.1884280530233604,-0.8748895541703825,0.3984278739132556,0.08955884155567408,-0.1784416888454294,-0.4959081489031214,0.21349595259236262,0.29506129324303737,-0.10170209901367236,-0.5992825022218368,-0.20474479196841264],[0.4508756318559455,-0.7049800157365824,-0.4469165666127868,-1.3186955089356986,-0.6102769402716317,0.230497266433526,-0.3983445090164818,-0.07392200538064694,-0.375419260431495,-0.6704932766379627,0.597719943977369,-0.3088847010188428,-0.02926243691389223,0.12072808164986151,0.21629527023462186,0.7339709504033765,-0.40521129004916423,0.2082884896805701,0.2890390145455802,-0.05809263890739506,-0.3073397870003785,-0.07677002955273016,0.33992185563903526,0.19187463598055843,-0.9869025475082486,-0.2433132713377903,-0.8006099590020416,0.39508777416266705,-1.051429036216081,0.8861958017072644,0.4360673062888089,0.6890197713054492,-0.25881958366679425,-0.49159423296567606,-0.4555547710869118,-0.0031928163910064575,-0.6961908210039304,-0.2255322808328178,0.5851596617604198,-1.3797469811078502,-0.6063536015778077,0.5479922526698632,0.5559562693105391,0.411962024287781,0.4625212579509667,-0.9644911949325604,-1.079343018660265,0.1980755519091388,0.24170383921628097,0.2946842025908366],[0.10113550207034558,-2.0303496698434973,-0.10316602955476686,-0.9966492210111007,0.9936634095793022,-0.7446138526742506,-1.340181378634315,-0.842350318208404,0.6673098130600846,0.4362451431906456,0.5285519185198024,-0.4684403430236143,0.7490109617780372,0.30250436079046183,0.4636904317561517,-0.278336943778334,1.0064894097972241,0.011764289926007752,-0.5896960383682524,1.1426381897163735,-1.148426056560054,1.0425324518470862,-1.8895045210596397,0.7153595041173904,-0.7123328741649572,0.27439697264984114,-2.6791567118520385,-0.0904874526309564,-1.154239970245484,-0.3723948627707553,-0.3990341160703699,0.734711888140074,-0.11251230200184476,0.4531107946137531,-1.0902806240611609,0.34584378183405357,-2.661066027583547,0.747449190686564,0.4704932908589856,-0.86666623061524,-0.2500582708279127,-0.6587050007204113,-0.0791702808931236,0.684242342815999,-0.3136906139305086,-0.5264726986577885,-0.9407307666932356,0.5304198592120659,0.5500892893628547,0.7437295192227334],[0.5178107481663131,0.8680392367817136,1.2997708001789279,-1.8851104373808723,0.818788935714366,0.23806339863383913,-1.138819965486911,-0.34764439409628406,1.0470405054726868,-0.8040893832108483,0.4280366027146654,1.1016294331005647,-0.7598377558987365,0.8762995436049763,0.22457673556881316,0.227043582604922,-0.006861347122110642,-0.7471852694472628,1.5889822891791197,1.1005834715472866,0.5225496150909787,1.7477649858410604,-1.3038126464942914,0.12059818886577157,-2.5380243994162,-0.6580960195680646,0.14479409818119496,1.2393099464019703,-1.3068226076732379,0.13103759458460898,-0.17844052104904967,-0.9021748875456752,-0.6888936135004234,-0.23047749311860863,1.13062498351169,0.8846932014037242,-2.391511111846991,2.8354481088615975,0.5609303155281979,1.1104156906863794,1.278013115611868,1.128199249630744,0.6975004910291077,-0.3348793825549468,1.8309950891982834,0.05907647315435226,1.642118550398269,0.2541624328630131,0.05530049509754368,0.8544084749534874],[0.6074025396066831,1.2141208883255843,-0.31954492239604143,-0.7299724384903407,-0.6656275712033045,-0.4904170196783,0.6705692448977415,0.051762969610248746,-1.7059331047975845,2.061488806245459,-0.14666668886330464,-2.548733837175153,1.0633182832938377,-0.09933024371047396,0.06920491646505167,0.2091025952805876,-0.22900306160719014,1.5090080472218899,0.3020833375199892,1.0495156133458499,0.7762403291647328,-0.06588589244045401,-0.328328077864239,0.3866686433886891,-1.779431718165941,0.7770112980192442,-1.7179775594022981,-0.5939329952015238,-2.28445245369772,-2.9879680360522816,-2.450279208291553,0.2386649192664652,-1.014158753834348,-1.378914973683728,-1.9723462815672543,-1.8180648321251025,0.8468353815721125,-0.1802901654144674,-0.7217525779479433,0.6308858887623585,1.0267547397474566,1.0216372859685008,0.44624044287938763,-0.5939217766045141,0.5410582992114946,-1.3930518948916422,-0.013999700620301163,-2.1659437481506933,-2.8349516194823634,-2.8397372004034613],[0.11226026723501964,-0.21015155103027697,0.612368779356994,0.4307351025355583,-0.5150276571768587,1.1968373577785305,0.07566440442165373,0.052589999399387403,0.5396127884569308,-0.7909641890485982,-0.9828761196299267,-1.5772216875591576,-0.19690144598653103,-1.6074966879165866,-1.8504972295133348,1.4243471076466774,0.4649012947856972,-1.6370481743795462,0.8327302010237299,-0.7468069180808025,0.826342260059409,0.26883898128984485,0.6478481438335721,0.5578846236306176,0.5670554335704383,1.1914327478271896,-0.5116338034146881,-1.4288013290802015,-0.38235854361983246,-1.9569343708964877,-0.7980426291735826,0.12751807084941064,0.8292666873397075,0.7999744744675444,1.1298522561935644,0.7087559302644751,-0.06931852611637054,-0.16373018749537854,-1.0453737372670573,0.9900478248432281,0.2010830156739329,0.581068460138652,0.9406000947936892,-0.11001915646817113,-0.4966073845371642,-0.22841634646975917,0.47696441910113196,0.7581997192378006,0.3222700981282206,-0.7958133548250336],[-0.06225773947670546,-0.23720535374532642,0.3303679662462383,-0.5943154039689138,-1.6477238104472598,0.34122936173220336,1.1266711272315748,0.7342399497462518,1.7837486126479658,1.0860182361346913,-1.5028942205799454,-1.7306745439169484,0.7914697327860042,-1.1776247408716214,-3.0760261594222116,1.8762984667782827,-0.27878039016352646,-4.048919518532372,-0.38478570600793993,-2.898490423136,1.5504216087924874,3.375880995060728,-2.2552393705808402,1.092286449542917,-1.2932955375203548,0.4784219814704661,0.7305427380655141,-0.27737648241706053,-1.7594207716586934,-1.0331915385087092,-0.3036216034278346,-0.06355816706029822,-0.33877726324325375,-0.14037919632918375,1.0007857309625363,1.6109467624403109,-1.060121761501319,1.3628056083483573,0.7221556929239026,-0.11760342791323396,0.5073841354375064,-0.3475644060461288,0.8550130064794151,0.7778833483674825,0.49243238193999006,1.5110632609171422,1.9913417809008729,0.2627471310686198,0.822942433065927,-0.4036209392155697],[0.5076458927310028,0.22061614737291357,-0.582367221550238,-1.1661812221958496,0.7717818861833535,0.7519362179387391,-0.03788584033125137,-1.896135532495528,-1.0411776593190478,-1.8625199181335976,0.5100610294729954,0.051913376244674604,-1.5017144935894036,-1.2580343102195963,-1.9408524996624443,0.5502771005713395,-1.1916101737046692,-2.0463286270494683,0.7568431705837579,-0.2450159989328303,-0.6052094689046051,-0.15073659372199566,-1.8034421371133735,0.1803669927844885,0.9426258766715532,1.0601874318648608,0.7729255486061413,-0.976693778553504,-2.599714400082285,0.9816476621097691,-0.7552793004013608,-0.8679814737715308,-3.071729739559964,0.7339927860804539,1.0648552225808308,1.6842697340779653,-0.9336009579016628,-0.5982987122171103,0.7679609466656488,-0.8664827631470741,-0.6681839566693386,-0.9627710613331694,1.0621111200994036,-0.2661916791699039,0.5456479268813895,-0.6142576898104907,0.8157724350558033,-0.6232474155492524,-0.49345815056105974,0.4012951569940294],[-1.0149129135710275,0.6907016088951349,-1.462021701059847,-0.24744437522849738,0.3648385214218493,0.4946220915641182,-0.6106383613365852,-1.0325562411940852,-0.4763932378636328,0.060800413528955426,-0.8701241887444512,0.33389336215232407,-0.8357916374879754,0.9246741481861364,0.1915386968457412,0.2661170612161435,-1.6759834232725954,-0.6046597208511156,-0.2701275444060365,-1.7327991434828287,0.18970807810252716,1.008724248512066,-1.1536481454055023,0.949375761201082,-0.07160603883273808,0.8336850407136812,-0.32441734737289657,-0.1831872684985473,-1.7376077958574423,-0.5418789594456747,-0.181035240618013,-0.5207098391654748,-1.9819527100631251,0.09366828905412858,-0.09157402703800006,-0.5926512990947921,-0.03918027937359387,-0.3252604293316902,0.013389538248474291,0.39047917645579366,0.04879918227061771,0.2764376268095433,-0.00044992556582835726,0.4454143237250332,0.8877751767222609,-0.3560876534103672,0.5224399391782407,-1.2097301742705053,-0.2609239891286784,0.98782614201384]],[[-0.9484590118570151,-0.36557943665475234,0.7362315280649598,-0.3353112402849292,-0.8866872346683836,0.18510372112724083,-0.9822442867520584,0.747641116515152,0.2216764121875391,0.5877549859163886,0.443388565980998,0.35970246057081995,0.902766776835631,-0.49926931594684376,-0.9494023402519495,-0.7349568193912581,0.312553029732126,-0.4516693164064084,0.8600054521603698,0.7429277936274171,0.5994867511817323,-0.2931590248707963,0.7356777151389651,0.8029036477456503,-0.46765594186164267,0.7069907622805952,-0.4248609825799588,-0.8635514457556088,0.9131938785995131,-0.004511454916010705,0.6012239997369434,0.2247483397664157,0.4221210993009827,-0.78859259644418,0.551430991669026,-0.6639137482730233,-0.43432904229703123,0.6660107071391138],[0.3143011096035901,0.7485434086625433,-0.8140366994214192,0.0155929249470657,-0.8915085271399351,0.617297734588642,0.03487408901780678,-0.9518587303288256,-0.806917841164372,0.35743051662504505,-0.024799788239776188,-0.23746208051672663,-1.0347257910982333,-0.014824700774984526,-0.7741017283356225,0.8703467010714401,0.692928999554019,0.4143774125691614,0.8183066406593859,0.3862066539629468,-0.32109765040874994,-0.6636683235884224,0.19951693662206793,-0.5409458733986704,2.796611713129248,-0.9074657590642508,-0.5934964246456903,-1.1271675061102582,0.8286227357207749,-0.6094615991074053,-0.11365728865416104,0.74929804631278,-0.9680075877922286,-0.7825512997816768,-0.2879024564107171,0.052994587828991746,0.6193014330532192,0.14530096117982147],[-0.8281766613406188,0.08749794230792764,-0.6671035690025716,0.23299943280482388,-0.4855804589656096,0.24294273749311143,0.3022207844522419,-0.09603070769168923,-0.04087796791713218,0.42371674341135007,-0.5488315497989432,-0.030813826664253714,-0.12001134211562352,0.3357773283227451,-0.07835573452328194,-0.773603361854719,-0.14076631078022497,0.3213661441379778,-0.8731052377570392,-0.09667210772261552,-0.04315424360727402,-0.0537802420525128,-0.9536900527588957,-1.0479116172248835,2.3672434773531434,0.35903815461109884,0.31710577053625766,-0.7227568068981227,0.416776263224372,-0.1592996229288087,0.016214010659990053,-0.8302678554020707,0.4371468353921183,0.518793858145377,-1.2131995598626926,0.3029117352245627,0.8357049567868111,-0.5649384107309996],[0.6910231297742501,0.0994073573638225,0.2181756121035065,-0.15171845332713269,-0.2503605852835057,0.5544422525440428,-0.03200700547039251,-0.2980231452994483,0.11724927758109628,0.4203418145386078,0.8305556471129592,-0.3683984820577799,-0.29377098882728564,0.3790512116291218,0.15151317769044742,0.3108999383899468,0.9610822670251312,-0.07298832336360171,0.48283457140965635,0.7444249823654245,-0.2811674371868935,0.8779627771650191,-0.3270200390381743,0.6854967513662754,3.1939398196465723,0.8774479163709413,0.32661193466175165,-1.2902929856500636,-0.7974001653582388,-0.2076141098764828,0.6371647426718926,-0.8865153363264274,0.24496650727812735,-1.110085712797888,-0.5957870821809896,-0.08202777703397912,-0.34627977630111634,-1.2658236045222742],[-0.730006853122245,-0.7093997752115342,0.4221670935104411,0.1420408428402264,-0.527762402784024,-0.006140145529487157,-0.07317016092328839,0.6245218069233495,-0.24936297681418695,-0.09952857026192638,-0.8587320528331917,0.0042964676150799,0.8648389674245306,-0.8358045830361411,-0.9386543685835806,0.5846411377162761,-0.48065963665066563,0.14652000447348495,-0.954084701938787,0.5649606938552487,-0.8535120014137271,0.4047005766358171,0.6246434113868082,1.6383924603462234,0.8043471940225987,0.7018107405157955,-0.8786261168675388,0.7266309746748879,0.1416275811917222,-0.5350609890481703,-0.5711426137696464,-0.18209413431050292,0.21569484854073795,-0.5067179301112738,-0.5859082588023792,-0.5919602185537977,-0.29359804982156296,-0.009416621561216074],[0.4620978035683661,0.8570813538549171,0.4694368658213615,-0.5502055911159506,-0.5809817795437701,-0.3417881883380023,-0.5838615790501095,-0.5610889257596464,-0.3276683490436461,-0.22302485343243203,-0.3688165366756199,0.7570368872851241,-0.3102937425026115,-0.5428114159284725,-0.4971838913916361,0.7291163179026044,0.6255495556142688,-0.5443234983503378,0.3351691508214648,-0.7596328468304411,-0.9970490442135506,-0.1898547228778391,0.17661397223744715,0.7906202336454369,-0.3411496451155118,-0.30341002702196457,-0.9544811014555463,0.6854114288827173,0.29016849175319065,0.930153324879304,0.872353794967686,-0.6623243532269776,0.09515753017721598,0.5848627089317752,0.34063123235369913,0.16748971959491424,0.8669971966343029,0.2911271653739069],[0.5080236525928622,0.48970429588559283,-0.4978919565103896,0.5710973340569678,-0.42208690208400607,-0.9572679972258209,0.47144641659876735,0.6086753409652861,0.21326872227871083,0.17607514274425132,-0.6419877318491498,0.7106204423529543,-0.6270770740286998,-0.2290421306385017,0.06927882753879343,-0.3476448518099841,-0.7927465419318186,-0.5752930995307558,0.03479716103016509,0.4872922304112558,0.9697154672588301,-0.32798176960282727,-0.8127674675455447,1.1825276635201787,0.924247034952264,0.6868797257559808,0.3169449208668367,0.7399618149779472,0.31836808236308023,-0.3687300469621823,-0.9468076262400767,-0.6781049625829529,0.6660018816686869,-0.2968129968185062,-0.22732472760807973,-0.9497259667629148,-0.30301664010190477,0.04750265281652761],[0.8110123857878143,0.3203084093406246,-0.46702895491211005,-0.5270591312906826,-0.5825518038621829,-0.591247014844837,0.9153326079173474,0.34536158007575957,-0.11254608525382064,0.6042220076212131,0.9621070686385629,0.43571377320434,-0.7157558315700265,0.5069429452649502,-0.8029471114217882,0.808122437237135,-0.08827840085577301,-0.8167261469652853,-0.934763763596395,0.630699872734768,0.42600611838508784,0.20431400252666296,-0.20584354725553988,0.5396696876014533,0.10330526446462919,0.4119110667503484,0.4627439311259261,-0.5409180793103444,0.5330825806158612,0.6388559685575889,0.7459510304709026,0.3267582461304633,-0.1941104232017077,0.5735738717039216,-0.07489828342222736,-0.5163598784812461,-0.4503242573782287,0.48277207560065805],[0.5593301416798783,-0.27237828915578094,0.6428042372236148,0.47305701470933653,0.2504569398682022,-0.13177276264198565,-0.7803015512128074,0.8939455200288269,-0.6869902289369743,-0.5876767525872966,-0.9956976963195525,0.5118928823427166,-0.7492700443814396,0.42024228720811085,-0.7155259463416573,0.05937589156724364,-0.623035088764455,0.8996562574692979,0.08623624143309394,-0.03519678403746245,0.17968831547630526,-0.45622694102637545,-0.7804260288126499,-0.4859183626977072,-0.4994840681883567,2.33345419961188,0.1514865840952708,-0.6624713753108976,0.02459499425090031,-0.976087168232239,-0.8513166425393768,0.3456088487929571,0.4227235690227707,-0.8064219318607041,0.22526924604096485,0.6638783024660221,-0.3287043427534242,-0.1698354734036657],[0.5575726524258908,0.5065558138437545,0.0048725488518777905,0.38770473449353055,0.5162576951832727,0.94224824551039,-0.300689262920984,-0.06474046781871647,-0.4447029217239027,0.7622518434777555,-0.3485812125401037,0.0419207811735633,-0.6318887259414498,0.31841401283777737,0.17802808641736462,-0.9303185932878979,-0.21293966243893717,-0.4206056267404049,0.8009933466458989,-0.7533389502462727,0.1414365188465834,-0.09813240721898217,0.05601605149741069,0.7512708481903062,0.861575648969885,2.236049896798962,0.7913361196285752,-0.47093511772289576,-0.059411194157917804,-0.45861526598410723,0.8055548780145891,0.7467557801582968,-0.3022537136600912,0.8497864820199931,0.8861889250273732,-0.27224677432611705,-0.00687771224864084,-0.95328669185443],[-0.04638268858421819,-0.515890537887218,0.10910459588021226,0.9002186451516546,-0.9246634696390578,0.7484841688024372,0.7749828976813566,0.3138096217666966,-0.10168583409079904,0.3340310110248604,-0.3154241980950511,-0.19945827520799206,0.10388349242477889,3.205374585247408,-0.8451052743718113,0.5334429708470178,0.5533412336000706,0.7303371544605555,-0.5498731725842871,0.04204158786447895,-0.7354611785309284,-0.5302624789658106,0.8670309521389851,-0.5374184481555409,0.4776107205497095,-0.18171318649642798,-0.6417002079980286,0.29042853854028317,-0.06183075395597208,0.875773954096553,-0.3432704053730074,-0.702832762521795,0.6659315599483352,0.7787691540268268,0.14780106547835858,0.09188115309824,-0.02707534723993128,0.2043132485081696],[-0.5827002989945458,0.25008258954354834,0.536039521235085,0.9400682600486809,0.19206043409903198,0.9271915914624067,-0.602627343548967,0.9316713155317988,0.0887701944429712,0.39469187027214586,-0.14294196094359743,-0.10295860229015674,0.14530311593522527,2.5355974071362333,0.4447137420733769,0.5494708600835303,-0.2671245856202788,0.7886937512214433,0.30443278594752377,-0.015834012155502678,0.5254424115039665,-0.4092840134516375,-0.33967866784349815,-0.7304068136052588,0.2548558054755308,0.8262691267644198,-0.6529516636618641,-0.24433464867376048,-0.9892218688439515,-0.19343150067422527,-0.8604909303635755,-0.2321358741740729,-0.8291000379691049,-0.30679848173729946,-0.8995586783962505,-0.042981795973279974,0.5200530254883371,0.21936915477987684],[-0.35043235845193793,-0.46144135720367363,0.23496481573311992,-0.04752570771855708,-0.6181972665273614,0.21252645314490018,-0.8188176224099033,0.7851775682876003,-0.6123489266491182,-0.16415956264643233,-0.1396525089478683,0.030997831342409698,-0.49231594706662557,-0.5269657627819236,-0.037937623848747874,-0.4553603841573263,-0.32710030084905634,0.4330390322139174,0.5968199653967687,-0.4205690080533693,3.611047030081934,0.6492294052887109,-0.5545509427967587,-0.49458203896380604,-1.1681695655026922,0.6982626771605066,-1.04987657894007,0.3949016075719453,0.753586573055737,-0.8476517890468277,0.5183692115504936,-0.5096692895179842,0.8611672593700261,0.5145249793317102,-0.0875373504356403,-0.10026751103462882,-0.7281166451536025,-1.219068546429052],[-1.0278854023661437,0.24080881656445025,-0.906274026670353,0.18185619027162656,0.7024771146940708,0.4919280530196143,0.41657101473402497,0.053998221202063344,0.9221179657078432,0.7044267315757055,-0.8794287651445948,0.8944556340538986,0.021916404944230687,-0.5045557427436087,-0.2797624527511532,0.928601456725126,-0.7536971037417892,0.5686816607418339,-0.9366523955959803,-0.1318647400472066,-0.7122200992847688,0.6675635134396289,-0.909971463258392,-0.35919430631711585,-0.9776463938416349,-0.20564593882135423,0.36162709540680754,-0.8164520758744984,-0.1737447425909246,0.7534431466102168,0.28302577577806515,0.8717709842146582,-0.32152125813477594,0.3526461197851154,-0.8660792691562701,0.27628869988277016,-0.8891961513885583,-0.0746212612265935],[-1.0127501988857317,-0.299916970414566,0.11786080686820924,0.5263076097220714,-0.14132502043606132,-0.4067301114878945,0.15774441830230534,0.7982682032216089,0.6287915650251777,-0.7145763979972595,-0.9967263869252694,0.3738836537094179,-0.6783619702368203,0.2745476727190027,-0.12754525219212176,0.15713243923445708,-1.2689133068399878,-0.47944999266911975,0.4470080733107305,-0.23405275832264438,-0.01797955282703779,1.4804688180502346,-0.5945025468141552,-0.9119696025795501,0.49135392518130794,0.1844121462543736,-0.7885044961363133,0.702424313829444,0.6426667667170657,-0.9953591786823937,-0.5331447015190462,-0.592795976026957,0.5675083638043956,0.6888821530954667,-0.16073533579132285,-0.8268545249709485,-0.8361507195255173,-0.23742185992952386],[-0.7608362645731639,-0.08375763990482053,-0.5371454867578669,-0.7401706867189002,-0.7085978553555004,-0.2804147290787813,-0.9367243018017972,0.016805010512416924,-0.6571176068614654,0.704237899037914,0.2080843798357681,-0.6923761216473,-0.8282357339838855,-0.664299819759775,-0.4407961425198805,-0.05111817407316986,0.49357778368298805,0.14028703492203676,0.2827575729811223,-0.9205227348054578,0.18360301331414072,1.4190211119707705,0.41431414642385855,-0.055358175503202815,-0.8623982021962792,-0.04963066850512837,0.1478368375773039,-0.11669117497021345,0.7861511005015839,-0.00393263648958918,-0.37956382266417066,-0.43531566271036515,0.5053900739932331,0.8867405582765314,0.08531959298875175,0.4630746546222211,0.7785547207091892,-0.724831257061538],[-0.9916463380626044,0.35069859510110657,-0.11974081827040736,0.39686688558108496,-0.1333998495361437,-0.2785642758062065,-0.39502416384766975,-0.2154380083958908,0.11268657742564396,-0.5348428923569091,-0.26136666962653593,0.4416044462044527,-0.5643910039122761,-0.2505348098360679,0.19367092311815473,0.8917292260098979,-0.6681456435921281,-0.4963880537482286,-0.015787636223211613,-0.9379731309297533,-0.9224435933337695,1.4312072124486646,-1.0428328468512482,0.2296290964252014,-0.6851679755848143,-0.5835579888617609,-0.5377674144944801,0.05928337392602025,-0.9199534565121156,-0.25607366149672006,0.013476839503275205,0.3303260338290747,-0.8642996627383074,0.49691974723085636,-0.13543135178455856,0.48229221181161847,-0.778057995257683,0.318599904019982],[0.5530394677310705,0.09883468260619746,-0.0880721849817135,-0.9589204105553557,-0.6283231988498245,-0.8905524120353292,-0.8951980294100758,0.20377052160071435,0.8820501585441128,-0.8100073441637538,-0.11348720532471374,-0.7558621683945951,0.004475342972206333,-0.9870148635086898,-0.2659246099977048,-0.29073580716236624,-0.561588825721562,-0.3108615584408872,-0.5763704190148483,-0.9836273725502656,0.6869922128246774,1.9312459212704693,-0.9577872889785586,0.5790367510879679,-0.9850268375198207,-0.07256674967775673,0.10755024501812677,-0.1384548895990991,-0.03917170537812416,-0.1364582405056358,-0.4127718415001616,-0.9974687503217169,0.1338256825375555,0.553874407084633,-0.224212728409346,-0.24337510376714522,0.44711014037461416,-0.11882237459127958],[0.45606688056269684,-0.9815917095000828,0.07591299796904485,-0.8908838284075611,-0.4912006731944124,-0.655648522623597,-0.6427421295340612,0.403515619670845,-0.2779441937794175,-0.883872826009387,-0.00885004094006021,-0.7552891605123686,0.5471076008606746,0.32130383326204914,-0.8732512609830656,-0.994310170558094,-1.092642735082274,0.12060291961805479,0.9494284116793842,-0.6522193203971519,-0.7694580099475086,1.6757788562182458,0.604551079749947,-0.8904446574193942,0.36862004726576375,-0.2558111132163375,0.46317058700396463,0.11945937439765125,0.532240021642939,0.8421184182362973,-0.39125789780425546,0.020656148321718495,0.4946375133294531,-0.5280317062316644,-0.7293516116522624,0.8843753077978174,0.6784363813434684,0.8614229381410098],[-0.9975531956723624,0.44172502923641477,0.6148145957004552,-0.033778119014040354,-0.1217143275256194,-0.31238609128065925,-0.9765731771419208,0.811631406826535,-1.0192612433426065,0.20736632599081423,0.7138754742844771,0.2758779947337275,-0.24784657984055491,0.36903917996782726,0.09682851815319395,-0.6193541191663807,0.7112534550387009,-0.37832464849613784,0.23329477629068654,0.44715172137351783,0.44018364509830904,1.697151535300578,-0.8229553664539881,0.6613441530056503,0.47672802307696077,0.05676330626035508,-0.0034287688309851795,0.1819384190519512,-0.23452645559126467,-0.8369015394871988,-0.30897634350989756,0.367561562452209,0.8571546137617292,-0.3171630736341692,-0.4321289436858761,-0.49535009000886027,-0.5986143710893881,0.8063919601801485],[-0.1212980526056551,0.31057102165389117,-0.2848004444649901,-0.8884209291314052,0.9773359449290645,0.23925013619505267,0.7432030682628136,-0.24361576582000058,-0.851118703968278,-0.7365162034527366,-0.8117841748216227,0.5026932935163806,0.6678105260862572,0.446933219866103,-0.401333148040011,-0.4395387385488572,2.2580026718025383,-0.8225445401079021,0.5506365172652624,0.17008072267125057,-1.0041490387262029,-1.4290047860975488,0.16092283017838369,-0.3235783339501489,0.31257357004459535,-0.7828302835924869,-0.37245271959968324,0.44287903502189524,-0.27464203707162976,-0.3983883797441051,0.5054217092039643,0.2785682592358871,0.3086276288084513,0.8239186818877586,-0.3708600654966381,0.5771358850339919,-0.22192227952086063,-0.13795732202367864],[0.7430057918192207,-0.8633990893795401,0.8298136178360849,-0.43603120295469777,-0.9919920823389913,-0.4387027961368741,0.40356138317023094,-0.30113516925362593,0.5220463422904051,0.747383593772216,0.3295954279152381,0.5410281975938336,0.030389289215395073,0.6402215179302146,0.46656424069740504,0.362096877118242,1.7180595368013085,0.3495178056140371,0.679561325754059,-0.6138811939707909,-0.747852157747412,-1.5743654854171636,0.8291962379773941,-0.2227216560677293,0.2309507570176968,0.5810387203447489,-0.505312397014242,-0.6960200053966259,0.2133027990250538,-0.6451024577464748,-0.5629121711175177,-0.3115625020813243,-0.17232545361942456,0.5935907279143836,-0.08501180868164351,0.6398170402301999,0.37053693456246106,-0.984571866695708],[0.9279314738758373,-0.7476279287287483,0.2924504538397934,0.46929606867093343,-0.7841146069292152,0.7161842372870315,-0.5922916419134464,0.48123670878988123,-0.8748497979930886,-0.1662189889037676,0.9831309912113039,-0.29384176861006855,0.5306933044416124,0.13806249600315007,0.6875899756722498,-0.40657817601383445,0.7877591281718073,-0.7345843542155748,0.9100141760697361,-0.834537877309848,0.532840415490855,-0.11827353128953594,0.4599621974170966,0.3325080016068901,-0.09168884583733568,-0.2983547327244349,0.5443406382737089,-0.4240981763113938,-0.5837010898705421,0.758651679115943,0.47864105371668847,0.868629046336374,0.6685585624429989,-0.9395807340790449,-0.004480440426756901,-0.4565334540023562,-0.8684471780418715,-0.4702825130596029],[0.8341735527861975,-0.9658719638355341,-0.6555469696896209,0.4976101951982161,0.8796496647211248,0.7610411359903753,0.6684137496628288,-0.07610031826839678,-0.06765873083239811,-0.17602514210738665,-0.16844812352127647,0.05125218635806345,1.8003349452798207,-0.19274127222088513,-0.3827932343943038,-0.9591132772076955,-0.3373340667566965,-0.18507688622429946,-0.23529425973590296,0.6686178799312925,-0.8872329791472461,-0.9622720755696654,-0.8174709105789155,0.4268924339025377,0.7512847095538644,-0.6687397833224691,-0.4598615800893213,0.5553398908077845,-0.26383947727997425,0.8270092550287449,-0.32803754126203694,-0.3151562690686741,-1.0944226102393115,0.37839422623096697,0.43416922247068285,-0.584178809793221,-0.8088343961602824,-0.439080282010495],[-0.9135070909571688,0.8249923463047331,-0.024461953516940704,-0.8319665463404982,-0.5871185471179768,-0.4998114161663923,0.24526320423506967,0.8668818496251289,0.5152411642937449,-0.07785229947945009,0.7501045371061574,-0.4640682937489585,2.790495675269458,-0.6259765383090307,-0.5427546412300646,-0.7456996126713831,-0.8670917623136499,-1.0385881874188163,0.30794852861691513,-0.7316739150129489,-0.4443201387559294,0.12707070455724376,0.2756541750855879,0.487029367573759,-0.3992065274687035,0.4611286740308319,-0.6366370154304581,-0.2774503610810904,0.4013792306652534,-0.6870479871950413,0.062027966150518726,0.5304831354213587,0.05189423748575002,-0.6139080230157742,-0.5960656551380238,0.3574891215702592,0.4826350981200215,-0.7757915563355536],[0.5373285865536864,-0.8379938288863834,-0.031009710431393604,-0.6655192197012435,-0.2559144328847161,-0.8004220392885146,0.834913317111326,-0.9778732661777104,0.8195428627860122,0.662074215855512,0.29226047098786434,-0.06404551598437448,2.8510548353007703,0.4774499082716708,0.46061116338488445,0.32106613558872893,-0.29227430174392577,-0.23160910721079359,-0.428758503039016,-0.29861852680555895,-0.6287050951153791,0.21357991122767458,0.6526625318048164,-0.34562657170957717,-0.1399938472261566,0.6884799094498832,-0.2828406552358009,0.13655062274516916,-0.7628613553071422,0.5044951111578391,0.9276598147782704,-0.7178691150703012,-0.5242587539733937,0.3040592338744955,0.7436073196678326,-0.46459640381135603,0.4364885890271486,0.5915382926130449],[0.5071795927963951,-0.3567728550058285,-0.6004654347283467,-0.5996612243141554,0.6965422751918562,0.4867533715516805,0.20846303761729967,-0.10012437672755099,-0.23737041650774537,-0.6696940628801136,0.8994644537705704,-1.0795986377361926,-1.0340589521787045,-0.8522690653219307,0.39555143972207674,0.9360589238412405,0.11595763929231848,-0.8013451695731854,-0.698709676077969,0.7028976318173579,0.6322802007467593,0.05491100548213547,0.030955187297209405,0.6728951472666238,-0.09244248398420714,0.5704953391700526,-0.08565817046757099,-1.0958931642758387,0.5938966037919213,-0.16500907097946815,-0.8111097645566205,0.020902257320640653,-0.19727926900501763,-0.5804852851270318,-0.8032328591512069,0.7372637367314604,0.6228650907357743,3.265463779430921],[-0.33952539382825847,0.47154721443055797,-0.34435539540174875,0.7870010125914673,-0.5326489612001115,-0.188131418068058,0.7647072770285092,-1.0005914701689251,-0.28336921297854767,0.5730173338013893,0.05672460021472567,-0.07135507142822932,-0.563158687975723,0.14691368949566222,-0.624722889777671,-0.05821887716668338,-0.7556129696679477,0.5120710851364074,-0.44255211834169,0.3440342701046688,-0.9210731579168971,0.374201478983834,-0.05236542116532578,-0.5980691789711426,-1.320989634658892,0.8772128289410074,-0.9759535787591631,-1.4943058392232162,0.5236078373048191,0.176228531373836,0.5615888651463803,0.4101909484110931,-0.06231127961139495,-0.396829965686693,-0.6322282380458033,-0.5537896652934194,0.8944060858778504,3.1187125303578793],[0.8276717745986009,-0.3526846564309195,-0.16204517412534508,0.06487208865372562,-0.14866484176751396,-0.0074283673367222134,-0.31627883571280296,-0.8336938030334096,-0.009398036909925692,-0.2810804197160279,0.9076884238793987,-0.5728208496062974,-0.994525566283037,-0.6984039607744932,0.2008469004685605,-0.715740517475773,0.2933673309494153,0.05052264735774119,-0.8395116779392061,-0.9648791701190724,0.16320475067411025,-0.9976975439660207,-1.0051422588913352,-0.2053466304108197,-0.2071085031811163,0.556367686054512,-0.9679543964261861,2.116307870482124,-0.2078010867672768,-0.06897761827142224,0.38332676439137753,0.0007512244833809321,-0.055816744460928394,-0.888543649922145,-0.015070000355266332,0.5257273277570588,-0.511530911737323,-1.4555433544497365],[0.9414400073976735,-0.10148787281662722,-0.21542566805920088,-0.3606703873059737,0.1737911537331082,-0.18335044819351323,0.08848550956136139,0.8451755193238382,0.9009166259905529,0.4097082339275692,0.41683747579686237,0.02655555846940497,-0.8235863443724198,0.16478644534863116,0.40116919840482435,-0.00635002616992482,-0.5670318759099449,-0.930673315046979,0.3821366332406824,0.7681749958449993,0.23747047482163716,0.7714219491246309,0.24091185476481922,-0.862788855095866,-0.4305679168322885,0.2631005341372857,-0.6363945142741324,2.358579437401503,-0.2118302342656281,-0.4175268318656041,0.37091208693851097,0.41965543471003,-0.9842260640639291,-1.0325187074680564,0.6249610530688688,-0.4966159160833214,-0.2988689766775924,-0.5019488364986207],[-0.39636211925243064,-0.18880536408254317,0.6049520194685862,0.8305705548416804,0.12056430925512666,0.3170909618318675,-0.6458653858590168,0.5323109857791116,-0.6546171092227653,-0.5813001308013536,-0.04448503822794829,-0.6606942492236726,-0.5473473754794637,-0.26547827169209043,-0.8847755170760627,0.053547545547702774,0.3300558487777573,-0.6911404073419702,-0.9096149185452084,0.3096795196016902,-0.7882464057485004,0.040291381313785214,-0.8552711341655999,-0.8148860422744497,-0.9908739284500957,0.3196075658848347,0.4093751377972306,0.7333403991391306,-0.871051398244475,-0.27624558573314284,0.8679942635028777,0.4292264101117117,-0.88743377634401,0.3902053932426983,0.6793439125167262,1.9916046980860311,-0.3888490689813978,-0.11739891660583233],[-0.9090018634405399,-0.5248185602722899,0.6527734247852904,0.9045417654323739,0.3877226815473638,-0.6437989103152902,0.6638085544683184,-0.5307479763401814,0.575481341007355,-0.7826718583868955,-0.5044274640417951,-0.38818303156288403,-0.36314212216313785,0.5763141614053272,-0.14424832982118427,0.044857937800809135,-0.9084252462150392,0.046186233985135015,-0.189853270737099,-0.23950058390886572,-0.8725038015547851,-0.8856855234492572,0.3412701115076154,-0.7223556615590286,-0.13808966846891027,-0.3509817158988669,0.15855923104798061,-0.5937197083385977,-0.42050558876181965,-0.9869582014569713,-0.8626868791620586,-0.925714798617255,0.39898694820271635,0.4333736065528242,-0.7805918252838162,1.6358939057828858,-0.3795139512318793,0.08481111837723383],[0.002800343807628492,-0.9643644641108127,0.8210973657069459,0.45150918803413637,-0.5207854504694572,-0.6412775244523441,0.048431141552445364,-0.336348051374643,-0.349106537136845,0.755860070970532,0.8046573980776226,0.22966820479001,-0.02088982967136522,0.07107055745446701,0.8893395807926574,-0.8129338012729298,-0.842812811677645,-0.7057644532265712,0.05360420991435202,0.746508585306617,-0.3346462722896198,0.43492897772976263,-0.2994216970642013,-0.11745008210575057,0.2551951739188556,0.08273305329183998,0.7268008971936194,-0.486818332998837,-0.9424406663746682,-0.13643195506682154,-0.9882762758803577,0.1968093996202711,0.37937081153376445,0.8131852351438842,-0.2603669825968911,0.6020324403001552,-0.04481238187007245,0.5092022016045975],[0.4180521324468623,0.5497317549307243,0.49164853904680755,-0.7433290456943888,-0.25140703093282546,-0.9482999345498521,-0.1596197764822076,0.41213172921804625,-0.1392642585245778,0.3218942875668935,-0.322394379362778,-0.22782060405127655,0.5244624129291799,-0.5161277755650955,0.5513392150495074,0.7910891584952086,-0.0326315657751777,-0.5942361486620019,-0.8890409753561543,0.6621790557586602,0.6307625389013816,0.47354306209022434,2.5665111510930583,0.02561255053127339,0.14178224772963632,0.507863779523944,-0.38469043805043024,-0.027629681083567136,-0.9924412822868792,0.737373877355704,0.6815759141272454,-0.34804838522974413,0.16619355845206593,0.7297302061143077,0.23209826279042037,0.09737238899156633,0.8233545171634435,0.661389972110911],[0.25777164332994296,0.9715854063188712,-0.2841686975776669,-0.03225437876391785,-0.8135709135243264,-0.9874377350789727,-0.3420737657025502,0.40054988493571875,0.6038312460865128,0.673094444904339,-0.906150457983076,-0.9354970328457296,-0.8234123869252202,0.9744676444817041,-0.9958173186356526,0.5295332572898188,-0.2825648948480445,0.03450600084033672,0.6078910591502459,-0.2694861735843855,0.04226451182315995,-1.291794852892734,2.061263293448764,0.4166423914191968,-0.7002529892134907,-0.8965880607007943,-0.5358242274063153,0.7235767866804768,0.3004355963395538,0.6208465598118221,0.39127003069019667,0.56561921798518,-0.5804136229956255,-0.6746719348792236,-1.0088711392834235,0.01683214176909114,0.19305663601397452,0.5526437820629678],[0.001993836021009455,-0.3883595904104486,0.8052290344610761,0.6338765396882629,0.19385827024634578,-1.0036413752370434,-0.9564284954067261,0.8323410593995136,0.914155428373636,-0.44289637739551596,-0.6408862565027862,0.6438937450113715,-0.6170798950347234,0.7161075312043168,-0.577820715811307,-0.18267676866826815,0.22059879202352212,0.21404855939390185,-0.8980000569647937,0.48859645408962205,-0.921545403143302,0.5383617922118143,0.6048821080724671,-0.28558672001172686,-0.9012222374981465,0.21373290946661358,0.19232338413021258,-0.7945294538383548,-0.708163638095191,-0.16599532171286346,-0.8616406384187576,0.10233905896193655,-0.6504020195618859,-0.4153034929715275,-0.3969134877775852,0.16539989959292406,0.22180853705971798,-0.7335834334007293],[-0.4969152324484731,0.8401718796163352,-0.6619511016357776,0.23342223390430183,-0.12413684349824138,-0.7523404678107574,0.2241666970076126,-0.8688325505641845,0.15666587173552493,0.005321296928666577,-0.810375147376977,-0.23204665280293205,-0.9927511303992563,0.6712593264055866,-0.7241933977290659,-0.15395309035377672,0.6109263102908099,-0.04002075806976289,2.0638083930257682,-0.8192745274963152,-1.026419725869174,-0.5311479815361605,0.6493988500603869,0.655073454703629,-1.017130857969722,-0.8013340487887528,0.2698249152124185,-0.9704622544651641,-0.6215196864385782,-0.22226048830058304,0.387832799589916,-0.678586084624185,0.037661490714463716,-0.01642554276521898,-1.0258697708210478,0.4670831827399491,-1.0566405598187667,0.10774227018306798],[0.7536400610904802,0.9068091358320738,-0.3399175003279949,0.9097215672547817,0.14828903899356494,-0.8483905948942811,-0.7718302173820888,-0.8477335496638065,-0.43120497662463275,-0.0411542982491512,0.38396281936045373,2.634397238325308,-0.5869929157083937,0.48660984263039986,-0.03969516233796598,-0.022450522959803484,0.747598298525273,-0.34248868495324325,-0.2955015051679281,0.31187587816103524,0.2061001940354912,-1.0889985206492736,-1.01923758065807,-0.35404095574037747,0.5502738188195414,-0.34313913249719713,0.5758454593904955,0.38372760389303623,0.476875910296209,-0.35870459735488164,-0.0687989189226774,-0.10579499896980707,-0.05873993994056321,-0.4407628931555959,0.2840337651979329,0.4685065830554344,-0.21086773471440579,0.4229300645834653],[-0.9840443794869185,0.5788603706313062,-0.09973092639917745,-0.9071651072751635,-0.2830923273430268,0.11695340746917221,-0.5607902200558984,-0.762566314143685,0.3138806507839752,0.662723247860686,-0.3827238070596435,-0.061542940115144225,-0.18877086627616685,0.32172712218302446,0.08090395498939534,0.6618613342179055,-0.5004772535633645,-0.6405683013399167,-0.1842611174094827,-0.6166422616402707,-0.15371985666384852,-0.518197949116771,-0.5073577284934679,0.008972803118836664,0.6335815984162148,-0.24339608967612344,0.3168521273967208,-0.45392113268025674,0.8470643515690583,-0.07581451180089623,-0.7906380763085369,-0.298985854757902,-0.6244796162401747,-0.7527611792866117,-0.08351183973706301,-0.3458785966143854,1.5445870029156783,-0.9635595418914734],[-0.6882096360677976,-0.9936192156679022,0.11413191863734494,-0.7496170907367252,0.10981673991117522,-0.6602127736192676,-0.9478063551374756,0.9927293840417498,-0.11499223689790712,-0.34185703812658114,-0.3148015851728312,-0.1989907602931378,0.2182719693052559,0.6432717013885667,-0.21846850796359185,0.3203428079119235,-0.4459298895239699,-0.1094204542660521,0.1504975717553992,0.13229935054867017,0.1994263559151109,-0.8612344184786201,0.529356075430039,-1.0055352662904016,-0.12687795219131778,0.5519496421851763,0.2955322449914148,0.4116804816543185,0.46568809143581874,0.5830366487211048,-0.780312249883942,0.30932863568969166,-0.4961760786428298,0.475684709439426,0.19227357870687992,-0.6833606340867505,1.4550736863430391,-0.8705998328377476],[0.08420002364752656,-0.5771372421147136,-0.9564206353337419,0.20401100363285327,0.028878845633201266,-0.7369046845195885,0.4159886372483371,-0.0381374917011922,-0.5294482938479604,0.27017490525050364,-0.025047562532537607,-0.6616888180096057,-0.5230333944563961,0.35822659504684873,0.730300755607088,0.0006150558585234514,0.32424223955108933,-0.9641302577701834,0.08580591782587639,-0.8129116839617625,-0.976991731456375,-0.038288486140101205,0.29090243762125906,0.6586473117266473,-0.8790177661072327,-0.48176130682330753,-0.5718984657114997,0.11450236652298816,0.8608271978743166,-0.24741133508468469,-0.20052379523434097,-0.6500779541128843,0.8650054383901513,0.20448294041941234,-0.3086572238556276,0.6735614615666304,-0.2584140300294657,0.33126289973265505],[-0.13675192845193374,-0.7777103533273328,-0.9415450579160407,-0.9860467368414365,0.2948876654134029,0.8050811248088204,0.6985981149211962,0.08554022086408797,0.702669153235027,-0.967044156209125,0.9167598627134871,0.574443783802688,0.3936683633456015,-0.8769894398841425,-0.024116061319904097,-0.6872772432637481,-0.4787504886413481,-0.31300633114646165,-0.1998831231825777,-0.3774639418902401,0.11785148395085991,0.7400002823347468,-0.7981528257092428,0.7159403095278281,-0.45379620290882106,-0.44852339531960506,0.9157520825522603,0.11141497011347296,0.6180288758016226,0.036000269248282105,0.8448334938385214,-0.10664538351116166,0.5340115950866691,-0.5820977039401722,1.758862663687139,0.17331272686908547,0.19317902997673822,-0.5606589942188849],[-0.7399180291694775,-0.1662232927071181,-0.2536816016792697,0.7101675399824228,-0.29749851119859594,-0.5279330801747631,-0.48578360205336224,0.7876785142199907,-0.05584149728813054,0.7359890157522538,0.6727436673171071,-0.1688807162752333,-0.9152506064031235,0.14907175537699327,0.7912086362308907,-0.06972679667387621,-0.24805036844480058,-0.3410909285324211,0.27973658996469136,-0.6419854144127279,-0.28269119660758535,0.5061119117185244,-0.4573325495797783,-0.1851450838962932,-0.6680952810437697,0.034463880880720915,-1.025578940510829,0.33058896741325383,-0.3556276043196997,-0.6854712904686221,-1.006573319179508,-0.08903210649818062,0.8373966842228556,0.6106839303661421,1.7864281352829807,0.7380720364658383,-1.0002829834313476,-0.4609713946900845],[-0.38488925143805724,0.052469529750670194,-0.5648127773022332,0.10292138149510367,-0.968562920528938,0.08776315409330235,-0.6644875915850466,0.2783023121971094,0.4541490611281538,0.382914209720882,-0.5145401296373765,0.1891573039364324,0.31924507113044787,0.5564747438107386,0.10404872365693944,2.2302271682648094,-0.4937825422943014,-0.8022794593938866,-0.6636406001192482,-0.9094030085033731,0.18083905551257257,0.3858946866898843,0.25565686139117705,0.5106339612289753,-0.033594870156064674,-0.6409893131449872,-0.8426961644831221,0.5627326922009828,-1.0372044668039726,0.2901210982402041,0.3297581458225271,0.24543612190072583,0.05612489496728952,-0.9144759933617866,-0.2594548809349524,-0.5531525547220939,0.06254620130534162,0.323439990635893],[0.12604163374439797,-0.9822393758282564,-0.8746949611647556,-0.0529495881821719,-0.3745994444718104,-0.3155896035034251,0.3360800395045875,-0.17003044089299338,-0.3771380809795716,-0.3038612538796992,-0.42154512774303904,0.21906407517752075,-0.49145199939436496,0.5008348378362336,-0.5421977217361967,2.735318318357648,-1.0313098789209458,0.19687334198427928,-0.7008994386712086,-0.7031160806783008,-0.9372923906057286,-0.056323424873393306,-1.0507371065555793,-0.02477376878981456,-0.6334195966305631,-0.16186973782766295,-0.5924239488105532,-0.7310246319994194,0.3365885977200043,0.2658143936022408,0.810227259770425,0.08423116389738472,-0.1412988920030692,-0.1487526617971737,0.19381811365083781,-1.0502992919559972,0.14592186842958518,-0.0791993602503158],[0.8819457324071431,0.7991547348803619,0.203801278246102,-0.13885184555576705,-0.6236452043771349,0.9013976619191422,0.7173811741431952,-0.9638292200424973,0.02176952277778465,-0.6085228826496946,0.3742516208200103,-0.07093783064935792,-0.5777192704573515,0.634474324019848,0.2849488623928095,0.2503698658995882,0.5163894131670648,1.288010076664598,-0.21100258390591717,-0.3409267713363066,0.21866644711902763,-0.6465886058278302,0.8787435080691964,0.5487035153171933,0.7287190321487726,0.08688631682672435,-0.2912912700935857,0.6918763021874647,0.6112053143492395,-1.0496507901595438,-0.3249869061104513,0.8795071371304345,-0.10835218174476262,0.30706054186099885,0.14341255702349595,-0.2634186865038049,-0.5101731349406773,-0.1788124733379437],[0.5701974327375262,-0.6393049305586039,-0.8386519402227031,-0.7762789613769259,-0.9262006216894741,-0.017650842072917918,0.6142367969814014,-0.34881604393795457,-0.5732873704246109,-0.8822256894214596,-0.3898266131505272,-0.8121657454915848,0.21715257805470878,-0.8325015420512618,0.14368007199035887,-0.8462683037570673,-0.051659506932513186,0.7108499154831419,-0.8571305733869399,0.3543321292612509,-0.20554158025368463,-0.056402192842562426,0.5388053274382718,-0.3790981399443613,-0.7112584877829102,-0.18782174574994095,-0.13140778567518535,0.34653687030380015,-0.06191705866484514,0.5149674952886244,-1.0104148530991737,0.16365179133916044,0.057448312028432556,0.28897136802342854,-0.5596878404785829,-0.8320634900742709,-0.4587397396254168,-0.6633739031220395],[0.8045438702935134,-0.765497700715081,0.3931672014401044,-0.36103148251452705,-0.2765176814631406,0.2075869123724321,-0.36898473675838106,-0.3492652380621438,-0.3322291475885569,-0.431182337999119,0.8032627044300223,0.9089571566965394,-0.8903085752126578,-0.7080543370530963,-0.9362842086544791,-0.6224150037719329,-0.698287207755297,2.845225308305154,0.13930066864864526,-0.9039152724017439,0.5212991610931218,0.15343857827213803,0.2986318563306279,-0.6658448711126054,-0.28086871712288347,-0.6338136691686977,-0.6910093919250581,-0.36166338828585964,0.023990845447961606,0.31610553796696234,-1.0061865486954298,0.7367937050664833,-0.9470351329714832,-0.27636823456587734,-0.5651938793215562,-0.42153879847032855,0.8800548760409168,0.7811723751623102],[-0.5829455954291853,0.7926614498221244,-0.3081503191142351,0.20347969509976668,-0.8486048595691013,0.0966066938793854,-0.9736533087531853,0.5282233760859754,-0.9825675441947089,0.8977033294012741,0.26202210781968294,-0.6901450150244328,-0.10989340394061016,0.6536774344386067,0.27105525567102423,0.97414124235225,-0.6614586469581129,0.008396192537453903,0.6939162246792623,0.6678953427559479,0.7919033589878661,0.840644400667294,0.324520928568794,0.7688676340525389,0.7696748334406354,-0.25798431722261883,0.19540064940996787,0.3683049345643952,-0.26589890871782795,-0.7497400132928677,0.00011650180007675352,-0.5896915906199616,-0.8145614056459349,-0.3189877367927514,0.8498308269685694,-0.29609627885896367,-0.37832096681875516,0.36917280379386647],[-0.5118678570395735,0.05806692463992114,-0.30800286252510234,0.20801152683207155,0.3192436847771945,-0.8243924035580382,-0.5418128531820717,0.13032917308688785,-0.8307483219781396,0.44742279639831006,-0.48699965755835706,-0.7369185676810367,-0.03823544452165275,-0.8113848593502089,0.6204681299378985,-1.0577882142618271,-0.8084119842946306,0.49016681258619177,-0.05574467451679376,1.7589866918110537,0.025562298357892355,0.5078995181615552,-0.8282497027331894,0.866028288220385,-0.7323362653466272,-0.9171926384062715,-0.06301778469393805,0.01488139510720112,0.3882303743963096,-0.739561904133376,0.4961132971686063,-0.873168126117829,-0.23715520071100668,0.07352996169014672,-0.17053183264207963,-0.3706790175927038,-0.9507249308461643,0.27249255441079323],[-0.02751956522424098,-0.4139869779471462,-0.2915428126157481,-0.7361685892562624,0.975945957214666,-0.23220388160107203,-0.6851592734993545,-0.7659998951799076,-0.27897345118675776,-0.4342767646872073,0.20019461998043397,-0.751681579714296,0.05540361404729482,-0.6362406662991161,-0.19890734648576858,-0.9188879841198405,-0.5556031829961223,-1.221152295674852,-0.8326026138833115,1.3051605611854074,0.6430972170860595,-0.832564322947612,0.047173279023915854,-0.12296105819152181,-0.12170095629656369,-0.1369176400891785,-0.9819376633143221,-0.45985952942060415,0.04523434141523618,-0.39725037190130336,0.2769217254013389,0.40055909769655207,-0.17629883025323626,-0.8253849419548653,-0.2153331828931559,0.2292673062562403,-0.07915667490675221,-0.6421212490984999],[0.9290703148343332,-0.06595571602886358,0.7031472720689776,0.8865206626885739,-0.5129203093359873,0.1542431923466263,0.1892612221928116,0.04484103034414017,-0.4164732431086776,-0.5045825801378546,-0.40283604164553655,0.009199804168198697,-0.47705404514272765,0.867901079909992,0.6813535947963143,-1.2701039062954693,0.8322799436297492,-0.7875772896643789,-0.21034397512080977,1.5606916032862825,0.14047281439587017,-0.48930144705739914,-0.2892106495951879,-0.8634345397062646,0.022829436445043733,0.1937969675216409,-0.38670989862377264,-0.6196098092734205,0.7252543114259409,-0.8270361897599486,-0.8486917659954352,-0.22191631723486865,0.4222451166479977,-0.9310780273853663,0.47665297647135346,-0.1983846571385273,0.7580488827312739,-0.5900614781556195],[-0.010931890987870544,0.25283562081856026,-0.7917373215640875,-0.7272964142994865,-0.7267260037944311,-0.5795176631432115,0.08917740087650254,0.07719345733466382,-0.1870777663066353,0.470654563956553,0.7567695903768129,-0.27464613238702806,0.6590201345864354,-0.8217994433637205,-0.10411806460651438,-0.8007442674476438,0.27937703135725567,-0.14741910815165657,0.23710377981516334,-1.0813268260854008,-0.46114667752535543,0.006766609302361396,0.5394859434484188,-0.9441201331028873,-0.4815967916871956,-0.8617479587119777,4.21262126461401,0.8328605757154826,0.21352822264362903,0.1900710225262028,-0.9354810622697728,-0.052512037427442176,-0.7739211045166838,-0.0991439907942026,0.2992186111362355,0.6125341491378878,0.15536949186463367,-0.4872632257267773],[0.8190886978062655,0.6656894795678461,0.257221943201162,-0.6445519879846305,-0.09583241690621402,-0.22292372141864653,-0.01105013181016138,-0.8273861120882369,0.3711432877560496,0.6878014166655246,-0.5300151738833395,0.16613836988652234,-0.024807103995458154,-0.40195365784798004,0.7916310078024277,-0.7540037026540739,-0.31451289241427743,0.40396623148701666,0.5504026330360573,-0.29663515990184697,-0.8088740085464123,0.10417436810225929,-0.15687350391489266,-0.20098894413433452,0.4592278830410575,0.7895146117225506,2.5333185378828187,-0.6887033042454015,0.713737199811254,-0.4445067846072283,0.5438031593193798,0.27954998794760005,0.416554336727131,-0.24100862908960463,-0.0973685969115171,0.6837175986860071,0.41090831647983783,-0.9552889108413788],[-0.20895829231638988,-0.9575915513118525,0.39790044062431534,0.2031592692849579,0.3429817079053207,0.045370056356896914,-0.3963599129356837,0.1438880486410332,0.9209652270809392,-0.9415710178170221,0.5889885990064861,-0.7063774280372384,-0.3943480349348698,0.6428843993641982,-0.6810325502926287,0.03224540834943634,-0.27652318076932686,-0.48086682306164524,-0.6881914082159014,-0.05765514600660106,-0.1614843042362464,-0.4788714813037177,0.6165128057848878,-0.9041300133017056,-0.4253898410975431,-0.46652825684757604,-0.061790508502260484,0.5283956328345794,1.551731219597246,-0.4746460251650747,0.05050296620696704,0.43468731228276425,-0.3692187213004959,0.6990590564560817,0.3240775271728913,0.6711473355410239,0.5065445223503279,-0.6975135583439793],[0.7767284651040484,0.22298767817417384,0.04270585150782126,0.508847340527105,-0.036367675692038026,-1.0054143069972616,0.8102176815661922,0.325967372800441,-0.5592285452206144,0.36781391355028636,-1.0027400553857535,0.3781768100322032,-0.20911755914371888,-0.2055887647378645,-0.27927836171461096,-0.5717344405882088,-0.2984446837810505,-0.72441014292846,0.3177568620615965,-0.9691264399783139,0.8613820177892386,-0.14518732943652354,-0.8224213842656449,0.16707470087391144,-0.342044350018292,0.1613051538042202,0.6426051424874374,0.3147796199664087,1.9488955385761815,-0.2461354982802673,0.0723017519054402,-0.6819471246337737,-0.7777210549984156,-0.5822902077475663,0.5297943388916831,-0.7202638470373498,-0.6497733605751,-0.9127017450060791],[-0.12919318247538522,-0.55382857543372,0.8172170330042271,-0.1056993520869896,-0.03480574027517221,-0.9362209723775935,-0.6424883760447797,-0.010416201895847878,-0.672673346437352,0.6434226375259476,0.543823808846352,0.7350659107290095,0.22697737569291337,-0.7978514389089199,-0.8460742305310923,0.5058811971788604,0.5020586098128396,0.5084890979398574,-0.544392087270858,-0.20219332224462438,0.14105340182524886,-0.031069745329628667,0.7430967583719477,-0.6660259001645801,-0.9054564805116392,0.4370119082999894,-0.09732124143530202,-0.4681938690042746,-0.6899393031106245,1.5553706526667264,-0.6986132920207782,-0.7920571973936792,-0.1354783791201322,-1.0394559488285497,-0.2721144845107513,0.35468546560472436,0.5810523099748806,-0.7496415837308387],[-0.6077639689181321,-0.08709698675017254,0.2603039656658579,-0.8253617733281532,-0.5186393458182557,0.7780645066525071,-0.6000294490076763,-0.3140668840146562,-0.3726198820842096,-0.33390862588617937,-0.8357940183240768,0.5947486719175614,-0.01877957472950933,0.28767796913381455,-0.46251571719125273,0.16217130208497657,0.20918754523614794,-0.9672512244676318,-0.09944573871002076,-0.7096676432219279,-0.7586796417930428,0.049227380025850934,-1.0060345539041886,0.4362719581813597,-0.3889965901273586,-0.8508251179788571,-1.0639351543571174,0.06584251547935578,-0.09406181289439447,1.6601853225699972,0.8227736549004463,-0.5169986047971183,0.2879260773015125,-0.5373844107125402,0.7045934793640699,-0.5524295072290815,0.7898652441329762,0.3790773014264595],[-0.6906595102085957,0.677311003837914,-0.9133492861016874,0.5616676117912084,0.7574664825178905,0.5043769603813947,-0.7945594446224057,-0.12099350114230521,-0.23635654297930403,0.44816823362667657,0.201782302892214,-0.2745070442470493,-0.36811249438309773,0.03808577472695293,-0.8932055760590698,0.3579888786121692,0.22771739183906645,-0.9704162577973164,0.45518168147837373,0.3548985684745692,0.579866715749201,-0.7494163931731483,-0.14963706005874902,-0.21259361701448048,0.7378707924832882,-0.19985930868587634,-0.7241833708912483,0.7064736676550156,-0.026826189453622414,0.8174590802279272,0.12447842886150053,-0.0926315751930362,0.24932541460258087,-0.3657780727741316,-0.6535236674638056,-1.02003800723355,0.11678205031508733,-0.35750547704014607],[0.8743238547662129,0.991926387252673,0.2081681678403378,0.5635369678568903,0.9228169442233052,-0.8613353852944918,0.7207732983313728,-0.5298430871754838,-0.31552232713395356,-0.2744396605338407,0.7067831694057695,0.922367146316384,-0.974623794273653,-0.795016219236306,-0.49358146156988336,0.3993207212747347,-0.7193023262527771,-0.8986014219067882,0.2796463773329116,-0.13332901408949396,0.6402712928142736,-0.8467611082905995,-0.6250584231680473,-0.6180236175188966,-0.548135191945964,0.5859667954166665,-0.9586965244176636,-0.4861238520889467,-1.367908631868019,1.710756354177098,0.25141692286515077,0.6171578480227362,-0.7796454037075609,-0.8863154703320084,-0.7005036777237179,-0.5929800407767065,-0.24829415901921045,0.13708506281294308],[-0.00011245301140244786,-0.6051636163438442,0.8767807063671548,0.9607771728841175,-0.6416535546222211,-0.46039214834503417,0.38197217061038125,-0.5193168972159048,-0.6609601301657704,0.8301249134248221,0.6007724549393134,0.45735480167420184,-0.7041888832717897,0.32410246015797156,0.5363884645680272,0.35868055872980803,0.2480871562391442,-0.23448518500068216,0.6013413126963574,0.03300904481161525,0.6162212646019455,0.45160692327200963,0.0898271045191485,0.10823423882588522,-0.7358726056707516,-0.01269835132829481,-0.02959487979693353,0.6950883326719907,-0.6080273916133139,-0.11308890238730795,-0.9403539564307982,-0.5950666712253815,-0.2740170513666214,-0.550106317409231,-0.6795547131352621,-0.105023795865278,0.42271078513968885,0.526596252450935],[0.07780907907860882,-0.3248655015438769,0.6392386949978067,0.3157334887813598,0.7271328127833485,0.17519606270870988,-0.9247121406703527,0.8437222913199285,-0.5637757785365552,-0.19483767659618229,-0.8081144941302922,0.8141657771594026,-0.0682791582184827,0.8632175702685383,0.8035251645453139,0.7024630814835078,-0.7020795141549456,-0.610946173012328,0.3364800101795947,0.9040152534354838,-0.8365210766035408,-0.8981323582969841,-0.31304654328908904,-0.3541165449931676,0.7584740534434253,0.15028283756588748,-0.29207152889310584,-0.4996026206520726,-0.3683826545211004,-0.6313390083544237,-0.9456886082859157,0.5430053397481487,0.8061822051258781,-0.5945899293010538,-0.7334269556229084,-0.28459135516443296,-0.5910090720043032,-0.34589980393345354],[0.892174065656808,-0.164604345521493,0.9854476135004039,0.4919216161842366,-0.2880701265442093,0.253514776643912,0.00698999610580508,-0.7806838744372094,0.33709648118652774,0.6692515068886925,0.7696178222949359,-0.8030096702828795,-0.843068611084062,-0.02745750457170363,1.4772289709017268,0.47136930953583966,-0.8502765956632793,-0.8488491331340831,-0.1440037670695049,0.5902962028548151,0.8392424477341996,-0.6297268966729452,0.11794371286866616,0.04442314713674567,0.24683111742966835,-0.4085206737880899,0.456930053845201,-0.1662174255885874,-0.6567887565710155,-0.7800325165100545,-0.6041320375317909,0.7769719863796011,-0.5555236633513545,-0.7564616857075769,0.524132829988268,-0.838733012932022,-1.005238980003789,-0.05008796644132769],[-0.44253455821040727,0.6811495269155371,0.08779374985467464,-0.5080119748365985,0.5199850318118557,0.07119542491536278,-0.24495769957076652,0.545450375137042,0.03606836807327268,0.7510567347594873,-0.16830105399396247,0.13061635080880127,-0.6439672231744739,-0.5700796362433621,0.5918246958257841,-0.2765128269433063,0.4526594175756267,-0.2701593507948298,-0.5414806700946917,0.09401949428974715,0.43622312069196273,0.09514370381079097,0.5854366841199349,-0.9221627075040876,-1.0188567873651584,0.14087619516270655,0.6414944784782396,-0.7456003024756754,-0.41618461531863654,0.7419981191391642,0.9435860187904437,-0.4842024917007213,-0.7557986101499113,0.466015530424641,0.5380397321820588,-0.6973306601830999,-0.14233317065122517,-0.3025821442735219],[-1.0309860583266426,-1.0013486345662999,0.2795016367765445,-0.02349175889301035,-0.41977247408411994,0.7725568712577738,0.9567724034204046,-0.565071974919682,-0.17823425075982613,-0.47477969418885324,-0.5233569418105448,0.3415524559888661,-0.03316842583165322,0.6356966385768876,-0.3683237394966118,-0.019696998755878357,0.6198079179674482,0.8347095460806583,0.8551883600566753,-0.23027779006581445,0.21108776414846392,-1.217308024212913,0.049186771690553674,-0.03204152899239435,-0.15782141074186987,-1.029445485286053,0.6194319127421153,-0.0036660908864930603,0.1640102410315215,-0.0024421997372319694,2.445841310445062,-0.17783200711742136,-0.18574652254614027,0.7875454045942054,-0.9472682120702837,0.9269089003546606,-0.5522226567419583,-0.6181142485244184],[0.5634010724530806,-0.9812716819258338,-0.9903078992770141,0.11228794503899349,-0.33694272103156087,-0.6935531662951425,-0.23043843436146938,-0.48929571614489065,0.11519118353904938,-0.3856030286106845,0.805265145042815,-0.2696734230234045,0.30516602216972905,0.6588489661344877,-0.13003217423577204,-0.02193525748855059,0.3303520881948123,-0.815921063867334,-0.42672799944036854,0.5921303298513265,-0.4202460141409042,-0.7396673940872147,0.2228330777911012,0.4385345107265504,-0.9098610611789243,-0.1608494521544392,-0.4379441985090345,-0.1552885659171368,-0.3451335055267303,-0.6366747495210687,-0.17582603633831054,2.7956959958581735,-1.009422529782209,0.18762264852513255,-0.6069400507489583,-0.15912211860392186,-0.9521600363391224,-0.8669788531673044],[0.5681277506561541,-0.9555302925769595,0.09824802627348177,-0.6258731419698247,-0.2096984966035473,0.4683070566906792,0.06201944457457167,-0.3666325156678134,-0.44792778061306954,-0.5442460768444649,0.8468038557617638,0.01723221320799974,-0.45661573231420977,-0.3985873036477206,-0.29289063319983627,0.20651590574503134,-0.24628002482272676,0.8796335441517561,-0.36539922448967943,0.07736351101106259,-0.5489087561601467,0.6804571844358672,-0.746959526416408,0.23246987738119607,0.05262697449008078,0.5603542782746648,0.4428579206849885,-0.2287487445420371,0.04165064669810992,0.6982617832344342,0.8498712995942751,0.27542172637809986,2.773805152835773,-0.15734312348446014,0.8469830704110224,0.2748572523336306,0.3126416963301523,0.31907171243077764],[-0.3476563179003702,-1.0194165083854723,-0.8817595725983076,-0.17405399493350135,0.5825138620378726,-1.012112905921576,-0.7390460858325866,0.6057897753919869,-0.11865566934160571,-0.528544196757112,0.040571112381168145,-0.08109074090865542,-1.2710717020951414,0.0831845926872615,-0.4913377713454601,-0.6956709364184054,-0.43706120808078924,-0.5763668432274001,-0.8424857656192961,0.3784250733726447,-0.9188735377729172,-0.20905281097119804,0.5272417993282577,-0.5062936205717784,-0.6630677602316497,-0.6438892124848273,0.3435134036833965,0.41255728130299624,-0.9678247001048758,0.2961086694438591,-0.9489693089354023,0.696616967530819,2.6192809458497033,-0.5518629824013008,-0.5245292502222204,-0.7349129596415926,-0.06282484371936259,0.052836808313695256],[0.6961229625202835,-0.022568695383097942,-0.25644694779985944,-0.34481842378774785,0.3562620403023469,-0.3875275051729462,-0.330274082947949,0.9317502806784702,-0.83956258369781,0.44248848189739265,-0.9408513301395244,0.431477514625938,0.3759786488622542,0.01277820545043385,-0.48062379583482495,0.8881564276398024,-0.3188664883743219,0.4463345089275417,-0.6646405435179357,0.35188726416524907,-0.053233413017282044,-0.5171353294842418,0.6846087401207008,-0.14768426727975434,-0.5793419247783352,-0.25064105715346136,0.7047707272244012,0.3300431477594094,0.7782909795223201,-0.5329098589063763,0.7090024779017927,-0.8599947125674527,-0.9504848944918125,0.9649593189877484,-0.8126854885356766,0.7338124600631264,-0.08740491239044047,0.576296883250567],[0.2614784828447153,0.14726522073856976,-0.19867584250079304,0.22125600228478234,0.5432249377436627,0.42033200038386365,-0.1465492016983704,0.2616439567895207,-0.4585211893760673,-0.5434383725429962,-0.3175793043524711,0.6961086786565533,0.8413101308646609,-0.20363733471924622,-0.5584553290086157,-0.8206886152568276,0.021081055319514524,0.34729097590912966,-0.07639358923742376,-0.6353310230021051,-0.8493427554565338,-0.36112231906383796,-0.7115999299853809,0.60646984318575,-1.0622242926181364,-0.9777130791471162,0.9138816963354257,0.43902280691669676,0.07117164441047416,-0.006942990609317277,-0.617325193488013,-0.2875340016490194,0.36019228436885303,0.4012486834378371,-0.36831016277782114,-1.0272784952714364,-0.679553378194044,0.001401438185831637]]],"Output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0]],"Rate":0.1,"Error":0.00248,"Time":3.555926427} +{"Layers":[[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]],[[0.4387035155409717,0.4149103310257297,0.5687357856614143,0.44685607698619845,0.7321341888027683,0.5211547818783958,0.6060614318387975,0.545605024006577,0.713794311289122,0.5941413578493793,0.3378074483939093,0.44938171575981645,0.6355408395006485,0.4280229369588307,0.5948639170025477,0.695797599997589,0.6135660610530091,0.5948253954839857,0.6521905015432063,0.2931222781111401,0.25664480491564207,0.5346639450998009,0.30587341253644795,0.6273773427149968,0.7233489360756211,0.4015711085085147,0.37176634212683307,0.446764138952222,0.30844043409499844,0.7250799761546654,0.4819244518809558,0.6388931410810672,0.6127343172712615,0.5812898524509573,0.53986024127246,0.5090583432522954,0.583817693452549,0.4843986546669566,0.7193116428266244,0.4620057185315414,0.4890915002395758,0.48072512253199007,0.35977671976152303,0.42313217758540494,0.30506695840211645,0.5305056231586711,0.40628308265689156,0.509249953841338,0.5796534288999109,0.6027402686641684],[0.17196602923704274,0.550040951029852,0.00011175117898887973,0.0022788733083766387,0.2830701750247588,0.39877812058475703,0.0000019044136098014463,0.04793489113449561,0.08658358426993212,0.006249524454910177,0.058780236650966704,0.4202424575705024,0.8655913212189693,0.00035352832797391634,0.006435407754214623,0.0008805472382020377,0.00003887237722658486,0.00021126158848666334,0.6500932674794524,0.7185612957889317,0.017129361175830037,0.1349002533082285,0.29605207992228694,0.28781542225936274,0.2098148891554257,0.9356482132208921,0.0004479268500138449,0.041369698213774474,0.5826358553643434,0.6228079439069862,0.0005740283497365782,0.28025403706007274,0.3038077944416413,0.16747695855227013,0.2736251661147494,0.09637066661380496,0.9461262605088157,0.3209199145155579,0.3783003972711023,0.34924357786407784,0.35986257587014975,0.04079733815078159,0.005128212402561598,0.8245057452400808,0.00004083350417087261,0.4193064842492229,0.00030394984924797167,0.000008596588518339561,0.16283615994454684,0.01572290912262733],[0.3041325942983708,0.4615304217010692,0.00008306724245928138,0.00006845933984455735,0.38764839921328115,0.4611651628741804,0.00004295360327894154,0.00455033184319696,0.08865919623942105,0.0005213527734313381,0.20850403774954956,0.4526084136532039,0.9508478693971822,0.001015628598410443,0.0022408863989263647,0.0004918756297254466,0.0006950856123939334,0.0005616453938559304,0.551582205498493,0.7423947161736297,0.01935515620978851,0.16951241443024948,0.3843228809093973,0.1367210608876816,0.26804340025524437,0.7177322005362555,0.0000900034136740014,0.4864657346144755,0.5607391850940846,0.3832255800948369,0.00005655674327583893,0.37706483236841837,0.5233609738429754,0.1219318261484068,0.33850832468246206,0.05560502083127056,0.8340968142933836,0.2927032823560548,0.7613104830905931,0.3487934566176399,0.24149428065846668,0.01659305697326525,0.0005104975991541031,0.8110082800269471,0.000003175350232098254,0.6316522233645181,0.0002868979139647964,0.000004041003789441201,0.02660718308980931,0.0003693808236196072],[0.4199045056211627,0.4043926500235571,4.3475283842407087e-8,0.000004207441724944521,0.35026367701089944,0.12412274901256774,1.6641477269738424e-9,0.00015023957595084407,0.11032013058090005,0.000023308980524437958,0.09779262631480767,0.37763533513098596,0.7254925227292234,0.0008434469613170734,0.0008591344294772847,0.00021055784281184028,2.0587631356707557e-7,0.00004620401039622183,0.2747970892718915,0.393949156316556,0.03886750633987109,0.03338722833867718,0.31995721616135103,0.1293795620041378,0.13520141030436858,0.9520650275888322,0.000028706364289554972,0.15464437817666904,0.5447709715802219,0.8699301736877577,0.005401830260430355,0.4516473912661041,0.40338075166653187,0.17484759462256833,0.0446434493093799,0.04741533558610278,0.9358186380933016,0.4020064952506345,0.9156988547525038,0.6414759443810479,0.382339918341702,0.0009894748435008793,0.000007211499573474263,0.8443860176527018,0.0000040598852944907956,0.17560856417093312,2.576309367779144e-7,0.000036653148920063905,0.1167262539344964,0.00006645178795611595],[0.16649261409786056,0.6713447348464422,0.6346071633810756,0.7249634311755697,0.5419071032358574,0.17150658497077492,0.6436440546534485,0.027778425410519024,0.5022431133572023,0.7157109650650253,0.8020520942797175,0.24068027462380764,0.44421563012032816,0.4538961689873234,0.8068161124540151,0.5409129492948348,0.28095790469835363,0.6542277727504237,0.536433153926563,0.3181504763301016,0.610074715585405,0.7083218808008002,0.03119130477120482,0.06623474560098473,0.06047286166339932,0.11097105129750322,0.5069530351139975,0.4154976581339085,0.6656717121425373,0.5304590013426803,0.5041777091539656,0.7437898495018138,0.23379372111028535,0.7188666831602701,0.8409416621362347,0.809885430136679,0.6491351392929048,0.095424416786419,0.0774662136376283,0.5341084877162442,0.5999991397503363,0.128026692628506,0.6617055475475884,0.6906471236137284,0.5513828330363149,0.20880151254905996,0.3557138980554579,0.5252086016426405,0.21001111123880933,0.4444174704108352],[0.6855668918611486,0.8955507413104425,0.7315924709323466,0.4938295837178975,0.20921479897041148,0.6466272511473524,0.5848920947206253,0.6541807700705462,0.8759673766644054,0.7436237271242678,0.45825818454508943,0.07070134028860847,0.22093549708455013,0.054343143448665414,0.462066980639463,0.6422295196968805,0.18455798946027216,0.7716455430803801,0.5396680806893001,0.43541391067031865,0.7134459799246367,0.2074699088289515,0.466239453352453,0.046258720883625884,0.040774139738329725,0.13744136610261087,0.8395477450096291,0.4951575630541486,0.7318115539053739,0.7321665344429599,0.00682704140666762,0.43772227767306376,0.25260640091393305,0.5345313472962725,0.5733744788407813,0.7580779684694628,0.050391591415739845,0.04192410635086958,0.21920994185961756,0.3942997530002802,0.6347953405414316,0.8827813497317594,0.027551884773698958,0.5131824425615464,0.7272946178380083,0.8208616428623252,0.14888879045986936,0.6917694994869341,0.14162072784039917,0.26762905110890667],[0.615913234017604,0.7229134829260101,0.5310541976214629,0.20672521382963166,0.3383578214901502,0.8206815183767141,0.23425353417539885,0.8284832096388215,0.2951468058378798,0.8169123998566575,0.759090918727757,0.2668433550538596,0.462276751118607,0.02258215404514152,0.3153264500977301,0.521292868713474,0.056532025846755145,0.9811164123295617,0.07824257784292656,0.4986987598151415,0.8958612133206921,0.04269840029649383,0.15053495481732534,0.04988752058239505,0.012459548320096787,0.2584704894476509,0.7029151922299774,0.3930644819511907,0.13601797100023014,0.07831200536283324,0.027028830226948044,0.5294284812245943,0.7321220141131366,0.6270586739246414,0.45480876558542477,0.6214400849090692,0.2728430483074658,0.01870436139393604,0.9436342610318591,0.04955973643051287,0.47553110384250047,0.034969995888583065,0.0009562813758025933,0.434281384233754,0.47772953424243153,0.07668474756361451,0.004234613910595134,0.9253391084754907,0.022785801569762315,0.5272632675941457],[0.2370178539070203,0.6650303630830136,0.6179678391325342,0.47542057245051705,0.3414018596034149,0.5718312957203199,0.718162092990663,0.04476028818052302,0.5888198509343722,0.6018175689465537,0.6044569204752033,0.1952522393704666,0.697265643583642,0.1993178319914514,0.8819785709143403,0.586420322077061,0.08379145307678336,0.6897317246649218,0.23260093071924753,0.6824079978488395,0.08260176979203136,0.5892694874104484,0.35737323338002963,0.0007908214379862915,0.005180486827021348,0.5562301653764854,0.5281571485002282,0.6666469960730202,0.5302997411931163,0.35786839035823725,0.1431912728138493,0.5488892899936351,0.6130500069815862,0.13387793136962617,0.7359644626930104,0.7641113184364583,0.13762103960970853,0.19185950947149055,0.01883675676329319,0.30003240836255507,0.8523192017396636,0.17576799037484403,0.015609799169918032,0.6413083868869037,0.27130302508028203,0.17415492501018293,0.09436261483476038,0.7534525412502816,0.7431415278893031,0.3532791640830896],[0.4175834158790064,0.23721495888758345,0.5823203065640818,0.00009104568369656472,0.24238216315777472,0.04397968829745161,0.9144803499454204,0.3803797554520126,0.6517684818462051,0.1638803134640856,0.00005659857445987718,0.8527112948346792,0.00011794495260368892,0.004445256475463478,0.71887670735224,9.92037949667217e-7,0.01931971771756577,0.5052413616874007,0.0000413613038914432,0.13369651166817895,0.09560173461247437,0.7075134820884115,0.0004438414376090505,0.04533584682599729,0.47172967575753516,0.47575047097852713,0.14771219279182626,0.000026838039742241957,0.00022938234132556474,0.8134504028872129,0.12711820221624084,0.6208223915492684,0.8435045771458801,0.43952978418129596,0.23008665925405253,0.06688286974122508,0.6074101909469827,0.18942507139602416,0.046605180695140004,0.02028771984593736,0.008832054754343545,0.048321696015281405,0.6232586836404528,0.9230332777596625,0.5630136671815636,0.7627745577602781,0.1671756536311513,0.37285273577088845,0.926221564681765,0.8226110303334462],[0.48412183671974635,0.3924202855781704,0.5810842990201064,0.0005050487502927473,0.19141159267155408,0.007019483215534101,0.8198696780356527,0.8413335301898932,0.8382380315097918,0.2542568123269748,0.000057379310184500624,0.8663007891874331,0.00006138143381448164,0.002245487921400476,0.7448342461236616,0.0000039148082628195974,0.04327393799770639,0.3170389065944302,0.000009940837978655487,0.19979182176145585,0.037237433470880266,0.5874023195091849,0.0021498527985539537,0.035633286325826415,0.21333674244110454,0.6565248732830221,0.251213823989582,0.00006816309191878387,0.00015312520495061076,0.7157463486935878,0.10086055296128882,0.7976987029307292,0.9531138240620157,0.21733753542466536,0.2769826797456942,0.008045066810251173,0.6674686234639989,0.21465265980808337,0.027288990665172843,0.0019061236028598463,0.0028262193468164927,0.19027228289536122,0.64540899157612,0.8977500292487411,0.5958932409527112,0.4690477700603745,0.06667913113750425,0.06437928453951665,0.9858036900933863,0.5145269269521445],[0.4042123012874276,0.14964323116627964,0.005253717658011155,0.290013764324935,0.37545484728408873,0.254512165342457,0.1102774023938227,0.002965192095905064,0.005142960827561363,0.0001698020812887694,0.7003144216395921,0.003020054297485053,0.8392232620815948,0.1829842703015593,0.6894559232585918,1.0862437824682763e-7,0.1653285258551042,0.000026893761352785783,0.8243007455603347,0.3957124325204039,0.3728405302339746,0.000037205550875730374,0.000001732897823917502,0.3158676858948882,0.31399893812575735,0.7262105511056923,0.002217358294889748,0.30377048754040625,0.15288535517328147,0.7795536059308672,0.000004527517822134097,0.014503850643836145,0.7194397687475944,0.00007346605969497103,0.4876626490890862,0.3732162605853564,0.7899741504967898,0.000004554382627827622,0.07615345947652581,0.5471816571279896,0.4651844476696812,0.004477806267142453,0.000011637789061822376,0.8367889368487235,0.018772600787604857,0.6433061052894122,0.44340998174937346,0.0000026122460682281725,0.4215662685710095,0.1845963503887857],[0.33313903600455447,0.879966852278026,0.19660049125023432,0.34689637814030744,0.7131713509721129,0.3057380600794873,0.26471033693163615,0.0008203929638699627,0.0028623455025487093,0.00004716761147506635,0.5410264953043411,0.0026677654596944443,0.7301343423059665,0.5306070379535613,0.6468945234640603,3.522253022651798e-7,0.36621502071509765,0.000035199355395839066,0.6791262440558187,0.03166066856225187,0.6113694770724508,2.2435072768346198e-7,0.000001924156932547554,0.29615343642801606,0.207084314380908,0.9824349684896297,0.00011140318009577162,0.009468747014365574,0.3025111212520154,0.6661144010991465,0.0000416329899282193,0.013969376983896784,0.579527158484048,7.700592771877656e-8,0.5891135768717634,0.5067557579010689,0.9189015576882857,2.1741636655899883e-7,0.15680721470826803,0.6037916842599542,0.5210263207165937,0.00014996739355751103,0.000024105109278425942,0.5030427021815902,0.11671710638751212,0.28198017051002083,0.19381112724629965,0.00012311709153723486,0.38169565818950163,0.07003631548034911],[0.26190001325597856,0.38153879627678533,0.00042538876188861585,0.5119321612206945,0.0019193120896930222,0.00008213140517704181,0.00046056055683968113,0.055797689195829704,0.00038986735984344217,0.00043760555461626555,0.4341501781751149,0.04056930516897997,0.9096249598724296,0.000023869625996390065,0.4319079103297306,7.350097776656799e-7,0.01655657506569552,0.016496358099967783,0.7961893327528266,0.31861169960632213,0.0007446806582962466,0.16749539719673295,0.000052431042709254766,0.0006071077403547447,0.2042895626724297,0.7825730869647859,0.006154281257014762,0.4945373602921623,0.0035016304654988495,0.9431864904212395,0.000052317636502184856,0.4171059202991013,0.8175609335002775,0.20938490660716197,0.2551910307025265,0.0831530833017678,0.9409623131467043,0.00007621874923998466,0.013382611030926455,0.4893784769313213,0.016184397737209956,0.1910119480120611,0.00020249007070467735,0.9048415574724777,0.0000033808891367442587,0.575493827895144,0.05639979845908936,0.0000010868681840663669,0.008295332916135358,0.22666071698935772],[0.27533040359775296,0.33404229584350775,0.00016060149148813268,0.0000016700588271722795,0.20917283597167585,0.27698930117993953,0.000018117072552692264,0.32195327714915545,0.6793162069417827,0.37628369091331104,0.013005751948962209,0.5619697228539335,0.7625854753102137,0.6545369075242689,0.7694582180178786,0.8071960441972981,0.004567436336915827,0.14631856697049997,0.767047191877761,0.8471037465784926,0.860873650540113,2.8002743893534838e-8,0.8740267627858213,0.5022910292799593,0.00002435565189396321,0.4371135632910725,0.4320944239164898,0.00014922120749197345,0.06063566343044008,0.8191647357353037,0.5343668978727373,0.6248353218278351,0.3355847978494858,0.0844960047299832,0.0007864015703955961,0.6001564691028239,0.0003318940223553637,0.01352864065035604,0.22503850021385258,5.901118396809701e-8,0.4325435340253788,0.00008704427313881686,0.6585767035069543,0.17685888419789542,0.27608563590065904,0.000026398694634823827,0.000003603727641911149,0.2761528551346762,0.5226894845720607,0.6906013618131622],[0.3785287261343947,0.47885498236324103,0.0012957011066427177,0.0001139043322439939,0.08582276856391176,0.06282119148827654,0.031541933603086686,0.33737118283879014,0.7071214798148922,0.17970953068716755,0.09014418454316536,0.6727289255389006,0.8869280647799042,0.3049775758002707,0.6586886994351948,0.046724941097450824,0.23558939930096737,0.08336706992590595,0.8106665584548953,0.52354528131341,0.22066959922660373,0.0011324579822210663,0.8778837128715344,0.8936751249177926,0.11041736134322865,0.38064441617264505,0.11398064954865034,0.058956156778697616,0.05197588281760638,0.9071826393984478,0.4714852757256865,0.7658075139831889,0.12059861216522876,0.16338402086063528,0.2133566559552018,0.5201902094789997,0.004113296251006985,0.0700556651975307,0.05120521834901416,0.003868668932853779,0.2860633195255837,0.0009148165940022912,0.8703133751219548,0.18987990130949617,0.14232821717178126,0.013879951858519844,0.003908858831740179,0.07265678069276019,0.5772440417240879,0.2712796162170739],[0.7342666721614333,0.6208144613351003,0.3607408105824079,0.012831116659569566,0.5745152454217423,0.9763742729936273,0.0026293722801947876,0.41718906485825996,0.23199696318365437,0.8547153835448346,0.33797733396228236,0.6536926981402086,0.3615146122113315,0.4995445995438601,0.42711311847723143,0.28543395735856336,0.025814975181102557,0.9030687533488483,0.6629075090398358,0.4576333320006533,0.6228868172809153,0.0003798975400490584,0.7062788152160516,0.7095747328028658,0.0035624343409346223,0.21474093731306698,0.8976848574089583,0.01647797390934789,0.4178916913928175,0.512008747050844,0.46513944225762066,0.3729129028568298,0.833174536553671,0.3908945270673925,0.16242368739828805,0.15801059989885857,0.19249223619797218,0.045376944450717875,0.9171004304887923,0.0006145748641245675,0.1825328312602643,0.005861591883746751,0.22412338385233177,0.5316290175892833,0.7497228883059065,0.03190886402448543,0.002054630124946334,0.7718689639125071,0.5026564581678846,0.34571123973617285],[0.7726299531529459,0.3490777088928964,0.04519262257555021,0.019672399983726038,0.8528253144450948,0.813419653901871,0.03972980336163753,0.5806026447021099,0.5400795661218715,0.878625335858117,0.45089384560253226,0.3768633281463746,0.6928262416694263,0.4128182809262935,0.6804654410313501,0.007481606128787806,0.29870567996667496,0.5852845964712653,0.672378215282066,0.25179402477944823,0.07472089262835611,0.016558753269994373,0.6300392919973173,0.5989021129699759,0.20644859474897487,0.14434665127041688,0.8329622730155107,0.5327235820113301,0.5528837278384121,0.8384776422965027,0.8138851603030709,0.4410589407162031,0.7581954186588182,0.332931844341236,0.6743911513387514,0.5573857378633639,0.07142630986120364,0.5243519991420867,0.8849494005762684,0.012096691072122334,0.5352945551563322,0.02460190441306898,0.6139660872089703,0.21635301224255954,0.7308030045700652,0.0923319514528067,0.3617761713746646,0.7343354431899003,0.4114364861149613,0.2799651674991947],[0.28299282743704524,0.33074343132849704,0.00017353369609498842,0.000046595073442239944,0.11561962683346445,0.13388467344586796,0.000036623267995081454,0.1720496252807612,0.12668427609931485,0.3916566135521009,0.00415450551319153,0.6637623777526117,0.8814058627859213,0.4713321673395064,0.508766082624882,0.852832629763762,0.003557851903254269,0.07934975863863472,0.6605857950771306,0.6535108908755208,0.9748273987569217,5.367826019742603e-7,0.7101686952035611,0.35670016651357833,0.000042604234537636966,0.6712478950668114,0.24622303570139745,0.0005983249219977774,0.020240024821009624,0.779496253159094,0.609935793248519,0.8891627913530683,0.22806568272720884,0.032092306071308266,0.002443851109441338,0.619413304336264,0.001090723430496559,0.006797612042046796,0.19548638714406996,9.67608614617489e-8,0.5640245936749027,0.00003838614819479101,0.47011267522578043,0.18530811250667512,0.24687615414195768,0.0004691549539834887,0.000004379459484813345,0.3069142328563945,0.6529905879449899,0.38456846052925536],[0.41381775266787557,0.410859975928905,0.0002965015442173605,0.00035221239378187665,0.059544775189506426,0.12158659283781835,0.000029644945858246147,0.21047639859216827,0.24914047012293572,0.19696585783088993,0.054941840247217356,0.8328063805441255,0.8429436328474519,0.7520259600964323,0.9245660444651138,0.8308097139276618,0.05812548857884261,0.012451019063294074,0.8732459905748065,0.6000923845971567,0.8715465842256274,0.0000027595684540415067,0.7366700838452341,0.5857498066352668,0.00044694751142890444,0.5461955063740719,0.13477691461416008,0.032683009337996796,0.028578825999689667,0.8781718504850529,0.5981373431147426,0.9237843477571261,0.13066095246890524,0.008607462001746714,0.0037496493260459197,0.8547892404082359,0.0014650404137108984,0.07504038878871873,0.05169213898170729,0.0000011389498214871015,0.7480284994333077,0.0005154946252639849,0.9662573631719361,0.3631177290153572,0.17269262091794405,0.001546791549207895,0.00003235144026546106,0.061729040683235335,0.8830031709331814,0.7359125212363451],[0.2041439051658498,0.17180560859324664,0.10885290645194486,0.1759831191884839,0.4510684856554572,0.9210352871375443,0.01604028878767262,0.4752290953813607,0.4360709844306587,0.834459208114488,0.7479569166465977,0.7080902254286671,0.49734609798418683,0.8684860815803309,0.7568968794291437,0.3796864805104695,0.23526816348964766,0.815213542730791,0.641886775906185,0.7855343989495285,0.3522807077889026,0.0029874198619585807,0.6724381107063941,0.5349216396089032,0.1405345714900236,0.5890110782577547,0.6983224252657424,0.5360280487962417,0.31539470838699435,0.40229780145053795,0.8260732565226887,0.4516645264639401,0.8317363762418788,0.11899778425037483,0.28154758866990226,0.49344329151776,0.1619330578616575,0.5421389984102151,0.9030790582749191,0.020356770401426805,0.7011538124617622,0.6030941493224927,0.6081126661753478,0.25923262690695426,0.8255653481370673,0.14003897625227688,0.012423790017164293,0.6869259143907963,0.8069893351785833,0.4664904223018852],[0.5297040075760977,0.7749648720076059,0.000003390616549100859,0.22719439371245126,0.00003271634968828666,3.1187306848517655e-8,0.14644763500087948,0.0011830935279104446,0.5918506749495822,0.000013120723947030913,0.0032301501262012528,0.6713771077423064,0.9533661956942278,0.7473165939085288,0.5185211400434981,0.7128317925553228,0.20383451447797016,4.2197426767506316e-7,0.9166658286627953,0.8430291436564489,0.6732185653605456,0.027789889516992534,0.7543580962440652,0.14971665919550622,0.30902790399869956,0.6056539076298043,0.002006162790831138,0.2572507431393921,0.475006821748426,0.9049909044745914,0.7754344202821076,0.8214848127194069,0.000010463063101282596,0.000048542244287540036,0.3662687803652112,0.5456836119231365,0.0004361437671774459,0.004559912927401898,5.3965898535448915e-8,0.19438303171255847,0.7804560173685704,0.0005065630225161333,0.9502052858536333,0.03203515600461111,0.000031590910623264126,0.2751217237216802,0.2437263764306492,0.00017414578272781803,0.7784740164484912,0.8678965891868733],[0.4543710996340368,0.4860277176090808,7.354226232741406e-7,0.2781455824184469,0.00009541168446959455,1.1406353137325898e-8,0.09612193425082236,0.001238863071168795,0.5397786300792113,0.00026175745144000484,0.00226673138419814,0.6176468659534905,0.9325051359171986,0.6236252802947356,0.9189535144688753,0.8825157802204653,0.13977998202980654,4.782613822877439e-8,0.8928988908017484,0.6904705008548161,0.7437001654613092,0.07862276057627877,0.9492229402884095,0.31188544496073334,0.3586902443177595,0.5534278703738855,0.0036265424801844004,0.38378854596023537,0.5063775276806702,0.9070137702699619,0.3820780912337067,0.766064408368661,0.000004889803591083945,0.01949471844624891,0.28645847635800925,0.7393813791046956,0.007056782018003302,0.0045382833717679425,2.934392111932224e-7,0.24349824114081856,0.39113943451335503,0.002030675206545804,0.8095746799419868,0.09465339346669005,0.000017843230936102644,0.3201937374124668,0.31358109971004544,0.0006581514918046976,0.645362456121115,0.9115197694447993],[0.4785867194519899,0.5337266500539514,0.0014365604009344982,0.9495616991109146,0.17860847984646994,0.0009514454321666321,0.7904676717220851,0.04554461005305498,0.7735172395027989,0.25318790522975637,0.23983390380985245,0.820722628121903,0.368267897966568,0.35942830201242887,0.6957717408416907,0.6030900226561329,0.4416741396236526,0.004409799510139814,0.49651966538011794,0.3399723063018478,0.6762331726163842,0.5658853348897261,0.7538329149986607,0.5828998740587107,0.6990956279470475,0.19189895186202172,0.16462840808109397,0.6934079016449187,0.7307446589769678,0.4272970855992367,0.7703603655683224,0.5477306774394787,0.040533841400070256,0.3595600136778289,0.7760049603821585,0.5389678426616865,0.5021143262247296,0.31890765015234207,0.008608826476098078,0.9069916723689799,0.3544416171500885,0.7159351515259175,0.6009466257894377,0.34097237280689796,0.017738739573509996,0.8697866660786627,0.945594477197771,0.19782637932453737,0.7916572232197124,0.8611420744422628],[1.7851344931052492e-7,0.4365596634404174,0.1819917915185142,0.00005366695660480064,0.3611865255056882,0.012248960558746113,0.714725590138264,0.9505536965351757,0.0015345924748790217,2.4033379630030334e-7,0.00003711317638819902,0.1426073417353217,0.7066771318970461,6.071712313529951e-7,0.20233288823256335,0.00436862697296543,0.47308028858547085,0.36039023325082903,0.2270420734524548,0.6760695172192406,0.0000012179364294489261,0.0000068408695092356796,0.06716399769589732,0.11053529530094174,0.1274464635451051,0.9564770582270508,3.2680881619578953e-9,6.251046121391919e-8,0.0000031351570297750914,0.07242196578642698,0.2776834901504974,0.4353951781858532,0.9776444673396698,0.1896317537840847,0.15676715914926204,0.03722977704240397,0.8410226432090138,1.249015262069886e-11,0.6320618554981866,0.1039906698382315,0.00040160697048737616,0.001697980643729655,0.28013793606985216,0.761882384592895,1.107939651775886e-7,0.000044953927811602464,1.674981384714404e-7,0.0051728133855981654,0.36522159384362546,0.5447576790919647],[6.450651016317108e-8,0.5513316891319274,0.05511193745154325,0.0000016632193564255762,0.20243564316595175,0.0012316309420922112,0.017937639936228027,0.6952989009776007,0.002257403570166489,3.699007108495428e-8,0.000002937376908501121,0.2312627803865609,0.9505839587110267,1.3228603212703029e-8,0.458660137111975,0.0220206248845945,0.552833742888951,0.04527331591937926,0.1689418645898847,0.6865765094075549,5.418500362088455e-7,0.000003515786850248106,0.17978101103852281,0.19362902638696047,0.33441191106835855,0.9111561701456454,3.4133310081016984e-11,1.0087321713069464e-9,0.00041900677556129957,0.9077037458598202,0.38505444252068094,0.2947294975278511,0.6292095334890535,0.14383019146806683,0.018070127927652505,0.16979951077950498,0.5943502912519809,1.0126184062037815e-13,0.22612579510198502,0.0024178303494509466,0.0015954887146778912,0.00018523697344301662,0.23519883947690953,0.917178317306723,5.2161154910196316e-8,5.827939886894942e-7,7.3704498695661065e-9,0.00004411690793136841,0.7167158206315603,0.5261031364842587],[0.000007095353001387913,0.766372704342836,0.5264369142396444,0.0058067806562202215,0.13280007093747714,0.11709003522195831,0.013199323490109391,0.5776743999419054,0.0015500315298251814,0.000002615736321502816,0.0000011464221585108175,0.053021196039331496,0.9516465906053947,1.5185651771255665e-7,0.05290406297553608,0.043053914485622,0.5043605435123307,0.2764678471834865,0.32098414044106266,0.3001157690045724,0.000068871390682215,0.000029807649105220394,0.07356028898658036,0.5917831183291864,0.543134258966771,0.9269411325229601,1.7611863993360993e-9,9.416632665690089e-7,0.003727719043578558,0.5383463065976939,0.5097559916855732,0.4602862342194517,0.7313155251245278,0.27987513778827566,0.3912931144702238,0.09404263033002562,0.9288126410911567,3.8417466886991715e-12,0.28473662846650444,0.040727917300101564,0.03113405661955312,0.000017795024616248687,0.13226210776699454,0.810584315044141,9.228111094955783e-7,0.00001107105312486327,2.600648608194922e-7,0.0010756730843811562,0.507033318538943,0.553615062662303],[0.703891306770497,0.3131320446237056,2.286800462724022e-9,0.0002102786703290378,0.04784766730008566,5.110439537090292e-7,5.43204844322395e-10,0.01057845977271057,0.5803494995315306,0.06284383195867688,0.012743485907586689,0.000013789819610788504,0.685322683699993,0.4693536608757541,0.0001425440617290411,0.015224279819868817,0.00008982425588872334,0.0016724578564886172,0.6160442067288486,0.004462894786544372,0.13167761373172587,0.23767315397863228,0.00534334197403188,0.017071153272475867,7.711557361302819e-7,0.9368696742396514,0.25736698544751335,0.280682527652976,0.08088889032648494,0.5337792692358653,0.18695514226582768,0.5719038792205852,0.6924204402174814,0.0024790445316487213,0.000004874698349452634,0.4494944499202287,0.9913144276151656,0.2444548725716723,0.9623708620225863,0.4416564585064899,0.42710732590404366,0.07053494999788165,9.809655847894704e-8,0.9473242779539618,0.09983768238563502,0.41621884711023455,5.631504852385308e-10,0.0054472217905414105,0.0008927295781419816,0.028416845007983305],[0.7422726960283619,0.3464410424735143,1.5441608014071461e-9,0.00029343476206511525,0.05282778354835012,3.6899025358129467e-7,2.424029565996954e-10,0.021010212913064,0.6379531786825163,0.07688667830452185,0.0028466143498456758,6.88356845898271e-7,0.6765452258694301,0.3323177624276007,0.000054685681229714826,0.0008877568705533399,0.00001926732527457642,0.00028178171203377747,0.8019864567594923,0.0017288668835610441,0.13027397824462286,0.23262564239516906,0.0018533039580559058,0.0019883837334133104,0.0000015012627890631386,0.9256920871789859,0.13650264774573906,0.35779219373155285,0.14543768276342275,0.9342001461198939,0.14552992561713096,0.3624959002327993,0.7237594097998649,0.005534308675330942,0.0000018400463759385976,0.13754693807742766,0.8680101428043584,0.45282152086681143,0.7606325375324111,0.4992081275258457,0.4897238799272503,0.058656018191905565,7.7698415235353e-9,0.9566116773121195,0.04787228746173381,0.3858357317619197,1.291250915254784e-10,0.00995916053380559,0.000013177720493339499,0.006882956154813331],[0.5515758417630058,0.00008608113236715487,4.76841396466727e-7,0.00003099154046243874,0.357012628475968,0.18089491607211228,1.1133256885722008e-7,0.0003261903833412734,0.623459701868535,0.4663221299197228,0.023240784815941322,0.026825771276665602,0.6471707876984922,0.2910766229726255,0.10760426318554057,0.008577415549452693,0.000004542311186559324,0.10584412609195128,0.5810133593721789,0.09259543007006286,0.48439200326737325,0.000017042969266488564,0.002259482822775392,0.002025833862273986,0.0001801122408334085,0.8913123696298293,0.2845776054416612,0.14781569053285926,0.022948314531799626,0.9022646524128692,0.000009109892441267217,0.3701500506517149,0.5137619940512683,0.49283535227228686,0.1344637931802918,0.004053035415512005,0.8994667295424863,0.009573252623428246,0.7692404281401596,0.19834404969286265,0.7127379564718415,0.38942556680968526,0.09459016927763898,0.8582134420180717,0.000014177824024130746,0.0008631482407927793,0.000034460517481684455,0.05529615779141645,0.18581661651913037,9.607523074251518e-7],[0.4815743287741004,0.0008039971578378249,5.17402138842746e-8,0.0000480476451348543,0.40176977864987545,0.1888226788230389,1.3259024114751627e-7,0.00033554148892283464,0.546615589352891,0.45127770967682834,0.017363325595596155,0.06982198838791741,0.6329660378532319,0.10457366918142968,0.13250094720247774,0.10872146268776067,0.0000020726074996752734,0.2542830368558457,0.20069319592750523,0.1328921953244236,0.1321956251457435,0.00025580300332302716,0.0022180735843554534,0.020744413624762675,0.0009518058299359183,0.9080674032405517,0.38850329566345015,0.1323596100282931,0.06509402066349354,0.8922366282566973,0.00009433172069859874,0.29307109130156056,0.4023057407650754,0.42446371388199766,0.20313354789258595,0.07130316949418843,0.9740770464293488,0.005539188928284874,0.8571785622608403,0.5863891002193777,0.6996093194854289,0.42955605811792147,0.1290878487619207,0.9791380575410894,0.000010536042294091297,0.0008893540735967449,0.00014085177009591127,0.17689871410069993,0.11646868404021826,4.1450124755219643e-7],[0.0014032294442821308,0.6588326112935184,0.00003205627684797322,0.009012055223105442,0.5144944288975808,0.39583768328034447,0.009658702246285289,0.8535665502123886,0.004741814721218593,0.01571373759862295,0.001083853661444107,0.0006022718119930087,0.7705221573747024,0.21580747083401924,0.40689132115402954,0.5418655210792296,0.6842454655035142,0.22999813689794307,0.7996516094158699,0.3893639583985569,0.17622447058700202,0.1391526887348004,0.020395551812340203,0.004750617153924166,0.2949012539259694,0.8945611182942835,0.22621024907878903,0.3382173963925895,0.2975173636839251,0.15197520582010657,0.1235019606867994,0.053572736870705434,0.3619428883320245,0.2667249030446639,0.4674878556571719,0.006887419070830541,0.8117061260515206,0.00019067729280829808,0.14895947696001713,0.3158710383564246,0.5379208064298515,0.0000726606463673382,0.18777512506925884,0.8257220994146651,0.11441948377464889,0.09852748450883532,0.3539960050674674,0.00021698378419992805,0.14072353326910986,0.001181108804300675],[0.0011899353478625994,0.5862472250476806,0.0000026753459893251144,0.00398902428617433,0.4700578673897094,0.5233569414312236,0.0012524478528217013,0.8999828733466038,0.0011045096967758252,0.066932758354939,0.0002813750546472309,0.006566430960312524,0.7306926955444193,0.3284020140200569,0.48462145947009344,0.7075175815123419,0.7609957256682548,0.3102253993617542,0.7314758597639647,0.5077440628484446,0.09837224134849312,0.060367726723386875,0.05868933490649993,0.000026080936743628386,0.2251775089055488,0.772703630197872,0.13790451759614114,0.49545284160590675,0.1999203798549622,0.2255227198996011,0.1825111456723207,0.09824648572879707,0.029801378878089858,0.18210435861825225,0.57653221612926,0.013988528072447347,0.9398798350061031,0.00002360472652234317,0.6027260246745234,0.6542529852973212,0.5462294254839644,0.00003467672883817137,0.282087783599345,0.8944880112215338,0.26337017855022976,0.04902048855460238,0.49572233311869446,0.0008929958820747869,0.019670989010723675,0.0006678843319869352],[0.05098854978311402,0.7581147384093333,0.005103227494591604,0.08876466232122757,0.6602206268799589,0.7473114554229447,0.19298428151559568,0.6161187628123549,0.16333602023171892,0.6791231764120833,0.04121495761709146,0.06285045745031419,0.3166603272703053,0.9371472367564625,0.606658859752197,0.9636313006636573,0.7822761979217628,0.8036742788204254,0.6171724267364177,0.7675206815905097,0.8657858101674487,0.6784801665937938,0.42991582710419785,0.046447798054324384,0.732755939175158,0.560963686532029,0.9655101570539387,0.8854919590129428,0.9251475202445023,0.2808093248749159,0.7095535487587443,0.06673070778539948,0.12078160321439757,0.8097045769066756,0.623139351302544,0.019363744395277046,0.7696671016756997,0.3689157643328876,0.2608380991981155,0.2921835365596644,0.7823694962428311,0.029277019246532057,0.6756296904837447,0.39335554728409544,0.9128981525781654,0.36314206010572436,0.9705760614665864,0.18410878547919696,0.4769115477195511,0.14308919010583193],[0.3640402756942745,0.37557307639901244,0.7600013546525248,0.5165857858797811,0.634570327537647,0.3680819327475369,0.6965233231755084,0.6016834249632989,0.07638239995457895,0.6846365418366046,0.6627041233758858,0.6161349368077322,0.6029632606983324,0.6008498270333171,0.10628128920520653,0.5808482418938028,0.2847531022671963,0.018493678171642165,0.4055737870501655,0.17407147659516112,0.6024975580312544,0.7776937720748066,0.6177670447231706,0.698105720615623,0.6855726631469384,0.5027853070835298,0.5578148524772828,0.6250083899718348,0.014175376188508067,0.7622791246284809,0.6712056598955322,0.7071422849236093,0.4274472706392478,0.2772168898127197,0.6885483537239403,0.7141639997219783,0.519998427754119,0.40843185287243605,0.302419155364473,0.6245388109616646,0.014822669622491668,0.7582331297795379,0.07284762666484226,0.04630295285908627,0.5332152537575577,0.008392431968020175,0.7053093123105555,0.6549702759664132,0.6854739334576839,0.2367453669581873],[0.6816839306872704,0.7230248700783666,0.5179460753590234,0.1959687271863212,0.7342244313402342,0.975150729888902,0.006303492771385837,0.8824320417463014,0.041574711992917894,0.8783605414830691,0.47450096384351875,0.13059983612431514,0.023999985913009544,0.49301403992162,0.0036503241113853132,0.6972777078624842,0.09081280881828416,0.7703112061698125,0.7262059806699271,0.7673425007293782,0.6639283414858329,0.1484583021850226,0.5615267421841741,0.36460827280745467,0.07025219337626512,0.8224468740472242,0.6320191955969071,0.16123455548008386,0.0012940867362080746,0.37698365508947,0.7024054562923187,0.020833060366974812,0.873068303537004,0.6366074881046838,0.19133705005417456,0.1170212352700895,0.6205695912186691,0.11208628774341696,0.8218027296167585,0.22211101231646252,0.008612189499378083,0.4135304747041575,0.00034957140504765125,0.15671751013148602,0.4258007747758664,0.0021432760790723406,0.04764744771334579,0.9405372514625093,0.266015493716975,0.40523355147232626],[0.5386060457203315,0.43736716109733353,0.5332438109720923,0.2111489182434325,0.5042939684895895,0.2714948019548004,0.5447930390615011,0.5816865166684133,0.5176448336258408,0.5477039614958841,0.4781551120816135,0.0862317562806868,0.18714461690503145,0.8235562812286779,0.2618091844178094,0.3534217908876325,0.4501807956785435,0.16833230457494897,0.40587460747535326,0.13192557749716544,0.49215765235711406,0.7513360002111183,0.66706754049517,0.1314866340378311,0.763560699484885,0.7840512766956391,0.2426622282738441,0.34193124364605854,0.14423680946890116,0.31290392591283916,0.6470271241390683,0.2699745947469472,0.5833717165114825,0.24018220131636392,0.18473371625301863,0.7549678393262117,0.4726367473381324,0.7204931048472355,0.4315753129068193,0.797631413688571,0.08304208420962478,0.8299642982323118,0.027094510798664737,0.005907046990703872,0.6863428652475609,0.08365350327574349,0.46374885141935407,0.5196258048414251,0.48706934635790805,0.325738623941044],[0.3714596946347123,0.00021941884131487866,0.000020827312561378132,0.00026237854014991965,0.2276710933358752,0.5240860519137105,0.7015172802486456,0.8763998588755275,0.0026766489174416736,0.036489227116618825,0.0010541470169900583,0.0007933618157228763,0.7931726665235419,0.0004414515688400307,0.6653403952700094,0.00003011201322213205,0.07487984348035867,0.000742633307817862,0.000027000141520374774,0.6778362703681639,0.33909899758221795,0.0002886445944307092,0.6515375120638229,0.44272085490647184,6.632667393461074e-8,0.9566313866289197,0.000003231736730103904,0.35583119303343475,1.7642071888016894e-8,0.37953283626868595,0.0000019029913843126662,0.5944527887056893,0.18597984353207866,0.2422801208380149,0.27932934484661576,0.33897245805571097,0.7060766077978805,0.011062302664736063,0.8249703299484694,0.0002608924555160479,0.000309638688455487,0.00013843278931642173,0.14295037246639136,0.9189103467479193,1.2445428511592292e-8,0.3532907952565033,0.00014779212647814385,0.000010940483782290824,0.00004243446553773411,0.18032015180062774],[9.666382014050897e-7,0.01155026173216266,0.0001460553314057183,0.012593796155143193,0.000003238343962580213,0.13918851297605858,0.0490453518006256,0.7039704522724624,0.40742423125524796,0.0011020402187297369,0.00018836423540301924,0.6347316343829729,0.525081614817796,0.008190900695934217,0.5610327164612645,0.00031259139898096017,0.00023529567984616976,0.000045912706707632495,0.8051844268065821,0.868650221586485,0.000054704845835621714,0.000323436571656033,0.000003233974058073949,0.00030725738737352623,5.6555993787368993e-8,0.9533477077412897,0.12451793737457888,0.0008059882919031071,0.0011126454704365797,0.9517035929851161,7.800427498056688e-7,0.008543403304468003,0.8032372149205824,0.00000618095531468757,0.0013719739854281703,0.36203652741902914,0.8737817513695645,0.000010111352962016506,0.6418889500042411,0.23605832642144994,0.16126979629996943,0.20458578228484053,0.00015358097876205543,0.9434764866619445,0.2672919565567602,0.4783312303280465,3.9530042699604405e-7,0.000026924891858098205,0.8437425351858586,0.7364197923705937],[0.0006966066615405929,0.8775592670717378,0.8003228574545503,0.009737832369649467,0.6403098297364805,1.5320599671782804e-7,0.5792798365532683,0.9018413611572353,0.26838554462314335,5.790376797743127e-7,0.49677061114092685,0.4119901955710463,0.8758535842341791,0.0002324363437102384,0.004141762973300775,0.0754031865517137,0.7651550895352359,0.11195067023108603,0.5847174346071948,0.05396014656466866,0.000024486374476989767,5.1053798438574175e-8,0.5473328664639034,0.8467317915173718,0.7470653690978957,0.8875067248202563,0.02125595834756757,7.881237892541565e-8,0.01879225623813104,0.7078400263965328,0.000001100495186525231,0.000017281876494274234,0.8809632431056481,0.37149829667072376,0.7178320841799015,0.16111393723873788,0.9845623519596773,0.000006955863912544373,0.00021282220833158515,0.4209890956631069,0.00005271359284435936,0.0008808715598086101,0.5696558227932298,0.7461832002971642,0.16349624872113358,4.1864304473141614e-8,0.09765632440681939,0.4862850420838287,4.658457117766193e-8,7.796546406673198e-8],[0.22030103604377987,0.6175707110958314,0.8864180786397868,0.6220254448165511,0.6985922841733258,0.007558080505416376,0.6009514716815364,0.3695874461071114,0.6568975002640337,0.0626809173762761,0.9315141573110399,0.7052649615423013,0.4848962611914629,0.17534679824781052,0.5844371582499813,0.7812203892799144,0.6557834003444709,0.8650751881588677,0.05783276154343231,0.1024523513578327,0.12023908980526783,0.002969132872974554,0.6343402960551652,0.6152189595152842,0.7042378794336484,0.534225419338775,0.8787788134717065,0.07968158915551252,0.8995052610614419,0.7989323965192137,0.009778201870355774,0.007006848577053351,0.6671714791301144,0.5255898248413043,0.5135201229397593,0.3374003444518446,0.6281788509924398,0.7939534165379506,0.1281524943255619,0.22932380476026015,0.005226080979479633,0.6808303951578413,0.7443876128630253,0.6446581372630733,0.9243106354529677,0.001528598219465132,0.9111738511599912,0.8028507811858802,0.0013408740897499852,0.001536654164924333],[0.2840079210156266,0.6582653845004612,0.9819152760481695,0.20503555314067265,0.8154821339360347,0.000030183236106296653,0.4925970357776488,0.8283020114949865,0.6078855503867745,0.06906814643835497,0.9923900955864452,0.8313763423748007,0.441832870817616,0.23895339228107987,0.11479426786200862,0.5601931604808118,0.8377416514770599,0.9520890932418589,0.23255959488132993,0.2572925936145472,0.02981794718921462,0.0010104193377795127,0.8536391806931467,0.9272003471494947,0.6373467779246178,0.786909636382829,0.9772210865291816,0.012291785905277826,0.6611841556044704,0.9326841763467457,0.00023714058099005955,0.002391709695545509,0.5035002795918908,0.6525039671107523,0.8883182664976464,0.1315048477357513,0.8992148685131637,0.8462225705726065,0.00819517476749544,0.2604232146064739,0.002742859134709252,0.44014686663052477,0.7764479949006508,0.8646343651179801,0.9868486548732102,0.00013641181041488238,0.9783097243931941,0.9332198460466996,0.00006177729769198325,0.000057684909225249166],[0.5580174267057655,0.2759126443443463,0.000010543208887385732,0.012534119496723959,0.4443901883294439,0.008931890003821042,0.000052739401763923655,0.0056698271359270835,0.000027270922596210913,0.006116683991238327,0.5289256408844422,0.3277809515352637,0.9085885889612209,0.0005859920890376694,0.0006074714928219257,0.020377632202508465,0.40932966603776844,0.1768246181304209,0.9789556742958225,0.6843203790379542,0.0003175975969418608,0.0507559036166084,0.14530872463006433,0.20202839581676155,0.0006947645637301685,0.7836017945127042,0.1079027023782704,0.6178947140941548,0.24069020780074762,0.8053641689276277,0.00003898312210488402,0.00042072565038631777,0.9008976218035543,0.008492733206333434,0.00052521744455275,0.7596822001438391,0.9055415113978325,0.002283660659520045,0.8592549383674526,0.001096248518408058,0.004082792232967618,0.11077606425903003,0.36161711863117874,0.9786492541001153,0.00011380887728798762,0.3580455286423872,0.040965386363367155,0.025404772471318726,0.003009006325167572,0.0015393668502088668],[0.5265994670374816,0.22718734262895282,0.00016719439171307193,0.04777557331044829,0.10087460077018325,0.0010989916050109525,0.000054888232424357735,0.17648407215717407,0.0006661834236603858,0.0035549182810961292,0.5004474836499078,0.3368785177673679,0.8977587208958089,0.0042131726167453165,0.0005242993977202826,0.005876702533070525,0.3484153350737622,0.19217146926174133,0.8884499277786552,0.7509109587096758,0.0006263546818043741,0.08507209594443389,0.016879061863428513,0.466952022388155,0.000010329175922412313,0.9228398647123558,0.26295801004164265,0.591680678357507,0.2184071709755659,0.709036639725175,0.000023137156852641748,0.009717667976662635,0.519705661588572,0.01237224429054437,0.004313144170957182,0.5284627746958521,0.8868099002296622,0.07261385985725627,0.6188199313258794,0.012478786784214824,0.009308304382752505,0.06236669054037753,0.20102078980356808,0.7607746498972876,0.000081934215697166,0.03654837136384757,0.027648196583514598,0.014522456931419537,0.05511773364743187,0.04297434909847111],[0.5473527743770981,0.8297139487122167,0.03263443623032975,0.002115435352205711,0.0004366540200699885,0.00008031449513151953,0.9465070933018994,0.858008370986647,0.003120853728677314,0.09081999615756219,0.0016533278687515523,0.9752492231320394,0.36643224810578373,0.0000443760986803805,0.48060732898423486,0.46124830844075226,0.3980819045926492,0.6700138608674688,0.16714990781861033,0.013422052647401511,0.00022385008276867683,0.6049745942497459,0.00028609649576823035,0.0015527126808710144,0.19012523489651378,0.42073952621748634,0.004083168367571388,0.000038913496026551015,7.674487598163739e-7,0.9114362577660402,1.7607366208929134e-8,0.000014599473354847388,0.8539017923680502,0.2987850151113446,0.033573171481565155,0.02255828251050475,0.013395950055691873,0.000024409366403815972,0.374352108023815,0.01216741607807973,0.6207383552442629,0.08968383522407607,0.0007482517744912432,0.6652197232057434,0.037298948930432965,0.45824390533461784,0.04696543342343333,0.00005554772206784704,0.9657893466127485,0.857991889274509],[0.9626674099251978,0.8497479143957732,0.005774883657487996,0.018094886603707352,0.00003958807561730194,0.0062734073266069775,0.09509236655782247,0.24952691086743173,0.0044180634758941816,0.05642543082174735,0.0223993410326915,0.9009163697931188,0.5206506793442568,0.0002667523125706122,0.15209562801898543,0.9609850787391098,0.5649002170712282,0.5178964609986577,0.5706951783779003,0.008770554009522738,0.0014108811378605735,0.6538602167797389,0.00000239833993845213,0.09147670764731072,0.15755262077247228,0.2532166829848222,0.000446774795605758,0.0021053224823209616,0.00003931246369427463,0.9770891344262893,2.6844661643820533e-8,0.00006411922031491082,0.2683354791843364,0.30263835048394744,0.035863937059908146,0.14847834670308793,0.2292670332438075,0.00001593411130238216,0.2584915228148821,0.008384982840092328,0.9671842640741539,0.0016857757543036968,0.0003353736092156457,0.3224246395512187,0.02952030596455991,0.2626160941323362,0.01738490155555668,0.00020211197001801466,0.7217567787938589,0.9662955054887913],[0.8371438317986708,0.6965011778396564,0.000010797022736286864,7.705960971035626e-9,0.000026488738543090624,0.010528947475124938,0.8460821595918164,0.007287756474183419,0.000702680701643094,0.0000015217983765552017,0.000025118477694574786,0.9866321706256269,0.625560851876433,0.00017537174765119905,0.9103211695509222,0.013170587600056396,0.44248295672495597,0.15619041999298075,0.0000016734527012252006,0.5476787946145957,3.450516088334299e-10,0.5612848226421877,0.46980595095662303,0.34453068220481803,7.408065625372952e-10,0.5282296800636,0.4794092649466529,6.62085760174249e-8,0.0000028831213142866004,0.9182390301696517,7.459366393303407e-7,2.7006815429954066e-7,0.9379852105027344,0.0000010426442553002254,0.41660879411058543,0.000046287594798598245,0.0032926152828104496,0.017086391912655877,0.000004799113592824624,0.5397977379007954,0.2574033188277905,0.2298686077370098,0.09365802435302507,0.8310622119628178,0.0006800357490150278,0.456722631546294,0.4638340814216663,0.026274130160869005,0.9204039874930056,0.8796972949459584],[0.9039304779066084,0.7119504416408846,0.00006802300957540423,1.5875178844570788e-7,0.0016345188478341282,0.040131647764878105,0.725088067166179,0.0018696455647576114,0.0002248082608840536,0.000024203979975888864,0.09100439381002876,0.9651320914533909,0.9546388348532784,0.2682650443658396,0.9052599460515386,0.9006047288582165,0.7634477639506045,0.3662886139516464,0.004509373860863874,0.8014525626373702,5.030541383083903e-8,0.6695888633239229,0.8495043951684352,0.27220633408282874,1.751190563972622e-9,0.47569715665362305,0.946582960707334,0.0000642047260676328,0.0026764817793986707,0.7386692688609551,0.000012415525743555138,0.000008872492347985626,0.8988247136554888,0.0000034902017508499623,0.5491188051651535,0.018632503032312626,0.06214929480639521,0.22279302224568603,0.0000017850601580779,0.39103463894278123,0.7176435882034903,0.18167177411253135,0.003276153508760008,0.7729492442856182,0.0008469385827390349,0.5680923171376462,0.4919183004056782,0.0467335062400061,0.025195892910026812,0.28785844874610955],[0.972061394414205,0.8118386656940179,7.021044763549626e-7,1.0292138490040994e-7,0.000014794043366228078,0.07808089424416063,0.16820021660392595,0.000228956651072932,0.00011782624027565622,0.000005350579347317655,0.00028728068976971807,0.931322554549648,0.7651307421874759,0.0015570824737292258,0.4673930907010302,0.904163873723806,0.6208517878931115,0.03488225252241702,0.00008516671603773276,0.2682813649335261,2.5332371720551917e-9,0.8484956275775695,0.27953563211473637,0.8998564461529456,7.64808728939039e-10,0.23431232682482403,0.2631574565209995,0.0000018387332032552707,0.00014697968761094056,0.9537326451373086,0.000005829991045547848,0.0000022079226926024554,0.7320009753071158,0.0000013855151914321997,0.3698476656153424,0.0003374028317022358,0.13846701327550745,0.001539598830390859,1.6909885398207458e-7,0.7613228515106677,0.9678745384815843,0.011931953359872554,0.013089331051937188,0.48417277226752264,0.00015308322511515827,0.31064568295532996,0.128262925727454,0.22646020359093105,0.17486744427585535,0.7700019430537051],[0.8398588511705416,0.9230211474595522,0.000017337082054180555,0.6745384257788527,2.9528068110514847e-8,0.7955387625857804,0.9836979297043069,0.8126808902607807,0.8438993749058367,0.994711274293682,7.057686833611293e-8,0.2218925171903016,0.4819798040019848,1.124059277504945e-9,0.23419070418187465,0.00006668539577336795,0.0018419041838931812,0.2506193185711573,3.6407189860932147e-7,0.002386326321546686,0.991694195891422,0.8725822772886002,0.8465877195587712,0.8303050151945673,0.721360948876455,0.00690484574140306,0.62882385496135,0.9772586648220385,0.31493713173460136,0.509003876171506,0.00002210836175174818,0.9814102664722605,0.8160729169302986,0.9070750834834955,0.00002034843974139802,6.472018368522263e-9,0.6883196611712201,0.9861604305507582,0.9960292621216966,0.5346026357823044,0.1053159488918959,0.04139497283627663,0.8795442524816344,0.542703619448668,0.9662879305843497,0.1928266834493785,0.9907525141861853,1.9097776069107235e-9,0.8684942173438066,0.36505021675154287],[0.9111350991824745,0.938586549999303,1.4803547966548587e-7,0.013104163686379434,1.7164221681185908e-10,0.7340416884037725,0.008219165597775632,0.34728484840323703,0.0025744949035145445,0.41445327895282097,3.0788057147601916e-7,0.7805147497762688,0.9724449730472814,5.6132596441103884e-9,0.21484063311530066,0.21216005984769545,0.002333275578013722,0.15420097106391611,0.00003711211680009705,0.0005934597368881791,0.009861310497607816,0.7717614554372199,0.005267638169665686,0.8677275841731649,0.0160386485860588,0.000026711884146914325,0.003957586311278234,0.831203767403835,0.028429597127340712,0.9654738257597941,5.826330783175782e-8,0.4373848257288907,0.7412602082886622,0.0032959289727285948,0.00000208377125908604,1.907473492444585e-7,0.3446766631721999,0.02345321099671347,0.2618151476802378,0.7182715052220413,0.9501551852252743,0.0010932185008695643,0.01760691938830342,0.6581885249070297,0.29320014290879626,0.001106057893153381,0.1581605341164649,1.0549653631637498e-8,0.6316738092137538,0.9604411050080808],[0.9439738689752568,0.9166251574569537,6.863613617980653e-7,0.022756327833038572,8.581423593904042e-10,0.5850454806585001,0.01267960126388379,0.27099706277278107,0.0006314655354733118,0.39811338860591294,1.3905238751231625e-7,0.748609400372441,0.8341289044283554,2.4433803144849697e-8,0.09160923621007439,0.0700170097448784,0.009375891916485548,0.10541631943522028,0.000027469991079067217,0.005040869618696082,0.003382948023548067,0.8756538549451759,0.012751643608298313,0.8799761085345527,0.012398631922094292,0.00004199128706173751,0.008042178163327496,0.49299173842038957,0.014561609280776277,0.9570886597038613,5.137770464279718e-8,0.3804796274355056,0.6200285155709514,0.0012793598278943066,0.000009422268986660115,9.990333208689733e-7,0.35993627018422,0.014115514614874172,0.0838883976099299,0.32184974127846644,0.928919082687449,0.00044365115364891237,0.006626490317309271,0.4457503226831143,0.21420569414685084,0.005130741081320617,0.1522787670841367,2.443970135817385e-7,0.5294726101378008,0.9723173677544795],[0.8004980316356756,0.7773286187653949,0.000008823738567203701,0.0024627073070601453,1.7491988756852972e-9,0.23543378943566848,0.636546281199954,0.7560971872838934,0.0016413274902881197,0.3642536971862212,1.5002728305435877e-8,0.951251626129168,0.7833088293286092,2.490136861817161e-9,0.8401599351727354,0.0003661224832294085,0.002041431436582279,0.1728369310144029,0.0000012517849573130945,0.015362963200841538,0.0017761109439627626,0.7894011440180042,0.13874100693746277,0.38194013644651525,0.002783770363530374,0.00009735966460981656,0.028002223053068157,0.04930509543894767,0.0007858754792364072,0.8637162199668734,6.717589498798545e-8,0.07970677515822566,0.9324893143730361,0.0012534839318871995,0.000008982068686207146,2.9362614082233088e-8,0.08325796666641261,0.0220703794460056,0.408422832996889,0.28775971471413336,0.579241161206536,0.021426994173826496,0.032197227643267635,0.7742884635377414,0.5017276015077843,0.06781846236928539,0.4233323054191685,5.692337638375795e-9,0.9827712183141916,0.9456298407209782],[0.9667076797254696,0.8131831808090253,0.26834790466544245,0.32714301934740103,0.000003118891484662362,0.42719299154302454,4.8711662325846065e-11,0.3378484301417572,0.00006534450207327372,0.004467741823453422,2.0801612747572521e-7,0.9437678299375165,0.8172535367507325,0.02229226726480253,0.3763134893536562,0.7439073948902729,0.27300504382132856,0.4712769878129934,0.13087833774264948,0.00033749357501337146,2.1792838677109936e-8,0.36823707914897036,0.3078354498438039,0.5935077280047255,0.13295330582331708,0.000015904069278205784,0.23686160275676105,0.04401489472489053,0.05378441236998825,0.9521735942873785,5.94687087135244e-7,0.07045568701708463,0.15118580196476494,0.003801917424954463,0.009232548757776285,0.0006335002749388465,0.5243255817595445,0.006491386893773347,1.5661548735349016e-8,0.8138687280541347,0.9011017806404015,0.2362210123156769,0.000026296355200854715,0.5675771919227041,0.000004965482943621307,0.41257364693691334,0.000028111319597674957,0.1365753641974517,0.7132234798871757,0.877790494542536],[0.1435070861293156,0.5948601808663238,0.7559825746071179,0.7072010530434139,0.8431185510138482,0.15469049868222567,0.0008186065477999709,0.7882168168338977,0.020686923937256494,0.46630771137704813,0.009930230119425966,0.8238195942279852,0.5553161934286672,0.6092726906623435,0.6897213594164254,0.6536462557012077,0.3933387179501844,0.5096478943392762,0.3624556196573071,0.20322778645318854,0.014690646753383375,0.8311880059077671,0.6774075359642713,0.40301057437462384,0.6363173553453132,0.04345962999229896,0.6820114817588381,0.64080502464816,0.6497796171989683,0.03349554919428125,0.34373384396235074,0.3773195874807751,0.47233348982045115,0.22310168949957507,0.5655640425465139,0.7622240624920702,0.6934983379427017,0.6925318483982716,0.005083656698061027,0.6204468068299028,0.2725368666630714,0.6722270928353787,0.6612089304791283,0.8266154159856798,0.020539948005493074,0.5762079746275143,0.11319882670626773,0.5015664716388717,0.6281165482497271,0.782063525002158],[0.9592968802774609,0.525788438324569,0.30338277832110433,0.0005064145780873313,0.011318059853434809,0.001415063752687848,0.22479067827411328,0.28820607818962385,0.030525334516974117,0.004000962795314745,0.9586612443870466,0.9566000807791292,0.9978012414486734,0.967521058524963,0.3228284443504538,0.8874366181053446,0.05331333698241063,0.00006400250011327928,0.0010307196567213405,0.1440154962758875,0.3399568277638552,0.0011279883482437042,0.9675466577099577,0.2497028874339668,0.1302057243527528,0.10507383955675986,0.000003274796848422785,0.0001637359894641066,0.014080574028584017,0.8909862702090978,0.000008473531926773968,0.17108316001711643,0.009251082590783066,0.04292937920096514,0.000012286998397675737,0.6786903339023884,0.2782930140683866,0.000008063200332707157,0.2492309249573283,0.0034627013127986363,0.7752198931810259,0.00010190255713307332,0.03320311027804753,0.8232756432552935,0.0028722728315912043,0.0027341819269700424,0.000732229773448291,1.0969065647110422e-8,0.0010139982403828771,0.87213243110977],[0.9528020238072222,0.35794785558891695,0.2052719603028163,0.002743757866935048,0.01356738243459896,0.0004338607819983401,0.5762969966783981,0.3191982206664493,0.025255879557977208,0.026152916653703034,0.9558031877664879,0.7790025246871257,0.9928174811462446,0.9430009338595104,0.26685244481177256,0.9596528710311509,0.18662429551185733,0.0023829484957865943,0.0058086677752554215,0.11931601639840964,0.43685339302344117,0.028794903461878102,0.9514244130518675,0.7133887685506822,0.14677548358733505,0.2121133160771909,0.0000027543914251316496,0.0007062060997943544,0.08978827686171204,0.891550137477349,0.00007293862052854737,0.12972644571699277,0.10392003576435674,0.07936563478439196,0.0003264819796718417,0.666234112077784,0.3204419156378186,0.00005789443238800678,0.5662877688481437,0.027677050010106858,0.30123894292639836,0.00018202750345352206,0.024921684777438304,0.6653040028406456,0.008705738939474747,0.0033910532763731837,0.000985653678068141,5.4569228305392234e-8,0.006822358484698235,0.8068601008321552],[0.29856431555804014,0.5530680554850725,0.00313695036621491,0.00012147287855455746,0.0000270213533422519,0.000005408488418902155,0.0027849079127513906,0.0006293600418939204,0.35043071158101274,2.613252884635145e-7,0.06043235677541137,0.08875031040972002,0.9589496759631119,0.18226087532961058,0.0003674571424771805,0.7753865171528465,0.000780748301604529,0.41348780857640277,0.000020252810621985798,0.00004971914338300174,0.0013779200055198109,0.00012066774153309735,0.6594506735952619,0.6648049254593177,0.00043979123390430107,0.40845981085381233,3.0896576086871657e-12,3.7585833781163324e-8,0.0017224546095502453,0.6696344861023661,0.036834967790915454,0.6373474044290407,0.6324649550134972,0.6130287550452596,0.0000915748555708621,0.027619130003281332,0.9928818613273671,1.63851712202573e-11,0.5048494943449621,0.33269679893872045,0.6666201816399081,9.085294756223901e-9,0.0000011256951784736637,0.9711678264456133,0.00019327514920388947,2.9055201581297907e-7,2.1974718312203588e-12,0.00038876237692159297,0.0005035512286130093,0.2382397667713918],[0.9949677755336956,0.17351286015033443,0.0004364576147214303,0.0011166686936074973,0.000026720147106399817,0.0009085564650630711,0.00014210939178054918,0.00012147615196110632,0.4874717875765075,0.00064514338914235,0.010739787035610513,0.3816271428800033,0.4281834775070187,0.9565106201285016,0.00016010174414277602,0.8410064260920292,0.00034252426055773156,0.3668511990894887,0.0000056652981200824525,0.00003495750043574956,0.10788701863371036,0.18486571679481842,0.39860012602246214,0.6050699376412577,0.0006780450016729652,0.15473086099093233,8.913418956124736e-7,0.0001390988244673858,0.0032543396643909548,0.9689880153858017,0.03487584219667314,0.6942735390027444,0.21577466413405444,0.4373160225651062,0.00001824411968349982,0.0023780829456322545,0.926425208612581,0.00020670250134507213,0.25268662272953923,0.6000958042959458,0.9745862671883261,0.000005458767222510687,0.000023083979679565982,0.8231832013669494,0.0400201067137404,0.0004980433993239879,1.659654936253178e-8,0.007687388107838163,0.014333789844867608,0.6532387514624826],[0.9792507885763183,0.22962318935169512,0.0002721884558422889,0.0014286408060526304,0.000019197491270690472,0.0016727742708386249,0.0038402837706192593,0.00007436892620682658,0.9537698794436664,0.0007705373380687609,0.3911238603952669,0.4185506192018961,0.24175168574724323,0.9450220391744856,0.005648775233203666,0.9804674235836798,0.003889754747503217,0.9495265109661675,0.00011598986497113376,0.00016383379342757004,0.06734720829587965,0.08420761263428038,0.4863990861274328,0.8338975868417349,0.000034231729751385186,0.0868807480160997,0.000002300177725576898,0.002896494158502355,0.019105587113713518,0.6321121425258752,0.18897127704551578,0.704285694476916,0.7728112416757107,0.49267101689766657,0.018414208576571802,0.0030341169941178565,0.9617757293296377,0.0017703759812528696,0.19423674089939796,0.7136123667502251,0.9806486234575791,0.00016437336937617683,0.000003222410157557917,0.9288419031098678,0.6165562672794601,0.0019637496155784483,6.650931312202247e-9,0.1943166609399118,0.2241866236365321,0.7776832730996935],[0.9991787631704127,0.0005870154037355308,0.00002253431965570807,0.000009522285947419829,0.00013726741391207158,0.000007044646982757707,0.00009791721554749785,1.455070383380696e-7,0.726533195880861,0.0000017448012676727467,0.9859678807345787,0.5491747513005586,0.9374073972775384,0.999869116364974,0.0000010153976676131218,0.9985730036110196,0.000009224321451530916,0.33125397669034784,1.311661202675522e-7,0.000006875694804646224,0.33069650453780575,0.02255890688488902,0.9676733496520422,0.7534351265814768,0.0000027192419838226525,0.03105541136647227,5.832717823975701e-10,0.00006702472262319098,0.0021128424532660317,0.9399799960889912,0.005310430400547603,0.7992594823243524,0.5013317564961544,0.5712725420117587,2.2319684821762546e-8,0.8081043787146455,0.5042757788717065,0.009579180454110455,0.7487984849217973,0.37905445947522576,0.9830289973140184,0.0000016890198217832773,0.000008094492847893099,0.9793660322540048,0.03645040272942022,0.00001111015993273819,2.3408725423043144e-9,0.0001300010017109535,0.0004279423264383919,0.08851909781428785],[0.6112791411440519,0.8805855406489689,0.044286414030487026,0.00007775619890608006,0.6688347665404579,0.1879073103585608,0.24937363885846547,0.5789635885291382,0.8269232571846753,0.010034602743853602,0.8155259013538969,0.227961019006205,0.723068025198089,0.9813589228753439,0.012054458816478038,0.5190116374461541,0.4027073575308332,0.017953959322330255,0.000009072310859132678,0.7588422956702349,0.9207106894414767,0.27267298010533747,0.8263513468716024,0.756841464462384,0.03824305190431785,0.8957997526298367,7.361146819709551e-7,0.1486965048379897,0.000054599405144968034,0.9370050698825617,0.0006785352590894529,0.8624856845515569,0.0000013512912675216038,0.18356448873469594,0.0000019656423605985937,0.9575292434371929,0.013038575371655143,0.00007708133965457964,0.011841955391550084,0.0001707862050336477,0.22123479813555086,0.03166142878514333,0.00015538017859466832,0.058117820770131216,0.011999301881967767,0.001211931027871997,0.0005024095712174703,0.000013312261674035915,0.6993700679545669,0.18440740315657428],[0.3129347647572717,0.9115512344333305,0.003116479015606904,0.0000064629384804791126,0.4899910773103434,0.7385197392579511,0.07967314717189997,0.35568917405471895,0.7382768809493999,0.008167737177478802,0.5355754727539792,0.11790598620248209,0.3232314832515925,0.6556982364674102,0.04543833666392485,0.5600903258303833,0.4438545383594406,0.4225952787268356,0.00035977960181226854,0.8816329428853935,0.8205663519642242,0.3064603623187867,0.8577578093983337,0.7643163110276173,0.01160238238933189,0.874866791721666,0.00000239902277104303,0.2657821303915264,0.0000029822012035410273,0.9212902192245113,0.0004938222810889395,0.9828018041837915,0.00007867771739247456,0.25549950339694977,0.000011039842888766236,0.6680887173888125,0.012124492259924277,0.001442381944509067,0.002926390574065855,0.00032299030368443426,0.5625408632670368,0.35596773702876305,0.008004418787271669,0.06692127039821714,0.01326753542513096,0.009866896279242794,0.00039347130899948073,0.00015981125135481063,0.8506535800256716,0.22903460225724362],[0.8642337081817093,0.5793783645113441,0.028338899926348953,0.000006021522920342566,0.39174811197288434,0.4716513713671454,0.327742086298088,0.7433557678246426,0.5494385505319045,0.0009620147520715997,0.9930000271412119,0.05347718573770446,0.6588808409951274,0.9881987585681158,0.03355878530279887,0.9182278287180589,0.3419801889679813,0.051000843567890475,0.000009318987651653507,0.6967339785267168,0.9196595585824785,0.6370548809172552,0.9697754335733259,0.9250104313401105,0.02073436934998346,0.8867317988240935,2.0483605047780897e-8,0.1472996575242994,0.000007093809684730307,0.9674620626859909,0.002543621890730827,0.9823481889232507,0.0000023450012903954206,0.3360593975991268,0.0000012208988358618327,0.8942807501320319,0.0011760299175324668,0.00002677687955029441,0.014484342289407525,0.00005092610055529391,0.5736207504572183,0.023377931298389013,0.011286950340325218,0.07792598450018745,0.02372972118881595,0.0004614626705658662,0.00007498374253892471,0.0000017111780412739553,0.6055827436197109,0.14729391110718104],[0.5123044073135253,0.0031712883887713077,0.7981230899684374,0.016722793882952804,0.6955664722576596,0.03654804605150646,0.10120645046730262,0.0032273575521444106,0.5756215023315588,0.7562022930724543,0.5086366311506437,0.3414674719340955,0.4985548866224489,0.6498135757761911,0.466959378422065,0.4533958951720946,0.6869307908863729,0.7134308942401087,0.6460651395001641,0.7077911332750114,0.35511581111807633,0.7836667496191058,0.00633039979967832,0.7279622038004212,0.08082709354006462,0.11446449023351353,0.0004344768900623146,0.34476540736747396,0.13362313223341324,0.24823006679716858,0.2665466542367063,0.8015595069356544,0.10232177571756412,0.5942905400742738,0.27371211672913276,0.351811000175998,0.00033596787073281913,0.6696152305669075,0.6793913364101727,0.5601645126380022,0.24055070140988377,0.2809675823252388,0.4997930697390107,0.8285550881145276,0.6263464400206903,0.6396595149472983,0.46284213208033476,0.7728163195211813,0.48806596516989753,0.3071925386126592],[0.36265971222675664,0.17678030282795976,0.37423173102413354,1.0892089366852915e-8,0.5266425432889845,0.00021479069821831156,0.023747315990984758,0.23539868314529933,0.21800858767005227,0.001586375754717177,0.35806047273063535,0.41405934974887815,0.05812665077916195,0.42080080982734935,0.47920869168908303,0.38620196148388736,0.38786784302807276,0.6033038411115385,0.22201450675126122,0.7538551040784094,0.18155745001385815,0.2876966293488209,0.00858231938329985,0.6943587542476269,5.210882964470569e-9,0.47409561585014554,6.941427970200756e-8,0.038964460155902624,7.863034456493762e-10,0.023225338976838403,0.0011359013760988577,0.8356125032811761,0.5284400211141128,0.07820606197504926,0.06494976522451466,0.524884488961316,0.00003102077335723645,0.03822532204833243,0.7001211447876249,0.21138659471287544,0.30594169030249013,0.4635421962377096,0.8471933228855747,0.7411185844811268,0.13277595860405084,0.1568340294484994,0.0009269913353448429,0.027988778682608923,0.26455719176502906,0.7826044751274757],[0.43696718496767417,0.4847125209652492,0.0007901282593238407,0.0000970139716776571,0.8192610360516087,0.0011495464715051975,0.6440404348575365,0.8864644717008431,0.00000840808788936949,0.5283999768024615,0.46874256285792887,0.0000012699532815019299,0.9646330860298751,0.032155295996520596,0.03171419917113366,0.017947478248172156,0.2498351525192918,0.588602614723094,0.8028687140003059,0.39523280129338195,0.6127868461103161,0.006967020230717414,0.0035350716070369865,0.30440044689632806,7.33946184881723e-7,0.7843500376770766,0.0000012849169661407586,0.00013880243922021124,7.81433917136541e-10,2.5266990346697516e-7,2.3030487269115444e-7,0.5565632794898114,0.45531466469005083,0.00019593028783140674,0.00019188550879321132,0.01114681480178946,0.5723231459954428,0.0000031233562624927546,0.6481073363352051,0.6621245192475409,0.3958461805583748,0.2705117433492237,0.6999250171243546,0.8373500392657537,0.0005426194979696681,0.0007994754047723995,0.0006572211741996648,9.304901371793099e-7,1.4614647174447061e-8,5.554034644238987e-7],[0.9104455868713638,0.3923314232458098,0.2590157173908548,0.3642781493594074,0.21041326088562323,0.20004984000511286,0.6783434231053905,0.6158163798701131,0.630318081113384,0.8118931619815013,0.006080124437085657,0.0031142950867270158,0.25580623028406724,0.00011795431168880128,0.0004352172153659406,0.3674851598807801,0.5277075729073799,0.004830430753406343,0.10262853460155774,0.005500193264706661,0.88852290561398,0.7951955231697849,0.5187275320440705,0.6860819631242554,0.3385131252968351,0.5689752206927737,0.2979027661367659,0.00021003516538939997,0.00043864866724067274,0.0012512631172156225,0.0002882693300743817,0.6274902128912107,0.40997299711629365,0.6525127850704492,0.12258351442461285,0.2725232896636957,0.6974222323298077,0.36948165621590173,0.19507230487359203,0.8020668488607902,0.6116573394865654,0.3433298812317404,0.9147626499825293,0.881738938511595,0.09703846478181144,0.39799316451624134,0.862435281368635,0.21511864666374764,0.2691700587753953,0.0009313975153353581],[0.00007245649312532126,0.6837722883296405,0.49590616373224705,0.008508975850324006,0.0005131347114809477,0.2706952953034011,0.34127276738602186,0.8161834922977591,0.44905009354781017,0.0005264839827768157,0.000003264427267385546,0.0033849081235927912,0.8498772492183029,5.821166499735363e-8,0.00006937221512060907,0.4378795989460176,0.4471580550271275,0.00002618791311134272,0.21432921930901272,0.00003673278986990841,0.001506761125507676,0.19908101900596054,0.00032365457801885277,0.7514252319966166,0.22442744565593678,0.785215864713862,0.000008110222249887605,0.000018154503662380997,0.00020002341477832984,0.015469662860621519,0.04720794126579983,0.5686575129379863,0.7650843899893067,0.5524692053505754,0.5055016860228444,0.5875372122048435,0.8910285256951591,1.7096357901641334e-8,0.13480238800510605,0.19980331942397786,0.3343283035806458,0.000004654428851328663,0.6088041452680275,0.9331172304903111,0.00027720976751551723,0.0006844564517320128,0.0028703092422729466,0.0314290963129945,0.3790027604223233,0.031205007905299235],[0.9433442034431128,0.6218800226005724,2.7900460913935777e-7,0.00002153856038520322,0.05787672677675715,0.35885974759039463,0.000005102735674119131,1.5324508032258532e-7,0.6147216303282749,0.00008231887362513527,0.0015803126796449804,0.24075407083907055,0.000016850103592584485,0.058928088818249215,0.000004656189586083444,0.6934149578838192,0.0000015540589120401958,0.002887818908850874,0.03587508501381317,0.00002336574439612666,0.5251174595982661,0.6960141673387614,0.0001669437431837495,0.8365202969662293,0.38697008818561024,0.6637353973751593,0.20300933690308173,0.01395822057859302,0.00002018567356646907,0.8078951868834998,0.6647813835164715,0.6251277739236978,0.00000913985640607202,0.787031050798114,0.3827011145335904,0.26230182747167197,0.8931890514348698,0.4057330767076088,0.5581520507514893,0.8756846387694409,0.9703944788734731,0.000038596677418451474,0.2101876648120193,0.7490564871936796,0.7038868134878395,0.00002813116578404004,0.000007389535841893798,0.4781930539669258,0.02000667634349692,0.8470461893213638],[0.8760887331915075,0.6870535025251628,0.0000010478830289420095,0.00006115138088933232,0.8668722678305805,0.23390262536858894,0.0003136252149414539,0.0000037451634192701363,0.7948498663561312,0.000602117093764767,0.1498473944820485,0.31568294775968975,0.00015882466365540725,0.9915451411586371,0.0003427173952278995,0.5803555210000434,9.460567413068413e-7,0.016220264023811784,0.07141024412155006,0.0000532989696801488,0.9918857345511385,0.7601864793245456,0.03143819586567003,0.6474397539776852,0.6656566761562652,0.8885367172875841,0.8349870437263196,0.3828170734457928,0.00041992863589561646,0.5080605840722638,0.9064020196532245,0.6674109034831663,0.000014672637594290215,0.5506596778626955,0.6213546139277984,0.44532788715993393,0.6798977298505723,0.9586604501693211,0.9253964359587098,0.911488695763529,0.8722527281946006,0.009858037715370251,0.5352907779078254,0.8863952081621039,0.9721529451135072,0.0001838781232420616,0.000199239813634409,0.09135269831458216,0.005858379379211438,0.4077569004862236]],[[3.9971163279113566e-8,5.462646756968179e-9,3.570067090399041e-8,2.7688299042197258e-8,8.010131697828797e-9,3.0000890016880894e-10,1.7425051789872119e-9,7.453621817378356e-10,5.5772931518308824e-8,7.186557381670045e-8,3.9490966770829286e-8,8.16839921343865e-9,1.281686216406441e-7,3.2642763739580986e-7,3.6329632389945134e-8,4.853780340050418e-7,0.0000024221360345813006,1.1687744552120501e-8,8.126047217823281e-8,4.970019579414561e-7,5.978705631559841e-8,0.0000011615547075194317,0.00005082883024874053,0.0000348219190815906,7.231738226508166e-8,0.0000018654183372283034,0.000002761431541823513,1.298399446825284e-7,6.11823127659352e-8,6.020886587753211e-9,0.00001576489786487522,2.785123035653147e-8,0.00000443275335193854,9.569222119008456e-8,5.3025986608153447e-8,0.0000010643040430036542,2.69189916009214e-7,1.4992226326572944e-7],[0.00003288608062986055,0.00003016012244269645,0.000010215665219511569,0.00002963697018041583,0.000008929367740161134,0.0000027739073041322456,0.000010150502099951972,0.0000025851088542613856,0.000011808089350358458,0.00001807769253559912,0.000036337228587214134,0.00016957546455427766,0.00012627421740428745,0.00015616677485800088,0.000009187259591810928,0.00002298246432118036,0.000058774153303306,0.00021086066985774715,0.00017757405621721586,0.00002250867137292277,0.00010838079488141448,0.000007994692888289162,0.00000838704236243024,0.000004496458132259623,0.8936221049437761,0.000003212526166086624,0.00004266170306549777,0.00008057333507363517,0.000022983428782709496,0.000012414451020092415,0.000005331739183091204,0.00006362397728111107,0.000008839874868587983,0.00004413738171804477,0.00046583442840113985,0.0002194160695876832,0.00011157092236836522,0.00022353422188114646],[0.000014580854879727476,0.000012760264980962948,0.000009276039169257702,0.000027757712693354485,0.00001892781661428176,0.0000013318621817083665,0.000013708640970059518,0.000004296545359622614,0.0000266350050488611,0.00001880880065025915,0.000015872308580244968,0.00005551420076326644,0.00011056037123183873,0.00013773106347556255,0.0000057365378774809725,0.000002371275487886022,0.000021875573606371382,0.00006713651719610229,0.00011354912397371554,0.00003980067874709246,0.00012024078219258394,0.000006550030270442442,0.000003652513496251321,0.000005878689879889173,0.9048179393988622,0.000006675755321653196,0.00006576038086110442,0.00008085155764839041,0.000018857338423394735,0.000011555256850998397,0.000017341676761359066,0.000013436273986753515,0.000011469415503088863,0.00005130119408450142,0.0003919707830100221,0.00014785415086375774,0.00003601416775667532,0.00027287366263504853],[0.00004930050137261596,0.00004522874362134364,0.00003126481895702344,0.000012758908655472988,0.000015025547956606463,0.000001391383666746148,0.000013451225975234116,0.000007290789698068089,0.00004567372325245827,0.000035212030600351315,0.000044730790502349974,0.0000839105796923426,0.000104361417587816,0.00018232075978701738,0.00001777237210943853,0.000014854962911726327,0.000017696295020605677,0.000042622345358472864,0.0002816751528479668,0.00012266627873079065,0.00012355152050432983,0.000010620851428994086,0.000008269824973099182,0.000006876080270024167,0.8873052551503506,0.000030877640834249906,0.000022947144013401453,0.0004980527424304921,0.000007399295950006014,0.00021386419960084337,0.000010035598285226958,0.000016143788486234042,0.00001263101357688931,0.0001239291705171089,0.00027733495969051294,0.0000250943774890768,0.000039002942856521736,0.0003641113978709689],[0.000002190215195684128,5.3408109872422425e-8,7.541549586376278e-7,0.0000012437801428286365,6.186817514055425e-8,8.623466666320362e-9,1.1366614795539964e-8,1.87730300348377e-8,2.096394201452284e-7,4.734930183314849e-7,9.967546079092199e-8,3.143193758301855e-8,5.651317467004059e-8,0.00004309337214301511,1.6179769588075768e-7,5.143433102595175e-7,0.00007397891757817916,1.6623416056002132e-7,1.0742349690744997e-8,2.0138147803811702e-7,0.0000049058766784503295,0.000011863026779388448,0.00003673147103106633,0.9217863198565207,2.955567028473596e-7,0.0000385090740288957,0.00000141129383489559,0.000005175843412472123,5.439968964213059e-7,4.192415374414316e-8,0.000040816786783498714,0.000005818840277895892,0.000015354208550710944,0.000001166312277799543,1.0189977793279807e-7,0.00004100487082987797,0.000004644792329661242,2.0487714782523868e-7],[0.000001348507216559048,6.319841879181494e-7,3.4126485850253625e-7,4.4684310407575416e-7,8.018270547035094e-7,2.8724945230005246e-9,5.887985862856229e-8,5.8874397463306645e-9,1.2428095913324028e-7,3.708076534808939e-7,0.000002087637910166937,3.802983859900073e-7,2.1337144426247438e-10,0.000003836881387203521,0.000003363493610399141,0.000013101898102357767,0.000040251894368510246,2.3646776315789587e-7,5.660330607094811e-7,3.842090047609913e-7,2.2445834305641227e-7,0.000018089078729439928,0.0000982559807617313,0.9337721623749397,1.7618531446508492e-7,0.0000031023837111274823,0.00002721600100362579,0.0000268999249759451,8.335702153096534e-7,4.744813460291384e-8,0.00001830113977345538,0.0000013087144881416365,0.000007383338612128587,7.227320950787178e-7,2.421523820200409e-7,0.000010251462448809809,0.000003870620688701624,0.000007464409348023528],[0.000004107599293437996,0.000008023603253291466,2.041473840112936e-7,0.0000037125433542290605,0.000017335803498340927,2.8617465255960754e-8,2.15765036648244e-7,2.5217916322027315e-7,5.691064474633706e-7,0.000003735318240161355,6.219821223991447e-7,2.670681928972241e-7,4.0698917685485143e-7,0.0000014629120968555707,0.000013923550336226613,0.00002867798963097192,1.4086289065319802e-8,3.0918126914652924e-8,0.00004813771907796931,0.00007177776219089817,4.6290169446682453e-7,0.0005608786291198171,0.00022937340783812032,0.9080498491326036,0.00000143278739109345,0.00004561958489245094,0.000011216882180169448,0.00012029816094743017,0.000014974306095225417,0.000001042818505721721,0.000034309734392891944,0.000036616779721629015,0.00002530724098283935,0.000003154833167713677,0.000003612309675642144,0.000005868712987441189,0.0000035570178742131823,0.000002843822939866791],[0.000004629112857649598,0.0000019693840570771264,3.8114973969181003e-7,1.9303791090809375e-7,2.558690513161734e-7,9.559003055188447e-9,1.8996805797778595e-7,5.970855274050114e-8,0.0000016046793654744889,0.0000015055691350329765,0.000006733460972054093,9.864986934676442e-7,7.540516119900079e-8,0.00007291753678386411,0.0000032751414738013446,0.000004798217272841341,0.000012000007683117489,0.00000593149413931233,2.9567349098316756e-7,0.0000016083624822711016,0.000002757811805460781,0.000029047477158712585,0.00001405824420614673,0.9271419287112546,9.214075850112887e-7,0.000009074067208089767,0.00003931054342274877,0.000001702751816751057,2.822778746933403e-7,1.5684110233292103e-7,0.00006355909006361952,7.286100829434263e-7,0.000006910724448906502,1.5304924242770922e-7,2.1943798424167722e-7,0.000007079132152208088,5.036851172972269e-7,5.754928795321469e-7],[0.00001397674782317015,0.000004525536363112184,0.00005299298710639884,0.000014074866501309975,0.0000025414495479101015,6.28546969977965e-8,4.368017752403463e-8,2.100058107652905e-7,0.000009241363502478636,0.00001679128867019992,0.000002121708169884655,0.0002332786823984514,0.0000672411158940995,0.000011566461151419416,0.0000010086190618033849,0.000495375626721891,0.000012674585846099076,0.00008181424749690329,0.00002072894369010436,0.00007266863879236058,0.00012818855802507613,0.000013491911401843601,0.000004264067955551128,0.000055728884360584444,0.000002362899044799931,0.9009355484367414,0.00006612381415275921,0.000003593601781035662,0.0000033141114195226047,4.0017002121570206e-7,0.00008722415034593799,5.253228495357414e-7,0.00014518182897391567,0.00000809166297634128,1.244020097047246e-7,0.000001278603075280716,0.00004495530097819199,0.0000028662902651915427],[0.000011330350286975492,0.000012473172611612833,0.00001843610125973655,0.000008842372753496593,0.0000017529507316521498,2.3234459675735452e-7,1.3401514761629398e-7,1.1406577194884647e-7,0.000009814583785913827,0.0000383337639834083,0.000007275209051882106,0.0001904361806015228,0.00008905476427074923,0.000002806088439965663,0.00000606959671115879,0.000054163142963041195,0.000003267632412084012,0.000013107376591487078,0.0000374697620506179,0.000051120530398372824,0.00004146106694420651,0.00004999399575966397,0.000010144844780561144,0.00004690929187396116,0.000003831350039705639,0.8993387774182097,0.00006609435778183506,0.000004715361890671221,0.0000019178608568132607,2.092116547323379e-7,0.00009311854666361914,0.000002199944373127683,0.00016694923083359446,0.000009395205514842851,1.295136522748475e-7,4.344877852134554e-7,0.000056688354248140875,0.000002835144091884988],[0.000007547747988062614,0.000003008288746762633,0.000028827605429480045,0.00003300323248352839,0.000003837068471919879,0.0000029064477890463016,0.000003776674021727176,0.000002161096647154191,0.000006376628718587814,0.000006885073989433926,0.000014323146076919588,0.00010217250010126796,0.000010129560901951363,0.8798165638921595,0.0000019618266503654192,0.000015300365354405078,0.0002619886787371973,0.0001906796361110326,0.000011037626567525428,0.0000028354991780421416,0.0006701979845676217,0.00000417885008101481,0.00007017947332648778,0.000059972847820752555,0.00020049578737573045,0.0000047578427641226725,0.000005884030846075825,0.00006020294904924468,0.000016973260782485523,0.0000013228314100325401,0.000015990115200451725,0.00001124254982775475,0.000010506502231685152,0.000007057954817874201,0.0001890321675197575,0.00010625765330633837,0.00004364034618670294,0.0000445380728816622],[0.000001543692362817359,0.000008369404947906247,0.000032659689030147426,0.00001919747026571279,0.000008809908962984167,0.0000014177066946903026,5.117245710350541e-7,0.0000028495251780942215,0.000005135482019762413,0.000008375437601343317,0.00001136580807502649,0.000016905209537441016,0.0000135424638337384,0.8906463162055339,0.000108925565597453,0.000013299575269557265,0.000022884656675486262,0.00007868299461767021,0.000008902403710247651,3.3730731239972606e-7,0.00014479422467781388,0.0000017459560813579505,0.00007938375260284842,0.00011320593082565859,0.0001469122020093526,0.000008736437536125541,0.000002307893311683067,0.000014248347291350732,0.000005821315249688986,1.7311469178344702e-7,0.0000015583936936990852,0.00004309779013032772,0.0000031604078150763337,0.000018986713083621594,0.000009840961504270512,0.00024044532933598195,0.000183716696748872,0.00004022978144223601],[0.00001712176735287894,0.000010581482890609832,0.00009533655978029422,0.00007595192065800086,0.000020117817737112898,0.000005319209210301927,0.0000035746764008346034,0.00001222848508537935,0.000015040819921298215,0.000016344329704584992,0.000035468252602334205,0.00038196263628736184,0.00010867808055788922,0.001009523189015403,0.000004386970810872034,0.000014698564662355655,0.00011813629832677192,0.00010136605825882254,0.00008006686555426479,0.00001632538396333249,0.8679530236653437,0.000004631659665307045,0.000048710681660454536,0.00009625853292290558,0.00018345184498874426,0.00007354106848649868,0.00005168273068292605,0.0001179532542830657,0.00004459513907896872,0.000004967226357132545,0.000009862782180991363,0.00003505230178455848,0.000021078480829313174,0.00001273069251709757,0.0005731268596150706,0.000041054498136680136,0.00003151303082733435,0.0004634877069525693],[0.0000021102314988502663,6.063256988523472e-7,3.6683188120254803e-7,0.00001367468250643845,0.000007812080871278504,0.000002151888697744313,0.0000015392950556845485,2.2871807792754183e-7,0.000008776134200496588,0.0000013262844748583956,0.0000011642433033457926,0.00013276839641661732,0.00001462978964914544,0.0000014565379039432607,0.00015087297233222174,0.000003505640121150966,0.000581418111683049,0.000011201297746953412,0.000004030438456149733,0.00000415798992204415,5.6572966771230767e-8,0.9028588930034103,0.000005922083018421509,0.000011985312527459371,5.722826884923948e-7,0.000002863347874499606,0.00000947099556058881,0.0000029270118576970723,0.000018565346559907493,0.00000810877988637942,0.00011073359127525787,0.00000810722263452164,0.0000035387221402472213,0.000005855496442830666,0.0000021992689212791495,0.000012822200936799097,2.2741058323272338e-7,0.00000220858949568225],[0.0000044717749375591545,2.5242689186522196e-7,0.0000029712563031526216,0.000026062191972922448,0.0000024745497161814227,5.405438656164092e-7,0.000016473191296728742,0.0000019734733074205397,0.000006933994063030678,0.000003025116588736863,7.228666133067023e-7,0.00003321429655843137,0.00005223980441069122,0.000010719285230216336,0.0002715107370611625,0.00000206020081813772,0.000555438618073267,0.000046227771196756686,0.000041916233949901006,0.00003147757987507313,0.00000695134304266659,0.9135026636146141,0.000001348016068877875,0.00000105883677118435,0.00008206135402057747,0.00003488108477677664,0.000008128016391888544,0.000014769218435327964,0.00005690039452336532,0.0000029947336737848793,0.00006483896243093604,0.000003219410578974187,0.00008916183522893112,0.00001361282880629622,0.00005657489815989834,8.145668242564491e-7,0.00001374037301526042,0.000003188589456705368],[6.96487954808081e-7,1.4769453441172986e-7,1.9681064934638091e-7,6.075677621721607e-7,0.000001314924529004328,1.3372273576196394e-8,6.504534019980962e-8,1.5787892107192123e-8,7.978578050774557e-8,0.000001154896959398335,5.222879042924422e-7,1.314751397676602e-7,7.310105098598044e-7,5.050754356006108e-7,0.0000019174115960254307,0.000001486806977973995,4.179679281435314e-8,4.816916235779081e-7,0.0000027338671166830913,0.000021690424643195347,5.554132705220549e-9,0.9232330624442616,0.00034760261682065783,0.00015326441672518172,9.055298525557486e-7,0.00001285202761941333,0.000017523737820941806,0.000014891830042280352,0.0000014067212701820035,0.0000013192554051151653,0.00006141270762124791,0.000002443891778832712,3.8844990618440626e-7,0.000009567779465162007,0.0000060257349799541976,0.000005249219857446864,0.00000873987224390965,5.531111555361801e-7],[1.7931132163738254e-7,4.849119385326176e-8,3.760925445674236e-8,4.976757594757777e-7,2.0943752964057283e-7,2.6114022028038066e-9,9.08837118930909e-8,7.02600836739762e-9,1.2791899082600052e-7,2.4034237295987147e-7,9.350504912974169e-9,2.74273499901253e-8,7.670091452484634e-8,0.0000037143964158285187,2.802683379167925e-7,2.1732853993201867e-7,2.3557111388320694e-7,1.8295852487496763e-7,0.0000011402670935085853,0.000010931768927932146,2.8002523332978524e-9,0.9291973028397823,0.000014113884364538776,0.00008680753463763187,5.369812282606185e-7,0.000002131265853230809,5.53854615132502e-7,0.000022250737243536004,1.8954431731426202e-8,1.1822584916045052e-8,0.00002070495145557703,2.0770528578073718e-7,1.7254095006002776e-7,0.0000018483886299286582,0.000009004383932702075,0.000006154312023074563,0.0000018831952291195193,0.000002705268397200203],[0.0000219049377864384,0.0000024209430460395785,0.000003110269151604274,0.00001066179248357154,0.0000051572130817449585,9.281819156520534e-7,0.000001888560730223561,5.085620791422396e-7,0.0000258199621266089,4.487897738293865e-7,0.000004210075942836123,0.000025132986550572947,0.00006633161754902824,0.0000026746159448343812,0.0004716357611229855,0.000011205066635035995,0.0007004268541911877,0.000008232406410608705,0.000009121946329336804,0.000004344668742113989,0.0000018365597574828415,0.8907145156816902,0.000021540366666763182,0.00007157726769965645,0.000004273430363632861,0.000007147414423890942,0.000010255079250694912,0.00001117312509489837,0.00002798451661989015,0.000010410113249615501,0.00006205174526899984,0.000006409753551658588,0.00001731578496270224,0.000023659998269710427,0.000009839167895978406,0.000023091779148109143,6.937428153503976e-7,0.0000033133085480065363],[0.000009080350034671967,6.572292140223556e-8,5.802628961289581e-7,0.000001909206940924454,7.76794936052673e-7,1.8042084918940436e-7,2.938145327643834e-7,6.416900471789867e-8,7.010892940746974e-7,1.1595929517902384e-7,6.346520408802571e-7,0.000018054912423246014,0.000014302841325396111,0.0000083441990681797,0.00003596942076569081,4.193138071406094e-7,0.0010153570169533263,0.000002569981645163731,0.0000059024413463287965,7.019318538660921e-7,1.4006331422015358e-7,0.9066161204558703,0.000001441346481578006,8.946599166747372e-7,0.0000010742723846261905,0.0000018172332991037767,0.000006637969436522992,7.817473461071555e-7,0.00004750403724334661,0.000002888431652692318,0.00004633629005998689,0.0000020243357522468977,0.000004126959745039583,0.0000018375602889809924,0.0000010632943903447134,0.000007908337777040167,7.248025810050419e-8,6.336199192024039e-7],[2.637558391480632e-7,5.5513998585100035e-8,6.066399253004508e-8,2.141700871545866e-7,6.389039771864304e-7,2.4603081941462107e-9,1.7037504881345442e-8,2.2896857173749785e-9,3.481433815852853e-8,1.0517412425994353e-7,1.1338240974477796e-7,9.987356687693806e-7,2.817682634943971e-7,8.107336054072045e-7,0.0000012551858788399578,5.282100398246611e-8,3.844457884671454e-7,2.59836747703907e-8,3.4502152476048373e-7,0.0000022660163927410392,1.5004140437001385e-9,0.9409919801735124,0.00009155601152162543,0.00007327163344175407,2.271170089336171e-7,8.35382175935744e-7,0.0000023081198143163203,0.000009296027999281472,1.155871378136793e-8,1.1637415673217987e-8,0.00010567176913600029,2.8702114965911924e-7,1.3170907099785364e-7,2.0879351715259328e-7,0.0000013878774459134366,0.0000017641470493384598,1.0424574594068347e-7,5.266101932343655e-7],[0.0000032538759709267084,2.2594038305185868e-7,2.139447417286106e-7,0.0000015040258814592052,0.000002986250816794504,2.904867480785472e-7,0.0000011289459752074772,3.9772515748590403e-8,3.000571445812573e-7,1.5002781160907106e-7,2.2557932177129593e-7,0.000013267815414781493,0.00003436776724542634,0.000026486552293106312,0.000022757318869348365,0.000001188288418902739,0.8802875531422962,0.00000313840100798578,4.7629222262985386e-7,4.382551999199048e-7,4.81499379666853e-7,0.0011780655479582298,0.0000011916912467378544,0.000003854128410619958,0.00003558607926034898,2.3950432343888166e-7,0.0000030242950532798937,3.0249684089262803e-7,0.000009524745834466467,1.2298298545725825e-7,0.000007202922234932756,7.203902167108892e-7,0.0000022402876449370683,0.0000045128295875747365,0.000001541817800684548,0.00004741258939619132,2.7619259589730305e-8,7.690898484777091e-7],[0.00001638999934133909,5.994011004306082e-8,0.000001002318901821461,0.000004315928456361984,8.888923860579361e-7,2.501233667724678e-7,8.824829642198154e-7,5.181777483557652e-8,0.0000019014564505945057,0.0000011908408642634343,0.0000019138306420871154,0.00002852153853608585,0.000003946581952208448,0.00006212073097399513,0.00006163918313153902,0.0000025044366768453814,0.881605828398196,0.00001346161635996204,0.000005620168450109915,5.278289869820849e-7,0.000002497147682675202,0.0011144749433183367,0.0000021668589449647287,0.000008706848249345145,0.000022282944326528572,0.000001086772762705234,0.000012073019911063063,7.864652395531669e-8,0.00010086538610744592,1.4383617098392816e-7,0.00000579034052419468,2.0623465309393702e-7,0.0000011295648701948155,0.0000020656010581752062,0.0000033500271412724543,0.000022443786212248478,1.3402622291122634e-7,1.6521014066846627e-7],[0.000003057273687742608,3.355118949966606e-8,1.8532405452042047e-7,0.0000019804842888447672,2.2298118789822198e-8,6.564721279976314e-9,1.0166296766024435e-8,2.7483063686873783e-9,1.7421158044079469e-7,2.1017138430813825e-7,0.0000032466959537459872,7.064765648510274e-8,7.714935913239882e-8,0.00007025818085582752,8.083892317206556e-7,1.4160363500068763e-7,0.9525925678790174,0.000005541975601285857,2.3868527364802397e-7,8.687935534376508e-7,0.000009535826492803591,1.4325529552271256e-7,0.00006178364459341837,0.00006129676356866594,0.000010542818663671496,8.235515704624961e-7,0.00028261806760900785,2.1097880241347208e-8,7.162497305197019e-7,1.6252962942718558e-8,0.000005718691986555181,6.907109979091856e-8,0.000027700966773539176,9.008986542684419e-7,3.013061228481261e-8,0.000007358653363675503,2.0742280972067076e-7,8.326543613796264e-8],[0.00005962296414732197,0.00001961251591807913,0.00005008472589284009,0.0000951158241349031,0.0001505062880505471,0.000004834794095139305,0.000005399814859545137,0.0000033349902630281403,0.00006983044113622573,0.000056169040951933465,0.00001927496364795286,0.00017450161753053786,0.8771365888326521,0.000007485671762447204,0.000008640350199209931,0.00012376407095895047,4.7463214044553376e-7,0.000058848211066788114,0.0006342565705628111,0.00021003745378849189,0.00003399261108852795,0.000004802710506797556,0.00005467747874634709,0.00001650463867796623,0.0001410638154798171,0.0002509404408513771,0.000009658601468958262,0.00003824881276639268,0.0000399192303522398,0.00002984000731369899,0.00003293619291748631,0.0004210463669855297,0.00014380280835971746,0.000006385214413762605,0.0001742335343456849,0.00024209438798155573,0.00013414330840186948,0.00003508176415856949],[0.000007140578794659988,0.00005947347466143967,0.000025999140983587526,0.00002460633528197824,0.00001420467391816364,0.0000012512208027318388,0.000004854257148217277,0.000020390071162528347,0.000041744610046618004,0.000037662307148708986,0.000020932188815271515,0.0002884344576225164,0.888939193150418,0.000015618247788448216,0.0000421790422578131,0.00009161595411971631,0.000004277878290855794,0.00004344697240238725,0.0001202680553581115,0.00003412154290406115,0.00015198737984506945,0.00023642083497456032,0.000029598515765284346,0.0000017786712512285075,0.00009022670132922232,0.00017071961591858098,0.00003314126218765908,0.000007786039049800633,0.00007416429272013396,0.0000016410308552219072,0.000010457658836369814,0.00001582218123583039,0.000051448853802139624,0.0000022590038392777226,0.00006914795580284339,0.0002486218755583819,0.000208009262546622,0.000005440060416003427],[0.000012916708597933608,0.000002734946214605764,0.000016886767777500686,0.000016612164215035253,0.000010041209843877574,3.9996942509573286e-7,0.000009222576086861777,0.0000014935921735859747,0.000021451081324241566,0.00008565155200608206,0.0000043185450853393885,0.000011160349578427039,0.8954987680850148,0.000022927173843298575,0.00003744356162851261,0.00010187485021857243,0.000001768791687277809,0.0000103331255526543,0.000008879242815067531,0.00004672648264802407,0.00006560879811547154,0.00001966925080117059,0.00016646880881453617,0.00000174009626585628,0.00011249873009753414,0.0001595065189239746,0.00015022277331926188,0.0000031089888143179496,0.000011638357046948964,0.000039297855567291764,0.000021359419888035972,0.0000055724097515539914,0.00018619684647797419,0.000044304258475473685,0.00004304858825302115,0.00011333166200517285,0.0003335792832898341,0.000026077455577988425],[0.00004039790952328647,0.00003989163790904615,0.000013654115704058976,0.000009007017584072399,0.000030386201793359553,0.000005632393784602824,0.000015036775011647267,0.000004439432137355838,0.00005726373254169054,0.000015256138813085166,0.0000631276297686999,0.00012092212390324658,0.0000019081630585837038,0.0000356086050622648,0.000016352497022172177,0.000023699392395383108,0.000008148538465050737,0.000003327569145919786,0.000047550397033118625,0.00004355166675474006,0.00021925921736060615,0.000012308738749913324,0.000041135462525222697,0.00002640220363339178,0.0004553981718461262,0.00007810536876355654,0.000004053816561350345,0.0005451036583590295,0.000013484718185484206,0.00022003435228073432,0.000008003398853863729,0.00007781809681068507,0.00006966784231672769,0.0002284055981417293,0.00019351383576537672,0.00003057167981915252,0.0000030694675628492516,0.8804558808265713],[0.000011348949929410884,0.00006026057007553006,0.000012986239483889427,0.00003085964444719173,0.000006159735729817463,0.0000019246726409624054,0.000032585434055421516,0.0000024078941471392826,0.00003632292328516621,0.000035337795216677776,0.000026644449932415233,0.00027104311638426524,0.0000012524099922235882,0.0001594850209018127,0.0000036468645884307604,0.000012003825621609337,0.000005880836714381029,0.00002525468406415725,0.000025459344329389753,0.000034841819536323055,0.00009338331152007613,0.00001530027344124993,0.00003388869449195344,0.0000030615571701509463,0.00030622034245969434,0.00006438745048256566,0.0000015579229425336152,0.0005142239346344618,0.0000052894848210427115,0.00016959037637573533,0.000014203425844487426,0.00006821831844492584,0.000032058982727751935,0.0002184740467460695,0.00027238237508830416,0.0000095024604972994,0.000010126459322154555,0.872985521965466],[0.000016432026619739254,0.00005215188938412466,0.000013031261053937672,0.000013307235297043202,0.00003953694082970743,0.000010711396796890289,0.000009396978227993075,0.0000022168551128516418,0.000036272577285008724,0.000009642020670332955,0.00006745715683752768,0.0001394367378350536,0.000004425856398818414,0.00009133038107201802,0.00004755532643013116,0.00001607114403976233,0.0000031797563721070495,0.000002383677654075124,0.0000742589311656989,0.000004389199829701593,0.00007714113980318174,0.00009893328883141299,0.000029743279801443824,0.0000417186249703726,0.0001790608218458315,0.00011552092087567814,7.946705986308274e-7,0.8805762217796075,0.000003167666733621672,0.00037156655004242484,0.000014440980562838738,0.00019373023340782584,0.00011679616576475961,0.00009170254237415492,0.0001317175437281046,0.00012861401642975983,0.000007796536130214256,0.0007272475453117388],[0.000028342558929505964,0.00009469744174275203,0.000026693635891310697,0.000004942046789864164,0.00003626353833236208,0.000003228732604000115,0.000006798421948417776,0.00002005582177046974,0.00010766019108830121,0.00003930294092481603,0.00004225068053263409,0.00015130609079528734,0.000005886262074315843,0.00009889666168422828,0.000014283282747431309,0.00002293752730990793,5.411591922719196e-7,0.000005953370848851711,0.00019090732489037833,0.00002699944649045862,0.0000842133025156166,0.00006661446271944754,0.00004757036566357748,0.00004769014769660976,0.00025119409603113107,0.000052881884109111846,0.000005067898441918646,0.8827234820992192,0.000001967717614462372,0.0004939281643971241,0.000011786357450941832,0.00019101521057932543,0.000044481994161705964,0.00013822306599335432,0.000128097015634529,0.0000462985885224676,0.00002813927209489893,0.0005754846527669449],[0.00002642225518161807,0.000016423055965993956,0.000029240834219961103,0.00006962046844908074,0.00008950059906963774,0.000004216206082514034,0.0000012776242404002835,0.000012720045652821157,0.000003832037501457603,0.000009198145142374786,0.00007182670761968701,0.000005312599223434742,0.00035823002329602626,0.00019251302077913105,0.0000024864192186819853,0.00012469245707065875,0.000023528189869386122,0.00002128236230699868,0.000004745930569039631,0.000005028506897972011,0.00001672436638440998,0.000006507831092721273,0.000029131813151157702,0.000020406725404169944,0.000053641672089004516,0.000006079954155143426,0.0001984710844902296,0.00014425665889878205,0.0000029286282371682373,6.764400022470887e-7,0.000013400763401873068,0.0004273569542159598,0.00020481735158825684,0.000027936180649931972,0.00015200753712931657,0.8931290715065142,0.00010146822924229488,0.000016208799455573158],[0.000024133616151681327,0.000005006927188484248,0.000020608916450925375,0.00001686204965914622,0.00004561468793282321,7.249195899908706e-7,0.000002146133136538539,0.0000035507689796399946,0.0000058628347553594486,0.000006119805600230755,0.000015537085897969653,0.000003823067427030241,0.00006386510758456041,0.00020203366796207688,0.0000014269340591749566,0.00003720920506408564,0.0000030788789351352104,0.000014956983459160475,0.000011683195247111349,0.000002534661935760891,0.0000030224428929001125,8.798940206043022e-7,0.000057096488671229184,0.000012161542541772726,0.00006292091024535419,4.4772232532802717e-7,0.00005787075243772949,0.00002388313531208908,0.000002688405542161754,2.7113420863881704e-7,0.0000035522186426935367,0.0001230940509859368,0.00016268796824013405,0.00004163964842004758,0.000016184596166560372,0.9119811396541884,0.000025010764270731987,0.0000034635999861442835],[0.0000014770959267079108,2.069116508674403e-8,7.411106868082751e-8,0.0000022228676953916576,6.196897419244227e-7,3.0795879613843903e-9,2.1209075776556236e-9,8.311911403655573e-9,1.776610124647446e-8,2.0998094108838945e-7,6.648696630741783e-7,1.387004372244025e-9,7.028188861541417e-8,0.0000028469858016668327,8.740583061223878e-7,4.3344897681238575e-7,0.00004286129625588515,1.0728157938006956e-7,1.5804873335126922e-8,0.000001952914942197199,2.968352308770113e-9,0.000025978358595119105,0.00009783642362160523,0.00008586179529356752,0.0000018454835866647414,7.856898570885706e-7,0.00001063230556883444,0.0000010006122806758307,3.1309454719987005e-9,1.288971106662443e-9,7.701974947588361e-7,8.119619550285902e-7,0.0000061521910427331905,0.000024137006557445626,8.930059479580344e-8,0.9376428756219974,6.396869912072603e-7,3.804303790703433e-8],[1.689525624894227e-7,2.1079006722534054e-7,1.9600147570593757e-7,1.6080771521491096e-7,3.160275999460527e-8,1.604252683450752e-9,1.1216149115724424e-7,5.5390451660674155e-9,2.7755487378195656e-7,8.109435595451112e-8,1.4398520073036532e-7,2.7361940286365232e-9,2.3548209810571927e-7,0.000006594866989036323,0.00009284494985012494,0.00000465435828229431,0.00001395124339190168,7.51258962802166e-7,5.0832858273210395e-8,0.000024477437432477474,4.170617904499592e-7,0.00000900023553348173,0.9109935932920273,0.00006433962059234397,3.5213076257087493e-7,0.000009775509312512954,0.00003310017612847653,9.238028854286163e-8,5.749813328874539e-7,5.757520864258194e-9,0.00003939047111321658,1.267606921830652e-7,0.00002980629524836837,0.000014428490767447981,3.398667961451661e-7,0.000002729878240848735,0.00014465852422614175,7.610839307990886e-8],[9.665275766972714e-7,0.000003815400434103906,3.876429280771437e-7,0.0000011398213047440512,0.0000028638083614873393,3.994330038798654e-8,1.4293673448036326e-7,3.1100871618565997e-8,4.043422198281091e-7,3.302874575261158e-7,7.123411213217985e-7,2.5278320203099458e-8,0.000011179312107781469,0.0000010140522096171079,0.000012607248958125789,0.000019137477702614522,5.6944497596039266e-9,1.233184881443388e-7,0.0000055796472730966335,4.131299290495608e-7,1.3611742721962109e-8,0.0006471811109504671,0.9006820024381452,0.00025952587170483785,4.91554993710406e-7,0.000001401445952720027,0.00001705348191379357,0.000039069174845986805,4.898738053405319e-7,2.1691317698229755e-7,0.00007210753329039786,0.000021605518224433673,6.753447850612333e-7,0.00000655053146051778,0.00000874953127859564,0.00015421190972960034,0.000022850451288449017,0.000006429300918178841],[0.0000014127112497518318,0.0000016662532187452799,0.0000021151208833508685,0.000006788821336649998,0.0000011354550773158249,1.7004740979574607e-8,2.488658761203967e-7,1.0027253336405029e-7,0.000008258655214647456,9.849399241249266e-7,7.518756267030208e-7,1.9619940416833155e-7,3.126905511509533e-7,0.00008857725523412783,0.0001366366366847377,0.000005369392920177887,0.00003835607261585579,0.000002275023539024701,3.063363687285644e-7,0.00000903275907626728,1.2775334422698879e-7,0.000008192225900063516,0.9179034966113351,0.00004269426381957795,9.84506414600565e-7,0.00004507875612623829,0.00004888902737068757,5.336506430618042e-7,0.0000020669933204989653,2.4144489381188002e-8,0.000053221524320545996,0.000002096761520170604,0.00003680738801194983,0.00010400136395283729,7.681250175490548e-7,0.00003838104921750667,0.00006798694995907895,0.0000334103070645461],[0.000019776241858819994,0.00007109963170700007,0.000006987527217067234,0.00003340057021989721,0.0000643290268920634,0.000001435721858293618,0.000012195786636371731,0.000002468776562477176,0.00005499128639366499,0.00003568234352339716,0.000011506226140808626,0.0000886109984574018,0.0002808726047491301,0.00003371777958359523,0.0001414100772468364,0.000007416073286613188,0.00000502152272399336,0.00008355744480230393,0.8758227285527069,0.00009140322220398871,0.000014303712746089445,0.00006635167675788053,0.00002422262891623543,0.00007178005249126992,0.00031600470854772705,0.000034437337748397544,0.000006594638190014309,0.00007449032816104107,0.00021613277252855898,0.000012419064168852277,0.000035128683918463915,0.00007932679991210757,0.00010254285949328528,0.000007589726551243842,0.00002722921969725193,0.00005114050951381228,0.000006750219416433398,0.000010299395526243218],[0.000020521550090381218,0.00003685115362627775,0.000015063192664578972,0.000025609507114268944,0.000023300082444871087,6.485807728668346e-7,5.639223427342531e-7,2.416141274933867e-7,0.000023579686455028683,0.000012678342332187598,0.00006888250645184001,0.8666808158460088,0.0010013328864898045,0.00010446030802129265,0.0000015651291766737173,0.0003048640359451906,0.00000781853003193201,0.000007797851274897179,0.00005828743028847977,0.00001693576865773736,0.00009421485966568514,0.00008962750588082513,0.0000031049673775233156,6.761889177963481e-7,0.0000828971269372973,0.00006197192958390266,0.000042314679832907764,0.00011957877471771671,0.000007486937905824849,3.117942590636574e-7,0.000011640443180433438,0.0000010194323914588172,0.0000029242070140435436,0.0000016637642182395808,0.00019801661135157694,0.000011447548400903765,0.0000030429585125939706,0.0001511691091327896],[8.031944604218932e-8,3.312695870712473e-7,0.000005186395548052573,0.000001001189465223039,0.0000010269547364316937,6.890979568161065e-9,1.9213035525252292e-7,3.1012616181030447e-7,4.608571256036399e-7,0.000010395928471056784,4.4317523591415274e-7,4.426546938974882e-8,0.000620936331228788,0.00004246395901620258,0.000002760804902489914,0.00002195903069146928,1.2398067311164112e-7,0.000032351858515524095,8.506267063335855e-7,1.7729753903854339e-7,0.000006527041049324505,4.1916373043214116e-7,0.00007976194418661851,0.000001243958783495516,0.00003527484431471795,0.000012928396192512119,0.000029149171422230816,2.4433866683003057e-7,0.00009966269407171802,6.804581277354311e-7,4.6640744325172e-7,0.000006579052164430009,0.00039937448381536047,0.0000018742971372358221,0.000014320079356131275,0.000021973338846209688,0.8869265590360722,7.061542172380696e-8],[1.751121491911643e-7,2.4351358728191805e-8,2.9955556905069686e-7,2.39560560099487e-7,4.2234267756730855e-7,8.85896042341655e-11,5.847891554824016e-9,6.279460397891662e-8,2.602567993695959e-8,6.951332945456774e-7,1.358776049703918e-7,1.8195457803257975e-9,4.5542576160484146e-8,0.000010011472687833287,6.589239778109234e-8,0.000001858215222765131,0.000002048554775799167,0.000021995587252675838,5.608008921420775e-9,1.4068946677123956e-7,3.6183737903921814e-7,0.0000010389897158870097,0.00005186646865272154,0.00010597525644285446,8.957362016652475e-7,0.0000598224540714111,0.00009285279295492537,0.0000034896760419283257,0.000007038317399602148,3.6301863995442324e-7,0.000002649133131033734,2.1601227391268954e-7,0.000008743484661957754,0.0000018214069832816116,0.000005215530610616381,0.000007264484651490995,0.9379043638212483,5.3511572276176415e-9],[4.273816232079829e-8,1.9345630211804477e-9,1.5429857977760648e-8,3.948861910166224e-8,3.3952967180256935e-8,7.428968224916192e-12,6.551144686143658e-9,1.0670070200903182e-8,1.7984882704911674e-9,3.264655586906096e-7,1.496874459593677e-8,5.483080181584998e-11,1.580616502795503e-8,3.9636279569325513e-7,7.309663533325918e-8,3.3625870152132434e-7,4.1475276225622116e-8,0.00001663901511370947,1.5816380976436291e-9,4.607026001188088e-9,7.236834551103506e-9,5.158876211145821e-7,0.000022516451364245407,0.0000049713263319811725,2.5221310732626e-7,0.000007886332750974043,0.000013388571121122488,3.52589680285169e-7,0.0000018168997866160312,4.7382321355641024e-8,0.0000014184528287011657,2.1844310588639386e-8,0.00002006858745413061,0.0000013672451590283475,0.000001948904811155431,0.000018211535276313297,0.9537681959007395,1.0048022781440585e-9],[0.000011002729030813268,0.0000027518132477102307,0.000013099293464446957,0.00000243439115689501,0.00002292500098844404,0.000002312511447693555,0.000004162315494467829,0.00000245997697929149,0.000009856615611435597,0.0000028098814082898876,0.000012798630837425103,0.00016714759762049284,0.00011048667265037153,0.000059179356365960074,0.0000013093199004794728,0.000012361167539013174,3.5750196969285274e-7,0.000009365633236062427,0.00003342993655885317,4.940814198682825e-7,0.0001998149495373774,0.00004625972693847218,0.0000036429859951745657,0.000010891726207813051,0.0002328176804832533,0.0000017300292695966175,0.0000029571385154918336,0.00009547213408819862,0.00003584885132038647,0.0000012941127372585292,0.0001395034483097839,0.00004477764139028077,0.0000028745081387459458,8.619470549717221e-7,0.888922273501296,0.00001875326393904079,0.0001719947522635604,0.00035713604398597],[0.000013917482375186806,0.000016204658658708676,0.00001461550522438884,0.0000305526379756837,0.00003499341345508193,0.0000036783177196499568,0.000006892177372240479,0.000025605664721660873,0.000009335813872366053,0.00005405704013501289,0.00003871638468376946,0.00019313169819238466,0.00008451530043467453,0.00015041747805239337,0.00003139295574827921,0.00008155790721820235,0.000002287934516249971,0.0000553319424427027,0.00011072224855899809,0.000005263590009703814,0.0002420234310200256,0.00012103868779223299,0.000022065262417708494,0.000009266024865528553,0.00025671377949542897,0.000007345886217384047,0.000003190239801377295,0.00016016365380607425,0.000039270389111173006,0.0000023126670872484564,0.000028962342068851683,0.00009524792313147404,0.0000208312729025278,0.0000229096432241267,0.8799778110154994,0.00011891720494621079,0.00015710362086315322,0.00022417950081041448],[0.000004086353684224329,0.00004307361277001879,0.000020098335876236257,0.00002028063467645465,0.000010184782640474627,1.2195867884451057e-7,2.964616488059333e-7,0.0000012072671486082708,0.000012346274988036589,0.00005071397756175243,0.00001876296347070108,0.00023596900681458765,0.00042254631178225327,0.000013371874849085646,0.0000051673004091457834,0.8716322450898798,0.000004431442539848656,0.0002997424309927909,0.00000788233136260034,0.00044773798235874554,0.00005221703342211452,0.000005248104885225049,0.000011576088645917262,0.0001305091022831846,0.0000029087342332942645,0.00030264966341314196,0.00005369834459227484,0.000002731618201239305,0.000021016766640133023,0.000003549547450630508,0.000016059694243763473,0.000005409439558553355,0.000018223483273435977,0.0000015189447560582478,0.0000018459774806094735,0.00001291294911855655,0.000004676642830106408,0.000010130144183678808],[0.00002361729755463756,0.000008954624263567625,0.000006289610442321116,0.000010856383582792886,0.000041642269680619353,0.0000011113343214338246,0.000006724719011702831,0.00000597990857054541,0.000005436854017182803,0.00001919100906024667,0.000012913851246073303,0.00006950620236829875,0.000019083441775097668,0.000021543282786353162,0.000004399681159559786,0.907706753717262,0.0000430217077401393,0.00030278048156903156,4.3127599048662386e-7,0.00007511026570663328,0.000014069651097385087,0.0000067327870955436076,0.000003741589435989209,0.000055673201558668546,0.000010677798005460297,0.00001778885642601816,0.0006201210444192172,0.000001658687925399421,0.0001838634183998546,0.00004346863853520682,0.0000878274072227776,0.000004825838476820499,0.000014959905113701076,0.00011219863851306454,0.0001487116556131696,0.00009995197594765816,0.0000013732435003856624,0.000025312329094565144],[0.000005697551488301973,0.000009930041827787917,0.000026796005997745038,0.0000028345776389295614,0.0000010366576860625748,1.6544934995553552e-7,2.0078864356384536e-7,3.0087762316741176e-7,0.000014592305482000373,0.000007651666013929559,0.00001115373432854599,0.00008279113192860048,0.000025996681082163252,0.0002830640424250483,0.000002061934571248289,0.00035468017843574937,0.00020793893414021168,0.8827935022868375,0.000015175905055061348,0.00039928814842243794,0.00014025822373924326,0.0000020556544971957308,0.00001011306904251856,0.000015797085289096753,0.00002721560864062514,0.00014501766942618248,0.00007359669276236095,0.0000011503023508987808,0.000038273787060850336,3.9581871770853264e-8,0.000012532678091824095,9.91318308096069e-7,0.000001367180698519338,0.0000018404259708958317,0.0000026677484268527966,5.692938613868931e-7,0.00000831646616673248,8.376682619491468e-7],[0.00000348002437759192,2.424892898878604e-7,0.0000020719651906623026,4.93110809873459e-7,4.5344023636191693e-7,1.0727955462455831e-8,6.033957317927549e-8,0.0000018212508747684466,0.0000013926684102786097,8.335604199566424e-7,0.0000018148304595026307,2.1738436235616576e-7,2.5967437125237545e-7,0.000001042171715304344,2.2911653069621433e-7,0.00003469516045373306,0.00002200338162689458,0.9468738466156664,0.0000010537616157073417,0.00001114597463505925,0.0000031105308558728335,7.274887778771721e-7,0.0000014124514104578227,0.000020668316116279433,0.000002561606437832374,0.000001684105133134209,0.00007876840505472034,5.33597139801056e-7,0.000017574278884420882,0.0000014181185963259283,0.0000018088892975536343,9.979968861880779e-7,9.551829907786303e-7,2.155875369419534e-7,0.0000020124134990944145,0.000011524735948481801,0.000014023697930372437,3.311435283777373e-7],[0.000008574076045449519,0.0000010377577879221408,0.000010202428709088732,0.000003511780637469264,0.000004239098798962315,9.582495806977438e-8,6.643383924865336e-7,0.0000036915006602213564,0.000008952660738797328,0.0000036421144077420806,0.000022994443694201443,0.000003711553355424683,4.556853004932168e-7,0.000011090924138948506,8.080246203851411e-7,0.0002068315793827122,0.00006117484524857859,0.8966326449566813,7.430184689655092e-7,0.00031686248973270616,0.000015237373213836471,0.0000018289520601694353,0.000005366675726018217,0.000006141824454070719,0.0000157694977558052,0.000001081137424593487,0.0004389820301188577,1.782568830482568e-7,0.00003455119933839032,0.00006659719006274777,0.00001789530127970975,0.000002338655208511854,0.000008367619122081562,0.00006640349835464613,0.0000019797601263541983,0.000005961316503594217,0.0000287861111342106,0.000012744282288378865],[1.3271062763152279e-8,8.087035880625565e-8,1.8570256951910937e-9,9.358174891241888e-7,2.2747495608181482e-8,1.403998336512143e-10,7.729325552410636e-10,1.44784126487013e-9,1.0541610607491263e-8,1.1675303301920924e-7,2.6086823049682016e-8,7.255115865399127e-11,1.4490835401496467e-9,1.1890656338484957e-8,0.0000011144082030038545,4.925477189926292e-8,0.0000023709898458317226,5.349254320512979e-9,0.0000167733736038932,0.9294521712698178,1.8469790234915795e-8,0.000010844053301752042,0.000027132857828373975,0.000003420584408300329,0.000007510211239637055,0.00002015015303244067,1.8431934249777915e-7,3.5227305558040273e-7,3.208458648443159e-8,1.9492370970781432e-8,1.2340664714450203e-7,1.268775495058103e-7,0.00022672295053718914,0.00002917539169536634,2.494788128552817e-9,1.608342673259993e-7,4.172106848699932e-8,9.025693070637771e-7],[6.760011866847578e-7,0.0000054124954135532045,9.048900336709203e-7,0.000004678299439035171,0.0000045026550115286964,4.64850041731247e-8,6.428068111511595e-7,7.348379638522549e-7,6.746695117932123e-7,0.000004393373909536917,0.0000022543572618891972,4.307675736123081e-7,0.0000012878482767734177,0.00000358338512682102,0.000014326564360371373,0.000006013821469717194,0.0000022726670959916033,0.00011386024307472594,0.000002369726491764367,0.9314862475518146,0.00000554993333647884,0.000041317283486384796,0.000002430494354099359,0.000034912754489697214,0.00001729283715141654,0.0000011585861317309,0.00028224461969605984,3.922136837614571e-7,0.000006603081689667273,0.000008900192374726286,0.000010750795051288987,6.685993017882794e-7,0.000006167164033962842,0.00010458094506961919,5.107671857221172e-7,7.234719711017816e-7,1.1576295069846728e-8,0.000010405450613162328],[0.0000028825266649160954,0.00001270253590874899,0.0000031262172300206865,0.00000949141430593113,0.00003344217470931823,7.689656434390511e-7,0.000003320614229443413,0.0000017290674870649782,0.000004798941778348685,0.0000061114492491393165,0.000013529728055232967,0.000001645857286412711,0.000010836817845482165,0.000011687819836571186,0.00006289807670728079,0.00006254386124082627,0.00001313701025603248,0.00014427078353258663,0.0000039940994551919595,0.9120719083156467,0.000039426986771400226,0.00005717817023792156,0.00002426301025817702,0.000028783728336525316,0.00010399797134249693,0.00003368553665782531,0.00030582445256798174,9.172979499417004e-7,0.000040277110144114526,0.00004850768118099227,0.00003273335104221635,0.000008373728146073812,0.00003158560506637685,0.00019791285393041074,0.000004440254374160357,0.0000024355743201329846,3.152349463116712e-7,0.000017767267288388398],[0.000005825807807517043,0.000016380120007194543,0.000022969057619562692,0.00006442415050493017,0.000004226634617552584,1.5308588527040318e-7,0.0000011887675122085142,6.118926306512354e-7,0.0000037720920243562724,0.000008051884145908336,0.000007516809947257247,0.0000792778745841179,0.000019080150126877106,0.00006965344667664214,0.000004700531726436329,0.0006062200903754893,0.000012340025122401745,0.0006194779571338155,0.00001552532535365236,0.8912260081934767,0.000011393976033589206,0.0001573168333790191,0.000009085552077588493,0.000008194969781705232,0.0000033065271149091335,0.0004994870617178751,0.00005029788837275988,2.7035472820626267e-7,0.00023188687463902654,6.298636796795906e-7,0.000008374454265099562,0.000003181749872360091,0.00001738723877728866,0.00000314719712526298,5.403587772904481e-7,6.499249428198718e-7,0.0000018670549660020492,0.000002637143363927494],[0.000007526133365991488,0.000003990723182031043,0.0000035024849155064282,0.0000019492902225128543,0.000005582601196398315,4.8293653005963735e-8,0.0000026169828442302525,0.0000017623572547860855,0.0000015428589584766164,0.000010993692728448544,0.00006817393282271714,0.000006890409023531371,0.000005897475293770499,0.000010440147150026542,0.000002146861152939394,0.0004592685642555643,0.00015184676940192278,0.0006780484156419696,0.0000010015888377526238,0.0004466173797981148,0.000007842911356010673,0.000004309153512011379,0.00000816700414157206,0.000011168959473169754,0.00002615833588535374,0.0000012938814484819476,0.8658552072014577,0.000001435266459865054,0.00011554759618588862,0.00008494637508807348,0.00000192653992193815,0.0000025470819732328806,0.000002825469810555093,0.000019085416728138367,0.0000015104857334401867,0.000017709465191223422,0.0000011014791445524619,0.0000012385920032370398],[0.00001553820544633341,5.128434836922769e-8,3.7569096091391375e-7,8.148766907286851e-7,2.7368302647947085e-7,3.876300641433917e-10,3.817661305113711e-8,8.632244367959673e-10,2.8170029786063715e-7,7.470509030127632e-7,0.0000010138800449554254,2.573412136892455e-8,9.176687203242618e-7,3.064073686375442e-7,8.708284480041973e-8,3.7267860632252653e-7,0.00010292723656968365,0.0000013897705403155408,5.9544628635298105e-8,9.876314678489718e-7,3.7020131093530623e-7,0.0000037860911331578844,0.00011912339948518174,0.00013018036772696916,0.0000059354616165378395,0.000015474849344520176,0.9076856345355877,1.2722822528209414e-8,0.000005452584059685837,8.099158415184815e-9,0.00011250360097531341,1.657343960832764e-7,0.00001343780312725156,2.973545636042982e-7,1.9740047489563367e-7,0.00007924507417680327,0.000005678968967641377,9.67972850724076e-8],[0.000008705793018222306,0.0000032104628530367954,0.000008862864600912626,0.000013428408524259203,0.000017885231752992037,8.239788282945212e-7,0.000006221372987414298,0.00003344031543514161,0.0000018356131452445246,0.000005017516399719489,0.000006086276689202246,0.000004053971632462211,4.27968753975242e-7,0.00013210664966813325,0.00011654153836614452,0.0001890256764976057,0.00011523661824450448,0.00008881991730007335,0.0000148732171590023,0.000007954571110187996,0.000003903661460989255,0.00009379293596649157,0.000028487309186753216,0.00004457015736763145,0.000022459256940624243,5.925510609132374e-7,0.00019632255983343538,0.0000016912860880003438,0.8977507936875122,0.0008008000487518534,0.000015181662944208941,0.000024131089920570898,4.998568864291602e-7,0.00001975485606184565,0.0000958991320890051,0.0000019519124159639135,0.00006523586473135237,8.752507005751282e-7],[0.000014693030227485601,0.000005142972609460287,0.00000528672911696899,0.000020030955601916522,0.000009199019910014695,2.1834759986065527e-7,0.000018488618487999534,0.000020517608862756183,8.012732178606158e-7,0.0000138875583044849,9.306345836923471e-7,0.00000550926044262493,7.349763228138161e-7,0.000036624814569653794,0.00026466571310297557,0.00010113503539596353,0.00005425574823722276,0.00011274381802255014,0.00018051632882308785,0.000007533500685535549,0.00000334931269950969,0.0000892379467526461,0.000015601914705106186,0.000017810998148041234,0.000010564291068413291,6.419475531826342e-7,0.000059220313531152245,5.676142681241969e-7,0.8995061092721691,0.0007495539271428892,0.000030157874494324918,0.0000070168490698879196,6.679464149194695e-7,0.000005258233534465148,0.0003062477013611489,1.7464525118997697e-7,0.00006438654897805405,4.745475583523584e-7],[0.000007526994988372049,0.000009365854921823843,0.0001249248452642419,0.000035780535004985964,0.0000241870998661432,4.502910769948925e-7,0.000010278526579201266,0.00003190998191288182,0.000009867343973192781,0.000033640164821532334,0.000029545358184593448,0.000006265621719315318,0.00017964233583362763,5.196253629976796e-7,0.000010232558507605445,0.000015948677171935344,0.0000053290864263803585,0.0000742220134955897,0.000025121569575902504,0.0002065969505052838,0.00005363859183263448,0.000015776280374439658,0.0000039665946424079125,0.00001191425962156888,0.0002687103135905513,0.000005031578380687245,0.0000883221227277684,0.0002963271966182288,0.00004842176312093347,0.9033096605939139,0.0000026007851467773576,0.00003478318736484879,0.00026867460861259874,0.00005416048504281496,0.000006973561616644284,0.00004699380848049197,0.00007640869735055402,0.00011479655194588573],[0.000012266251757438551,0.000015385397662581652,0.00002714744555002038,0.000004769589399494622,0.000008172223925884243,0.000004549888835790262,0.000013884729892608636,0.000016615730589273015,0.000009346828558298086,0.000011684692307001964,0.000008314505385379722,0.00001134388636677501,0.0000017718253074455456,0.000022739608862462554,0.00005329607306367032,0.000031220958067638694,0.0001033127973858201,0.000025270686261996022,0.000008588108306985635,0.00003879369211097058,0.000010396809921110825,0.000016930192884932265,0.0000037224679095916363,0.000016780713371421043,0.00005032240298706332,0.000012169553781596856,0.00018066174613289859,0.00044246594487083225,0.00044278093036695376,0.9052681126436961,0.00010045621256139405,0.00002186197449496328,0.000036301247463926104,0.0005497141088571485,0.00000594204627115172,0.000009980714815630006,0.000010880388984577253,0.00037384854044715093],[0.000002015258283361297,0.000003924574206743143,0.0000031470823241029566,0.000004063007543277489,0.000004989547070889396,1.8212261855674635e-7,0.0000012123897335789449,0.000001506849571242446,0.0000017319024229320647,0.000009468679225885961,0.000004302181280074384,4.170659341623185e-7,2.661490221578263e-7,0.000002245616214434997,0.0000025084938410664936,0.0000028788108372712755,0.0000044776240757050434,0.0000017427843786771873,1.651826592936516e-7,0.00003305333330363859,0.0000014924424267141395,0.000009808952123867605,0.000003422584378818329,0.00001198172364043368,0.0000028250846376259247,0.000016520424525884245,0.0000424409661335617,0.000044283366246611485,0.000013392654708390897,0.9370904601270202,0.00009123801199304865,0.0000060814632094569675,0.000010451089653024649,0.00014744156188382042,8.04347225907013e-8,6.967703096401335e-7,0.000006410913014637912,0.00006922751310311983],[0.000006440093208730216,0.0000028637302863341784,0.0000022109125326323317,0.0000025089597628422133,0.000003750281023369817,2.491431586584953e-8,0.000019508369163674775,0.0000023892610603380287,5.219059172829482e-7,8.03496802986887e-7,0.0000018126210208660052,5.586880365857225e-7,3.6723663015822136e-9,0.0000020238058136022068,0.000046494901904405535,0.0000021748699188443106,8.450876002090389e-7,8.50581374808089e-7,0.000006426661335666724,0.000001801108304774155,0.0000013136127043323507,0.000029931567384165565,4.853755769524317e-7,0.000011737198233838722,0.000009023973649159562,3.6001339929182366e-7,7.789798759472234e-7,0.0000818574661721874,0.0005181999515116686,0.8953440360302513,0.00003252299612188155,0.000014821933235895315,0.000004322892947406793,0.0000028939889999702514,0.0000055669355013988246,3.5381613944446485e-8,0.0000056621629081020475,0.000031166320313305285],[9.19217123504496e-7,0.000002129366263228241,9.20126144910862e-7,0.000003822091562737312,4.4815149109429775e-7,4.605195596451766e-7,0.000008891402435874533,8.843294621291586e-7,0.0000010402271433403341,9.174434134605398e-7,0.000011258396024543567,7.360331448190136e-7,0.000001230660919678196,0.00008128593686649525,0.9108505244533065,0.000006598846523227224,0.00005931940345211309,0.00001195897132893771,0.00006482436868065418,4.869422686230028e-7,4.049976234327189e-7,0.00016610880335271938,0.00014070019845795263,0.000021063214253501308,0.000010617744949131185,0.0000015905358950082547,5.054091531207674e-7,0.0000017216709279157276,0.00011361988818842703,0.0000032945909287133626,0.000018805045011053787,0.000002465224313072385,0.000020084817178882545,0.000002465773685918186,0.000011395926138217152,7.566895825548831e-7,0.00003208694994758223,0.000004235798376672602],[0.0000021209384475126787,0.000005058663725348875,0.0000011738139168082763,0.0000012812164323294046,0.000006398687338821692,0.0000014496406708282394,0.000001524604817394564,0.0000028960372751001554,0.0000017426148015872901,3.586504450003813e-7,0.0000064999716412380836,0.0000021478772762616556,0.000008897915257537806,0.00004482754815947017,0.928439408801695,0.000008050205404053716,0.000009679458009041753,0.000006069779088932213,0.00006522425785090709,0.000004600095368490881,1.2874611216506757e-7,0.00008852393777408735,0.00006938270865351691,0.00005799916018811811,0.00014639954280481202,0.000002010802583316026,0.0000028988502968650574,0.0000055835285600213014,0.0000025872797004688546,0.000008470019161319516,0.000029404410619971353,0.000006876594171298869,0.00005900818636053652,0.000008848954997023907,0.0000023120755028442375,0.000009825242816374673,0.0000012164447749686005,5.604683029737482e-7],[0.0000015517388276066577,0.0000011329914732928613,2.1943254753050883e-7,0.0000012627112726606353,7.974899057704851e-7,3.617197739099495e-7,0.0000052778732218938,3.0468613013604694e-7,0.00000109349204314545,1.0871900775947573e-7,0.000006252204215129034,1.5829400118292936e-8,5.93324507133279e-8,0.000008820504728779652,0.9204019298428301,0.000007308986431359081,0.000003485824090392638,0.000004291223866809704,0.00003361047824516936,0.0000015181415139783417,1.6509739124711398e-7,0.00001766397923401647,0.0001772284308293576,0.000018162927255796017,0.000005388173270750043,2.667625043463427e-7,6.399792633898442e-7,3.5659136081375234e-7,0.00009440979516509003,0.000006903129518067739,0.00001863150342331949,0.000007505534658458863,0.00002781398755857988,0.0000017955647891150454,0.0000068982784692452645,4.5898124571245303e-7,9.088296852878812e-7,3.93922725021087e-7],[0.000044210685927338344,7.228559587941429e-8,7.744097851991575e-7,4.38202186517993e-7,3.420296948243524e-7,1.4892884512516779e-8,8.544460414628991e-7,1.585425380286599e-8,0.0000024635579164816206,0.0000016454589236210227,4.463133506712756e-7,8.805152271057507e-8,1.325423712817468e-8,0.000002386307023630251,0.00000777512298643465,0.000001863466808608097,0.000008556545038203027,0.0000014134307748865616,1.0800845994876221e-7,0.0000018599099883336941,9.859037427020594e-7,0.00014027217723906721,0.00018567669814250625,0.0001851760115369644,6.737073548711193e-7,0.00005077620339035948,0.000027977755217623335,0.0000048740618053951145,1.2654983731846302e-7,0.000002094228665497621,0.9115073281428755,0.000006979678294060569,0.000022373074091940524,0.000010468745052346494,0.000013303625945813148,0.0000042887368146021846,0.000004651106197812177,0.0000035241556721888123],[0.00017096269203598858,0.0000034322527113418746,0.000051000346162930324,0.000015513638227018576,0.00002898543919967823,0.000006279459187858069,0.00001432653065243096,3.4310117928066515e-7,0.00002479380440768758,0.0000167321530598078,0.00001331638677449793,0.00007776917450003331,0.0003236127548363189,0.00004974685623154486,0.0000854624563564029,0.000033862003800489365,0.00002568596111250489,0.00009897339022587901,0.00007881415581083893,0.000010920790382274216,0.000035304490669993134,0.00022139308474809855,0.000017782211544815018,0.00012285687276752106,0.000007113721401113386,0.00016854101260231944,0.00018488455291888024,0.00005622126191053078,0.00009960149619174946,0.00006256869271738195,0.9005822774171363,0.00041249732204429347,0.00007335917740604028,0.00029486349480203075,0.00006574100054471162,0.00003715588380060153,0.000020229199606389088,0.000010505541005283041],[0.000022493265470117243,0.0000025072138078909737,0.00001308444806593047,0.000028971894056180033,0.000009932602018499067,6.290435229847015e-7,0.000002117806962918035,3.55304926203997e-7,0.000003828027838969656,0.0000020105535578881384,0.000035738045455710555,7.874914432645207e-7,0.000211186588077571,0.0000858462000736407,0.000010212822513333466,0.000019893282092265075,4.2903051494595966e-7,0.000002269087959975011,0.00003503734820843374,0.00008407459880394006,0.000010920271945035198,0.000016459051205368195,0.00007380296875637046,0.000062094746757122,0.000009908866777689993,0.000007313425713747714,7.313758097877791e-7,0.00020209396007516206,0.000025152785968699902,0.000002492114407168011,0.0001456887422479245,0.8768795017803096,0.00012143628355011272,0.000011096618791127422,0.00006652621692020513,0.00019438587503221446,0.000038584980514918216,0.00003094502713243547],[0.000005036128260909309,5.712337172387772e-7,0.0000015021913027795238,0.000003992241095819155,9.110011180840048e-7,4.5388236853316236e-8,1.1947764087177316e-7,6.462858642678074e-8,0.0000011500483317838933,3.845301699559072e-7,0.000011073248815579364,5.6760891488380306e-9,3.186378811032344e-8,9.312582941721638e-7,0.000009203482227445055,0.0000015289364414991824,0.00004544976220066531,0.00006842951845365578,0.000012089655039797154,0.00035199179931971666,5.035629233682557e-7,4.967137284811191e-7,0.00011402399621614929,0.00002506695264585195,0.0000037468784266422695,0.0002326375593218389,0.000014192263813773997,0.00004694701770612429,0.00000510760705955218,0.000010700425336534278,0.00009078618068872884,0.00030399826604114266,0.9014051808445235,0.00015473463070407104,2.2661089442567556e-7,0.00009179144275588498,0.00006138990603792958,0.00001575785400819664],[0.000008634319641109544,0.000003847070481420498,0.000009579383086171427,0.00003095730480281434,0.000035430709455481495,1.76951118426406e-7,0.0000019845107821086122,0.000007210771968007282,0.00001933140230908208,0.000016052585762770155,0.00001703756799391103,0.0000032573008966200103,0.00059787224709015,0.000004909094891854984,0.00001962275962057002,0.000008814095821474086,0.0000012391640519780694,0.000008838685490753708,0.00001755946680471623,0.00004897059555982414,0.000007417289614556673,0.000004710419117381654,0.00001499951734435062,0.00003430304700133345,0.00001270325377862935,0.0000527039150833994,0.0000812000567317985,0.00002888957637061363,0.000008985494944004133,0.00019655871400163914,0.000005708945544031368,0.00012131718790595131,0.8841947647992501,0.00002465698430971346,0.0000027597723207678495,0.00015591096422563284,0.0006268927765288576,0.00001768983180583132],[0.000003648119587374771,0.000008502812532316674,1.6846736712512834e-7,0.0000011952506589965349,0.0000017067827080191712,9.137033000435077e-8,3.3181970438516536e-7,0.000001917360027919105,0.0000032642354053297826,0.000011505769936013204,2.0278176534856593e-7,5.068619658903727e-7,3.6694760633663587e-7,0.0000027472337187112047,0.00000694946533633966,0.0000024539175013004093,0.00001563749863909403,0.0000036258797616018432,4.207051037060482e-7,0.00005905524237942468,9.156374451996935e-7,7.100918454872587e-7,0.00009962378587739764,0.00001209000158500374,0.00005236414808790271,0.00001489133013548815,0.000009914796570034835,0.00004207146681271351,0.000001387375169847152,0.0003537620262122393,0.00004197731468567665,2.764707331814178e-7,0.00008467512734316412,0.8846374871272314,3.508955571811005e-8,0.000033898504018731095,0.0000012552797758088717,0.00014597648803714572],[0.0000011761127284460711,0.0000014284577474654714,1.4062300669360996e-8,2.9028878060923587e-7,1.0294516962084179e-7,1.7681828538588454e-8,3.162730508662502e-8,1.1760723826768635e-7,7.193082382513522e-7,9.052420394237447e-7,4.9383762984318444e-8,1.8164052703628376e-8,3.779947695429252e-9,0.00000397971471200398,0.000007139987303024049,6.476204929138364e-9,0.000006335311644208592,1.740872142060863e-7,5.6517496667689756e-8,3.654037801015356e-7,3.0813660177197155e-9,0.0000011231036426151788,0.00004408443480903067,0.000001809761344733526,0.000012880543346994923,0.0000022097381455051463,4.4764950046805897e-7,0.000036583352831519635,7.328671372827785e-8,0.000002541274388388213,0.000023118286053239477,3.828444102642332e-7,0.000019139213245917785,0.9279699380635191,1.7480881275198614e-8,0.000014664242363203451,3.0909834798077285e-7,0.00015989760526345976]]],"Weights":[[[0.1962528103489801,0.8634503752757452,0.07400365555004,-0.6653156690862168,-0.19749456631093024,0.4035931314771752,-1.500844275444047,-0.5270476505141197,-0.4515780192695796,-0.2691505582839345,-0.1587931123288427,0.7026009317875845,-0.07638407258501018,-0.23567683752114316,-0.059166901107659264,-0.352032940256494,-0.6978671009570774,-0.4187558948152616,0.49037392071410935,-0.5248542003369915,-0.6610724373780247,-1.549138130627269,0.1730552045551977,0.7950008650608683,-0.9951659697921995,-0.5331552960793124,0.5420470200427999,-1.0200842067089926,0.818829785820668,0.740933451077169,0.22554179531221655,-0.6339405915902838,-0.6067696012914467,0.08651806091598173,0.7030554014741152,-0.7135351066303747,0.05976798774762564,-1.0385182934578956,0.4014061134021728,-1.4622605083440332,-0.6082436792634981,-0.6716642676608542,0.7964272901487162,-0.37813195895849183,0.07401844045100515,0.22702786946662293,-1.068291461437816,-0.450395611899291,0.7237244101835564,-0.08781510984531832],[0.686124869822577,-0.4415106098928282,1.1391585953215402,-1.0269247520232558,1.1633534810610526,-3.847113181166933,-0.07336730129090556,0.5414688901535442,-0.2568313446785134,-1.352399221517216,2.270139035656839,1.0061255728090872,0.5715037895223621,0.5921825182156323,-1.2504362125574273,-0.43937170496053757,0.9925911514249237,0.2558922035914962,0.7232125720558339,0.4627647785580547,-1.6602649747925944,-1.9340728194039272,1.1538279251934047,1.3971739861119976,-0.24076622308307324,0.605481742175549,2.1581510333404323,-0.9548533825709201,0.19117631042950572,0.3699058532703986,-2.276988518406537,-2.348499445363245,-0.5292368809877828,1.053523149129924,0.8689034576185805,-0.581383326223903,0.4416653675081472,1.7480954649943825,-2.555393700921571,0.31050837627085587,-1.137907542896445,-0.36403135762772937,0.036887198408991774,0.22938579000435136,1.05971422226,-2.6475200447477243,1.5763564476182452,0.42763419602755437,-3.4979054852547864,-3.059866441095876],[0.02156518418857784,0.2274194270393401,0.5230602351116426,0.36337567879771315,0.4418401906660248,0.6572269773576089,-1.3296701759713263,0.4936529104073871,-1.2560704942911454,0.12074084036310273,0.830155374847289,-0.820366696432618,-2.320803971030406,-0.5963283856063061,-3.0107701407426966,0.7689899810138191,0.5349701246098827,-0.2152342164781665,0.6291806117566983,0.7118302838476238,0.09757153970535988,1.8897543664359127,-0.7546901814691147,0.33476467832241147,0.6715012780790477,0.3016280439106702,-0.9714318530059289,-0.4295400042305834,-2.0185431916995715,0.42773455634271523,0.5502166603952475,-1.9789981521425009,0.23003646513403225,0.933608110115848,0.30438969629448354,-1.1496664655983162,0.5780330773452358,-0.6291767622431039,-0.4935120412624922,1.5905423647635013,-2.1441019968928754,1.0040898932188527,-2.4436027490912524,-1.7427442290924071,-0.9568517358531258,-1.527948585642348,0.7483929194170326,0.8709444802591234,0.2072133131258999,0.20896648928673797],[-0.2632850998383775,0.3593272273993599,-0.545690440378886,-0.44986217500127046,1.5210831151970587,0.18557103988524493,0.7266150660310371,-0.1766417738805692,-0.3065227688761012,-1.5617080262460012,0.4822211564522727,-0.22335836235377876,-0.4994948690277847,0.15953247863700315,-1.5134399545605763,-0.765352046929281,-0.3547872541388534,-0.30629098864645177,-2.915973066179415,0.15118161034261296,-0.2803066142493433,1.323031342583277,0.656873212137788,0.27798552415861966,0.2030491830809447,0.8210757690320067,-1.833178163871596,0.9061941382933489,-2.137273949940602,0.32803120819145426,-2.3409039787347536,-0.6729465812024933,-3.266843581689985,-0.2056045081904739,-1.5034753277329704,0.12907363025888904,-0.9609706132088921,-0.9762545094419636,-1.560587587411729,-0.9840319608866406,-0.07344933428923063,0.8860964974056186,-2.331913318260221,-1.091952633137132,0.08779401291540545,-0.14486655668673587,-1.4987062282950705,-0.3118912836136631,0.5138017158101306,-1.497909552725759],[1.20874547269643,-1.2278798982016295,-4.163452344774762,-0.948950724918145,-1.8817065920270248,-1.007737481762202,-5.405562974693875,-1.6999912075981634,-1.0568741888002264,0.15016331330267915,0.13290991912667788,0.6222633710608974,0.4491645360308044,-1.1349715411754493,-1.9038136854631902,-3.06872713875911,-3.027736682062516,-2.617159189435896,1.7379964869958215,1.2664535469985445,-1.8432588470549978,0.6615450830164253,-1.7498475660045358,-1.6513347033217232,-2.402506685033695,0.5110845590239795,1.483941248684421,2.1492619524223464,0.36183024508928496,1.9609069455419357,-4.867279884315318,-0.7850084003517928,0.23132145971810122,-1.4729672751691678,-2.1773990677507586,0.13269538983441817,0.926636694340319,2.7652737097502955,0.23459867749519941,-0.4984278126871751,-0.47856107012489796,2.4293006386250884,-3.044988446221256,0.7579195121809933,-1.4880838562740506,2.109094165460489,-1.8837947216601854,-2.87219163351357,0.11884681154423427,-1.1487630809227],[-0.4085034088284796,1.0035783804109324,1.5964500480798254,1.551320777685938,2.129212135876123,-2.542844852594647,2.8115667364987305,1.6008425544217932,0.10159255880736164,1.8528860218527274,4.0919954008011,0.7636648888507344,-0.004810503718593947,0.30807134881879433,-0.34933084289946725,1.99144237828946,1.1052792226352306,0.9895904955951191,3.8141193011787107,-1.0541786637860984,2.653434354086615,0.21494565084554304,-5.005436601917782,-2.01089408547185,3.435277844531551,3.109973583326143,-2.2867677246486675,-0.2433783646093878,-3.0077701960475833,0.29062051081346624,-2.2832834786988543,-3.1259688744210594,-0.2624928368150532,3.0576829641853633,0.756832708828687,2.609853207327316,-1.21271507255295,-2.9440169549708495,3.4837783655297336,-2.558163969962472,0.5215714640235668,-0.562269669006134,-0.6612516562952541,-1.2286941011066694,1.2164659080294813,0.40972094192090935,0.28608496705253467,-1.2123431706318806,0.5444842055631974,0.07279908037636874],[-1.4453367577267604,-0.381647352339587,1.0447778450064158,-1.1183106403529748,0.34764249244149154,-0.19968638041050304,-0.41025987207016634,-0.2217917057846927,-1.3287510251503727,-0.9641375958141328,-0.9466629381081542,-0.5104902811368727,0.9339695360230355,-2.719527887393439,0.5571299131005332,-0.5973065219321527,1.0472928243237964,1.3076131721384996,0.667584409417653,0.8281867980647227,-2.175056533618575,0.40841550036573,1.3727908028155331,-0.002547476525358071,1.7752591424730526,0.4280833797860251,-3.155517548615088,-1.8496541757147045,0.8652344701278045,0.8019766395124577,1.3844226590255109,0.06623768731522794,1.4207063536858449,0.6611797132030475,-0.6022009317493607,-0.5989440206393427,1.3868231879384403,-2.456513052743718,0.591701813424927,0.3974375568034378,-0.1527283571744135,0.027987365345407703,0.2712943966415666,-0.0508129474042619,-2.362979456622826,-0.44415624356627714,-1.671820303238364,-0.012136881861022355,0.5405770006633138,0.042079313222427486],[-0.3820719301987797,0.8775721729687592,-1.8628812460396795,2.1150209276123175,-2.4621213882994177,-4.783716452823281,1.772808443285861,-2.5005085035742267,0.04609089878693824,-2.8808371886701925,-0.0147968559026461,-0.4343217063716324,0.9720953107542699,0.8308017735038343,-0.7512396081835065,0.38046593970001763,0.08608486748068082,-3.7832759221835315,0.6049291171631421,0.3187332299797114,-0.2097271700673801,0.7978361532668432,-0.44933614810559697,-0.11998121930195575,0.22782691825269705,0.6179985751266757,-1.6013512066273503,0.22930210450591626,1.4424592252405308,0.7452121351073926,0.8867825737380854,-0.9633361656948753,-2.274329531674771,-2.401714459299603,0.7077147885517479,-0.3289389636354047,-0.7889413366464708,-1.3790862966249786,-3.6027749683314476,1.890384156355694,0.6473423713231335,0.6968535261260972,0.8919052223678994,-1.1075849551456698,-1.9609918782184312,1.3733635711926908,2.075295076956397,-1.7405456581590808,-0.13230871061383934,0.9855560728448252],[0.10855119372408989,-1.9823319232589944,-0.47812806990383716,-0.4817335201384399,1.5228765243468199,2.214454085641183,-0.36335910497263624,0.26278534332039605,0.18210183515618125,2.894727552599533,-0.5871399062653077,1.3907974256795381,0.748435590463975,0.0058278554928566555,1.8841072981332245,1.8468757698541503,-1.1916737139351965,1.9682241281167823,-0.3552808614267459,1.1035907849433968,0.17078670473652943,-2.6831298007932767,-1.1418239766187697,0.5396499095745654,0.7832215148476188,-0.45663263625884093,2.8252158912212377,0.20823246153728697,-0.20126315456142171,0.3673998210542064,-1.1569498257658093,0.4978285053039012,-0.10232683169916153,0.5745581054958065,2.3944617618155766,0.5760384598022548,0.4835949773746123,-1.0890334797064045,-0.4349272778078555,0.37758244015408915,0.5092713874231486,1.7180577081208355,4.069417304767432,0.366414769829661,-1.4690707970738266,-2.047227337450033,2.770867551393903,2.40755366384924,0.9803074098808464,-3.5746678395069162],[0.13262447845326802,-2.114574444408131,1.074627827251767,-0.9966071087733728,0.6427160443743257,-1.3778384356148914,-0.49104093058348225,-2.4368469436868287,-0.03838057008414747,0.608943702413902,-0.2936936238342178,0.4027526832935739,-0.9197177178635569,0.37741673733917014,0.3039952279085352,0.1238408049393687,-0.9162607913640438,0.18394537671483105,0.781834201827234,0.23865057640399356,0.020585047097606803,0.41023177112350306,-0.773879052072706,0.9405530455823448,-1.7156406573524883,-1.4639543300693103,-2.292752671838536,-0.08980147900789757,-0.5315963294253602,-0.2940061070915181,-0.7601967524817358,0.5816744363261115,-1.0908756833363138,-0.572579772772024,0.17827571728269728,-0.14531918772063235,-2.7403179744744586,-0.3383902936745794,-0.7042706220308622,0.15757491355849013,-0.6121342514390352,-0.036223674489321324,-0.41581559002673085,0.8111752623305045,0.3706505490664271,0.08216689291177731,0.892845506674356,0.3114169912026816,-0.17806911682444979,-1.0589999144602689],[0.35309638820032535,0.5575070190186914,0.9673568890445868,1.5324473060631163,-0.3368598993817058,0.6475896899444151,0.696653178535901,-2.2367451134636616,-0.3742908336500261,-1.9704418254867246,-0.5349892250375522,-1.2556027145402808,-1.09482981164113,1.3538255930655312,0.32176154345283475,-3.1235843262194494,0.6576772215728854,-2.0653855158988637,0.20184814595322823,-1.5238312828470482,0.925851933209387,-2.5621622058063673,-3.330637381851457,0.9555601163067262,0.062035493925633324,0.1298732738019259,-1.6206508610349042,-0.18387982958861035,1.8068528377003539,1.168974440460521,-1.946784314809305,-0.877661413302527,-0.16755984416864117,-3.0273784350709456,-0.4257635921466989,0.3663517238654239,0.3608507590590121,-0.7953631452529739,-0.844276242631788,-0.5427187211477257,-0.1376054369784084,-0.8303779464407347,-1.9174332843584185,-0.6418107657545817,1.6642840279200448,-0.1743965605298169,0.32053480428446973,-1.6257693437344212,0.6745309239495231,0.4740982657621678],[-0.4024966814418148,0.38153641611080735,0.5226584990531938,-0.6678498038600654,0.20399997755369728,-0.2533175127442871,-0.4445680992276158,0.27728410887668875,-0.38614089849380556,-0.4927723622560851,0.08942071946706065,-0.9219525035379584,0.05146230113851293,0.8019974215815829,-0.7637320844712355,-0.8071859166573413,0.05681460111519094,-1.1602737559363923,-0.5193685133940994,-0.8712184379708244,-0.7567386532842757,0.389708746351935,0.6861705782976968,-1.4891205057322552,0.9698950423635061,0.46408814263470666,-0.45085405538647827,-0.37185826820143475,-0.607053165436143,-1.1168585881120017,-0.5539391898810454,-0.36334579268409534,-0.28159541161570883,-0.3451052943822983,-0.4079842479742058,0.7754503160279476,-0.5811312603619257,0.39486549974102775,-0.1462571840027266,0.923840151584812,-1.5243094660938752,0.5794519341060614,-2.2527080805966624,-2.502043509797682,0.9187185056715126,-1.714423438595427,-0.027690820187134042,0.7359218007035152,0.11150149142019669,-0.16736822773503768],[-0.7531264243337646,-0.4239168457036822,1.0184289919396885,0.7817734385306241,0.8862744143308693,-0.7997564662509381,-3.7371511592823943,0.37475396541141714,-1.900871727320256,-0.07327575520754785,-2.761430287160606,0.9462853697819277,-0.45289218886755434,0.8963816063912813,0.15400938804254755,0.46954603584024335,0.31005936501267645,-0.8135823153255669,0.2820350777664954,-0.2453419054994977,-2.889265746778744,0.6071230118974104,0.25302594401734907,0.2489207731620797,-0.3513991126795312,-1.9543177503505693,0.4658004609284937,0.1909556100127442,-0.023165475919128882,-1.481545970111154,0.2391026444955242,-0.0737386280182202,-0.4834897235194514,-0.2779794735783769,-0.029225163486575247,0.6015979818849791,0.33370269885213155,0.4062373888332446,-2.5691463478206837,0.229568823033455,0.0333145502292305,0.7829747095846218,0.3708111433197099,0.7205432617049708,-1.8292379721143208,-0.6177427538421465,-1.7839485063432368,-0.4747875960010608,-0.1705289777494071,0.641903400723778],[-0.5367202883681353,-0.2980945488875424,0.9636543462402416,-0.17435798888730691,-1.7672390141340995,0.6962789629780152,0.827125566111791,-0.09073811202902261,1.7308494812069828,1.3070586638759434,-1.956438918843466,-1.0878905937018233,-0.26517061704285727,-2.5525297382058043,-1.8567318277544782,0.2332959473044957,0.41750000510618906,-3.1769771789599557,-0.037021727680194745,-3.067972379179696,-0.15105770347679182,2.8306920036841805,-1.6314173387821693,-0.26931454351195916,0.32324783365927223,-0.9044201651548384,1.6681583159131508,0.5924502716209431,-1.8117833900500488,-1.8888890213712386,-0.740618206351679,0.5925045060517883,0.19279388152418223,0.9789221434007737,-0.8241222034768206,0.4414356583515584,0.4598500753362943,0.5097453329957182,-0.9099058581645757,0.006247922767818489,1.1493363830905794,-1.471522803401984,1.4799476190988654,0.6330613812524308,1.2518808899390843,0.9762734350242718,2.363747810178748,0.28696489201812,0.8208180704024546,-1.6491323487667497],[-4.835278851061976,1.25590574324617,3.757991114459736,-0.03367091561163493,0.8769834269707839,-0.9747733633512219,2.2480795920730916,1.404187083934026,-0.4496402733053311,-4.679750401961088,-2.7651008980730776,1.4327946000437524,0.40343371805460915,-5.118493303140923,-1.3715996634471876,0.9124878121147633,0.9177246774393564,0.3139402744136099,0.47018768682660367,-1.1311871642099753,-3.4633967977487976,-3.11646713650571,1.0372162581917581,0.7386958811206559,3.5179483530424345,0.7774497774290011,-5.306041820293851,-6.328868352556461,-1.164278109094534,-0.5654661189265012,3.134348129716913,0.46321489823187456,0.9865822526747231,2.0569401000693386,1.4766092337186891,0.9934683605394311,0.4474583454753356,-8.00885459863987,-0.3887810621606011,0.4850124563451839,-2.079681848922663,-1.7801486625809642,1.4398536200460463,-0.2334870009560135,-3.141421488108252,-5.2323510750726,-2.9811024529305477,1.41839469545289,0.3433300968045185,0.45618976340395384],[0.22389862354548287,0.8858166168554101,-4.773895579281081,-7.075633725863077,1.328471439418653,0.3328180609447291,2.9582569739890463,-4.0536472028151564,-0.5807290165974264,-5.37668830139635,0.1973099379465022,0.7575171242963505,0.7721617904522686,0.8686398165895289,1.0562090213077995,-0.12821026253334447,0.39894225593974436,-0.772029899222575,-3.7353201930602333,1.826436788361506,-6.7244515361854935,0.29503394381775633,1.581841930087169,0.299781034983904,-10.135414389897813,2.8510143994606056,2.83579396656416,-4.700521437509637,-2.7044675987119544,-0.5269574195512169,0.4031412914287472,-5.417092583795076,0.7431218404649025,-5.216666992932295,3.386354342174727,-0.928060540451066,-1.5779365120492697,0.6273960925971849,-5.721028460674813,1.0199052308824181,0.44060580380925024,0.3112976727446606,1.4386037597010708,-0.2707418178321994,-2.1939107675862792,0.9675704890120936,1.2933356326044614,2.9636870916670204,-1.6058346351628352,-0.7411468156809508],[0.13851452061868819,0.6665778498078249,-4.51753856434322,1.9890611014876436,-7.105796305366664,2.221883957409249,1.481083763182801,2.120237399425741,-0.07668047504611593,3.3719853882533117,-4.80150363494148,-0.6475238684914221,1.7020011711566858,-7.609103235653339,0.46240666630164046,-2.9284062252440783,-3.0174701475514185,-0.7077168564124986,-4.639129402685649,-1.5183259596123473,3.6569326308309047,0.6167708731363353,0.10253110738146409,1.5880254042384967,1.0261774990008499,-3.6387954704023953,-0.30887315752377115,4.821297892488128,1.6882773935501991,0.242477747118394,-2.3689109065146727,2.5275034962739933,0.519387865279358,-0.5569891438217096,-5.45853356010975,-6.489220727219952,0.4038490076840259,1.5907920013341175,4.537392142157266,0.024410354921026736,0.8240709425906075,-1.8163930570468947,1.098637631262341,0.5088609086850502,3.0493002515288583,-1.7856575461526456,1.329265996409135,-7.912811362719836,0.5110019979515882,0.6085256833500147],[-3.9220545896696737,-1.657226399483003,0.7741048395391151,1.8071900432722625,-3.748372839904277,0.09126972928448361,2.588678900411205,0.8995868780289432,2.2304646740110328,0.7215093483777809,-0.7769488805454992,0.34723741600935404,-0.5783058134150622,2.093525894441225,1.481102584299262,-0.02191487026472555,-1.5756326289921192,-2.077726719082786,0.9568086900946388,0.6159501027941753,-0.002472135458606917,-0.4026024246276165,-3.0322057600744823,-1.5037180629477243,-4.832326817147644,0.8446332077024442,2.598555937236205,-0.7570448819606443,-0.9087456255938805,-0.2594406023620431,-3.0726254472141346,-1.1480605099341632,-0.1362574050081468,-3.7661730394425823,-0.9478956138548112,1.2249017656347994,-0.14196427479905452,-1.0905937788072362,0.6244549517562429,0.8848541144864214,0.7773577643244316,0.5259875376020966,-1.7207843196303825,-0.7214968076609964,3.814380401360275,1.3761010818545802,-2.042570933644184,-0.7002382306952211,1.2763127037236293,0.8635578830764293],[1.4127567152711824,0.5725366724036465,1.2557999983437107,-0.9453070253724432,1.126087362002788,-1.6610167523311434,-1.2196755211995234,0.5459772118632268,1.6040465092585732,0.21669770299668492,1.3184313636899074,0.2404172998886055,-0.9072319917606667,0.07537768804863688,-0.4982987149005482,-0.07356216402456009,0.9291576320088755,1.1271871501672954,0.34523116873625415,-0.7906287792229312,0.23382866920473463,0.6751455065525647,0.2890178049845235,-0.31865043422993095,-2.5431236170378884,-0.1568765959468222,-1.5887786175052123,1.480080146007315,-1.4666087606695655,-0.3846908099180009,-0.010792874247284414,0.2716158439915161,1.0580188630188745,0.2926165673513916,1.4281043913786815,-0.35006517506899204,-0.5662443881114662,1.511689447994082,0.2133820726913652,0.7661817574586075,0.009263883405229354,0.5908101840289225,0.12695092730110677,-0.9144680657475514,0.7382148534999813,1.9005712923401237,1.6575330672479673,1.6057062244062867,0.4804546969376221,-0.41336129692834983],[-0.18376345383684303,0.3658207687626449,-2.573823157490455,0.2520876320750506,-1.976846749299024,-3.571521706598658,1.207550572666699,-1.6404925218476436,0.18469804928897787,-1.7433867254077366,-0.35429013505385804,0.2429029930491088,-0.34837299127279914,-0.10385539276001832,-0.3596296984976211,-0.5305208570496026,0.7444590678653942,-1.647368064773679,0.0792430861625289,0.31611015578594687,-0.7233086020052065,0.647851342295099,-0.09232382327708369,-0.4043683624447138,1.0249892300642023,0.2492336338450258,-0.5635115658570446,0.13321433035461336,-0.4056414595465324,-0.6711428811901786,0.9041322054211088,0.22569235643217678,-2.120904918493664,-1.8003965996903075,1.8205858988519164,-0.09318671365804772,-0.8617861389428919,-0.41314400973214344,-3.326950211217175,2.150758422570891,-0.10468310347735696,-1.4249338970363834,0.9387097591621976,-0.7781942608401177,-2.0562053136179013,1.1562897160999217,0.6031806841262493,-0.36528651267868767,0.6815070997043874,0.15519436585389842],[-0.11338346761085356,0.4375514993660634,-0.2702172609011918,-0.23462043058615412,-0.8184012744666995,0.6705046072381947,0.883250390141489,-0.5859341545429743,1.06128002703771,-0.8160836627722242,-0.12109338863736857,-0.47742085663857453,0.02674693566410504,0.9939355940109021,-0.78656081465769,-0.713429217939367,-0.14042453898778376,0.9139830231426354,-0.5063420443402126,-0.22889132365026033,0.13906187953907412,-0.8204136593911688,0.403309458328821,0.43227323846973226,-0.9390628838290194,-0.2354441545215653,-1.4174929934851537,0.21080055092024408,-0.081802143870962,-0.7751239444230904,-1.052722614195361,0.3878624247247834,0.21676995806851368,-0.5935215489638394,-0.782491897107007,-1.0057247785461199,0.38008433373913486,-0.3709637402327864,-0.9210581258251974,0.18936295260802236,0.6816946685320691,-0.1643210831690039,-1.791861506093748,0.7900912022709518,0.6508286826500194,-0.6145183003255884,-1.7847860493576475,-0.039849043668637674,0.5490749029131955,0.18943649867978465],[0.6887319746890309,0.5659640381957878,0.33374887896191996,0.20230165330017014,-0.6978395965219243,-2.2269036004850187,1.9459745306629954,-0.9741567340463875,1.1915054109616565,-0.993445355438412,3.093179732397415,0.021148059492450622,0.16789584326591223,2.2199347819529955,0.0213793812610455,1.217491497337367,0.8274600062281949,1.1270494406874552,-1.6937655184582598,-0.5083790518040301,0.15199378789845913,-0.23150890033466384,0.9984564801039785,0.9457331997442192,-1.0641829856137002,0.06835152065673444,-2.0094601598765887,0.15576597622582117,-0.04519185587454911,0.22587350804271092,1.326576268241997,0.5327925778148389,0.9213503395768353,0.8910249571701412,0.04908929744709373,0.1559956066181199,0.9155712575889465,-1.3706222866805138,-0.22647503244803124,0.11477881666018916,-0.250347955722092,-0.9258053516617567,-1.0496664354780443,0.18802885858957227,1.7289609794298177,-0.43493190667658926,-2.4189276930745507,0.7314319613654554,0.4367320947101011,1.230721435701889],[0.7114900880671876,-0.5484872714287652,-1.491035726254403,-2.0510165571293544,0.8063103221971873,2.1873585090033103,-1.2314561983729366,0.1382588089057936,0.6899227438466176,0.9590170199420431,-0.6589203209939867,-0.20875912592315563,0.44567049982238105,-0.3892752467840908,0.5071321006131745,-2.6122481307737266,-1.247853321527031,1.3521025631236652,0.86888228613329,-0.8846631311087353,-1.540558704393132,-1.8273697803061504,0.7629634709936095,1.0735132358341672,-0.6997879016263958,-1.4984252470744481,1.8849580327837119,-0.6668371653447498,0.5627986100070712,0.9949992347036548,0.4518800351400618,-0.4464971479731511,1.1668212173517263,0.356378409982092,0.006332133914575963,-0.2568356849906104,-0.6636552715004281,0.7605412270258248,1.3332933425916182,-2.4235714798357537,-0.09724649445186931,-2.0037553256798843,-0.11975938484057924,-0.2712038808163914,1.7447065839422007,-1.1716043644573393,-1.0649376678694418,1.1449529466489177,0.3517583212120323,-0.25930812000677717],[0.8066028570697277,0.05521040201709135,-0.371034979458524,-1.2375440148855785,-0.48323079165594557,0.574954775845427,0.16620666281088373,-0.14365716247311197,-0.18886684282630967,-1.6511290430264067,0.3734280254084874,-0.06557054236035409,-1.2064442331927074,0.3258380134359529,-1.1783225977438456,-0.1403121849893776,-1.4163494319333607,-1.1955176064029502,-0.46202610185519816,-0.8965590712112531,0.48669961128139283,-0.5252851507693077,0.03010936057383341,-0.2328555401545252,1.1216120683311748,0.5850501488931993,0.7090518459216477,0.8000865149722122,-0.561314559622468,0.9748553560310765,-0.9767457537416238,0.8830087803131454,-1.4934227338837232,-0.6993023833251083,0.7198803623410797,0.39746651747550676,-0.7211826835768402,-0.5082469730133974,0.20788672211545048,-0.8602446825541298,-0.45180495343646127,-0.11831506875914582,1.261624938345603,0.3871176737217479,0.8005779696385379,-0.9435892105960045,-0.6705339405451731,-1.4839155447638483,-0.9923864117868818,-0.5351126404298445],[0.5684166882849483,0.776920182002067,-2.1445308258950524,-0.18739015820826535,-0.23003012924947736,-3.6541888973064274,-1.7208089335519579,0.7864144708744742,1.1909130954463387,2.1205324930830596,-0.04864624421086302,-3.1214055905389126,0.3652947835273868,0.928393690587987,-1.3628481713307852,0.6384038068199337,1.0347502568203986,-0.9439400350974034,1.1923363570441947,-1.2607241862301195,0.5487583204869878,0.7682130020656194,0.4572979294525481,-0.43910706750711415,-1.7336886139069831,0.7130207546750997,1.7821859601517853,0.8735361269963463,0.8825426594999701,-0.2940866928797019,2.5022005985666422,0.14907193222651582,-0.056277441457452775,-1.5676371070992234,-3.5607109391669116,0.853125069756685,0.7447396247392062,0.9438934362790583,0.5719466436570632,-0.02368244872565752,-0.16220783764157376,1.3271198678511813,-3.3403090261826516,0.5911135075473632,2.472619031774977,1.38714226148338,-3.65922659074933,0.5681656034538775,-1.1169167629030907,2.7257448662456656],[1.0073933251945786,0.15126169976552145,-2.4462854457251435,-0.437329143884147,-0.977505514105733,0.03586961928375408,-3.481001409982401,-1.8607180623955,-0.5275601907870451,-0.7887366517143869,-2.0573468274756213,0.4563444152760693,-1.3445941177235454,-1.6762910706064167,-1.0419995157404955,-0.3632041516816772,-1.5145460340735926,-1.0102580697622592,-0.7842766098159083,-0.8307971745494411,-1.8725817204403001,-0.10609729713651636,-2.0745602181793164,0.5842342484269363,-0.35616923105713744,-0.6336382505336366,0.3106685231075622,-0.7649562385973325,-1.4080529061111846,0.8879111443042823,-1.569966269897032,0.31017762259879705,-0.9137549083493163,-0.2113562685715047,-1.301439789695949,-1.5354723999847708,0.9398205180311269,0.22796326103329512,-1.6023345772423574,0.10952853952572683,0.6186245243887198,-0.4456306489550257,-0.11524374254433083,0.0779177305633903,-0.5521814815121142,-0.8407935265668364,-0.820237940625628,-0.1921180611130363,-0.21961468556022154,0.2435789129905835],[0.09874003461078272,-0.23407314312524669,-0.8444339001365669,-2.6531783027057245,0.7575228237295027,2.6162404071178886,-3.382606066878615,0.8595383438663607,-0.7020021702801992,1.971993402394416,-0.845034439789679,0.3186857775919955,-0.9522891357043144,-0.5410770433803239,-0.9550984320937996,-0.11715368709930596,-2.2635797820770303,2.291699980570482,-0.4169850756708937,0.3906443365209447,0.9773798058345781,-4.556525069370559,-0.07221392390900212,-0.7043454756835555,-3.9912338327437875,0.2683188014052178,1.7242066869787882,-1.9529425641213745,-2.1740643472968006,-0.9566003733621103,-0.20899101268101408,-0.26386234848436746,1.44831275192791,-0.4523660059402573,-1.6422657155173523,-0.2048238017513293,-0.722095049571943,-1.1329156863375445,2.3657687017443565,-4.498510425265868,-0.7523942349061099,-2.897346399139572,-2.7352052716131134,0.0020330706115905413,0.8222811615023825,-3.4116431127587683,-4.71771766135945,2.3654298836478236,-0.9694768954156149,-0.11213579629346386],[-0.2709574204924387,-0.9441102545534675,0.25995298400254235,-0.35795711394837176,0.6299886918566884,0.20060270018278756,0.2573083776636826,-0.22957648644314896,-1.728231980578332,1.0562497808573796,1.0857863133718062,0.578003647433837,0.46409146425581155,-0.34867744951712,-0.3739425491357655,0.5934320828836849,-0.7416183822916232,-2.1498485186613916,0.15635525994265084,-1.2030339312679443,-0.001676038964296945,0.4222595980936049,1.009330705763868,0.7008650129318442,0.7581753596849292,-0.5208252336867253,0.09291311031799723,0.9177935808305244,-1.9860215390975027,0.6529723035644431,0.8925652868749901,0.7395271882668849,0.07724149197040439,-0.7811425305269043,0.5507479344993574,0.5675231572649713,-0.6915925189274177,-0.7753394110098524,-0.6217920137122318,-0.659558508726436,-2.0968545419864575,0.3141833391970475,-0.8011661807605504,-1.1879834157857843,-0.7109469552169827,-2.2223333839260144,0.5412564709276524,0.039290872668358866,-0.03668586030658575,-0.48466897909053314],[-0.31214746572551216,-0.3913891037373702,-0.8058452618999482,-1.2988103167096383,0.7647390470998109,1.4075995931982455,-2.893772441297788,-0.009577596467723132,-0.9178165370086508,0.5168225013235161,1.0989160193967284,0.5967863238038299,-0.03085024675875845,0.9599586950942365,1.0149093157785862,-0.09025007531157504,-1.462083771216553,0.999635911257378,0.11986926403962404,0.3940715929331575,0.4661474667383886,-3.5570523263412492,0.20770123626555817,-0.15811286332418267,-1.8272227381370623,0.191876130915341,1.351696904624425,-0.10906148078259355,-0.6578447939173738,-0.3084290909474982,0.5389865200915797,0.4801438911344277,1.370742178971519,-0.9868625429870271,-1.5244652258225644,0.9481186117264703,-0.8041740556613775,0.6694445923645783,1.6891748926944696,-2.622013814698969,0.4620475568613042,-0.3766236850007194,0.3782582828798869,-0.11424717280564808,1.1164499943042387,-1.1431999941376907,-2.8369009768316578,1.3603270817130666,0.9540392150119235,0.5538878285892515],[0.7238711000146053,-0.1913099574387239,-0.22879167740178444,-1.5395597479776486,0.07958921423409437,0.9751932850967469,0.5419306173575682,0.8428061618800654,1.1187292895860117,0.31701762479225315,0.9462693096867538,-0.8705582501991648,-0.12861354210596107,-0.6382905689404261,-0.7438852136145915,0.6945659591771348,0.4276758162932878,0.24100706166269978,-0.49490503151596055,0.40833902115746173,0.7529831056659306,1.0935470582325646,-0.07205055292203062,0.8425120871724263,-0.36293144311085807,-0.23478757592030794,-1.7082695236010383,-0.6417976896516719,-1.3871388017867792,0.9116102458189776,-0.10487659413406408,0.5644467590976995,-0.2685804363039139,0.4382936589252347,-1.6310823971331716,-0.09213442253370241,0.016862190396661036,-0.7933302742045556,0.3934230293562417,-1.3122880399463424,0.7618538363637478,0.293747974785885,0.5475192486183548,-0.9454274407374678,-0.05969256623918248,0.1647508243244147,-1.2462867773918176,-1.5274527867890981,0.40296202395608915,0.45990080820595947],[-0.19311246560534387,0.36443419908528224,0.003005573422693881,0.21345093099117673,-0.312217803187338,-1.0613256029006362,0.5348194048053971,-2.132318817533488,0.05233739262870403,0.19578548452509786,0.49517697379790204,-0.21554990283814385,-0.42082890802532164,-0.46141352786132006,0.7222323904428541,-0.1724025384256715,-0.8547274300779475,-0.2306989328457323,-0.4338946414386823,-0.23050071694335822,0.20799951930883187,0.27958337851312126,-2.016503147404241,-0.5577292393627962,-1.1615684970671079,-0.9720617067344977,0.5376751143726551,-0.09046870374311779,0.4750850676858772,0.7912494979922363,-0.20641431074769487,0.74855544541663,-1.1533406167814757,0.3943501889787224,0.8996914247478327,0.7614439190955112,0.7459259847745313,-1.5719517184698975,-1.0499610821713659,-0.39666819939429915,0.7013435054912849,-0.7028647552759693,0.7285322266293254,0.2628585830419298,0.0023030526008888407,-0.8520079204574679,-0.4358234344868531,0.3217378136163416,-0.8127405476405353,-0.7396380937040773],[-2.103318023561878,-0.7258958047053125,0.6449397312170425,-0.5351557648801858,1.0888397254741609,-0.026441912601587438,-0.9688408054227587,-0.06059132368451128,-1.7504914901748925,-2.018283413871313,-2.6129174361072205,-0.3789512999513759,0.9650144224476773,-1.352911157774951,0.06514188153778654,-0.5078671981535258,0.38806747807459585,1.683229171255842,-0.07790945523553074,1.3321632796615535,-1.7708811120774846,-1.0566780768035866,0.9307230795356964,-0.0025706347053254127,-0.24732313285818394,0.4990720581533827,-2.843052125487036,-2.1346132996281844,-0.29593908808058955,0.6855227913289065,0.5998675369480043,0.20869259907801005,-0.0882828661739891,-0.38058113986880354,-0.7847247569526207,-0.2364166104964298,0.7373179463673218,-4.0963389528420935,-0.018434662203281778,-0.8119900036682485,-0.7000999393911786,-0.5593857738568782,0.02316775612332741,-0.4851483304424994,-2.0366873478572707,-0.59548027005677,-2.117961644670692,-1.2400057877223296,1.4342566213902972,0.41525320436719215],[1.2883439426443346,-0.19890196525620396,0.0741780068320656,1.2652095229261067,0.019152013714762064,-1.9459311572934597,0.17107263029193343,0.5976256280598888,-2.1327224390570936,-1.469156333174546,1.9504684672253996,1.2831668411629509,0.09833173177848503,-0.776991578956561,-2.287443996826639,0.6348492537842542,1.1565979488822713,1.5256063074590447,-0.1899686291602721,-0.07674905195962187,-1.2141308596854186,0.5518513078490899,0.5755888473225169,0.9292446753655564,-3.1123513066953503,-0.3632821910470887,1.3691341720294496,0.6984533879291652,0.3423823426864092,-0.11096242441334721,-1.1529404920015092,-1.236809434382221,-0.38467331321804693,0.09227817223747664,-0.8895913975349233,1.3225116969178554,-0.6693268567406963,1.078949705841617,0.04273895454299294,-0.6005605290943272,-1.592988928183546,0.5164160260030097,1.2857539483374463,-0.9297314365205988,-1.4160487056838136,-1.7565704367888018,0.8899599300991988,2.751701168508573,0.3093677006806354,0.5980321049882577],[1.0478558072717623,-0.23719554723467326,1.6337373716506458,2.039107230886215,-1.0444580728975148,-2.7149107667301338,2.080876971773812,-1.5550044854372949,-1.8595745742328034,-1.99399446031826,0.8706467238792291,-1.3572749637923602,-0.9598775454579525,-0.3719238537524908,2.3544531623634257,-4.261890627148444,0.07445931360940775,-0.47916708638389344,-0.03591184736576182,-1.4577079625519112,-0.4816678539718515,0.003594380148304152,-4.019816505797,-1.329514972818519,2.8959561803361917,-0.15043758999235354,-1.6628668356090401,0.7131120349250982,-1.5408265408931112,0.9451435870618463,-0.7289977251281223,0.4772453712546014,0.885935056294814,0.0570132143422896,1.6147085654019062,0.42583983662596364,-0.2510734944685057,-2.749171806174109,-2.376510193509343,1.3149373376175226,-1.542827007042544,-0.5818685936323472,-2.469679555428493,0.6519992159708502,-1.3459623342818647,0.4636974442519563,1.833282668130752,-2.751021883125436,-0.026028301805469937,2.463607172804753],[-0.18453241236155543,-1.6055169000428566,0.40314288054972713,-2.080862058767281,-0.8101056360020975,-1.1494426069916683,-0.3526685596951742,-2.4536617332833286,-0.3241046524893688,0.08678126675455129,-0.2003083336363938,-0.5910738335328257,0.16492628647973423,-0.06170123619520502,-0.9000410242396387,-0.03246295977776605,0.6955806461698252,0.7163961970715219,0.40964928406526324,-0.4966085690177754,0.5312142256852267,-0.16560040183552363,-2.3926577904359263,-0.6716044339659111,-0.0031884940409995194,-0.8563705544437504,-2.769023847108765,-0.46184018946845645,-0.18346030483151618,-0.4416733625625371,0.14701616903606324,0.07968361715647419,-0.9683011822277519,0.5012000151626533,-0.06386467770184047,-0.8116128142537162,-2.596774999013626,0.2973864244467387,0.9847533721318411,0.9509210655730587,-0.28747015724031727,-0.24473847137622842,0.49415814982863976,0.08000371938703818,0.4596146435396555,1.0181924563545206,-0.1010207439998572,0.3824456942646848,-0.4197653798087275,-0.4980070192452912],[0.10759699270080421,-0.5897690382312537,-0.6019581879999981,-0.9290265892531878,0.4388963759984795,-0.6027479690641735,0.7902400262483232,-0.6604125134643618,0.5821965916337688,-0.188801575373133,-0.4139140595050134,-0.41812728124955845,-0.5175276317092362,0.19380750282849338,-0.24814938727246577,-2.05468604112994,-0.8309073551288325,-0.16122842456418954,-0.02984881950283358,-0.47613905854534727,0.9072218060971006,0.30244650275702856,-1.1605514195354414,0.786829228079894,0.5706812237373596,0.38848122139564595,0.9881791708907087,-1.0158544503741502,-0.6739540108283534,-0.3239965584030984,0.22864061479304607,0.20912909513680944,-0.23680595032089574,0.43360315619037637,0.45672478332997685,1.0331117658329443,-0.0648046385900496,1.228911372500794,-0.8188709315680686,-0.2909927579761374,-0.6504723525332112,-1.066663176289005,0.9290477734746687,0.5534298447627632,0.8267589818217722,0.25987456645264145,0.8558257175634737,0.5122765569924211,-0.7633266171771915,0.22462045870831657],[2.054345526769482,0.6585769673742454,0.026515375537193284,-1.3273448402428298,1.2413695392871322,-2.1927787407173382,0.7183489653392656,0.7389485038840263,-1.7046802564137333,0.9865471009032161,1.138741663251705,-1.4540836310598475,0.8180245172865407,1.5063241020127391,-0.016279732000094107,0.4794385504282544,0.15539690670600065,0.804115222209318,1.1207025334361875,-0.07990907997527541,1.560568358482695,1.1718408434116974,-2.13901145054513,0.525371689213663,-3.3575393441676895,0.4679486825072603,-0.8267366289472801,-0.22041596968356286,-4.118016298985588,-3.4141633500420494,-2.10026307805553,0.8898416727017122,0.649488575299984,-0.46454097734519667,-0.3329768466226331,-0.3057776410842194,-1.8839401420430328,0.12381342994868881,0.7429233393622873,1.3307031244640275,0.8899859660174897,1.384683977461421,1.424617028778461,1.1670798390371107,1.180255628564019,0.010357568474842985,0.8029424130780173,-1.1665153112060536,-2.410624279325864,-1.9702481331542006],[0.933809774995451,-0.6208113050524873,0.21407185243333537,-0.5002281434369145,-0.024916273172614283,-0.16626681918188088,-0.471971305001352,-1.1808500520265426,0.0007277902259491388,-1.4167038950046595,0.7741006413339595,0.9497933061023546,0.7827392272362145,-0.003600924783209701,-1.0845416307148186,0.8147111853911185,-1.609823714891248,-2.3696252589598568,-1.654211109388532,-0.29713826364000695,-0.4743579833155962,-1.1925699298010854,-0.7153144798682186,-1.0408847750402437,0.3102820436829361,-0.8710465047370342,-1.461517265723064,-0.6065447047604177,0.4247571810337341,0.08570701334097158,-0.9906993926315062,-0.22784454332240012,0.4467778343574569,0.1960110925582345,-2.0660668586670354,-0.028996919049167517,0.20016793982337158,-0.21655430756649724,0.4168744003799929,0.22587078069619096,0.8014995082931071,-1.642868519238312,0.5366870071909176,0.33648871669069336,-0.9139272314709092,-1.178299116348779,-0.6761960894039613,-1.3873708546063082,-2.3588855415943084,-0.05919743217563464],[1.359673255257032,-2.6351294159059178,-0.8414400794673476,0.14393896113465968,-1.2517749125654172,0.8069016210439665,1.4844805167992743,0.15731656311177206,-0.529923439804203,0.33089142109051095,-1.0778368447075957,-0.9059497661799066,-0.15627923178284223,-0.6164481677161165,0.1901575745560402,-1.7083930617093324,0.12903725895291326,-1.475665173757052,-3.3708931019150454,0.7156728294722431,0.308394551399788,-1.1216852374794832,0.036476012657762846,-0.7408367614611344,-3.4078234480731373,0.29224989223059267,-1.3438350546861675,0.9552619104884889,-3.6612221391548565,0.3511553199313253,-2.0581053241212866,0.31152918573749827,-0.5853491640438151,0.7796227269423772,0.906815897605004,0.15547158781522122,-0.8595873793862041,0.7223878224147767,-0.18833564970457073,-1.3227198662062867,-1.5734438058119133,-1.4811879964697083,-0.3208387873333572,0.25948942246503726,-3.1759226709995163,0.2317379072993251,0.06056402974570085,-1.2818964630384402,-1.329057009203969,0.7658242875286044],[0.4210203103336456,-2.7178747198358884,0.7054793972698252,-0.36592431901224526,1.2095351839427098,3.029008847520401,1.0149057112492155,-0.18625483090627193,0.8573162979173655,2.7187938749996463,-0.800225071067884,0.4387517372285506,-0.0850251369293657,0.8950927320511377,2.0818183660173415,0.518242676786387,-0.26534947415240934,1.1680089072969124,0.15288851483909438,0.1580562394511793,1.2871365632290792,-3.3275157536749806,-0.4443961522284902,-0.9241243316658063,0.16577655880516207,-0.7618983601382509,1.8541753132537022,-0.049605618118950465,-0.4230227810589475,0.06586118500921236,-3.2484623520941343,-0.5453432566683799,0.6291055685337018,1.3468470562084969,2.203176800399694,-1.7111352988706316,-0.4820850915643731,-0.10696302810978298,-0.24948162460752218,-1.07865455476443,1.4504168120138303,1.8153596745476155,3.8548371861350548,-0.9034696561402071,-1.9505623675005304,-1.7424025486143695,1.5489184568846521,0.8581251597713545,2.1082785842637612,-2.2903884057480988],[0.9604135343172131,0.8432808900515771,0.8640938075913875,0.04040029066752621,-0.7969586381715518,-2.061173318574917,-0.4889631583741455,-0.6703752085510863,0.5657583155108625,-1.0194236698083565,0.9835931621595129,0.5697774952335741,-0.10931689673952616,0.3034411700242823,-0.5443506000963666,0.4186190909842742,0.8494099216444196,0.28370429553680776,0.19507489085365662,0.18177620896464056,-0.1835831014481526,-2.025238465373298,1.1728294494086071,0.14657432461249434,-0.025564056123184527,0.1714197728317419,1.014919851180968,-1.323454098452046,-0.1598705202494177,0.11734238448573468,-3.016209336577357,-2.395696280201843,1.0105365774945416,-0.4615810386480977,-0.8718259870410177,-0.4599991238988916,0.11643700654650546,0.3967093665719079,-2.4073874940939834,0.761300967316048,-1.2393145489810404,-0.473742465522778,-0.2635529961717677,-0.5316786494936996,1.513161275551157,-0.7817920881628883,1.8258066293950503,0.9425123101153049,-3.282844172855521,-2.487792874214184],[0.018219673713488548,0.8425204959765966,1.009076920397896,1.3504886499744513,-0.7011378371622188,-0.5450750188892384,0.7705187439050508,-0.11915732718522672,-0.36256562456002955,-0.9161192276316578,1.0735682706767804,-0.32058333810056655,0.07521544504655892,-2.051214260260185,-0.47691025968547035,0.8746771433559347,0.0530634852731468,0.703343967020636,-0.30013484496611115,-0.4120408744065828,0.4252152760714241,0.26185541522745737,-0.7388524464087801,-1.217664425897956,-0.8729632059144509,-1.0329088948587173,-0.5933744404858471,0.9369600494212313,0.007672253987442193,-1.32360440851276,-1.5045754113131864,0.07639446541882407,-0.33139143412800676,0.14171202304597705,1.179905234818582,0.15730934083975437,-0.07318246195817191,-1.523729645143097,-0.4860857386967074,0.945246191540756,0.007294791444318271,0.04122581139552913,-1.7812220732208792,0.3474664093163099,0.14970735946332875,-0.3236193489494265,0.5699088108987826,-0.06916782843886254,-1.148763473535783,0.4398504786391603],[1.6212258343995298,0.04368232328720034,1.9374728427826524,-0.09243359042431971,-0.08324691746723561,-1.3500984145044572,2.001092965048521,0.038214305399907306,0.4921071190177138,-1.2449367056038907,2.2525832791833564,-0.21101762757052334,1.0416940283263254,3.686051930702405,-1.4799818117728436,0.19245116602933426,-0.18364909511552827,-0.8338434671544421,-3.612786036546608,-0.710913827419341,2.2777601758213883,-0.15422424008988533,0.8672331829446464,0.19363562365627865,0.8341377618112471,-0.26874583833193294,-4.597390089555953,-1.841547192484869,-0.4086128265467399,-0.1686817842364456,-0.7402892974213355,0.2916791677655168,-1.357456113156561,0.44390363442477215,-3.866145908417715,1.1177401118459187,0.6093965626756701,-3.249185915254174,1.556972039535324,-0.6453907253737391,0.7026102335385705,-3.0658651294612085,-1.7608273075558372,1.0932245641372835,0.021386009795974506,-1.885187792151044,-2.3872997806744762,-3.961394913390589,-1.1657813785645823,0.15241004385766374],[-0.4391992062502334,-0.6853368975559501,-0.8709745744792522,-1.0872114767564585,0.9390222040519948,-0.005228735930604206,0.21156351241379473,-0.08346844048602056,-1.2893754343853565,1.29006765391821,-0.8977261483775659,0.6144799635147683,0.5750378000576486,-0.42522842073723627,0.5115764207073105,0.9034801383158889,0.3203177131571609,0.6712725533325978,0.5860409736784593,-0.15905735405693752,0.5009026422440365,-0.19799626125744713,0.6263363138503308,-1.7046292685813333,-0.6727383500932624,1.1138788822511012,-0.0336595499481296,-0.34670349424544433,-0.09140417010657134,0.40155964421415824,1.2876175954976876,-0.17506787116151473,-1.3393603245707648,0.8215695101730757,-0.22344009755969094,-0.6651733536070067,-0.01961330670701808,-0.4212461197057061,0.7388328155444073,0.965577712598764,0.2532348748339794,-1.3371735975692325,-0.12065551323537424,-0.6725598831707745,0.396253798961361,-0.1895627203660388,0.4556353827408279,-0.18022808382643846,-0.9931595475527525,-0.5474443390787181],[0.23528442975641156,0.26193761044760605,0.30210715878124345,0.9294239539248671,1.245322408161483,-0.043740138266422667,-0.2996153530025383,0.2619373343974317,0.3731483244802896,0.6225650032478721,-1.0829270221413358,-0.553071005849976,0.8528491953388825,-1.7271368844647081,-2.115902693625983,0.6017270922557961,0.8194832406547939,-2.5480699650426266,1.1705559943715473,-1.1797064802173347,-0.3140584089177756,0.6591979641737484,0.6327212242462914,0.5236219946802219,-0.32680457889954323,-0.2965558695063286,-0.40215809087750526,-2.1370292754739744,-0.7454345698240646,-1.1633527779846513,-1.3981447265931444,0.8937463198778544,-0.4486101715629292,0.9072069231929268,0.06012976590582238,0.4113064848974159,0.9113827106883002,0.028275506375851273,0.21704405958003659,0.9810191814482385,0.6315286278013337,-0.748577685802053,0.6199271314337229,0.970601500626875,-1.4794494222313421,0.9630286770429678,-0.46967730631097937,1.8406926188068369,1.3526328075021485,-1.6762236979170002],[0.5028598693686525,0.4252113165143566,-0.3798652741661518,-0.22678890902224952,0.7908071443369706,-0.6798551671620087,1.1078082724989187,0.025565332570661875,-2.148813406150888,1.4161987771059332,0.5632967610075746,-1.650222326226364,-0.5520071612515784,1.1669220277015375,-0.11095025483773126,-0.20489450562889472,-0.3675197178732782,1.1820958583904766,0.322933050251695,-0.29463572030615487,-0.29497044581740006,0.5914497504796739,-0.7483791098229203,-0.9989650141612145,-1.1304229545055213,-1.12262129673708,-0.5160000054394779,-0.9742945705326315,-2.013958224639419,-3.0380137080158622,-1.341054456419493,-0.24792664653652047,0.27710030074350706,-1.495097765952625,-1.8603825656252995,-0.9506277631233456,-0.15650573146642727,-1.674348087823537,-0.3503840666661211,0.4628698344370827,0.20061458222048165,0.7286425504880533,0.4825816590838276,-0.5977841192770103,0.7664014182158058,-1.6914191796013978,-1.3933926360211266,-2.0078355267443126,-2.849183479098869,-2.681846401461658],[0.8774129733029609,0.8588575403683972,-2.501668688812873,-2.2638142191699924,0.05738294252985646,0.1333647670921648,0.11585680324029532,-2.650518257015762,0.27612658367234866,-2.3907793593602897,-1.1105780584169973,-0.2194932791032951,-2.713869420009487,0.09827137887267058,-1.8751321253059505,-0.027752692785200657,-1.7310947108332602,-1.0806226898757438,-0.001641573405059245,-1.744639169819199,0.8626398112266855,0.003967781474699435,-0.7101752795266261,-0.1387209860836813,1.3067166342509373,0.0682874202388936,1.18747829427644,-1.011219919026704,-2.361763152672274,-0.2784600889846719,0.11667629157741681,-0.7246034316162873,-3.3283026566030536,-0.934629920137842,1.3842396220540005,0.5221848771372001,0.3138476694012643,1.0912824212173853,-0.14643222533528857,0.7616836140515256,0.3235125703745325,-1.303445176470667,1.3935223319562464,0.7314945330060653,1.0225430880574917,-2.049337306300196,-0.03921782974070247,-1.0754642630732427,-1.1800575147362853,1.2146085528397979],[0.298094966343589,0.5167530148252863,0.6506358496310932,0.8793495307702898,0.8201548852755962,2.1756684259336656,2.4496485444082787,-1.7143043429411748,-0.010561315775645775,-1.0243153933421985,1.262719590362795,-0.8188569941412711,0.42622254282274796,2.0957193294129186,1.0428144843973193,-2.992326215726706,1.6295567923813872,-2.2846644787667887,-0.27474496303192486,0.3958413198375565,2.710964320862947,-2.5130847769511147,-2.966736662454266,1.9469055445627272,0.18447871698481805,0.3385548255677717,-0.4451956145925794,0.16265685216982567,1.38988474581608,-0.40163677279288856,-0.7630941195775423,-1.3252421773820917,-0.33766389694320964,-2.666849060756821,0.8636131275239752,-0.3554900023419931,-0.6323871548208422,-1.6528444683164918,-0.46849577952464166,1.004682369017463,1.633175962754858,-0.5393089470139785,-2.136653877053192,-0.3584008341800216,2.6668065298166455,-0.03242393368381007,1.7790996718425955,-0.889247023346724,1.4762043953310835,0.44117878963106005],[-1.0725029791761405,-0.33729622488307076,0.7240777911536495,0.20452166105618014,0.47449604830954256,-1.0840289876954585,-0.45080561758666526,-0.6350570835987458,-0.6500911246420185,-0.29089739084984945,0.8199804372725846,0.8285492917057447,-0.08558069722901746,-0.16356058277835686,0.033516658182101436,0.5864701676742645,-0.2749270787542072,0.8004278750083955,-1.1969357329529433,-0.4928366492581135,0.14118862920061948,-2.0382878664405553,0.9574474783248259,-0.22483477331734256,0.17913610176824482,-0.13067907746056487,-0.42178072194064337,-0.3135115417504934,0.5996629791669287,0.6387280366605949,-1.3615508611587839,-0.4602786589449506,0.8086193868968394,-0.4907928492415981,-0.3617106834685199,0.5601529502428048,-0.6180988623164556,-0.5940475183921103,-0.09769919036031832,-0.23160991058548072,-1.6206916448911728,0.24050706124231552,-0.3237007944050975,0.7627499492747689,-0.47572844971897393,-1.4595087161137386,0.9891686474661598,-0.24621960455368175,-1.33281141795142,-2.0843817983228385],[-1.0737596919300731,1.396438594916716,-2.3988914389817335,-1.5217034178964743,1.8090666175010426,1.0502483237779414,-0.5868478704519637,-2.991748424552482,-1.2636333900786945,-2.462140341303507,0.29871760282431575,0.8441726298171035,-1.8340259086996553,-0.30111673744146744,-2.102303853507291,-1.024589450480045,-2.8638790337982325,-2.1364933194438653,0.4004035919441121,-1.9721321809829027,1.122369118319541,0.881644627810919,-1.720344422196076,0.4900376116039339,1.9229781086914521,-0.1332754420316518,0.917015050565419,0.7297122314889565,-2.227370804003996,-0.2763873241417254,0.3889920955925293,-0.7492360519583041,-4.0598893449478,0.09023254532634936,0.7090604458711633,0.35177301355887497,0.450067769314325,1.0841996221152146,0.8925445867225033,0.5234702545083477,0.11474736649708113,-1.8619065783510997,1.68964963206403,-0.002013919986394508,0.848057916420245,-2.831025154109743,0.11982714746923179,-1.5462074274209259,-0.8159988661688251,1.4163876806181859],[0.4462550598623924,0.5889532311552556,3.6075174857394545,2.3024933103918457,0.8437373744938056,0.28178941700116045,-8.705322662445646,0.31452779470152264,-2.1993841127526044,0.15448196085910068,-3.159894347114694,0.6237811929982673,0.38949881829967237,2.183830253486309,0.6074322559660664,-0.7926365858175585,-0.5590370347279329,0.20888571056014454,0.9750381148834419,-1.7687088604676071,-3.5895173565425345,-0.8631079017719181,1.8251222972169254,-0.7256442349503762,2.779776617077748,-2.3320705286821397,1.1744186340729499,1.3136140201729951,0.7306105831859867,0.748966493025661,-1.129557865937519,0.908449887631761,-1.3830874583734833,0.9166095140749145,-0.5099100974084221,-0.8091495047234588,0.05101279064368812,0.6521895475981213,-5.319190000887904,0.721443742827778,0.010731589079365184,2.039915305354479,-2.4361194870762164,-0.24050621276701376,-3.575068771188453,1.5688840816644871,-2.436995248194023,1.788202736290885,0.3897099371970512,-0.7009065596979864],[-0.009596593271890589,1.5853832968299977,-0.6176077540979347,-1.5386414645868913,0.3142164016733295,1.9829736239608773,-2.348219359158114,-0.652483631164685,0.38971116999087557,-3.068428839825499,-0.11602731582115919,2.48032598698885,0.4224596479709553,-2.5231403712954044,-0.2645553971659056,-1.3499139968782592,-2.8399064817204485,-1.8100043181296819,-0.6973513150549743,0.9546325125450917,-0.28573676105559404,0.7154719021041667,1.9835830661190113,0.6851166018307777,3.9407396263130106,0.4007016214682004,-3.0366573613924293,0.6239602453832861,1.3324665164558833,-0.41124368210069745,0.8232953635522833,-0.11777643940363518,-0.7600124009274115,-0.18118631981620925,1.2415802495735695,-0.5932326236538259,-0.026322490931495166,1.56134815152007,0.6192191481341821,0.35347537370492277,0.11026486222587263,-1.6620669620980504,-1.1670929253021052,-0.7219880595837919,-2.636854373269613,0.7723177121152346,-0.607971868534025,-2.34706781755776,1.7012785936243007,-0.41193135801845565],[-0.5289824488193595,-0.3746430964654961,-0.9970629381603333,1.7255424822040077,-1.9944383632594787,-3.6919791598868916,2.1254988567478987,-0.6035372647605008,0.20661560521446007,-1.8472081598468273,-0.7836734255134457,-0.16362739360546516,-0.041568269351020815,0.3483915815484749,-0.08435745087276716,0.9213700161640659,-0.37630617076804646,-3.286335289709576,0.942012295723069,0.6398359029321068,-0.7085046739128771,1.9261817684689853,0.41448657210097195,-0.8925514417743952,1.129847890270184,0.5276641285064443,-0.545938911790784,1.3424279684762248,1.2144110409552746,0.4712534454486271,-0.2984797797042875,0.8494345315578798,-2.7889623283897196,0.5020179721693176,1.8485022083934215,-0.6877876697212769,0.3840660974146271,-1.0902655992306072,-2.7304038359039464,2.829130039318742,0.3482886304976534,-0.3720332168910857,-0.6558277019018243,-0.1692645932581378,-1.7860610258467997,0.3118813294694587,2.109054932082237,-1.3777468954869763,-1.0852023692029154,0.7135730196555674],[0.5485450680037052,-0.21199624320897825,-1.081930292825696,-0.8100596675298829,0.3858231168618126,0.6592507496689429,-0.891176383458574,0.7270818399755952,0.8003227532363235,0.5093450405073905,-0.19198945626994507,-0.5748154705821317,-0.6780134064291222,-0.45017822511620487,-0.9427411410036622,-0.010810691391444914,-0.22093143678998178,-0.13339833747808805,-2.2090006028186098,-0.02103476176964121,-0.12325583897573503,0.7536456347455759,0.24430894410524487,0.8237921953041808,-0.7441929994177714,0.5240351618131354,-0.20378394226098084,0.05368109975672297,-0.5754912447616083,0.3680817044569501,-0.5164767901331415,-0.010019187823707011,-0.8796058153528058,-0.8151274069732207,-0.8492265008985147,0.30191192399502714,0.17923480562981844,-1.0196244805812336,-0.6641341411602238,-0.18531560729517346,-0.12264134458385854,1.3607061027786143,-1.249986336528472,-0.7534626361812317,-0.539763255231605,-0.9850288323186588,-0.1083755302932093,-0.006428985835884248,0.848637246359188,-0.014599969046712609],[-0.4129904620086129,0.2177296469361806,0.6861064684816864,-0.7950172156634906,-0.7255045303553157,-1.4781870372601433,-0.8839385863232414,0.8826644241131898,0.15915699174890752,0.6406579959469934,0.25611141096242546,0.032261894753125686,0.627592487298982,-1.1284776566032806,-0.390646727108943,0.29476986384612536,-0.17478289078525866,0.6560547269973969,0.17075774696612778,0.541458362591246,-0.8470793578334547,-0.2622987603787466,0.12515890067515273,0.021440119480246746,-0.319600174612386,-0.16042659653297855,-0.8230171399375287,0.29513983275149147,-0.28037627298345913,0.25789087871503197,-0.6205290668468117,0.5895215320760891,-0.26782369704932457,0.01265357560369404,0.8835163499334964,-0.49627409035868764,0.9807562972393341,-0.62086904911202,-0.8893468914042802,0.18500360154134732,0.109947831489791,0.022103390044894866,0.9865041848002744,-0.2731266075372611,0.7106021725010508,-1.3467650976617913,0.688240289412685,0.9042913117428137,-0.3814135852365931,-0.8338633108950912],[1.3700877496490507,-0.6203523885387016,-0.46566973559995367,-0.3260872167007004,0.16164762142552605,-0.08643612812657486,-1.098308957770769,-1.1896862004285884,-2.044403165051652,-1.0072272900655708,0.09281646116379147,1.0156832939048566,-0.7766968707858336,-0.6036715384029832,-1.548180151398519,0.6178232746266872,0.9090352609278602,1.0237043241689747,0.8451049958385081,-0.09831935280648076,-1.295762826215036,-0.43371086528096314,0.7440639416347943,0.705790236015834,-1.5456062836235698,0.3268904163989927,1.3586326067938366,0.8258730332784131,0.1570195633954438,-0.33032449945642933,-0.8566130472533976,-2.0976876947672847,0.6159820711872438,0.05408359245087843,-0.2942436194372846,1.0598490353908896,-0.15572279212427945,0.2624721683204174,0.030799182852232914,-1.595905827949991,-1.4086556305615843,0.021207401327842386,2.1417880777696285,0.9956799195502645,-0.5048895152109087,0.33591425388924034,0.5600943232980058,1.4321896309512767,-0.06258705835356534,0.14705442328967022],[-2.1751191314781355,0.15387937713871003,-3.8178644344657435,-1.0123429214839976,-0.27544115501732164,1.28253605179488,-0.7647625571301903,0.8295416776314464,-1.8449111619216476,0.45467703093956946,-2.896543025205803,-2.2312656944258324,-0.6066878618920053,2.0221920749603046,1.1092214114736783,2.3968075546892664,1.2993205561035677,1.1768014761391,0.25686636607335506,0.4800906878214758,1.2767973815802232,1.6920298336852393,-0.41821733775609504,-3.3012640222537972,1.138675929784025,0.0479174799227902,2.4475295061789404,2.458911711255668,1.7305148884171626,-0.883035972396628,1.5731261441795477,-1.6225824325549327,-1.4995093611179242,0.5771854890283598,0.9918438900292103,-2.362561489348706,0.5754662907462789,-1.0784481267500994,-0.6704811756117075,-0.26589230539105646,1.0982410211198308,-2.597000369996654,0.8752354329222127,0.12203735042986082,3.041925479629818,0.06227334072260232,2.5896403886974872,-1.5642888508746864,0.9015059701298461,-1.4987166759943449],[1.3455391249666993,0.7078190293591146,-3.9514127366790928,-3.2568045736436426,-2.6183210066339093,-0.4171438612761558,-2.395113597384793,0.5223908461428493,-3.4105435316075434,-1.336445404340011,-3.1607658004360233,0.44118640681399984,0.8863523710904717,-2.6952644840725615,0.7375604671880847,0.6455625784069023,0.932890696916686,-0.0026768232720617547,-0.2713567677529441,0.41704348885439596,-4.1989477818869725,0.6325070265877054,-1.0953683364835536,-0.13024889872209383,-2.2647572213251266,-1.9576657414806815,2.1991960643064044,0.013902315057349778,-2.390889460629965,0.35946802452132576,-5.966474161200067,-3.360304497092423,0.04944003681990382,-3.3173023921971545,-1.5629524391808785,-1.4570422340883387,-2.012144487506442,-0.5307075365668935,-3.3724628686016476,0.11715378569089162,0.7325108674379174,0.8042651578271233,-1.472387775215998,-0.2503192634992808,-2.501579847158452,0.30993991694950845,1.0890937489155286,-0.9106239471019141,0.8262939810259842,-0.6921253943829797],[0.9075767607078558,0.644573602940698,0.8492625162265609,0.6932199977825775,-0.24796925974124337,0.6981928832375563,-0.004652588374210968,0.4225673828384909,0.7926345135336993,0.369921601679489,0.4078002028851467,-0.5594754223352871,-0.5846356197665405,-1.0891926102089893,0.7611457614722985,0.8493618632122346,-0.08751870911836243,0.6547436750785158,-0.45021301190216906,-0.6796367917155735,-0.3276760666949217,-0.3235704489251723,-0.3708477440867892,-0.662598466020371,-1.2079118942749174,-1.0341282594429015,0.7504859142254149,0.13099903680845384,0.3492404966390405,0.630242472757495,-1.621772825655777,0.07005984759305747,-0.38980183369918897,-0.44125856358286586,0.2557094578200528,0.7016081744780538,-0.39447794528087854,-0.10707594766787648,0.2243239180397808,0.481367001184737,0.2656263997716362,0.8717849777249048,-0.5679984426135238,-0.7133086159668458,-0.40286285620175394,0.6221692109796665,-0.06147713503462116,0.7605177895495208,-1.268517940598991,-1.002692656049599],[-0.17676366063417265,0.2832114229752199,-1.7536310081365922,-0.408806639357579,0.9486589245516348,-1.018198974524111,0.7418793002089538,-1.2892839939859408,-1.6831249602038787,-0.11616814869999399,1.9732434576181157,0.670259095283263,-0.029881808421479028,-0.6484804928562575,-0.5989318526071225,1.666834389389862,1.9655291609477568,1.204130759789779,0.6082441664030295,0.05129118752786896,-0.3070731247828129,0.5452446053342289,1.0850333404848205,0.3810744092626903,-0.029631395131472435,-0.5481215821861333,-0.07997671808297188,-0.14733198735508063,0.4577737815271019,-0.3380128184626758,-0.01248828677958847,-1.3268372075969308,0.3091490251185767,-0.4310184084692202,-1.7713775889250711,0.6661567423734284,-0.6472317900939208,-0.7253534589938324,0.727464433168763,-1.2670854328084256,-1.1949480288439573,0.6662184427737455,2.020559520803104,-0.18528745965669774,-1.3184467850690749,0.010975056540583441,0.9129883302083582,1.2674785264835424,-1.4236167111276976,-0.8337568461273397],[-0.7761640525988384,0.9209891390505429,-1.2183165166895356,-2.0153930838900282,0.28610204331354405,1.1501901789110303,-0.5381395873565616,-0.840041035410953,0.7754460411939557,-0.2301726683839585,0.7535302894738047,0.09385427024278095,-0.3143487971001404,0.9834583595201677,-0.37127294332570626,-0.8687721793119146,-0.2968802876573057,0.543870986502497,-1.415158667904613,0.4524691796432431,0.23102948462507658,0.5214475874304062,-0.22261437854917523,-0.37425667011722863,-0.928049631172019,1.2071273021911364,-2.3425037281585457,0.47070540317864573,-2.228584781166501,0.908587395380585,-1.8947525135176513,1.0204865800280885,-2.601172173545351,-0.3995534430083128,-1.9652200414499625,1.1019236460242703,-1.5424635691782167,-0.1459530158366264,-1.7405373367770918,-1.736693411458847,-0.07997395546238308,0.38496779082430843,-2.28005157590463,-0.5638089012000084,-0.952135289946928,-0.9568726356638748,0.047076166373917386,-1.3990181971437805,0.20856682164327703,0.06409532485372611],[-0.42761626795968344,0.5943800773776947,0.1622199970887772,-2.103731004959424,0.30375547079711923,0.6010290768437067,-1.2641427570132604,1.0649934916345714,0.8985051628783939,0.9137746201675551,-0.33920352543617627,0.05809843741367399,-0.3824145479126975,0.5258283354967898,0.7139266840046203,0.5803820498364153,-1.2759025741060503,0.7356180573369148,-0.026067181229565257,0.9404259316589613,-0.7837608391346701,-2.935145390631762,0.7911912365395768,0.3999993059218013,-1.224092850173369,0.1548893653894423,1.4774308449256612,-1.6314541570892909,0.5905634786190385,0.21374608967359252,0.34447705672843926,-0.7775517866928395,1.1476155000581998,0.6507514716555253,-1.543227181824437,1.0361458092419629,-1.3856655490390515,0.2167427997642914,0.1170197693224913,-1.6371278276479122,0.8432947220669788,0.24010087846128614,0.5921864363153814,-0.2195482670602672,1.3849852260548525,-1.4910377668169357,-0.8099222411633497,0.48108980184545796,0.1746626688787264,-0.47039375221820506],[-0.4712115151782631,0.43925115923172187,-2.730338386045563,0.04357139542423609,-2.428961965758983,0.9105418749817155,0.6364077995788474,0.6440327271843059,1.1305393608232042,0.8872972543611963,-1.8237253711480668,-0.802132526508928,0.8955628791306753,-3.087527623959426,0.43967790827764036,-0.3694869259769115,-1.5788445737616776,-0.0307087802197321,-1.8089728351138517,-0.8144045819074422,0.870104903852097,0.2716987736611521,-0.3941760695844875,-0.3559842473356517,-0.31208683868739484,-0.8816634803505372,-0.1568577217828056,1.0283960427594636,0.25604615901712785,-0.014119194895762638,-2.008132173365796,1.4295918412495985,0.6585974830654758,0.14703315092776445,-0.9263269086618424,-2.649114003468417,-0.524597527095817,0.32504542091166666,0.7855541580280158,0.8938198369393431,-0.05295855832067532,0.0013197793710097469,1.272887289077714,0.20350260543431567,1.4406929516805256,-0.82955106549869,0.6260208439021797,-3.16486309198075,0.36610813742916193,-0.3826418168308133],[-0.6371080006994524,0.09869165422849403,-1.5157186706268992,0.3071342957770391,0.1797613418048199,-0.39467679493759494,-1.0862959856533008,0.4227521879857811,0.08529716780462658,0.2194583717785822,-0.7365068396512933,0.0771280097307161,-0.6957544606303652,1.1762646217813009,-0.039627716824213344,0.21208724725962902,0.09184606564530787,0.2879624233303624,0.6570168996955502,0.37880464773831707,-0.5170239529484538,0.9907732481878869,0.04851227040883848,-2.0923778682916105,0.7815537487345983,-0.8112017043680829,0.2697486505784021,1.1514175395071014,-0.35830746246236006,-0.7088821371000309,0.4224941703572594,0.4711572873454159,-0.7998249536530164,-0.5390240644423349,0.03999554474719742,0.04605065443948465,0.35349743190862576,-0.2645019256776938,-0.3929827589181008,0.9536306895521772,-0.7391625837140917,-0.06542393085308441,0.5637518522631888,0.6791088613318282,1.2604529241561717,-0.5834155595712265,-0.07979639802358643,0.3646693818561071,0.10527298510208273,-0.5461797928056543],[-0.1488624520953753,0.28318932850638057,1.0762481742480667,0.1924929033848271,-0.20105466896165636,-3.695968759980966,1.5689818377798397,0.5565405465704597,1.1458591808906995,-1.9210126601688655,1.2442910169276284,-0.27559184962922456,-0.845797534784876,-0.2850449897461395,-0.1453297518954642,0.3767270390786538,0.5229875244358311,0.3830676055556282,-1.1974547302255627,-1.0109834482626077,-1.0506516595819773,-2.609998864205436,-0.553221145692508,0.6461528945474558,0.6343862311324769,-0.08970286348911514,2.530553216082308,-2.5861300992183596,0.6398296619787722,0.5906863376652113,-3.6665406437281374,-3.6642350751589885,0.20485761378829484,0.3696103693874686,0.1510952565627376,-0.7723024264187887,1.0192213974373086,1.214671456298121,-0.9125104923604772,-1.0693026420877687,-2.655089084869524,0.023674482135237738,0.877715698803151,0.1892781115893178,2.0573030339349274,-3.224301272986565,0.38167121164060314,1.2255375446289116,-3.741934233069608,-4.294822417211277],[-0.013769959755773106,0.13740974265625,-0.3718887572635429,-0.7290758669768862,-0.26039080316640356,0.48267927336577354,-0.5425522847148874,0.98762666672124,-0.26081432439065916,-1.2358237148909412,0.010736679589031937,-0.3260635432305564,-0.6970724915130626,-0.051473771819816064,0.5250367662122013,0.3176098866100461,0.06829713790035807,0.4475612967318245,-1.8469169294541496,0.39920675291874735,0.145958712018804,0.38964097519580343,0.8951670196669806,0.028330345099889572,-0.44000338144003054,-0.16642942691242898,-0.9537564552528659,0.5050039732970812,-2.2822879915718275,0.24395248570412492,0.08733694239512754,0.7872325885432448,-0.9105005102247928,0.47904272390104663,-1.6262665549461874,-0.5688828937969715,-0.10100754377049945,-0.8441013156808297,-0.6363859539552924,0.2730875799666895,0.6698426643520877,0.3541330407808809,0.37584085141163587,-0.5965193928606894,-0.7773462702352788,-0.14565496998924235,0.46831514319223844,-0.6184287004039177,0.8922201120129495,0.2156763112403063],[0.8071311734491097,-1.412734666920348,-0.5849237031993089,1.0096367414046306,0.12662967873171296,-0.9334320984437294,0.6670571056931485,-0.37228639780814715,-0.08843925455831322,0.2607731327520862,0.8180499365453023,-0.398833225627369,-0.41080902941704756,-0.009282555260366315,-1.6205110436589396,0.5761183395797989,-0.5798143623533835,0.23613817269143902,0.1802135352317453,-0.6021209857646139,-0.0068743183177961435,0.11720173950232785,0.22216199597463804,0.5044818555304861,0.7372823855189801,-0.28663259522593765,-1.6512519393162894,-0.2804715677770025,1.1079199841848675,-0.5160223364674575,-0.1761464920046248,-0.15793105739234856,1.175121790798106,0.4101333109492289,-0.7694660039236453,0.6837268757761642,1.025382347735376,-0.8681560917356561,0.9395231514250708,0.7625701652077309,0.6372281176495324,-0.967372278700359,-0.3426479168833748,-0.4317609770389245,-0.27207813882363496,-1.43077298623749,-0.933933792839902,-1.2202568112647318,-0.9448669183766959,0.4634976172533407],[1.0498969020214628,0.4698500790118021,0.6725050773931049,0.4079747221527151,1.0291380121970928,-0.06599786514761528,0.02416061653331974,-2.516119089343137,-0.8188320853029103,-0.7105508049524814,0.6649025606007802,-0.21677925480959617,-0.06779381803922568,1.3979419949840526,-0.06540358713508443,-1.7954504716337167,0.5061581168228199,-1.4486208244329537,-0.4259952215937456,0.23625377703543465,0.5778920188369628,-1.74503086865818,-2.1086355922889584,0.6511695700978539,1.516985324302026,0.943592229598863,-0.7916558626608764,-0.73439422478052,-0.17001836441396365,-0.2926315672113044,-0.29279099218231097,-1.1539714920805393,-0.5464182905545231,-3.52067322225261,0.6126220537427512,0.33214790441572095,0.07530779920617545,-2.3036554351971548,-0.7795118751104251,1.0887491452782843,1.0655449482958586,-1.3516783285856424,-1.8249607588163776,0.39938080187721964,0.1930156655734407,0.9974446350215844,1.4217685555064485,-1.1316191019173873,0.36729084699062114,0.458923365002611],[-4.13983007065783,-0.5987319243886764,0.2594949628429669,-3.412457877987828,-2.39832213286457,-0.4334875552917084,1.002763414975869,0.012064546013642654,0.29016723463952737,-3.4521325716108597,-4.082892981256291,2.1869536694529845,-2.677398617864069,-2.290326912667939,1.1649941914471063,-2.1333683495007354,-0.9723692709871871,0.4886257371385762,-1.5995663799033606,0.7053816158222701,-4.724378436444601,-1.2620698088403584,-2.801736376592918,-2.1817789649331214,-2.0505278160806806,0.16323203469164044,-3.096667095065355,-4.581714259154798,-2.7879499240230436,1.2526243755021502,-0.13579909204166332,-0.870459411030548,1.2995021578778478,-1.3776292451914856,-0.33339650523501374,-1.375921045956651,-0.9075442886937742,-4.868437632581948,0.5365235255121421,-0.29214482566781835,-0.6323147234158716,0.4666415184407563,-0.42687829930138965,0.7180567670499843,0.04760028403151205,-0.8374378836908846,-3.8972744553815595,-0.5875933076703845,3.4083335724955495,3.0611031942329743],[-1.1574505148740377,-0.4552566207349308,-0.17508046201576422,-1.849785206657363,-0.2576516498601029,-0.2134263353308263,0.20250826185881882,-1.3450999267880515,-0.7249378221424153,-0.10231194626956576,0.675880800732073,-0.3862829705965823,-0.4257093760490167,-0.042438406279692115,0.577075703664237,0.39306387274937143,0.24068555105521974,0.8891006624518755,0.3293420763085764,0.3187170121757577,-1.5506481529859972,-0.9084940698798099,-0.7448745285030588,-1.9315915881595975,-2.6577976142213373,0.2855356021617853,-0.07212284188137486,-0.3121313773168884,0.7448801062913474,-0.4203948346106756,-1.096002066760802,0.1853450497017949,0.09347774622132843,-1.5192179769503338,0.20182514550969033,-0.24275989430543543,0.008111622625706673,0.3360553441339885,-2.262933800651172,-0.6400735687092115,0.6311339952260407,-0.5850741736619847,-1.5056274563237675,0.2679840063734476,-0.41464801506444204,-0.3840598739031036,-0.6479251672713092,0.19064890847741198,-0.2688011658739269,-0.56185281261704],[0.6207701081688882,0.7650493389709535,0.7646337542837122,0.21858642076878257,0.9419458136895053,0.12161344048864696,1.329373070897589,-1.5962197533465856,-0.9135267838546104,-0.7161430292102295,1.4204090390380846,-0.7040561557513295,0.6967030581291552,0.717111550552013,0.5472497829956533,-2.8403460279940336,-0.6365629684588345,-2.5885028410090896,1.2233325517416034,-1.2867537818335422,1.1061870756709913,-3.347600087576425,-3.3728668054183273,-0.42049069904994885,0.19321302703790225,0.7823212662201535,-0.7374404972400151,-0.03677420227009824,-0.07066895947813201,0.4898298181377562,-1.067170678646913,-0.6621034686508955,-0.1217981454157611,-3.236665632440496,1.0977443357511103,0.9881579923734898,-0.508790280215705,-2.2752277143399264,-0.4842661376232737,0.841368578613631,1.0571508848769438,-0.9161173879113788,-2.134195455332742,-0.6818838241303198,0.5596517034925101,0.2780639406182524,0.3620216167069265,-0.22180192392705578,0.5056690716752731,-0.1445143550452467],[1.3327930777263053,-2.1261070813232363,-1.6969904641429159,-0.4976172772320044,0.19724877047101427,0.6370110092831126,1.2965756286666055,0.20726330073042293,0.37230127265573704,1.013402089642158,-1.5653392535788049,-0.740645039601839,-0.5482036505654989,-0.4594575372404367,0.7155147584575674,-2.2023609714868666,-0.9970480556147819,-1.8603533212281333,-3.249802448152106,-0.5639060992847043,1.2317635417215338,-0.4563373389143187,1.013936013476967,0.562144630043461,-3.2583309024670246,0.8594932290592783,-1.5497311854254834,1.359468275484951,-2.159898152408626,1.2359371143661413,-2.9933372526646136,-0.17507019934652449,-1.2934553042259502,0.8766467422320177,-0.1746251572626624,-0.20900414652458307,0.40194443965186355,2.019681334214192,-0.06051256411922414,-2.1155549744262583,-1.9245222291269364,-0.7787829187289437,-0.20602183693649168,0.2489503829662656,-2.2558315010773673,0.9844419140807769,-1.1407812381284284,-1.54547218293594,-1.5607717982359706,1.3732407052923605],[-0.7015255036989443,0.9718475385562023,-0.3684736793235269,0.5377164059449447,-1.8125755323762365,-0.7875333114835296,0.5851281271188654,0.042225752569363444,-0.14370226172382985,0.08468130924219412,-1.8783131826948267,0.7531314299524363,-0.5119668754817401,-2.2226171715200795,-0.32008602708175127,-0.03531646701846929,0.3657120198262994,-0.4334363261877103,-0.8513664045963998,-0.870261282895034,-0.2857885510773355,0.8452833165461334,0.8988449513819701,0.39637388558382375,0.22583058108446083,-0.4502040689403729,0.16622151362708398,0.11833943937868169,-0.1822208183952264,-0.5622585987923353,-1.4516546959856613,-0.40233349396823853,0.48170243885405895,0.7244994130219206,-1.669665400994979,-2.59339656869996,0.6733649169505586,-0.4299415433077299,0.7440339962499212,-0.5594870869292344,-0.9090359600701738,0.2727458682809699,0.5986646923776608,0.25317628935035397,0.27394513017045846,0.5796289585153083,0.9021084126147253,-2.157254230223368,-0.5773627647241053,0.8986420021411149],[0.7589889627417474,0.053006070990576144,0.39913789576379816,-0.49111348161735646,0.4735526996818657,1.384039773367224,-2.037771782389188,-1.4608079843835533,0.5299267484379475,-0.7224211925237474,-0.11814844495257358,1.2435872215148431,-0.7699699174854765,-1.1666011523116888,-1.2907564437473693,-0.38461480522277386,-2.6422024023897546,-0.9869478118236872,-0.3592622927015798,1.0124770404818193,-0.14962736272232055,2.0020445477016646,1.9904409920364468,1.7918623540730685,2.5941581543854286,0.507925780783167,-2.767118299551962,-0.603135494029439,1.1414744556102694,-0.3186387113740914,1.046112290263444,0.5780136122317684,-0.8910218058198482,0.6258553971706686,1.2536114746428406,0.4574528863788075,-0.6679823429065204,2.3408342659790335,-0.28073202421533106,0.9936604171516118,0.7535003235552947,0.07164346456663286,-0.04367475045386908,-0.13137812829009074,-1.2965480871149198,0.2521458892718559,-1.1811480817210709,-1.1044379326202602,1.372877154183611,0.9057749218414262],[0.3843790364240541,1.2462561220086597,-1.8576245099353645,0.9065930374815787,0.5331709210608786,-4.884975460057569,-3.166348775054433,1.5749049761471732,1.4113836903546058,2.070709128670427,-1.95580909326159,-4.937855584621935,0.31197240102626694,0.3626865723758993,-2.1305510048604184,-0.5713655268832734,-0.2891163144859677,-1.7797860879169727,0.903773027892986,-2.113388987486983,0.7188005738690882,1.610786773282382,-0.30912950153432334,-1.2042349052611279,-2.6568961161921067,-0.8550559851226714,1.506138322100833,0.9578440720867786,1.2111721862860756,0.8171731058353698,2.963822856807771,-0.17820815677557042,0.15870397591476285,-1.4062822502973087,-4.186473749187014,0.8539627595252192,-0.6101203253003974,1.517586591283842,0.1506269520507475,0.6284128205964066,0.04630370436838319,1.4250855734350152,-3.97026487363115,-0.12263849992314514,2.184531593140286,1.915710882252042,-5.128753314095148,0.5154122842450033,-2.921844703088566,1.2816579045176912],[-0.03115191564311134,0.5141985773756526,0.658817071012024,-0.11729302504069422,0.05780953759836221,-1.0740068713059863,-0.6176189350419854,0.743263084403233,0.6130691088940082,-0.728171078196367,-0.3267169556936892,0.2381623919849797,-2.0594021766759596,0.6841872260038403,0.9384939326686963,-0.9438546928996937,-1.1623898479487464,-0.43709367603762495,-0.7490802918161311,-0.1601069909663796,-0.02970393559288205,0.8390758954443772,-0.30516873081353274,0.14625353744473396,0.002174034612470874,-0.10913851155947119,0.41151913002910473,-1.341996881559243,-0.8800185068896978,-0.13919348429187287,0.3018021129987119,0.8432027661425822,0.8286648394537797,-0.36144519404832953,-0.3896185572887289,-0.9428961792222389,0.5126443983347503,0.7704451302089765,-1.1624160357162452,-0.8743478546958676,-1.105872919437062,-0.44209200259451026,0.9011583820852554,0.09069976355730527,0.2866444441997495,-0.22413656895304354,-0.32712262223878036,-0.3866041698149484,0.4476098714688699,-0.8725189543670587],[-0.6219150885676827,-0.23328903211395619,-0.6440027696445514,0.7674010271504974,-1.9180314569983428,0.16338880485165497,0.13911333564931389,-2.156390383587135,-0.11938530871637873,-2.356839376565725,0.6102631401315988,-0.02811431169048274,-0.5784672575697044,0.870134860860271,-2.8692480148386217,-0.6420558870807318,-1.0620475595750565,1.4820479186228097,-1.605901687546975,-2.205180975416479,-0.9386098100993027,0.5862296008818557,0.8641719981518052,-0.4225628682785187,-2.2443412416243187,-0.2795200812892942,-1.0839375451553501,-1.1591134659190923,-0.7396351578280044,1.0307572257619848,1.3285683604051575,0.08163604183182041,0.8647517730695563,0.03301213165159972,-1.2609650913884842,0.6850774943811164,0.6586523380397968,1.1110155689966603,0.19329129289302188,0.40237071843602407,0.5395519287214148,-0.5056720019660819,-1.0696528156071488,0.5679389291247942,0.9936372878511739,-0.6819287349143011,-1.0248799423905102,1.2381205101648385,-0.39367614128683814,0.20667809759242814],[-3.2313809188664773,-0.03463332691510924,-4.940685412684274,-3.0307187505607796,-0.46040748469459575,-1.941691581929138,-3.8152288539945287,0.05855771711447588,-3.2857372741225213,-4.332645962768678,-2.745826032015622,-3.6844655301397795,2.2434190857264795,-4.460144896967238,-0.968618339754945,-3.7024866500246354,-1.378751169706813,-3.1554182758056992,0.0832674568477695,-0.735933103970397,-2.881021216222715,-4.897113544606728,-2.6706351412340976,-1.4321164472691557,-3.1028271088204127,1.3485830868780244,-5.127093630424893,-3.4813065324185795,-2.454727271008283,-0.6333008287746278,-4.676608655972014,-1.4507608051075216,0.30339695232860403,-2.660344998839131,-1.5227551665403727,-1.5336024808700557,1.6502501860961212,-7.759574390523519,-0.05389834134726426,-1.6686052721117368,-1.4809819412391423,-4.69223052231023,-2.1816407857952993,1.3981764798480982,-5.801327158946226,-2.819009954699682,-3.7861835720854935,-5.727860104708832,-3.183163122853832,-3.731615606510183],[1.521696036647562,0.14738200844809377,0.8738790330212932,-2.1927869106800926,1.8974583447898705,-0.9040424800473634,0.3256918580707083,0.9175787942263507,-0.40377018272232484,1.2013679480643915,-1.786555206396749,0.2894611537066049,-2.7155166489943614,1.142554914351912,0.41037007962480837,-4.139446600009293,-0.4237366716479747,0.5117993693787793,-3.1639337135358994,-0.659102223106938,1.0093061704347233,-0.05386511501685558,-1.7636344949451668,-1.484123961701499,0.5540143228486977,-0.36957693691131766,-0.1550817703878219,-1.7779128070713657,-1.3156519158527171,0.8829062710752317,1.128084014986506,0.992285411154262,0.3720768938892292,0.44660894774096577,0.020004405859690495,0.4127075441997345,0.5149918271726768,0.5389719007586729,-1.011436305075457,-2.036628425559909,-2.0318172283897393,-0.4317912604573245,0.25515505116612675,-0.05734734458589759,-0.5837883400440063,0.9668696437560267,0.35715582775509996,0.6645300697625436,-0.7668948156827283,-0.4658945765088965],[2.360558435338536,-2.214828219857663,-7.035120735703083,-4.43159093365428,0.12552528993033044,-3.4395943430220535,-7.15157542778953,-5.676561474887026,3.0071780662333087,-0.9712079950544615,-0.4272418442402236,-1.666685127359983,-2.1574196718520713,3.7168563850921816,-3.0140417151782475,1.2507702757921206,-6.183655743558847,0.9121526363562881,-2.2318340818656193,-3.493410691671831,2.1445676156065563,-0.21534936045100903,0.12626977396615377,-0.46003261972224524,-3.591095116816684,0.7221335703145957,-0.8677356288441738,-0.8129997562357643,-0.8869494466714195,0.15411614644144397,2.922586739356032,1.8080386622142017,-0.26594406861584013,1.6533678864808912,-2.2263045576343234,-0.8983394246414489,0.7497493748642413,1.8017426398824974,1.5506453219412566,1.5165605544424556,1.8857711689979848,-1.6023319981839428,-4.202948748597783,0.4924246124886007,-0.00616821945959094,-2.4210141740588975,-8.453317421839111,3.018088218179856,-1.8846398812692935,-3.456955762022542],[-0.03277659302738592,0.021639995069754725,0.5978493201265527,-1.4226862741380026,0.5042690227486994,0.780555075007814,-0.6071636772315406,-1.6342264931027872,1.268284271397246,-0.8867844776330307,-0.6526228526850416,1.5529305084598992,-0.3123548128012267,-0.39090424504166565,-1.3381889980335158,-0.01319976317003488,-0.13515564678709135,-0.2894293842423505,-0.5674833637929937,-0.5326782983739309,0.018761075572845294,1.388035450197096,1.5210027832430677,0.28602087667650994,1.3798677898750968,-0.04434466082692613,-2.0985642041597967,0.06456690183509556,1.234545835240541,-0.4481877988785833,-0.6476483237183904,0.4289360123410797,0.353102043099272,1.6913880075909733,0.8601500901476045,-1.5036065492282134,-0.11745532884046103,1.8060494686537842,-0.08712555697277441,0.9512383923407012,0.004677446661312585,-0.9830193356042148,-0.18549747436761016,-0.3929283761178596,-1.9813628814984425,0.08467116332437301,-0.16204927844452044,-0.949407368678634,-0.35336461835219607,-0.9757984495211146],[0.8411419412572001,-1.1176428588386937,-4.7037857181306055,-0.09394763860613213,-2.7760483022743845,-3.044390883608957,-2.9544571968927653,-1.7674631308003848,0.21507714422871754,-1.710496521570062,-2.6381446796127483,0.808355268683227,0.9674508303371918,0.4230941647096503,1.1934854341753804,0.05959193944011004,-1.521838140099945,-3.1211532625502256,1.5364514717117261,-0.34937221403015906,1.312267405010263,-3.6489378742192553,0.9256124620076124,-0.6911248447202265,-2.2036620019602555,0.30303117563872145,0.2621458691738346,-1.340451228012132,1.0262536046796558,1.2581214817672304,1.4290172474078526,0.28460228488350875,-1.4321130812151657,-2.4183068758359947,-0.8089799617611374,-0.7996818453542021,-2.3477822451626973,-0.34917205310914906,-3.8496633128385263,-3.911881342895636,0.9899267362781352,-3.1506539517449372,1.3613708385161811,-1.1501578531385852,-1.1442862246464875,-0.6918178204867872,-2.094974916447476,0.5416484524221049,1.0377500303299612,0.8274607008429535],[0.9801388662249387,1.067710639103559,-0.9881554673153223,-2.0879285092797213,1.0684553446544856,0.3016995886399465,-0.4745202386076733,-0.3525616930406302,1.0124349792493361,-1.8811173366842189,1.1578024074623645,0.8151772331727419,0.8419953878219456,-0.9161459017929825,-1.3971667133371948,0.18299469546513333,-0.8091786481522619,-0.05870487470584955,-1.0276937059250522,0.4151915659579338,-0.24621554580816032,1.3765721147427687,1.1245821148955617,-0.06359019228852486,1.5974046693137636,-0.328795867173264,-2.2855842060169804,0.45347929473730686,0.7773177452477276,-0.6093585078658922,0.6835706186666416,0.6513833788524226,-1.131546218675643,-0.07207325736323497,0.8558059491753103,0.1686518370464686,-0.9593271620276627,1.100585018505886,0.9120701263830876,-0.478685710183235,0.2575275379801291,0.08937355903288861,-1.2630291124634843,0.575190452074049,-1.6696699712837189,0.6877570779344526,-0.8850898061518375,-1.2729886808894542,0.08516051739977043,-0.9100754902581761],[-0.4527256838206223,-1.70388695018907,-0.9539794048979021,-3.4319755803699317,0.813566489739902,-0.4179710852965385,1.6049900666615606,0.7359621008115026,-2.059540472262872,-0.550060470861409,0.1508232199940737,-1.5980924380326864,0.0260973373180729,-0.495380476920063,0.3258506536144412,-1.6537085725215557,0.7992859007375062,0.27088137058297895,-0.48138795537834733,0.870178904451351,-0.023064681325307056,-0.7484088962161989,1.0732053007477522,1.2143462588989646,-3.5822091690989515,0.6615142728687682,-4.536230787828303,-0.7942671129554248,-6.643040036969954,-2.1400389370540767,-1.7737281708580428,0.7908670558959304,0.3865921982466018,-0.7111348422040014,-1.0146242729844168,-0.7583019489531915,-0.37984202077520185,-1.0238871628779298,0.7260166005704488,-0.7661012568674184,-1.7305799564516153,-0.28706126910274543,0.0908236796360716,-0.09899363082181975,-4.281807661097026,0.16754302014741257,-2.94280168218494,-1.1854579288354798,-3.2320139559572083,-0.35309363066732136],[0.21925478404947116,0.5051182793221234,-0.6720029061128744,-0.4057386422157232,-1.1571953701272202,0.9093380021704429,0.03126411935387568,0.0061007288181435144,0.43807090716907304,-0.07120654774100724,-0.16208689702058007,-1.2957737047581384,-0.37670405774870275,-0.19935359476853518,-0.3170269584363446,-0.884794334678387,-1.4239199646110012,0.21522742136229644,0.6531620484075767,0.07544024880784304,0.5768871021897589,-0.09076093595694372,-0.4157160078109303,-1.0034274212135115,-0.9523136090027521,-1.1461854076543603,0.008445082215433858,-0.4527616577849285,-0.18658186381760863,0.8723505021472401,-1.925744792841197,-0.6935730607439827,-0.6234598147588961,0.4534558419366205,0.5365015713411778,0.019295431364381443,-1.4823633312523932,-1.585595598884481,-1.0050471216476164,-0.913172774993582,0.45896752188691803,0.8092522274767443,-1.7390316348150343,0.1209040589209742,0.9404929632233229,0.633214740786641,-0.5448170535651853,-0.10254184698829384,0.001943755664703057,-0.10374825743525137],[-0.8455136446633049,0.4235292054203562,-2.6544785334696654,-5.893425455181362,-0.7571611611598369,-2.6672267962750285,-2.850659287646629,-0.229295925145979,-0.5504273581486929,-1.9826677450658559,-1.014616248869366,-0.32810357190778644,1.5063427128374827,-0.4313367858069551,0.13435030909757031,1.1222381269711759,-0.3266085482157346,-3.1580687690124765,-0.5644013982527223,0.6467774565095584,0.5759569873944721,-3.5283556297406293,0.6430712839192351,0.664804117482861,-1.8473944530698772,-0.07234446115249156,-4.242420217529884,-1.9996207189505952,-2.809390597993485,1.148796547760735,-1.8917309708115952,1.0995754668507227,-3.295901629427984,-0.9321574136787769,-2.9800970083573532,1.0206556565001321,-3.1294557351324497,-3.533280610493258,-1.5930103384701095,-4.655430385575004,-0.8335978477600736,-2.745960816750352,0.5711825434211963,-0.04891386628603559,-2.762619257951919,-3.1249883526094018,-4.120782404117165,-4.743015183476602,-0.22760667608185614,-0.4402249974311641],[0.916009145220954,0.9038524027532476,-1.3641899773437551,0.28998723351317396,-2.2262461266986855,-0.08930039239483302,0.7254688933691075,-0.19892815212066625,0.3972533944281484,-0.4338360984306745,-1.5350883458126967,-0.3894923074615501,-0.37190386223262495,-2.318924956353907,-1.1114721796158975,-1.0182725817868967,-1.064010308257464,0.037158867841007345,-1.2103810333755691,-0.8950206726592684,0.8630390937427392,-0.44295983440735165,0.7439302945811059,-0.25916670839048755,0.19826693057396413,0.3764368750658128,-0.6666648818521372,0.011979506455799356,0.5544346373288188,0.6881881716383041,-0.8474205682442205,0.24928692291394108,0.07748902651720335,0.289230566756074,-1.1711678405823214,-1.2650453192797908,0.24608189037799735,0.13580847282347727,0.1042649712950741,0.8090799697422055,-0.32803965347295944,-0.5623667620649726,-0.8373389998624768,-0.8053294481875961,-0.23185437688553287,-0.16354636498064112,0.7177926077804816,-2.292596652648483,0.3744212984231701,-0.4500786920458577],[1.7055241749741867,0.13124913814021902,-1.3906014144662393,-1.4232444454061155,-1.8443717773892685,-1.494556125198173,0.663663514588272,-0.28702772611970906,0.40242406198085573,1.098563794373149,-3.945266359570494,-0.9974091889412722,-1.4309479439663437,-4.687576671976631,-1.05486003874815,-3.439448354874898,-1.0945400601902509,-0.8903687919199647,-4.2283629327043375,-2.036358034660135,0.24216795589318507,1.439953844138443,-0.37729227057394377,0.22209373525555984,0.2622209700846091,0.22403161952130507,0.8972636977456407,-2.084091981701978,-3.1478836668032044,-0.5843657317288442,-3.0132116018814457,-0.5063391967090529,0.03690526123893873,0.7504435913848061,-1.3028366167665701,-2.982902905678423,-0.22154970221973225,1.7633264354947757,-0.8568776667487435,-1.254828290021878,-1.0497309952042109,-1.3332810448562604,0.2283788882257291,0.7843341273286721,-0.33137572181084435,0.2567282538117642,1.8217758483202768,-2.259294371022966,0.8575647775117026,-1.6788260140254245],[-0.8668140141642472,0.08518987607170804,-0.12770372527103327,-0.925025247361,-4.57607200307091,0.887858816350635,-1.0442749072950666,-0.6155454603535964,0.01627001087353411,-0.9294435615860639,-3.6621628924867355,-0.6148017976035953,-1.4395132911372186,-3.350387335387284,-2.3029787641087314,0.43063234446460397,0.11014685322711633,-0.4828116981310991,-1.4306723197182807,-2.378220940892491,-1.5512308757628246,0.41495976029070475,-2.515434428734104,0.9766766951137529,-0.6851226037353081,-0.4037095155806573,-3.6879427787921233,-1.421472641925987,-1.3266665391435137,-0.03243633355197578,-0.41833422171358325,0.7349755022073813,0.036763974857119866,-0.024485703591610716,-0.10850996235851093,-1.1584547068254423,0.6038534525689855,-3.988522319415446,-1.2287184517724716,-0.09257574744958118,1.2152701260065608,-3.9862203017243436,-1.1508851862048939,0.05995525536159314,-0.9920234315491973,-1.7221765111819956,-3.4382646346785366,0.3316657942318886,0.7022893742739584,1.8927046997672128],[0.26601885514463214,-0.6205578768298212,-0.5749651929242836,-0.4937580145553972,-0.20835916123856021,-1.0445239845063132,0.3064566724355183,0.4443286110749998,-0.7816035495085448,0.5321940602699474,0.9144380684143555,-2.6409314118014398,-0.29288100455278265,-1.0228849919268383,-2.7179700320009887,0.8703534085676664,-0.07890052682951831,-0.25249056606195985,0.05672285033825309,-1.2345852403435558,1.3212894820413912,-1.011458516541159,-0.8283319097951423,-0.5217351759807876,-1.1723990999146228,-0.8412371945777437,-0.84077656253416,-2.8181029435484457,-3.4556962425662756,-2.9776968168900613,-2.9419280724257653,0.006539568287963464,-0.7816387836302038,-1.8275221288210715,-1.8553346349065802,0.8809825823737476,0.2145382026217311,-2.162312909110749,0.26782517483008755,0.6830238876386763,0.6714034791046521,0.8523002183022425,0.584318799985101,0.36408498638473485,0.07686001677014624,-1.4051745536988698,0.006602661558927603,-1.6339408102692292,-3.5313051086728495,-2.8270294967831466],[-0.6346835909573765,0.5110275870496249,-3.7902354000911256,1.9381789898274084,-2.020915303849502,-4.912981000861085,0.628994739248826,-1.950309775600044,0.045616030746074156,-1.1090683517084603,-1.3878585012975304,1.037568151509276,0.033773818667229186,-0.6734993154972819,0.7218027574702655,0.02412522157930471,-0.022758305216092338,-4.725170170461321,-0.42963677131428313,0.32327621596132966,0.24418880365589019,0.7144055550706858,0.6490600210680164,0.11288372281472234,0.9302953733925423,-0.39398850332402585,-1.0828430951135095,1.0331469360951604,0.7734949025944479,-0.6626603936327912,0.7150680468747657,-0.5310568580619851,-3.3236767553006388,-1.1438360436560855,0.6408309500093381,0.714796157122621,-0.13711763333639906,-0.628032813117941,-3.207808377623167,2.171593380228787,-0.3665239770632871,0.47677814236800686,1.0324099391899515,-0.002567426752027823,-3.620233416238718,1.7213709746624757,2.4837350804297382,-0.9465488482816871,0.8302909496818355,0.9475382238876636],[1.520144966547818,0.20606789156795988,-0.836608873914276,-1.2406176928694064,-4.608942279254824,-2.430046811399372,0.07591986063304303,-0.952405661234387,-2.9329768251646433,-2.164249914891361,0.10801643070229333,1.8297928873478797,2.4338328802041937,-0.14710105471731594,0.2794461941377396,0.9255717756407357,-0.21192475135327257,0.1332167179049382,-2.1586899083122773,-1.5642385085023263,-3.3210241216025738,-0.3642078276666469,1.611414278667943,-0.1438827840557315,-2.6877840182733586,-2.1124149753922246,-3.0088022748510492,-3.2503321625288457,-1.0437304231125022,1.673500722182131,-5.06969576473063,-2.3724198788515936,0.487795508737409,-2.314784251760152,-1.84301098319923,-2.2838092941414123,0.3254427168545211,-2.314148686851331,-1.5467349271918858,-0.2668765903943943,-0.2646220569144136,-1.7193476360551296,-3.502124173749425,0.4217534189860956,-1.2578066810092645,-0.3554984233284286,-1.338529023649499,-4.9109490788800825,-1.660516732534018,1.239731265973746],[0.9536684533861963,-0.6684256227245632,-0.0061620156406439475,0.018281096092576336,-0.6156685746146587,0.8796779124557655,0.34164193006377763,0.5147375468271689,-0.6946962688889236,-0.33673378280077465,0.9263800101526682,-0.6994081599939725,-0.2209337604039037,0.599009394183187,-0.127424210047862,0.9917966949618187,0.4166812905500279,-0.06609034633746229,-1.0223451218947293,-0.457174261713532,-0.9583116310194597,0.994287107353266,0.3608078585376801,0.6875703318115267,-0.32691574439093957,1.0152016019273602,-1.2255128670869588,0.4500351232148217,0.44843704944534324,-0.8662223984236037,0.47752969592074235,0.23961367562976787,-1.0039482327715301,-0.013235187758884,0.4119200102435907,-0.5699501421055858,-0.9406047385456474,-0.7603070471550989,-1.2251303047250377,0.5554098669910277,-0.24429273807005614,-0.3874188886578715,-0.15046363742250946,-0.7294303921341613,0.26308095168927914,-0.6233371475884583,0.31886265205378717,-0.9152012875276334,-0.4370846262295102,-1.004617081099919],[0.8893176549915531,-1.7583785845484998,0.2527718834615438,-1.4396078299254704,-0.7376578258085416,-1.311214155604289,-1.833199609910226,-2.634085986174793,0.09608453363985472,-0.8590102618543753,1.4776841658840012,-0.4959299460227463,-0.7912427546398404,0.4395559847569533,-1.4184066599190426,1.5686133284164794,-1.0342848042421142,1.6336948658103811,-1.6635254101480905,-1.3331037795952312,0.34870841525910246,1.0374856505868848,-0.5101656340728893,0.7958858939465511,-3.1536977165118536,-0.5090883078764473,-2.3371339130951685,1.671266530510361,-1.8318501077342293,-0.3325775225536424,-0.6884375252021716,0.3466728262361364,0.7050764558019096,0.9563488635680139,-0.5646208681700162,0.9843372149116061,-1.1222847617460634,1.729372395271364,-0.3388907082842804,1.1897883348310505,0.20006811510611033,-0.683403332599456,-0.7714410321698884,0.563908883140999,1.3707268964876487,0.14290217163006813,-0.12437440721023577,2.2751493934737246,0.9037408227236554,0.5423254273242721],[0.2648562857817726,0.587365769322092,0.790790110944833,0.8426541410936944,-0.5126485902661222,0.34270056409759836,0.13563962309462452,-0.14386355281824562,0.8296111793901471,0.7416843754977703,-0.23841375004954085,-0.44514832537991916,0.3095378400079605,-1.3162895680192988,0.9891754657781814,-0.5108355792842484,-1.0419596267057012,0.21184999244509162,-0.12337605072650056,-0.035321399106239326,-0.982240944856963,0.6338818097399675,0.02310612584577817,-2.6078305070002967,-1.5383189406204048,-0.8664233949574637,-0.6916588402393896,-0.03130240126900774,-0.3318348619276005,-0.4948398597160859,-0.7327464946916208,0.2663786375344812,-0.41138679338999684,-0.24533130719001991,-0.20159908148389746,0.4048071170465693,-0.6887679758993793,-1.4794014430109594,-0.758882862602103,0.26440374643075526,0.8111392437392646,-1.1427787558341116,-2.0600456957217768,0.8001860127580219,-0.2575626806609869,-0.1720194069433057,-0.40589374898749725,0.12457038388772762,0.5715726035080522,-0.23052507810507633]],[[-0.8779100962693683,-0.5081145275630925,-1.3930863652261094,-1.5118150942584756,-0.652668230351734,-0.8270146281048795,-0.15671336791655394,-0.8491668121006581,-1.5418885274501888,-0.8373496742247782,-1.3627522243728734,-2.751752787425997,-2.4729061554887286,-0.4086699240904561,-1.0323895196378288,-0.23920132611591569,-0.9430956213063856,-0.009482598488279493,-0.30401461309597166,-0.716668401860561,-0.9694590940861895,-1.5135542446416506,-0.1729853929965421,-1.4259083282111438,-0.8660319312500016,0.39672173477934797,-0.7222191783444846,-0.7962211232378602,0.5798255093147444,-1.2389287656563612,-0.5577401824148217,-0.4160230609541754,-1.5404964723284589,-0.8474033691668096,0.6007642501370816,-2.388534472087213,-1.6971265363913484,0.3356745206716292],[-1.7751530556226276,-0.18362882199689234,-0.7844821774221563,-0.6745133985514359,-1.4926937592113891,-1.3522000015235398,-1.7642608265502255,-0.5439428947766489,-2.0158625587756323,-0.7695705838590177,-0.7951047275675752,-2.1988526482786797,-0.43547457708495907,-1.2296442851033698,0.5199802664304056,-0.9387631593841943,-0.701611637133916,-0.4217818381824446,-2.2729483030139406,-0.37948473049025466,-0.8409072620425085,-2.0661233602641906,-1.2008252286135792,0.4096632018832423,0.2571948850030903,-1.7821938467650267,-0.9433908778243663,-3.154607576359399,-0.8291493339910376,-2.2911630649973334,-2.2925910899499193,-0.2330720651145617,-1.4265021630692025,0.34221614423538654,-1.4851177702121756,-0.273342976438581,-1.0706101130598964,-0.007324411377269239],[0.3295065197721438,-1.2709479539771193,-0.038162672158005756,-1.0250518956607249,-0.6569030576882056,-1.1002766810544808,0.3661626082241011,-0.7342105517276365,-0.8776000596511958,-0.057804736323868185,-0.19962994223860325,-0.6584456105758795,-0.236552706926026,-0.1604163001182501,-0.22626586910165844,0.2268435625049264,-1.5053463551643225,-1.27772826147506,-1.0019625064866922,-1.35158152321661,-0.44639959437523985,-1.285692570196387,1.3011591936476439,1.6559631199910825,-0.9325797052302512,1.2756065503407692,1.645329254806728,-0.9846228417647724,1.1391339300637566,-0.8397137132082596,1.643791870995774,-0.5870759777660021,0.5873542483259537,-1.2376609243079133,-1.1508096289796637,-1.3304598266468068,0.9166732658189122,-1.239020073352131],[0.39779177786799685,-0.29259750645622673,-1.0271466221751016,0.062147750124853726,0.5430369319732609,-1.3181881850913328,0.07642515071165672,-1.3619253360897796,-0.5501761094851872,-0.43916150856093794,0.3778644918841802,0.21758483773534237,-0.44042722150289115,0.5087124568227087,-0.664072788222161,0.25114482273425187,1.8343126192016643,-1.7398054387639723,-0.5429096991245965,0.30764332627665886,1.339168493401513,-1.2900553398798589,0.29684498753147714,1.640699004755422,-0.8815561316877547,-0.731628872242772,1.688315627392052,-0.7277332990298121,-0.19282243232578122,-0.11802834511794767,-1.22739681926248,-0.3733088390996659,0.2866493863907814,-1.0354205349015788,-0.15067359851358667,-0.49974348340499103,-0.13407105036793493,-0.2806090577351571],[-0.8248270683149621,-0.27660742954295003,0.06820294201327824,-1.2006591121010755,-1.4474787551762445,-0.38209909736411496,-0.5645896964966648,-1.137440679428658,-0.21840246128795174,-1.1637265858987424,-0.1989597547138877,-1.9304997675596787,0.20710218683154555,1.159673414778426,0.3309177042652397,-1.2031206354984003,-1.8774577819761686,-1.1681689923167164,-0.6846724078464358,-2.399410512935299,-1.4002030880255631,-0.5803092222009755,-0.034141063949120656,-1.1242661392575006,0.5240687448243923,-0.360919784632737,-0.733276354908335,0.7302369018625845,-1.159074317393939,-1.8386734357709853,0.8204204415725533,0.15347622126699895,-1.2818305554926266,-0.2089594039212839,-0.02759095279987135,0.3093987698434785,0.9206520805079398,-0.8112223391470291],[-0.09097798956628943,0.009647476583724725,-0.8706238063845891,-1.0985370799970584,0.22726401786678743,0.1189238781044876,-1.3435066783640068,-0.4510508572224441,-0.5751572354652015,-0.7629776990973341,-0.43800948515446486,-0.20496451264105414,-0.5426082801031976,0.20189818958151215,0.7498699810301643,-1.792071953343176,-1.9935999947921197,-1.102735612141471,1.6713605407644985,0.5101396046477511,-1.857926909417,1.1690280435052123,0.13371399553707733,-0.16542332801099932,1.014214761301319,-1.0783203782506146,-0.14056161650798163,0.25098804789509965,-1.4898143143909592,-1.614811376350327,-1.5894253634790836,-1.0880649766611992,0.030006416711747516,-0.2442908995994926,-1.280808604008737,0.8214435597036891,-1.9292496320709211,-2.2741981649972027],[-1.2434980613025708,0.2079137942296273,0.46328743510673626,-0.576698873161906,-1.2329659753594264,-0.8162977734367017,-1.3570670579551671,-0.6005859473359731,0.26776421818088125,-0.08718309377127602,-0.4823879941235869,-0.3214975262291641,-0.4797527327612423,0.22463408271076926,-0.25100657402647714,0.6815539920779047,-0.14652285038207558,1.355118791384948,1.276096538034663,-0.10577997850738893,-0.5617919617323462,-2.02088396264177,-0.33099914031527217,1.1468489839925429,-1.3579526594442228,0.40535824169406265,-2.777654192039741,-0.9554299318021107,0.46421453589667533,-1.0525292088729903,-1.213985068154601,0.8807543456473995,0.3406437159455069,-1.0701950004080896,-1.069720238753994,-0.8078174731925752,0.5303419860909231,-1.4081089479847433],[-0.8271616139873866,-0.6586007552132592,-1.5149747481968223,-0.09410724013970197,-0.11679425486750294,-1.4485582103842802,0.009834274232246169,-1.1037284895003083,-1.5115417518275645,-1.0135195620245114,0.13654446047611668,-0.8173991032933163,0.12568923774094945,-2.172931123674226,-0.3629596953130047,0.8224399676975216,-1.8809318332340887,-1.926232300123337,0.27298416519134516,0.8297802053138166,-1.4270637476388437,-0.29751468378845985,0.41689827408549646,-1.4841376092534975,-2.058772990090074,-0.06765776226180195,0.6306880433940286,-1.8021365822731996,0.5764093129378207,-1.9686650940575574,-1.7210641871065386,0.142893380158411,0.6880533427614719,-2.0534127345881052,-1.5887500426675505,0.18771732816970224,-0.03997904048718902,-0.8345822100045451],[-0.8335406478732134,-0.10999298634169678,-1.2169853204747658,-1.1735120661081917,-1.5525476620278447,0.01752289302361254,-0.5689503970493601,-0.13003720602583002,-0.05021373844689831,-0.02770836270271121,0.2603140293216824,0.487176118460213,-2.055631345182583,-1.318786485313279,0.4831803908448112,-1.7443579816541914,1.0323659418950457,-1.528547315487399,-0.9800947710698252,-1.4989943029630206,-1.8742253872956103,-0.13980203007284944,-1.797137556753955,-0.0820651905893565,-0.9063771761049653,0.020656585526558878,-1.8214318091278925,0.9764416438282661,-1.580102116780387,0.5105093023410561,-0.9161356384383617,-1.7728150879235804,1.4191782750618116,-0.5893965651924326,-1.7822320355989048,-1.643087872753519,-0.16431822819317293,1.3186366101698936],[-0.15295064058268712,-0.7809505534326342,0.13206658397713805,0.3067847906642314,-1.4669603041889696,-0.1194747868398278,-1.200931867540955,-0.3964075691371029,-0.8231910774937998,-0.3220690414075935,-1.2853263470796157,-1.043125736904353,-1.2617254787329142,-1.39261649188779,-0.4016507463393998,-0.072351549630109,-0.601505962729159,-1.5229844138477453,-0.2536766465807184,1.2900406370755035,-1.102696530407282,2.3230562375776205,1.165236202979766,1.2975811684558487,-1.4263423994055069,0.06951832824937772,-0.6031340658606567,0.49221913989804283,-0.30531095176704126,-1.2976806919779376,-0.24335756875957246,0.5208755519825046,0.16278259622696523,-1.1693174770536874,-1.267645774511255,-0.5113417296440108,-1.2143959309257557,-0.44350228500655564],[-0.5323793265416608,-0.4251861448565767,-0.8309800546535862,-0.8239382401304229,-1.001599204315611,-0.14003124335255876,-0.5015696312241351,0.11480742230879565,-1.3949600353604812,-0.9463606490727198,-0.94402842297494,-1.213471966919445,-1.7070721369455528,1.5531413792760977,0.4194529537713201,-0.8178762764768079,-1.3184231625956322,-1.0568420850986306,-1.4072537295405179,-1.9061386697176728,0.5994022416508014,-1.0109432675510917,0.5293737516271174,1.1373450147616528,-0.7304223199233213,-1.425709269494638,-1.9375926503668575,-1.135051723930478,1.3839337316301488,-0.8326613432657702,0.21329294482167768,0.4461474836717038,-1.4678961932869852,-1.032209650021791,0.8353232614013172,-1.6479884359913406,1.7122725380991541,-1.2872561846976702],[-0.3853983592910696,-0.6872083306930242,-0.6121054456629675,-1.1783596274875332,-1.0119574157080546,-1.676928302383071,-1.5074132798513071,-1.2172557616584585,-1.2936229863196853,-0.1065751948520341,-0.4444231071337,0.6609800436864897,-0.7982174331936309,-1.6478646331173001,-1.7137702458377453,0.750483183572008,-0.26063864089595884,0.07806319155523048,-1.2723998653095616,-0.7604042425786289,-0.961542080349594,0.329908982271225,-1.4273304040443329,-2.000788758256681,1.048297322301405,0.5711463711564096,0.4379448996810061,-1.0225288619903132,0.02717502430544557,-1.1117663557953232,-0.8833637287227746,-1.905733400063525,-1.8789564522350597,-0.842071697836027,-0.023972195747170057,-1.9034107165757592,0.3691996952094699,-2.453986391643805],[-1.7949435735789816,-2.0542732683444114,-1.6322646093894246,-0.3980510062066576,-0.6292474424342027,-1.4589968705072947,-0.3271055353546328,-1.1924721697530374,-1.0939076676773827,-1.6196733255639764,-1.7513551387345174,-1.8676126645477438,-0.506575617955684,-1.8623107996766972,-1.9056408425165876,-1.2030090872520944,-0.9687699546008384,-0.31822170820306434,-0.9523138970608279,0.901119974064249,-1.2410830892254734,-0.5463743295100587,-2.5133162815289083,-1.2617769834099826,-0.43898678654760337,-3.236145167857146,-1.0330657644020027,-1.2372695418503192,-0.21506304574952453,-0.7577446839631337,-2.1321864920869857,-0.46092420449610083,-0.2775784416035017,-3.3159814836162975,-0.6497116948095344,-1.6811416927187899,-1.83611178358996,-1.2923628853501758],[-0.08887135190091607,-0.7217928430543435,-0.5214096133612162,-0.17363899830018864,-0.1478549644807641,-0.4644097237795868,0.08383293770323937,-0.7328374935898212,-0.8330097083175422,-0.7258116558496075,-0.25661116034751263,-0.24439766195028723,-1.4731458912919566,0.7753764290616355,1.449582410555622,-0.7596552923359327,0.32409515484217616,-0.23698562345980487,-0.9342784605378952,-1.6948533965011052,-1.4886659581990307,0.7669010489605081,1.183884884391209,-1.3226004548072816,-1.464108088103485,-0.497072225818202,0.06542651291579862,-0.412285486804982,0.7764699183864728,0.6588702245209855,0.5829110301603255,-0.2789729375409791,-1.617877639798737,-0.767805999717629,-0.8069564384181933,0.23812593496309736,-0.8525015303872371,0.22551249042164054],[0.004838587722980436,-0.7039002156640546,-0.6536442124246069,-0.4661981656318807,-0.6079501814679151,-0.3387197069274476,-1.2729602693711048,-0.9506817918086649,-0.7630162950961502,-0.10008461797402714,-0.2541839091257102,0.6032145999174412,-0.8855579174526449,1.1521225390872196,-1.3013050304795077,-1.477417581433861,0.15957938166452945,-0.19596343483817724,0.7534298297869182,-1.0201604165744653,0.5879439343281133,1.6216058953502466,-1.8312568631385826,0.849355268718088,-1.9190875158210898,0.5844015515102989,-0.5638206944100501,-0.41294156231983403,-0.39888590098429827,-2.2413447710018186,0.1412065128297288,-0.9541581936315021,-2.526117152119484,-2.009739547044474,-2.185360760773859,-0.581287922279262,-1.5695539461848473,-1.513822731381288],[0.14403992217589512,-0.1589750828309198,0.07098163766201199,-0.37169270424871265,-0.4680632540181612,0.03553565622846693,-0.7068258668697156,0.06607870846315116,-0.08232065633520715,-1.3266222942231214,0.3373690630361051,-1.1723014967939218,-1.4759357900743697,-2.268249789390057,-0.9758893942106146,1.0286449211370132,0.45603256517074353,-0.589593672970338,-1.8873076825065074,-2.1806802247955397,-1.9020553843240706,-1.5448930502891165,-0.5469241961288817,-0.22230170940687444,-1.7261394302468605,-2.1484008759402413,0.3237528894362565,-1.431831368133419,0.05532633658190362,0.9174833490224376,-0.4136012553830083,-0.9345849084271918,0.46642685265637424,-0.544021823579535,-1.260180833364824,1.845322026042731,-0.8899194910147766,-1.553095586037079],[0.36374730207544304,-1.6266401711239202,-0.7955580563436022,-1.344773246216443,-0.32298274919406333,-1.3940178494632265,-1.1572719630931503,0.1098142300323496,-0.005930690319364027,0.39435535568356717,-1.5892307864667403,-1.2117969437505662,0.6567831253164441,-0.01063734734408266,-0.6071582468871626,0.6518144761728912,-0.8774114619096464,0.886875323240051,-0.9382974960921348,-1.942193718844909,-0.7557603831834105,-1.8119198631842885,-0.5010071838675288,-1.732634449516148,-1.9658462899173874,-1.0453551209117682,-0.4909313009267532,-1.6144929793966316,-1.063615428558431,-1.6479353427215084,0.36522687862584075,-0.6604088259565557,0.44966897952103996,-2.0022738918987377,1.1486547930809001,1.9290566081277711,0.8924181137780178,-1.0179076788249881],[0.11028092650682837,-1.089952564050488,0.3266031393342278,-0.8172352924017531,-0.12248991619402462,-1.1851345087407759,-1.193735459836945,-0.8026709088483805,-1.7806116661812532,0.08952437234589211,-0.5635153431000799,-1.961639511167285,-0.031662691035373364,-1.7415060517048147,-1.0238983425433623,1.1666813090989023,-2.343130759685722,-0.9244523044935956,-1.2547202583500001,-0.7113220985488228,-0.3385740538759046,-0.5198685102494895,-1.5110818672965778,1.5861035718875982,-1.7270144214147902,0.179151705165003,0.5283573856972276,-0.3364051625475164,-1.8489524052241013,1.759275017514099,0.5589719889876218,0.8821558523401384,-2.2309017821274866,-1.5328591691020514,-0.10264288395568544,0.02757369043140293,-0.6412277225345375,-1.3549307319469235],[-0.5649521002155748,-2.0073654035062223,-0.9199790636361636,-0.960221694138138,-0.9879829174400618,-0.08909975926872238,-0.3481388240057239,-1.8937143194981108,-1.2218191412725483,-1.4446448305665724,-0.6506758970455034,0.6187460725717204,-1.323979375136879,0.17584440345652028,-2.3552357549737257,-0.17695897067574293,-0.1481421446767074,-2.27925035983151,-2.279680113553114,-2.410781276420688,0.2972607264088964,1.2400229500187505,0.019360282242354785,-1.415792374409052,-1.1056540694388781,-2.0468110283897984,-0.944802472543034,-0.9191811343393905,-1.4994665278025048,-2.5075181186327216,-0.15765509501617314,0.3667763708559163,-1.336068745913603,-0.9080673543776927,1.4961516796308583,0.5873887599842328,-1.3367705797639169,0.6345762801181168],[-0.4178567757846035,-0.9141836560592413,-0.9905167537409626,-1.0127176148214518,-0.928066328311092,-0.5541533379410152,-1.123456984433883,-0.5689792181728927,-0.7173608210446943,-1.5283032186270729,-0.6245425751067006,0.005966398912060549,1.0794915119396669,-1.2698286221639001,0.16112512858133074,-1.4107420982152694,-0.6501441560754853,0.46334531295286313,-0.6450363543902443,-1.696096233925796,-1.0643735287041285,-0.8012682696189914,-0.7747233678294319,-0.23439955338582302,0.7730238620880207,-0.9294030923590201,-1.4506643984133687,-1.0267998266881162,-1.2185289381436866,-1.9936299132803252,1.2672830793151044,-0.1924294525399394,-2.0926927842676237,-2.032675910435704,0.955088975569075,-0.22800309823559659,-0.9530684931769023,-1.8839597674008468],[-0.8969710866916288,-0.4831857766100203,-1.1965307122734568,0.2957690541230967,0.20872900984124168,-0.1649024417465508,-1.1040939503865757,-0.9090426908416944,-0.4639052679021221,-1.1653917008749348,0.104688168838037,-0.8882029074415108,-1.5472722752148629,1.056351393833059,1.2596158985986614,-0.9236555436605721,0.7952100076858148,-1.8309238547547118,0.4511495683078137,-0.1871554293517622,-1.4426876189268096,-0.032423098745318936,0.5517895898880787,0.3999100543682994,-0.7460602229351233,-0.37156268556531874,-1.9449086825931652,0.04684729158761849,0.12432261123473033,-0.8412034454105312,-0.1841243234151134,1.2155253624128413,-0.2593613255133588,0.4624341060760683,-1.3692229494075547,-0.10130245609976034,-1.2166172202346353,-0.5450904959042477],[-0.2212129888987558,-0.545040787085397,-1.0496935584993412,-0.18050460990857248,-0.7037749159617687,-0.39204895289452313,-0.6033216953255165,-0.8603302652349769,0.21886936075513388,-1.4085966161649386,0.28346687713528523,-1.6192915665694612,-1.6235955066257275,-2.029879171338403,0.22455575196246713,0.5334336957787383,-0.8721667156960465,0.8575744644375517,-1.0747153214895129,1.2265859169758644,-0.2600226500417317,-2.7733807761798377,1.031735585936091,-0.16958455541316042,-0.47081251405762786,0.33816241115313095,-0.09652547385884189,-1.7415257286679524,-1.439880021745856,-1.2149218386655514,1.0490235040368028,-0.6999367066929336,0.8949640184081702,0.8822405562013022,-0.8163075914097354,-0.24001004869087547,-1.6516598092693053,0.03513519507547626],[-1.006781822657312,-1.8427054478631442,-0.4949762730969265,-0.6893681545386469,-0.47955540280316017,-1.5609703679084936,-0.03606819196918912,-0.24544250075508922,-0.8994347859313677,-0.8908380680169781,-0.9316533330722195,-1.8631235086685285,-0.4764026223211992,-2.3137840827356033,0.13898345716205968,-2.0911637187522074,-0.17581726213627719,0.6722350023953364,1.1965391904951794,-0.5462501994068829,-1.6687141706114024,0.6829699853165129,0.41106454942542886,-1.7157166752402047,0.9666823974530137,-2.0415307893570827,0.6788739364813587,-1.556166242187893,1.0059420129989807,1.3673399256561198,-1.9332608914572509,-1.211585372912615,-1.232511463782868,-1.303743907285796,-0.9320525872836688,-1.311382478216836,0.24339847929661804,-1.3239137376026988],[-1.2802044894422768,-1.935747569821109,-1.346268606883141,-0.6507400285485491,-1.4215598853462634,-1.4461998098038094,-0.022365703526759304,-1.3111820084976493,-1.112348829848144,-1.0205126044776056,-0.5819180622020673,-1.9776102736441197,-1.2636293286968445,-0.7707241037483562,0.4303790008666061,-2.1428021788560128,-0.976494680532336,0.5324033742385147,-0.7960122171727817,1.227890952685428,-2.0598471724025824,1.0141834465425867,-1.6126834202519027,-2.606720900399804,-1.1058991742747644,-1.5495561744849027,-0.2708006102976538,-1.9662840557289265,-0.8989123708504629,1.1239044011819976,1.2712796444711334,-1.1082334556579374,0.31908893548283357,0.6837554113939833,-0.5787069593896922,-2.436197551703644,0.5519516742475085,-1.6208252487819048],[-1.1807765047273155,-0.28400152303599124,-1.254510755070722,0.0548718381091265,-0.25903199900424967,-0.9426163601762568,-1.344837314671322,-0.33710875163427717,-1.716577455259201,0.13902519949300704,-1.4092400847822166,-1.9831885565756215,0.9727864297519272,0.40823175812185725,-0.5624013241176745,0.9742257881166405,1.352802384662646,-2.4037734024102964,-1.7830697521633256,-0.03333335496965594,-0.004259133113767728,-1.6877749887386964,0.6043772978536801,-1.4796544115717571,0.8530812876769791,0.5090810256419092,0.5443077591548551,-1.2932081459456504,0.9671100004481371,-1.2276953237947525,-1.5473511789749996,-1.3796781681866446,-0.27994049825489314,1.364256017655715,-1.8478303006952848,0.5188098129642796,0.6544452930255994,-1.6770152778804717],[-1.3864207509759772,-0.30385021597447515,-1.6950191635020693,-1.6596055494468909,-0.525446708765861,-1.025270912229578,-1.6443614206290498,-1.7714251317200056,-1.0444269126976389,-0.8663652969620746,-1.0243951574768455,-0.0953201087058966,-0.3130450223068026,-1.3880510002004067,0.40808587583302713,-0.49318474191440087,-1.7301163048835022,-0.14422194581264552,-0.0781707425749415,-3.326515485084753,-0.8657888507177431,-2.3468355212261653,-0.4987135031125053,-2.39629638335681,-0.5925473718306535,-1.0246763349468173,-2.6030872510274436,-0.19521751437389032,-2.2788160968119957,-2.4370496756973727,-2.2541885542518942,-2.1401554393130864,-0.5530118687647478,0.2778611043349538,-0.82218987677634,-0.839614160788093,-0.4884008124882772,-1.0007528824324123],[-0.7823705958168725,-0.5087688957685974,-1.2675756480373648,-0.8616769145858733,-0.6065320751412329,-0.39371946268401603,-1.6038116960611541,-0.005232977156787556,-0.26506966823883166,-0.24361068764844165,-0.25185977349227234,-0.07311336149017307,-1.6462298638847264,-1.0821053734311843,-1.4804139294284073,-0.5457799319439383,-0.7342793684108673,1.5697050694691976,-1.1158849465017702,-0.0543466989001348,-0.7952381566286837,1.067412154020223,-0.5078550413955685,0.5653451423728404,-1.8762185354355116,-0.21701935495423755,1.162114417859871,0.7622121379492268,-0.9018596412268284,-1.8283566320193438,-1.6816975229695634,-0.9119070324228931,-0.28335015952384857,0.3671468837788086,0.009133675717634723,0.3062834003476119,0.21405929426057332,0.20094439986425444],[-0.3589787547608064,0.1369926766079271,-1.0208447318962037,-0.9074478822685773,-0.0594025338632104,-0.18414323528429818,-0.1087673917378867,-0.3651709911391096,-0.7492663061113701,0.05024067631582912,0.09030801674805214,-1.3799362998574365,-1.7632995164375482,-0.5085253882644702,0.033175365073918196,-1.1341346794698839,0.93280905258568,-1.6443516478838776,0.5080303602924536,0.8064636942412536,0.4268238736068589,-1.2184342654901075,0.2720183090431798,1.0299441267861398,-0.525174117353773,-1.1309290803722425,-0.08864317328414864,-0.7050162726961926,-1.3454229951116388,-1.4284676240310372,-0.28423202509515194,-1.2318797388613898,-1.4169765234506202,-0.6609662413794989,1.400585406237537,0.6185350998601762,-1.4841003742584977,0.013078809450939663],[0.3168867575101896,-0.6454400493501862,-0.9994292656582398,0.650545563621502,0.19897865663031156,-1.257653105095684,0.06646048849866892,-1.2147935476860776,-0.4789984691372028,-0.6121291147703146,0.1729355840023948,-0.5488102841379293,-0.46056759247176643,0.7067212714192027,-1.4178995976456557,-1.141406822000907,1.974643868656172,-0.7790494893898005,-1.5406220071891203,-0.11990134936007087,-0.5920502318797,-0.1612207797184238,-1.8546366286781344,0.684161869195328,2.5209191653400165,-0.6957075975403423,0.3237892570123449,-0.3451255776636832,-0.014482359924421434,-0.4133241694384875,-1.4075402074832335,-1.0719098156097215,-0.8700172497512136,-1.4792496516803484,0.13977264826369304,0.5238205875689641,-0.10757051149481986,0.04328205796523467],[-1.8753142321789742,-1.372987161843799,-0.9347941571621208,-1.4287072951939699,-1.7497353847700758,-1.6611834876317215,-1.229123967877438,-0.572380701981046,-1.350559009334271,-1.5047164183932351,-1.853048334889696,-0.20689780435633537,-1.599000719340125,-0.10453154907483495,-0.0751529127166109,0.007465808177369644,-1.1886195681536151,-0.5033526819987085,-1.1921786738885491,-1.0312874778986771,0.2762893390250763,-0.3374011430857502,-1.3093457188446085,-1.7710519011146433,-1.1698767310539286,-0.7785378712636829,-1.9174084113918164,-0.14198814363095333,-1.4010361193076175,-1.1848918960276726,-2.464704155399653,-2.578909070871698,-3.061376895223112,-1.0900022977127442,-0.4530997216282335,-2.2559180041998825,-0.10281492575749297,-1.4311945945995235],[0.36698397950261913,0.08536936708800318,0.10748843265567744,0.4053338379480111,-1.6178962816387787,0.0644525194567022,-0.08679963694920301,-0.41213529252662534,-0.06337653980651392,0.045903662257498035,-0.8860888296915722,-0.9122909787332261,2.4976288760861602,-0.9035287886242113,-0.8434442991210795,-1.6413878104681372,1.0719726978588169,-0.7308371995186769,-1.3316146815260261,-1.1271046268671774,-0.652364321437587,1.8564169965485122,1.9121007004087416,-0.9420435928949749,-0.5171151739683032,-0.10555363927270986,-0.7594406363360892,-1.2685704819228893,-1.4014236992859264,-0.3185605602470264,-0.27368293971568713,-0.6975708450760872,-0.7266640992399773,0.4577211334755346,-0.6419526986310475,0.843526761544256,-1.337633539917268,0.7955237207966145],[-0.3630055673982669,-1.2494872837492679,-1.2663406550850582,-1.2210848014428097,-1.8183734642260454,-0.8053609611171413,-0.5145054363547955,-1.7428592434703793,-0.18322927083257057,-1.4546161131256659,-1.6780408894915175,-1.631194702185557,0.1583091971446745,-1.8841857043162835,0.539741086134192,-2.4348535616210207,-0.5101550519744462,-2.359092293499408,-0.45933395017715023,0.16002415282616278,1.0577711338255118,-0.04539072889013181,-1.696551187198534,-0.39575242199596,-0.26245386805250004,0.9390889527293986,-1.0210190555066978,-0.8444338292878822,-1.6501608020672593,0.5730410712386224,-0.09580470939325286,-0.0737005519826414,-0.37524193268535005,-1.062775050581877,-2.6542958112595056,-1.9489514409423887,-2.662277761700356,-0.3045326055940559],[-1.75801128288812,-0.9858289598301904,-0.005100717246751444,-0.1439003011109159,-0.4038474360465742,-1.8779364552191997,-1.604175860946585,-1.583176084172805,-0.31801409996615776,-1.4383144223181172,-1.0364740895492714,-1.0550117377378003,0.7605199775991479,-0.6357938172722941,-2.3311010370883154,-1.3483807296365173,-2.5523598884862073,-0.3593373130491646,-1.5556592216687912,0.22185198818582427,-0.5349889419263025,-0.2168752811409648,0.24312447412340885,-1.3479521517865025,-1.8212552444822097,0.16029272935272038,-1.5603731039190232,-0.9749744400692129,-1.9742080534798532,-0.014999910170374012,-0.952731901301879,-1.3191475219219404,-0.5514149947381546,-2.520236798658498,-0.9756887411697557,-2.0337679282179555,-0.1675235741725477,1.0656870181196112],[-0.8739971969796675,-0.839289817821276,-1.3999910420983857,-0.31320468349481917,0.17230447006466182,-1.3486849235731393,-0.5865597277233833,-1.1941297990762256,-1.040704193407591,-0.4779145991809661,-1.4061773938898783,-1.8734197400443047,-0.3632789987348072,-2.0781944331995326,-0.738114367702504,-0.19763176165674243,-1.4439803540218574,-2.0890155469500202,-0.11073921570152911,-1.617606530889889,0.7139538608458207,-1.3726091693222666,-0.42623722316884965,0.2679121601344658,0.5708845083782771,-0.47438153745651995,-1.2027789635187467,2.214417102441235,-1.1376783006493512,0.8533258734023257,-0.6028716317413674,-1.5058293615375349,0.7927964446702942,0.24720139835748717,-0.667033662009593,0.06734190955495618,0.03031841245786346,-1.1085838937643968],[-0.5491239187629929,-1.336429111611375,-0.4642129252887439,-1.0237847222335035,-0.7349906833660003,-0.8081529552458357,-0.3230950525517635,0.046771251166439334,0.19618551467976048,0.08477658483254169,-1.4100104861746197,-1.2383150787248807,-0.649343158514023,1.170014990845919,-1.5497473023111654,-0.5440850709746157,0.366271227914871,1.332969069365575,-0.13773580180918696,-1.7912942956078755,-0.1353294017274126,-1.1927074706339396,-0.4043623211445088,1.425348156713893,0.029611005515689275,-0.3653646779498182,-0.3461914877730536,-0.24805368133015718,-1.0465333076014143,-1.5228857090938965,-0.574910671935946,-1.3330112367059976,-0.2643431029305086,0.08317369112813969,-1.7277297507649423,0.3562607802016769,0.5891720541271057,-2.1047112069299847],[-0.376860857693662,-0.2058253884577061,-0.06529187135288753,-0.6323896942587415,-0.9881683493533323,-0.9216746797633278,-1.2746806654199396,-0.7012644766635848,-0.5275808519091189,0.048414986010381016,-1.2014371675940636,0.20455792314579924,-1.4016882916915085,0.4063367400773478,0.4246590014393225,-0.6240451892445033,-0.6529321153661729,-1.5666080235102529,-0.0006559065054753208,-2.160612658814327,-0.5938657053889805,-0.1728004623922917,-0.7015107928577529,1.828001204395449,-1.5042051682533772,-0.7334970119764572,-1.0190059977607313,-1.408262298996844,0.3923758478951796,-1.570530102421053,-0.062422879479767955,-1.4118271773356141,0.23510750927452953,-0.4817162230678769,1.4431520458830434,-1.7374922827312047,-0.9994772015137352,-0.14237454179617473],[-1.5935533798328603,-0.8020491109642679,-0.20743314827344744,-1.0807381305969488,-1.218013017003247,-0.5142134096266504,-1.6756711180970965,-0.5213078982888734,-0.8800982135799259,-1.0902935559176465,-0.7125626521543851,-0.6436368507442554,0.5175507593768225,-0.8077342195180747,-1.904602240504773,-1.913554398499317,-1.9255731274456762,-2.433561760132536,-0.5033219536337988,-1.6673266737752948,-0.8059088833680045,-2.66193920235701,-0.49510876183354624,-1.9171737653480585,-0.2491975509330846,0.20816123685432691,-0.16214441436077504,-0.6018888669352912,-0.9851787973555559,0.3676557489388638,-2.7922448300671254,-0.4783907111907263,-1.0283670861582601,-0.8934275847021316,-0.23969550183186222,-0.07807794702078137,-0.39326151344379606,-0.7139409701182197],[0.34281278677334104,-0.6362782359279683,-1.1254106890666622,-0.33205095509737587,-1.2197228619258644,-1.2845612552995895,-0.07675876991237122,0.17985347574653393,0.49081278645181636,-0.046141933496210256,-1.295669946292261,-0.7868651939740552,-1.7235395937440747,-1.0679528717343705,-0.616253438198812,-1.4390228398277498,-0.46027785217855993,-0.10478153448602243,0.21971188099445063,0.3817966818466233,-0.709611412286055,-0.09550863260331903,0.0919991822955912,-1.3239970659620899,2.2615468815995006,-0.02809534237067095,0.38542113852609006,-0.19935070125504797,-1.025265340012385,-0.47625196476196696,0.8541943729468116,-0.8614658500875252,-0.1958127104028152,1.2019115956320432,0.32427076673556865,-0.7792873349037671,0.08702613660164513,1.7533576170087761],[-0.4843572462186427,-0.456278229700052,-1.1919863834910414,-1.2445288152090712,-0.11701608925470543,-1.188633138923068,-0.4617547998287279,-1.2019738906662412,-0.441194375684309,-0.5138326520973011,-1.1438816912711356,0.34815174177233715,-0.766801320147082,-1.540080610161323,-1.7325836939817783,0.5330753868327187,-2.5277271984015,-2.508937011979515,0.8661231385716285,0.46797403955772177,-2.3419649309787607,-0.6457417873673366,-0.9179569525876861,-1.4173563494072685,0.11596933481551899,-1.9593728761280456,-2.618653755916061,0.7956919695197193,-0.6208353843117602,-0.3686252046498954,0.2774422288193678,-0.448933861157911,-1.453714352400215,0.533962808795925,0.2889811799105216,-1.4057855963250572,-2.1838607976064637,0.40279356470335553],[-0.1767924854209992,-1.1329896316428862,0.10826346613389588,-0.9546608589550911,-1.3250604997924686,-1.764338467122464,-1.1671680107509266,-0.8571767861442423,-0.2586424085908807,-0.5336271653943134,-0.24473730946641273,-0.9512101170589142,-1.8731366798785962,0.9068191704963837,-1.6177147478486567,-2.0898263093544083,0.17252994438058328,0.7401261228219741,-1.9052069492809363,-0.16654320796393376,0.22145755068689674,-3.1744248360271885,0.6946626751443885,-0.650392971490227,0.19578561543376846,-2.180426170871123,0.43419498747126983,-1.1054674562268008,-1.5209514790792231,-0.46167023017582687,-0.49453218301705104,0.2926061264697118,-0.39274972396865426,0.6219529041462445,-2.5467692611147625,-0.5569915242240242,-0.7207950541443751,-0.18603884404389132],[-1.5422885159592714,-0.5910836152061983,-1.502198610612108,-1.3197729139712777,-0.314967199886101,-1.70923589397846,-0.5575643513027957,-0.9562603162808754,-1.258243186401712,-1.2609930685034716,-0.8248142145424713,-0.8865157299386252,-2.3803380401428282,0.18497923397858862,-1.3111950797382395,-0.3290005369575534,-0.9311823851990055,-1.169618921878683,-1.815288824306248,-0.5885273706646459,-1.9322396545892118,-0.6643298503462057,-2.290687873481765,0.9012093660830186,-0.9393761857675724,-1.7679203149325586,-1.1427825752085525,1.102135836184482,-1.4854961266949656,1.0575193321488607,-1.1766054611617256,-0.1351725292602732,0.004414456192134795,0.13911919600903175,-2.2257057736182295,0.38567403437735653,-2.298493291685296,-0.4498506177213173],[-1.1251685074052387,0.22313146786824256,-0.05014761931632049,-0.15372287051735067,0.2881852569717706,-0.008904903830627382,0.39363768608746563,-1.5020934803637105,-0.2020245702658109,-1.1630055729781617,0.4537880753455653,-0.10808209670099478,-0.7372521102461241,-0.9512008227221078,0.1573702969543999,-0.5828451046189397,-0.44539993561205854,-0.021469141783164447,-1.0375843953045158,-0.7213876570181259,0.2280203407854609,-0.951794710319276,1.9321577084775057,-0.4883820024020466,-0.7960785868874128,-0.8014550871663921,1.2072618364314907,1.9364153870651344,-0.7578087692099472,-1.1036019982016791,0.25374091434990653,0.5190716827551064,-0.6042920596977457,-0.5854909767451351,-0.29979721785462704,-0.9942885489648453,-0.3534231754093506,0.06988275662308588],[0.20816531161725496,-1.2864448651169216,-0.07673087505973392,0.13714615498759986,0.37927547063937855,-0.7717888908370393,-1.3325914265742858,-1.1105484969252215,-1.03767076053125,-0.8558455900406959,-1.2385387848779201,-1.3179339666933816,-0.06735747079179578,-1.5398048176780637,-1.7857450538149504,-1.5961738043412306,0.6909074498055605,-0.37451215439973246,-0.48517408759719177,-0.6945607496319129,-0.9120343641705858,1.5548403398341548,-2.1573643932208366,-1.6391177367276177,-1.1696940713982626,0.5907579877566546,-1.1448867052881138,0.17428570902511256,-0.5036396897442876,-1.2842049867607266,0.35293076138534824,0.97117231830366,1.6031874046596781,0.14124859438006496,0.33357669425049186,0.04821233661754388,0.8843897470040137,-1.821464044327544],[-0.1616318253539951,-0.4801734761866166,-0.6406648650897102,-1.0867319860937288,-1.8278177545931973,-1.7028069781551183,-1.8429769530059195,-0.7388866217526957,-1.363435566898915,-0.40491935553350095,-0.8013635055962625,-0.4920101091783115,-1.3048862370414138,-1.3018552069525544,-2.3400358024934937,-2.167881598408544,-2.2192591266559174,-0.9055514860372633,-1.1569069390945053,-1.611099771228628,-0.27573521689575453,-1.9033814780692806,-3.1321898090118223,-1.001630819356032,-0.8899813021663258,-1.081806526783489,-0.807285007103002,-0.532403220387917,-0.3402456501095156,0.2930475114405209,-0.615229764677247,-0.4389157929400756,-0.6518644017912227,-0.698036299088111,-1.5194922549547258,-0.527544729198949,-0.7827115791018632,-1.0705600904882584],[-0.5113831481126793,-1.0126836344812458,-0.3509674865502422,0.22594190300812078,0.3044146870622561,-1.1487908962529285,0.05567102656900715,-0.7794555779985994,-0.050491859974374775,0.30545236174089585,-1.3651328362807513,0.214803163345444,-1.7324920100162884,-0.23185808199926494,-0.8783339314416881,-0.47104389925278195,-1.4883895388796178,-1.148774251628567,-1.770863192619823,1.8131171096432332,-1.6472873903849765,1.3298130585015955,0.11111149724514739,-0.24488167792923146,-1.430554834097601,0.7188335706994364,-1.5587095710119132,-1.6063057693285716,-1.1861911805276273,-0.6006387609056364,0.5144547619177667,-0.537299779864307,-0.6587482519998517,1.7608889403831425,-1.2238394816469642,0.026769667412351605,0.28409271534823344,-0.28562796457159495],[0.07903448786538524,-1.5484676752387698,0.356779099684602,0.215699667590134,-0.3128735578035792,-1.5094822476711351,-0.5710469073573367,-1.4723852022571893,-0.032750031230660434,-0.6818417430682782,0.2416948838461821,0.6956912113193483,-2.1987210254873246,-0.1261603234462306,-1.2559533426734877,0.36298346642704016,1.3187814796392436,0.3803348713243036,0.46476631444571626,-1.3404123397963845,0.34184666018250975,-1.5663293634409194,-1.9361512069373812,-0.4529150988110415,0.6071187963669014,-0.046957562512045574,0.6980701772490499,-1.3866164612971228,-1.0579233307223304,-1.5059009166990833,0.3366442441841941,-1.3304046582535893,-0.6490407261606471,-1.5474835825675994,-1.023033875973784,-1.059122353641555,-2.0432245009044747,1.3803538035618488],[-0.6235533734350409,0.26393611002049755,-0.03526263042592032,-0.39958091207338886,-1.038444207030783,0.1164367241871151,-1.1654340004122423,-0.5995651311742761,-1.2258443981170009,-0.8959255052279055,-0.10411910000047875,-1.291668127730547,-1.1317085271832028,0.8065342369898691,-0.6100110579784713,-0.3618992052108042,1.392626266345814,1.4534676091410967,-0.7615678712553285,1.5530224571269358,0.019684172311572223,-1.5209329224457144,0.3689070027369244,-1.0812181548240791,-0.8210374243243905,-0.04175052537581185,-1.128728209879457,-0.14207216733023512,-0.056120693274308735,-1.2612539592238925,-0.16100919774675518,-0.5741586786541371,0.9250000033212401,-0.5609194528417571,-0.27260054477961604,1.4006721878152992,0.7983604720703414,-1.5175844164512537],[-1.218145726915532,0.11397342017670525,-1.097113104573105,-0.6640493488539725,0.3881759954935485,-1.1735059953586386,-0.011655151378969927,-1.53490672437403,0.0473280005081907,-0.9119482882504567,-0.12764576882271084,-0.8352429100746105,-0.3721144521999691,-0.6017503766915754,-0.4134143481901745,-0.3369677370668865,-0.35597806012448713,0.45685406561661523,-0.4571252675353593,-1.4122512758932693,-1.0502067739027146,1.220296169433849,1.4716513819204669,1.733437773094333,-1.0502818413678585,0.1995182260216637,0.5427908718605442,0.21655352969935554,-1.4240843786215738,-0.05362739067343428,0.6428126781625493,-0.8298716334772345,0.26591693571444613,-0.36986389986787926,0.4118246014305307,-0.7233607222321562,1.5305871898258212,-0.2794533077937417],[-0.821883315617038,-0.3567900614077474,-0.45550779376478945,-1.077372679896793,-0.8042879735947106,-0.8572138993884646,-0.09200503288901293,-1.5558179419765532,0.07040081689877516,-1.1737783378895859,0.1472587695864469,0.870426229334601,1.1026620659893567,0.46740897742501103,0.3354731191675702,0.9619234822483838,-0.30205266007780324,-1.1343981190446326,-1.3549693999062238,0.06343538987277163,-1.612019917176165,0.2396257192761899,-0.2352145803841236,-1.3295509896433073,-0.9154025951994914,-0.015806920157978348,0.36295162647943124,-0.7675335399664379,-2.1407175155126743,-1.6272592454114714,-0.2437925236982637,-2.0038522270865458,0.31668090395202386,-1.624789632976234,-1.5452996576671483,-0.6361245575295322,-2.2291248223152977,-1.8141541177411162],[-0.825568057614348,-0.9078156024438787,-1.4555857784712272,-0.6613985535398784,-0.388734020733989,-0.03893884066820541,-1.6374745299159887,-1.2144411751937503,-0.3075305295534028,-0.008458590143949032,-1.7301925384507568,0.7633163031172279,0.9626187257638776,-1.012121848747218,-1.510905133810933,-0.4255659036928958,0.9710635416644237,-0.9144460926449867,-0.3953684601362351,0.677203783365574,-0.2462622212539511,-0.930484105346181,-0.7800706025480246,-0.8972906650340423,-1.745057047526936,-1.2182881944705235,0.5269787825229257,-2.5076090304244674,1.0553956445840635,-0.9729319621921712,-0.3581965197267921,-1.99708725688983,-1.8623235354606416,0.6081389974252888,-1.4417102680849836,-1.723172884572185,-2.2835610245885234,-0.8857982953008439]]],"Biases":[[[-0.2464254370341246,-0.34370268871679654,0.2766950491216807,-0.21338165892942726,1.0054776645686172,0.08466967402506896,0.43078637483391735,0.18292850371673747,0.9138840977872366,0.38111234029524427,-0.6730803232515961,-0.20316912697263206,0.5560618494920094,-0.2899221058262583,0.3841096503973995,0.8273655440930502,0.4623270051370585,0.3839498130499889,0.6286817878724904,-0.8802678440614294,-1.0634809388823387,0.13887856625655098,-0.8194830147187695,0.5209819172018882,0.9611347131670129,-0.398923081905747,-0.5246466195800407,-0.2137536204276634,-0.8074205451797893,0.9698017277192891,-0.07233371448508674,0.5705632894213595,0.4588204519095978,0.3280706093295076,0.1597800269432677,0.036237337894090865,0.33846536419135365,-0.06242564596222976,0.941049698393034,-0.1522706620854767,-0.04364092401113971,-0.0771377360681008,-0.576333374735757,-0.30992855619794196,-0.8232842096412664,0.1221742360636381,-0.3793524710768527,0.03700403725248421,0.3213508482666535,0.41689607016378305],[-0.30811074473576416,1.4103433096640043,-0.39412415517133437,-1.6110096901591404,0.9392782495363895,1.1548304136564,-1.9127708976549747,0.11345170616861577,1.4566030812962099,-0.16407692887546096,-0.04230640979625699,1.4968367763617865,-0.06008582281589269,-1.1854757588388993,-0.876295401646328,0.12174254697957732,-3.1064975292892663,-1.7026768755173223,-0.8425524505749123,-0.6056611476981543,0.8242239317882861,0.37521474047050374,1.5638727234737644,0.3855710600447606,1.585134065703969,0.30928143833892574,-1.3001619116085688,-1.2077767370212324,1.2850258673825492,-0.5074837007041526,1.03551867011161,0.71455373978484,-0.4729271395257903,1.9038417588721388,1.4702357408750395,-1.2947631751373379,0.9568283391494041,1.9039189524813993,-0.396736752413234,0.5510068646039029,0.6300820341795671,-0.9661991217837167,0.002447249217454934,-0.4775400595724874,-1.5200076962068052,0.1321489124350644,-1.2472174682279553,-1.9596468498505633,0.05416390059826589,-0.162184859668941],[0.24757781160549885,0.01897956030164205,0.09866684729022415,-2.098917847265432,0.31218182187745813,1.7115215504293335,0.24712868073715835,-1.7597727233644913,-0.2682249499308578,-0.608177684523514,0.7737701869493802,0.5039573137954335,-0.25979031075997616,0.01093518027377927,-0.4908526400518967,-1.0153738054095152,-1.9199580626802166,-1.3633663516381505,-0.019021363366692155,0.6454188478433254,1.0264830291393332,-0.11812591853633474,1.3036581752903815,1.0182254053934174,1.523489021078536,-0.553286861982816,-1.2882721592607231,0.7598480938942275,0.3251959840793474,-0.7459393613743656,-0.2722433143407012,0.6534245075003051,0.3372377422482807,0.539735372886953,1.314249480954395,-0.09640918565518704,0.1148406907542442,1.2053753379640768,0.15423274769527567,1.0701334719737385,0.552833477869374,-0.9254630016758821,-0.9044581765058043,-0.8817830087045873,-1.719645579023248,0.4767989740814112,-1.4389797885330828,-1.596565605317554,-0.2670860854253213,-1.1370603275100484],[-0.6514918135084077,1.5047628189184843,-0.19420695712700717,-2.428749680087259,1.284491995205525,2.4520948134355796,-1.4933661029582803,-0.8326505175882669,-1.1417530568990524,-2.444529047820239,0.93419005364861,1.7489641086803744,0.014248667845176442,-2.675769310038634,-0.9076965116478902,-1.59518206500125,-1.965939985133191,-3.3119686064380778,0.1375029286370471,1.5775157091700844,-0.34250447239762477,0.36982138942407017,1.5566614409121755,0.9519114891462923,3.2999582436206354,0.006285150082517439,-2.9108176287793928,-0.1775451556455291,1.826944775368849,0.8298629354564317,0.5824054645583211,0.3514902236004645,0.09983983168243163,1.1094773108886118,1.621501504604264,-0.10775413829707563,-0.6206049249540169,1.2340982429305263,0.03472729291464629,0.8787730824490906,-0.5161212447908001,-1.3900174080261034,-1.2431555256260458,-0.23530125656207554,-2.481918169495204,0.8122242415057812,-0.4404699119898415,-2.2849432232093854,1.2238739116400612,-0.8697016049083429],[-1.4175791491925835,0.34983919363621097,0.5490275541541011,0.7557662164643113,0.48024039878372204,-0.5136616236707728,0.05639638051538773,-1.4230052633122703,-0.04336487900528055,0.7274994715872348,0.9039926937658862,-0.933403640028978,0.19675861092025584,0.2764728727197343,0.7072208657478559,0.3364210522605232,-0.08498762017344795,0.8683742445111459,0.5798860043208874,-0.5317838099104979,0.23962677257805448,0.6076643830209041,-1.419424657308525,-2.0882906503824756,-1.5816135104517735,-1.1087987232924068,-0.509861180949279,-0.2508151057558644,0.21358814859047992,-0.6692624448928971,0.22312553625781048,0.31720508106133555,-0.03367161743418379,0.5444967377689496,0.7655598258306693,0.6878219845809747,-0.13068619989216565,-0.6771796595406626,-1.4273210296144274,0.5333143774734743,-0.29588198175543473,-1.2156552790128055,-0.05762823921014055,0.5402878152476203,0.20395642287391638,-0.48015684814286114,-0.1581927000432234,-0.2208178397018986,-0.5121178928836226,0.5163852968906134],[-0.34735683018668007,0.9990456094775114,0.8254575587429499,-0.31216427378394884,0.07549972313534237,-1.0032843212833042,0.3162773466149078,0.20879942676463142,0.7240788058708229,0.7661739285726349,-0.41307009156480834,-0.7207165150838137,-0.2988833766095274,-1.5680151172427226,-0.5961429958049068,0.6204865542556925,0.025672083397977954,0.34765514968696026,-0.0439425443216028,0.34440076295418603,0.6629686170401498,-0.9259127786175319,0.6513157785696709,-1.3601165457100977,-0.9978530097995538,0.34360793698762215,0.8959359299901809,0.3023922675523126,0.8411745174952768,-0.49695037093777855,-1.432495804667771,0.3731019575063783,-0.0714977546015096,0.12614834496082777,-0.49657861398922787,0.4212671448015469,-1.0593840974234794,-1.436394457150211,-0.48955318925118363,0.002531966487369743,-0.17174918036338713,0.33799934622673555,-1.2567156985910783,0.6451465500038662,0.4433095136919076,0.2668121686074923,-1.137048957928188,0.15042898297424395,-0.535319305425553,0.09975565115739324],[0.3552779112775542,0.35051240471656936,-0.0402661389523839,-0.04208958162270269,-0.7270059015496129,-0.5501937250248939,1.42764020078323,0.8345343892096078,0.1940511284056916,0.43969296501678123,0.9191681206747917,-1.0088000213879103,0.7258934102635461,-1.1754629893031674,0.6566749883009199,-0.6723004378701515,-0.6042388170533205,0.9553540043542997,-1.7493481956161376,0.016191565395256055,0.7494659264182691,1.1847126168849689,-0.9193451072850364,-1.0247995924404087,0.4914668413041973,-0.28934333909725485,-0.26961364499003715,0.5815336344675172,0.3176271412043503,-0.18530106736139026,-1.8698839449998803,0.30531801710308804,-0.11150573208171352,0.8302729934527421,0.28110089393396054,0.5431796067121237,-0.1849681170049118,-1.303471720926739,0.9381941838593304,0.5995176597042005,0.6471456120402412,-0.46154817194957537,-2.4350742783264403,-0.6139036144432076,-1.0611293638929455,1.2469945638215172,-1.3124106656223422,0.22094180433630395,-1.6403278962240777,-0.21855334196968945],[-0.27650493106363894,0.5536836581491392,-0.13477802887939722,0.9087340423690465,0.11324695109679,0.1600524947630942,0.597215307030803,-1.5716775147457398,0.25441548646436113,-0.22632834120905176,-0.013396353374955306,-0.584805333606716,0.9504822889395856,-0.03183540369955994,0.4450503798549456,0.46695832479212085,-1.5906389240613423,-0.30208526528279495,-1.3996487491235792,0.4814645563041467,0.1253785511717006,0.635558560649199,0.13498501052466225,-2.602225128334036,-1.0615457381611961,0.8067639303563946,0.8765295628689854,1.0364924427802518,-0.2916975922968549,0.33060670631683053,0.03971516521128302,-0.2555397097438711,0.7780600895614834,-0.10254814649001034,1.024872064054467,1.0133062551156247,-1.1545346320535628,-0.2946264362599066,-0.931112079391387,-0.47147371733559174,0.31063469155136014,0.18256576303305655,-0.5784503429938473,-0.4871225780401634,-0.31581090768673664,-1.0003826378490688,-1.207675107125106,0.8018922339361162,0.7595898295934167,0.1877217414454252],[0.47231121722218,-0.25813971741946506,1.191491402731548,-1.3465422856172276,0.766675771147526,0.35578286795607894,-0.4127490082309474,-0.4701397720924694,-0.24419583648081442,-0.2886329985610318,0.4491584476112005,0.695148037250366,-1.7037837512610552,0.2300786215560087,0.6665416830372871,-2.0565541371270406,-0.6055669206976061,0.07213832471380706,-1.071411595033551,0.597554797928706,0.31860364596276175,0.4568726892532643,-1.61638468020577,-0.39028160303927445,0.5504092696533363,-0.5032422139471368,-0.38635253766583205,-1.0660899467646174,-0.4544514077277861,0.24541946080101973,-0.1343967050875568,0.6684244193355454,0.21286020304550574,-0.4960970694724599,-0.04831801389130388,0.27741678375870943,1.115345808862238,-0.11652231573153625,-0.8676560222925155,-0.002648868349011621,-0.3561610018522002,-0.6152524458760387,-0.48230054684942747,0.4858187434675572,0.2942067798884394,0.521917017012845,-0.7432606116891112,1.1500831991245841,-0.2056299249536334,0.3931355122199155],[0.8802277585497935,-0.6312477608093352,-0.07436352180703687,-0.4445681626698763,0.8465620524380781,-1.0459284121428614,0.14096494597624531,0.28230514558116077,0.7432859601032961,0.8043354472662286,0.3756621145099099,0.15147157226160354,-0.8150763785906606,-0.9454229873767861,-0.387749808983114,-1.7946222926344273,0.5570693068793964,-0.44037603215844456,-1.777905978314355,0.7625896495490203,0.25011595177754764,-0.6098578271276252,-0.8923718650002092,-0.0006357665533571673,-0.07280991944507603,0.7392976772588229,0.8508170390955243,0.19217678108865832,-0.6525974877147337,-0.4885125659159068,-0.4685746709100826,0.9132832355811947,0.47486230580958416,-0.7392280153625,1.0463690717055891,0.07439399563502505,0.7982159273636509,0.4985892605829252,-1.0793971975913759,-1.8028262879896688,-1.0462492932238656,0.292280864204195,-0.3588948472306441,0.636727843464567,0.9693017606062297,-0.28599088127123373,-0.5933916236045355,-0.107456484360692,0.2938617666135428,0.014260416846821028],[0.2887405173325908,-0.7544462297583461,1.5762127754925104,0.16589551539173372,2.0575318522651127,2.413981224583799,2.602355617681746,-0.9071015449548927,0.9477772554314098,-1.4799147072409338,1.3283453537002547,-0.5611217275807742,-0.5064685246638874,2.3750628093215473,0.2727413026114841,-2.0099392369436453,1.0833681026297506,-1.987180293709591,0.03515456053703684,0.10798377690846547,1.9749335456879886,-3.4539565260912766,-1.8586778996579219,1.6932326486359925,1.6434093250242052,-1.072304269700322,-0.35800409670016536,-0.37313123128260084,0.5316911094413244,-0.6080460298005603,-1.2693517982571698,-1.134965031883506,-0.14130519131052757,-2.7754654420716514,1.172473118749423,0.8121137275535999,-0.36865662312609687,-2.903099064031232,0.16851016879524067,0.036703186635167875,1.729706118792353,-2.0200267389950737,-1.5282787744898512,-0.8151667305293089,2.012160985377661,0.8683849714377468,1.8302618470430982,-0.614976887217745,1.2977932160180872,0.4900810102664755],[0.5135958744509066,0.23434319315684946,1.128511287941464,0.2390006123159166,-0.26297972206968145,0.4183657148556716,0.7434136270079211,-0.81438013955632,-0.4608604576897063,-2.231974307334206,1.3599794253262663,-0.0629390779247578,-0.7821942374843807,1.113847174328377,0.770427044953861,-3.3971269747508814,0.3029897014400717,-0.9965201310245958,-0.3326936583385607,-0.11024301207127304,0.7241625939720416,-2.758148330012341,-1.6782457983222852,-0.6198052366879465,-0.01199760293763541,0.8197542155757618,-0.8254024234912799,-0.21389004192458697,0.05319322934352397,-0.04220884944418397,-2.103221402389114,-0.11232265724474078,0.8532119637073953,-3.934321069085945,0.5984545307056174,-0.1260304635490608,0.8498967795963819,-2.207630679202905,0.47977409433293833,0.7024953914161708,-0.4199535414655655,-1.0145384998931481,-2.574832346980342,-0.4616917328736609,1.3604833476967262,0.7832375043741147,0.256424661031497,-0.2952010927458329,1.1533150662812683,0.35697669440881064],[-0.06133685778980323,1.016686848479042,-0.2916812082246036,1.9882999531541707,-2.867295137812215,-3.7427681259778383,-0.5426906849862708,0.36782997671316486,-1.647127999120813,-1.557277802456524,1.4773311853847515,1.2561487908885924,0.5763581817628339,-4.675839624284225,0.24390772256099105,-3.0902768839333175,0.24775173406322812,2.163762846133656,-0.4227065448609936,0.1670283031277206,-1.9958622027419082,2.6284912021749354,-1.4156600784791695,-2.9932308706753235,1.2496806783340861,-0.42850549802041826,0.22158521424967248,0.5970811168040131,-2.017295229339637,0.5367401800157027,0.41476155869696707,1.4238585408921811,0.07925573296579222,2.74766203452333,1.0143303051435293,-1.4251899784992028,0.44291370281387815,-1.7383543639182129,-2.104516276452648,0.8096032623184624,-0.6050207894947974,1.4013503103605136,-0.8083084081573783,-0.5558786726623697,-3.9619950944577376,0.5505203029712497,1.0194586495714264,-2.3811355147701923,-1.6933876778185704,1.1895079056984148],[-0.6344960410131244,-0.3561518228640349,-0.6959457004827133,-2.558367634791496,1.142012604728152,1.5349030576006488,-0.46677240363574046,-0.6725825448851113,0.8894783662554985,0.3020439679651824,0.5077263992191586,-0.607875971155678,0.02781707875523292,0.6625334891651654,0.11859054630479944,-0.2131657603833839,0.003703735356252222,1.4881321089288864,0.6627146179841138,0.08358805441913178,-0.2592781219560241,-2.7219993434098986,-0.3506195436629709,0.33983107825410724,-1.3563391308383534,-0.9067797465111475,0.5053257890804088,-1.88546283841315,0.6263176785979924,-0.1533650143298275,0.4649123675326114,0.16735944201730893,1.4490538753031983,0.7693083476072161,-0.17268641378419605,-0.646178713402952,-0.42536432176156397,0.509300225558982,1.7233433294457,-1.9425888118277752,-0.5187104321405173,-0.7951463448602384,0.8674234037782077,-0.12118858506458681,0.7356770838762272,-1.8226825429701143,-0.7901409653090808,0.39122133670787235,0.07549118544939097,0.9982260653167409],[-0.1780107141265198,-0.3254932498039141,0.07193062322646115,-1.387683361674194,-0.4380425327063108,1.3488083596157585,-0.5498223850519779,1.0564984151069923,0.5572511243316615,1.2487207711684736,-0.28404899859113625,1.014513366679529,0.45609944713493294,0.10076156720940921,0.3756033627052174,-0.9950945326808778,-0.347011822105285,1.0558805592825504,1.0706231452960024,0.016026353049549292,0.426141785282566,-2.074357635637962,0.6588294438147665,0.7948940570392597,-0.5642919027524921,0.8347221662514785,0.8702636531836692,-0.23695211449772483,-0.25136667543674085,0.8070571973071297,0.4215359378364516,0.30601680859315095,2.2632116721393367,0.7429138305598507,-0.1516307794204147,-0.589828481318725,-0.8345116396664092,0.600048807034109,0.6673161265446581,-0.6227251616732951,0.12094635334897556,-0.8212216817329234,0.5135994678645837,-0.35247872479029446,1.2780322778075819,-1.123029612237254,-0.9580539002265607,1.416771724453757,-0.4941887002503059,-0.44380126240093765],[0.72138615225101,-0.1363706020978486,0.1982799794459966,-1.0244739508646326,-0.25973074157262904,0.7016762050747791,-1.0549269605387073,-0.6668140186166358,-0.04348921592301449,0.06923099405606593,0.33150659199123145,-0.38597588541538064,0.45987688013280453,0.7749322785731987,0.7206259430325131,-0.44847811811121896,-0.6691996095300035,0.3588526738002082,0.6028892851159336,-0.0356641397949373,0.1855120983146391,-1.7695658033335555,0.7765378349937723,0.8026641459015998,-0.6473425667153269,-1.03174482595608,-0.09449232203131722,-1.1160886878369722,1.023800321244577,0.2637111498542088,-0.1562196193644715,0.3780623861469463,0.766751860433348,-0.07770572620541062,-0.7010937895741615,-0.7547463980837384,-0.7715697863663893,-0.8748784319619262,-0.36358769743884467,-1.4331941096441194,-0.13864277307284795,-1.5644445545258128,0.6969811947109965,0.5027841197209133,0.20083530327770774,-0.227827147989298,-0.3995935685240019,-0.6961396555434669,0.2563784178840334,-0.4379940179522494],[0.5117312781719471,-0.07460843615449873,-1.5595400386886524,-1.857653607056318,0.9506241963183636,-0.7149733096586399,-1.9536568808726236,0.18698898526369576,-0.5292597751643039,1.0204593883116764,0.4618604748111291,-0.2941241488674714,0.36769515888302184,0.036948400712530825,0.24877950176354624,-2.2755499224469524,0.3943844058782603,-1.0075968548452472,-0.14992113125991674,-0.20440378559819747,-0.9757769851444971,-2.2567732562809897,-0.23057809071502114,-0.6726205733092139,-0.6466789735956896,-0.28122237344985523,-0.2781893791297764,0.7979188630893788,-0.3504695651469273,0.6519451114026386,1.02357533928618,0.20963163887491468,-0.024009941500817766,-1.0513328356899938,0.7217813416591428,0.48739456218077853,-1.9013281839366298,-0.663056100817497,0.7068650997088857,-1.979081397574928,0.23865990730247466,-1.6762665100436671,0.5837738563264546,-1.0158433778332194,-0.7460060847040395,-1.1138841108087647,0.49727432695715507,-0.12822146370652426,-0.709788506152551,-0.6853262756643491],[-1.0240326227521854,0.22336224208595537,-0.4562670631388043,-1.3334177498928008,0.741105107349532,1.2283379849858496,-1.0270676066252922,-0.4339495523211629,-0.8932467839846966,1.2808168314159698,-0.9816033400993138,-0.11883137284862394,0.48430674451900024,0.43452242938185226,-0.33766938736278285,0.6923164231540723,-1.5230076476949457,1.5363072517516,0.11084080690768176,-0.05354176765670318,0.7909000794003652,-2.7038535523301563,-0.600266327450898,0.14095084252841722,-2.021224014421039,0.2148290077757601,1.1372089148121522,-2.127763588677365,0.07755579298434391,-0.18758446162129017,1.1187470724732467,0.961902396830624,2.0604361631665706,0.39630988539150086,-0.5803906325554871,0.4709087392733371,-0.6204897566184592,0.03100527222168804,1.6621578084095385,-3.0852009976696517,0.8535773684951407,-1.3738143330213388,0.6829599009919747,-0.28375142806748765,1.9692814475386842,-0.4356589009000608,-1.405105885091571,1.0213514305150335,0.7915443531227122,-0.7453017951638741],[-0.03168590841059328,0.7250913351656989,0.04094792762264021,-0.6647404879755348,0.008834930324221517,2.326527460069636,-1.7273003359209314,0.6842804511792463,0.14996503520365942,1.770974937216524,-0.29112638553938547,0.528610619475116,-0.7626479729623491,0.15773070788420526,0.16332191496011125,0.49979675848748367,0.5252626784113328,0.9061624958459756,0.838049680277887,-0.2856267766600232,-0.439668858136131,-2.0660876578182243,-0.747652517736827,0.5308562147453546,-1.8343431537524306,-0.23725233797973894,0.7692109951112469,0.06146252843057205,-1.085112245878552,-0.12325807579161618,0.32143722094858196,0.6305901600498104,1.4621451432953556,-0.4091542246555569,-0.2687940636019588,0.6035763117141891,-0.24299430015155782,0.7012844840049404,0.8441252804782943,-2.4960772472336137,0.46974864458934784,-1.296629599785338,1.0438563299553276,0.7514611756996199,1.2237924391542525,-1.5100183053491112,-1.2861613673050627,0.11975536859975916,0.2569993899908024,0.08370731543564383],[-1.0484457557570814,-1.1814951402454894,-1.2966667513365753,-0.24499262267538982,-0.9610935537743072,1.04889767620986,-1.2227089045310442,-0.08958720490241433,0.660693190775494,1.100743717659206,-0.011170679733689692,0.2893404354900177,0.020234539003410608,0.9276801751318934,0.12083198788441603,-0.40062909062219837,0.2832845241457985,0.48461330993702445,0.4636934577631068,0.9041432987835961,-1.0751765551030972,-2.2533009690841634,0.5115318301220603,0.298027223111892,0.016365655848578107,0.16800260141185808,-0.5123747949209777,0.2534238699207908,-0.11717276472343513,-0.08747092923477003,1.0190627417161207,-0.6740914625852056,0.2272414176128444,-1.0150927247918613,0.5876672430393186,-0.9743469491475811,-0.839740898094177,-0.5004878172455528,0.5427395951614917,-1.2517610848370575,0.3907507066568108,0.7949979037869024,0.061127503362055094,-0.935713634786338,0.438068244196141,-0.6717662871945559,-1.5387395073157062,-0.5745404923898288,0.4765257922583449,-0.6881273626383718],[0.6891631941142415,0.6872818991422937,-0.799526734464972,2.396043007696413,-2.355425296629627,-3.2163987861945245,1.0620184992771737,-0.6006787618659768,0.476182530434027,-2.9239162955572073,-1.710143366366247,0.42558713500161544,-0.07984246952932608,0.36564781039169986,-0.1428479639321573,-0.12259780428356956,-0.34459584655056213,-2.968455061348615,0.7416620258313422,0.7486927407869826,-0.23241013244050016,2.1767063323565297,0.09496860980833709,-1.18615475797201,1.9935724428375288,-0.6688391408107623,-0.06438614210404812,1.9172482617770903,0.6462631244263016,-0.2270350194903325,-0.08894542022923412,0.8799058271743544,-2.344399678756429,-2.380452230970232,0.7125187984251947,0.38439736323187157,-0.6091369329452139,0.2888015604966696,-4.362514613647323,3.1043913482301706,0.5693376412422738,-0.9626599837664164,-0.8143991486027632,-0.32351090812320427,-2.4385068514072312,0.318362771282586,2.4049245008207656,-2.348244714925663,-0.10254601888809677,0.35450139744321363],[0.9850129324042911,0.5018254785342358,-1.977257180054867,1.3699727952770315,-1.7086509615133596,-3.9725174919896964,0.8095459542265956,-2.141715470641378,0.24257007648682344,-1.5983896709371084,-0.262854244421968,-0.8746201911123965,0.15982405937645558,0.8383147886079626,0.46293160297002744,-0.11085265905397887,0.43039260241178373,-2.5649659824737436,0.636274418352444,-0.45819751070787645,-0.35861855974768697,2.07549786266837,0.2959686810869978,0.014669074507513686,1.4098597998133553,-0.14983184329111116,-0.006786079817345506,0.4909986075723409,-0.1792574559526272,0.062195136100892834,-0.43461161699305734,-0.5163350030231051,-1.387699736557596,0.07435790876054318,0.38709677084945515,0.7947734477743841,0.2836051788799406,0.21009323821737885,-3.6607091777434317,2.4329931699573546,-0.5806187205161001,-0.4054843443289342,-0.8618866929702956,-0.8871923917836172,-1.6206685728523402,1.0306722613568775,0.8395372427488159,-0.7997545794400172,0.043483906971420176,0.28398719233914743],[0.5489780451896408,-0.3759158204525264,-2.753830639802981,0.9970706942007148,0.4951115728895569,-2.043595322940956,0.6987519815307186,-1.092138843541422,1.1826630972445826,0.027386666185199235,0.23426816057040176,0.48368288440933827,-0.5734285768378592,0.09565297897020725,0.10544061836124366,0.3942317576551181,-0.2116120963731385,-0.6943363312931624,0.41571520799435024,-0.9866938480107941,0.49232555468081696,-0.44932279045292073,0.47010021154045245,0.22180540302897825,-0.08730034717525235,-1.0437296658524486,-0.5413426890710691,-0.21704670167125006,0.22490903990109892,0.3697728074914609,0.49527909234434386,0.7225627109161282,0.15943692562959524,0.5665617246248177,0.6017040553518623,-0.5586080452818637,0.14557498864562876,-0.13076353009453737,-1.5385127935130325,0.10585085476863658,-0.23304803334835478,0.4476088982032165,-0.6229989954958421,-0.6563965739349982,-0.39387298165903667,0.17770285991209347,0.371613054869475,-0.45338644686914786,0.5046528608967118,0.8772699857719635],[-2.8793861893672843,0.8262100624219908,0.3742679534216967,0.07616371383831137,0.597961707327971,-0.6220660147113484,-0.12215709935874454,0.7453859031064426,-0.9732038656503579,-2.2266474144420156,-0.7585046874772313,-0.1309913011876227,0.8837484236955138,-1.9501087943145157,-0.5224038965530873,1.1481474441656443,0.5263267932361462,1.5083000683569368,0.3024099192009031,1.0273267213330386,-2.526490232930725,-1.8685294861138444,0.7308579034756008,-0.4244316697583383,3.293888111584303,0.13918943545032764,-1.4730273460887486,-1.4017755951919941,0.3771671803663987,-0.46388576739554965,2.49580630746978,0.8072662802891332,0.8019986757377987,1.2397642704137362,-0.28831477208687206,-0.5783487634305362,0.8555345796973033,-3.4453267877985083,-0.2787882990414339,0.08818925427708646,-1.8960764752806496,-0.08381723121049144,0.13406428032105897,-0.6207251562612611,-2.838637395108826,-1.2885715708170304,-1.9949312692656946,0.8233643211569951,2.1107417139930322,0.7469274992009439],[-2.0591593779928523,-0.4583696265084734,-0.308800100946496,0.18182984050750417,1.0201243541867862,-0.4813179514575375,-0.17744850798356926,-0.1987111825577082,-0.7668913374708647,-1.7012819951588407,-1.182891547157221,-0.29788343899986797,0.5470349604186814,-3.1210546424592454,0.31800578936700524,0.6049265103370579,0.9248383323886467,1.15460056266529,-0.6502168664868644,0.4709367841586154,-1.7603800212625267,-0.16265306765458237,0.9014613134707684,0.7863430817672211,1.0192443881432771,-0.31716961556982,-3.1730070612484824,-2.473407530741865,0.5739070591927793,0.28128388205433713,1.7172189240538005,-0.18033127878675964,-0.1854588870720822,0.46817649134151507,-0.03341933013345697,-0.09270530175668426,0.9344471649248498,-3.294406466380293,-0.3228534714536381,-0.28873346254114635,-1.2596737041163388,0.13002175693062026,-0.8529960723530343,0.6215925829735771,-2.7481806481310587,-1.897487984779709,-2.2686238968377985,-0.37641254904106464,0.04675798481760313,0.716975893065452],[-0.8192715920141352,0.6073750309305519,0.7713046590522824,-0.6183345816395338,1.194231557645719,0.034767981941505266,-0.7340375180453055,-0.47337420961537097,-0.998329745634456,-0.8938389680551094,-1.8928562267360225,0.36283907589044007,0.8073030681253368,-1.4183928792036988,1.6931346322075613,-0.23406020573347144,-0.019745222762854796,0.6790100716747187,0.20587386194766252,2.066431289236776,0.08332917982193416,-1.7654167102880298,0.6848865887052125,0.09065611343430821,0.6902914713912577,0.3192291334836012,-3.19314780770236,-0.5093563245707514,-0.3466130572155348,0.6993675069406974,1.399756131263508,-0.11531258579536457,-0.2371530474444166,0.06339069275663198,0.49750073734809475,-0.3302386203262875,-0.8702881493242123,-2.4318037244759645,0.7687463331907052,-1.0711023967187276,-0.3923303652608707,0.08141139997618331,-0.011599487093526801,0.7143149691459908,-1.9243809225482524,-1.0421478004125024,-2.838822207921507,-1.6159270335489961,0.7314221603407581,1.1827558834967076],[-0.04044232078380248,1.9149041633024282,-1.6123228528491345,0.13178396275506526,-0.5440837528388873,-4.443597420291723,-3.240358431031446,1.993279861633322,0.46872858558753555,0.33096100609081286,-1.2611054651877078,-3.341273280513248,-0.12211665607309054,0.8271271497673767,-1.6063949349842739,0.7125172961801912,0.23782765778822826,-0.5874222422353432,-0.3089749181643695,-1.1838703501118208,0.14474768377215066,2.51722585168385,-1.3896313114276913,-0.07055580002233243,-3.2452571956601126,-0.5974790391692388,1.6690030768930986,0.3304296376978801,-0.33302671612448254,-1.0523123634603893,2.6491836259213275,0.568281793329363,0.5989626569338452,-1.949818445459998,-2.7442777266616853,1.2434079145254127,0.6659925846191015,1.1202558144327641,0.9383288895991034,0.4397128770558483,-0.057683383553392927,-0.040358859950023064,-3.367426447860969,-0.35014731809412986,2.623930794004138,1.4054727241374996,-3.51495192488735,-0.1933895348938649,-0.9544607631968745,2.0796448270384764],[0.3355126003269971,1.59636522843467,-2.2919022401359133,-0.6288943696866445,-1.2030258097927824,-3.538496370552253,-2.601703632839541,1.9015774274294193,0.49054105522363745,0.5975621409755143,-0.8628072142404111,-4.522214902694916,-0.1091963552363123,0.8178527394913531,-1.796829219479923,-0.9341154558475997,0.022179289588276824,-1.5338851193536254,0.9055534024594888,-1.2822794664371722,-0.03762661302819541,1.646586762608819,-1.6855878512257405,-1.4707241257518795,-1.655877416518717,0.7955789846931501,1.1601028690383568,0.6022406804827931,-0.0021674441895956176,0.3541777177739373,1.8873792031911878,0.041391156529558965,0.5357085212797761,-1.305012303670279,-3.0927854011860103,-0.39053174362371657,-0.8330376103568427,1.4856944673170538,-0.7258221078439212,0.018892217215144818,-0.013642131197012615,-0.3354421317631165,-5.273173206700927,0.5673250912660929,2.1208852510527585,0.7503683643362933,-3.5181904498669345,0.4672978258236651,-3.366168922319974,2.0838762522375625],[-0.5519035174797072,-3.164918057166577,0.8776976692184408,-1.604580558862185,0.41869967377160927,1.8497184644465288,-0.6532823426520172,-0.523453309206677,0.9823761546139943,2.299981013366406,0.10205156123195688,0.6989354598805866,0.15648729330063066,0.09300641389711053,1.6892059566720814,0.25219262062868203,-1.446576991712717,1.5585033092979448,0.5846163380557081,0.5224853948239928,1.230123606941782,-3.2013221801843534,-1.351748206558936,-1.732137888726143,0.30890213910728914,0.2843141015416774,1.7348455621707857,0.4428132887046124,-0.34842580628393754,0.6750611442091843,-1.7363763904693401,0.4415006502640276,-0.8428180285405356,1.1044367786892237,1.861227751487284,-1.4938461075037905,-0.6532378207964222,-1.3396418144294846,-0.277836816502378,0.33245070642142055,-0.4679259821072348,1.6001747472306111,3.3159066534756616,0.05547907310335406,-1.9176757224000969,-2.180728074948172,2.2987154097141453,1.8856703031389628,1.3632522355233392,-3.227825389856504],[-0.5202102582828412,-1.6654371350488453,-0.1596439115626327,-1.0502754543177006,0.2956158316902568,2.716891013137297,0.8997241359652625,-0.944219726393021,1.3403370009473559,2.063453539048569,-0.40858132203049097,0.7486628626372586,-0.7386371560273529,-0.274975963308351,2.123341816417465,1.5696999759630617,-1.3048836998432443,1.8163025434872044,-0.6161165041649422,-0.01632560946808752,0.5272422624419976,-1.13679946942422,-0.6728587675655203,-0.8506818290131727,1.3570101507809513,0.16509436391692134,1.232064206542792,0.05655707990011331,0.5164963562878341,0.264671470461712,-1.4903470813358017,-0.9506128574168542,-0.5623145140408301,1.600910526824819,2.165173562719099,-0.8436335107062525,-0.18386964352835602,-0.9087610840564744,0.4956327111151586,0.6219479766998763,0.4099386233392428,1.8635415230455117,3.451112734480926,0.8338107131067868,-2.696048011434291,-1.8459680682013433,2.484766529401781,1.6369079260168693,1.9423444765733986,-2.784187149135809],[-1.1610746876617712,0.5388502150920416,-1.5894356443415565,-0.6570775472242448,0.7938426040952137,0.2363168685318735,-0.05019892163377062,0.874753060164841,-0.21593383513145648,-0.25941250394839954,-1.1837788850686122,-1.498468021802972,-0.4254692908946535,1.1476849303630225,-0.5174345978856875,1.473534186785738,0.8527822123818994,0.7702950736553971,1.0439845176357738,-0.19414415704673108,0.06208434107346836,1.3827383714020323,-0.7829795582384436,-0.6113383355092065,1.0924538885291857,0.7417011958618341,1.4497287996581645,0.35114658582300257,-0.13493571271690358,-0.20285568467663379,1.1438050763323035,0.2016894164216502,0.6291710450705845,1.0718563771030605,0.40067894409744786,-1.0749836376926751,-0.7645820175855141,0.27328508745417757,-1.0184059263795233,1.1616851610589625,0.5347159784556803,-2.240407079838125,-0.15812678488677154,0.035393290287436194,0.7130296759724751,0.5430425991318727,0.5950231234683867,-1.1433219714931973,0.4723636439587421,-1.5097875276839003],[-0.24985840168447154,0.8158721459568109,-1.6861860765707146,-0.6970727631015762,-0.5028469137449517,1.152556874793081,-1.226678243160336,0.969651153425063,-0.47252193306532536,-0.2663458536792944,-0.8989386046241299,0.20492650921344868,-0.5178747043423997,0.9714952049881216,-0.6740853461643603,1.073469632031739,0.8254131399115725,0.22031607251010848,-0.5810682950623774,0.06707385109997763,-0.5950979409726854,-0.3327272397268069,-0.3610113117405453,-2.023892215794196,0.6195908406583682,-0.475536931463226,0.610670534842078,0.19949164085999518,-0.21286804617715355,0.5898918768582109,-0.10605527955619684,0.5603920859805581,-0.1476484640485121,0.2984592351367327,1.0229096096873813,0.2598562503441445,0.1898061206580767,-1.1302694219527352,0.7953660431984322,0.6530759434402394,1.054115981844851,-1.5775786366002864,-0.07081997459099482,0.6106641074787335,0.07417003328801575,0.564460720306947,0.8035931136626486,0.08767246395744403,-0.7391996143502614,-0.9867710332740044],[-0.7487006391587899,0.9884918789163716,-1.4549013694381572,-1.316469647407376,0.9397187129353961,-0.19821169315574325,-0.6659718459620572,-0.35643516250173285,0.21129818260095296,0.2950681663788822,-0.25032263745347866,-0.47081895879430596,-0.1624745221150262,0.6798534315212375,-0.6759320653763469,0.8801927022032423,-0.02033998021243694,0.23261746245825263,0.22069739120107504,0.7142734699811627,0.5874032086153269,-0.9452338180884895,0.13602275468830305,0.27939891049056376,-0.13002557126806558,0.19715656535537204,0.8844622422976011,-0.41341338229443125,0.7839190777420421,-0.057414665211044165,-0.6799094027138046,-1.0154461235378591,-0.48553998358131717,0.8709062492377111,-0.48894920541570536,-1.5622376400692082,0.6309661486401493,0.5415771146479226,-0.37113589699914673,-0.6189103675918073,0.18128742155636604,-0.9042378826335957,-0.14147609586632462,-0.5552663214169516,-0.6923792517331436,-0.6240258492678159,0.9064408054600401,0.07553462867062281,-0.9939255055709711,-0.29114902184933417],[-0.2869133052516479,0.4357290108719114,0.8927339527732369,0.42432460717497833,-0.07811441761371882,-0.7410568887790011,0.5734881410680656,0.6420608175038056,-0.7643138500907275,-0.2810874883783994,-0.41041820955035735,-0.10482874752587586,-0.04626401564356513,0.7576847615751352,-1.75535928426961,-0.26717560724154815,-0.17938691533773515,-1.8218109827882254,-0.5386490296219676,-0.354008305205498,0.4175585738676193,0.8300174030064883,-0.5292495229590204,0.1374286527383013,0.021326127860798575,0.5319665772668986,0.13938531123985223,-0.406932159691187,-2.2559505452346107,0.5122432974800558,-0.17892214849493268,0.14201783204665927,-0.3695153896089661,-0.1771664651974737,0.24259351420915348,0.34817124943973443,0.7716289275397241,0.40488760108005306,-0.21401241279572966,1.1684168758420914,-2.099809373706396,0.8288336425905548,-1.742581790099328,-1.8371569088678292,0.8440039284682279,-2.549663704791642,0.3314536865769355,0.6016684117940477,0.8157293778019992,-0.6859375601234938],[0.641216069063797,0.9661696176215688,0.3931888156005985,0.8781195502794752,-0.18320049354970552,0.39629628900717745,-0.34805170453930057,0.6624739905383569,-1.1797268504471488,-0.11573850518717892,-0.08720564189696083,-1.3939846261562083,-0.43231625072192614,1.1094597701120024,-1.6434137420513832,0.18253161293865727,-0.5751410044634542,-0.8663964894333657,0.7632620890198043,0.0908912153557753,-0.39410152794819703,0.9200263596413931,1.0742646803965092,-0.18583735246884855,0.736910711129996,0.9630671791373002,-0.21188584236766111,0.7334116376211887,-2.4560475918367937,0.02649489407245258,0.5175531941711576,-1.6073004823283508,0.2500154570827055,0.07942762318768583,-0.10346965265955657,-0.6664554675977006,0.6360285200874224,-0.3075131178582803,-0.34364747973296234,1.6545615482236133,-1.849430975105444,1.5438670106106023,-2.77964505764637,0.057854042079055444,-0.16443427198703858,-1.2036824678930234,0.9742185131353488,-0.47527314928760844,-0.25266978335407564,-0.48053592680033863],[0.5572288439740547,-0.6333906524429601,-0.3894867901786417,-0.6501640979502626,-0.18682368132117985,-0.7337342546006962,0.6242219021888933,0.0524164510183495,0.45674955381708704,0.6841703690991255,-0.17685593149560577,-1.4385859609390819,-1.5201338438867023,0.7386325179281791,-0.2728543297381391,0.2031539713311581,-0.25675483563441925,-0.43721917141175287,0.13832238109858483,-1.0128210564768099,0.725366689941864,0.7160416223316046,0.008781077505174777,-0.3987572653853433,0.2024060632040398,0.825345292132718,-0.6872848270421861,-0.28284147572362606,-1.1734840668056012,0.33028065729155803,1.1599361913782322,-0.6314056815278111,0.6182255696770151,-0.8065755641139352,-1.0766151238438086,0.34983536540876925,0.4715687826972581,0.5520433838081912,-0.12916961114595119,0.4477157321573342,-0.8774045937849837,1.0059223261821768,-1.3282477096570042,-2.623641163199285,-0.13564166101900302,-0.6792878193649143,-0.11756865473331651,-0.6573782276825307,-0.16323564143717093,-0.5601543135824074],[0.4656804789612831,-1.9245519200107117,-2.346129139989681,-1.429087227208517,-0.520141352790176,1.0121688723890032,0.2837161335133648,0.799671078118961,-0.4176095197252237,0.264846323649964,-1.6157897404510857,-0.2092847277916667,-0.22087691178176713,-1.6935696129078472,0.4242802254506304,-1.1436069872539796,-1.0665628204911013,-0.984009854849571,-3.5008254013745597,0.4578333455449778,0.6966158382195382,-0.9264807002275114,1.1728222014806027,0.16633549430996347,-3.177483004089101,-0.06815832497989334,-0.08559698778628227,1.3673390865477042,-2.934091722111942,0.6947157655086565,-1.6703021904750746,0.9058387682130112,-0.2875315105131554,0.5749911879506793,0.8573979883462806,1.6775603418688054,0.06363935300550795,1.5483042347095886,1.1271218738854554,-2.378159987282276,-1.3702668420783495,-1.6457244768312966,0.8266794294033535,0.620010535053931,-2.6870234647240006,0.8306818718221366,-1.0103535566276374,-1.6823429204698759,-0.7625013378504956,0.43146430149198034],[-3.7649204837596235,-0.930958148358646,-0.7608410047451378,1.223060125443436,-4.151636193648505,1.4696005785605704,2.664628557439805,1.5960591777685604,1.4473557895236526,0.10361644781824564,-1.1041866904910373,1.0805810284742872,0.6635315482243828,0.9954106747229031,0.4716895860774632,0.8561959940033329,-1.3999425474794276,-2.6270442836739223,0.24051176622923398,0.03722454665075387,-0.36237292162035234,-2.1359433483699988,-2.3873707405783673,-1.3185692832083205,-4.299846165427588,0.14972474132161093,2.190938657027485,-0.451831307351181,-1.010308952073364,0.6601065755317574,-1.311603251735297,-0.499726603363476,-0.2913119502650807,-2.7169169771597503,-1.6086854415319838,0.9853904538673116,0.40743977460829434,-0.5485095061829022,-0.7581066335784444,0.39991127355537975,0.16568960048642484,-0.08757481909227245,-1.4068371373817152,0.662258774828032,2.419024542157447,0.0845231884466551,-3.1337957083901764,-0.6345491494998649,0.06601236776505592,1.9831602213782542],[-0.6996089698542565,0.06328536880646629,-0.5084928357731939,-0.7635299561466726,-0.005206970761621933,-3.1707620791300437,0.8803156369582925,0.3274746672384311,1.277762266861932,-1.0566657888983844,0.9999859802818363,0.5956156416327908,-0.3095048674441949,0.6013978040576888,-1.202148811245409,-0.07248381624962652,-0.7228089013484084,-0.1521550663769714,0.06788166741606817,-0.6304762201030002,-1.3784515024467416,-2.20749500771441,0.04988275166175581,0.21271396507226567,0.29984441452671506,-0.747708860919829,0.8998784394344018,-1.6815832154295092,-1.0074693937894157,1.0057489819682883,-3.2177501844245526,-1.5698582174400058,0.025447061097801635,-0.883942040133613,0.831706541433028,0.7038559002712633,0.4803557226424922,0.5330341314844167,-2.1368695077396227,0.8623717361293257,-1.257609525048315,0.25276105391173215,0.3711843228665323,0.026683670096292383,2.6801291568704757,-2.2838578174582946,0.7599106950935988,1.6589077617538983,-3.519479477431721,-3.249092223089878],[-0.04254751359669947,0.5333566996520985,0.25433839529409574,0.10113955650227836,0.5671620224444105,-0.09755348721859664,-0.708745069224744,-0.4554705424570368,0.15373070271644249,-0.4930566564185716,0.545912886293319,0.3195393440839442,0.8709448906639052,-1.0995916467099134,0.45282850861684576,0.30959521248893523,0.3964989969502051,0.6746032713577123,-0.3962369073439679,-0.6664482861478754,-1.0807049716155444,-1.1682250506196545,0.14665609212156672,0.04798566845624086,0.054038378614199085,0.3574980398270667,-0.1278561270947731,0.45296048935836286,0.9522468838421696,0.15022077051100513,0.41031815764234275,-0.8293219941468019,-0.3180573026656886,0.22363129177415705,0.2647091052163098,-0.46275130282893767,0.12328942895245046,0.7282985757361249,-0.9071839303517771,0.0887792469516756,-0.973073102037661,0.49340904100544947,0.5148847954941057,-0.3563882240452701,0.9208359606652868,-1.7980644031523165,0.9572127798981297,0.4248900320136937,-1.5383461470078346,-0.0974057947359116],[0.023564048101442723,0.9334615714923016,0.36884639713295286,0.06981340457875486,0.7747428898297254,-0.30289573372903383,-0.19048435354591944,0.2280240061616413,0.040339160955860404,0.3225588457780409,0.2801437595267718,0.004068307822946098,-0.501444786756922,-0.17352536889598333,-0.28978249918163745,-0.5766493413841319,0.5756512458883314,0.8938730276003823,0.30650583001656617,-0.5604912766437317,-0.06556590728937314,-0.051720607790297475,0.08022050294103356,0.70452625295513,0.3107108980081912,1.0817238987017384,0.31497126987192703,-0.8271009067643044,-0.4817170039276004,0.7714602036892656,-0.4210111651062166,-0.14986059320466455,-0.20241507555226682,-0.3149302746315327,0.531872545409172,-0.5979113953242879,0.3649869747361704,-0.04257423655446105,-0.34103052604177203,-0.23836947994770774,-0.5922673539751101,-0.1628196042728399,-0.33232069298378797,0.9460399511046175,0.9661016657682419,-0.22160067705877454,0.17352568398138882,0.3259914188418922,-0.7378481115346434,0.5124766968835457],[1.062431095339992,0.6348264582098352,-0.13657956820748454,0.3478758723109294,1.0084442394811104,-0.6550910751204808,-0.27287349317933984,-1.0465070026786265,-2.439522670295405,0.21527839497020193,0.6626880941138246,0.6580210721060951,0.41051713385324495,-0.5943496351626709,-2.3860536239444445,0.6138268049829436,1.1651862394841248,2.006731485945706,0.5652422978665491,0.29020607904834955,-1.7272917326065806,1.1953966802649074,0.8195057172302745,0.6229217530979413,-0.19067104837982554,-0.3516557583247948,0.2521512055084051,1.1341254232876914,0.3292044902971099,0.7608954804489984,0.2606470861557562,-2.1128146764921616,0.7473886765067225,-0.24976830605284034,-1.7853974029480404,0.8258392879192963,0.4864403577349064,-0.6225073274802467,0.8701515305321683,-1.7847401703923294,-0.9337363334615258,-0.5073343359983493,0.4959293713109538,0.8585981810262123,0.031871099342830514,-0.22083075218403406,1.0436959476357566,2.2532983961880046,-1.2526117559760912,-0.9077624201610421],[0.8407899156073139,0.23715350405826968,0.3337735587350585,-0.27782630650361795,0.13541771971277852,-1.916902425418477,-0.7604374899289035,-0.49654439908395187,-0.8379452070387465,0.015777031634124715,0.664237580741068,1.1017994973555845,-0.6183495076580596,0.906790765716997,-2.393047208182065,1.005499105229672,2.623877820647056,2.8110093787654096,0.4437094071055431,0.6497052619446712,-1.4365562890734742,1.308370969516025,-0.21976437149172826,2.021821557435065,-2.862842623414107,0.9851873288681591,1.2433677067761326,1.0045087673820126,0.47554183475347334,-0.3259338386601045,0.02278145875068735,-1.1514657769013883,-0.07118160391066418,-0.338816159442135,-0.8520200303678479,0.19236971141672857,0.15100191389263665,1.3681367586745974,0.26110315246190957,-1.6035742189763011,-1.1149644959542298,-0.9638137594024979,2.5609486925994562,-0.06943336030812834,-0.704052221791794,-0.8053994306891867,1.219861189820265,1.6309204359637417,-0.08664021407409304,1.1791197930045125],[0.16710566256511816,0.13361880858626216,0.9334696080002584,1.6254268408874992,1.6048124171192792,-2.111400917598201,0.714429475524575,0.9029811913574579,-0.2171864485115769,1.6977144593754876,0.5856028737735446,-0.550352488847833,0.24541851399717712,-0.5105673997817219,-0.8554195869314498,1.8549217188512501,-0.17279944438692688,-0.01013958636338996,2.8378940842661713,-0.764993159912461,0.9444379015685397,-0.23489250207906012,-0.4904759619298075,-2.221486843714029,1.8563736023966975,0.25310517419334755,-0.20101317147987724,-0.008516058762761522,-1.7019696841026537,-0.6605487847452725,-1.3864843717052031,-0.8990186438017691,0.15438701149902054,2.348499112182303,0.9254855276731291,1.720985900385561,-0.2708055329985729,-1.7265348451745626,1.2421826513473626,-0.1418917780802503,1.1852687866611074,0.026490244166198443,-1.3627594915214927,0.24151202169050337,-0.4240817232152482,0.04913289078623916,-0.9713903875312566,0.08259137497324631,-0.6357511594317031,-0.20397165954666543],[0.652081315992751,-0.42129159718826437,0.6171151876165085,0.3145905925321158,0.5146856502234933,-0.5988353812037521,1.7799191403330736,0.20429875880324458,1.335592023313838,0.549234072331898,0.9041939666563428,-0.6687386098031851,-0.448617605242306,-0.6679506145273103,0.9590440556099122,-0.4259902124679882,-0.16077226958303165,0.4445558155156736,1.1155643267913187,0.6828457369586469,1.728221173668807,-0.1560564113381681,-3.8613460472618533,-1.5716213224077193,0.8820035300829571,0.9159254042022131,-1.2393608377625343,-0.4949419909358541,-0.9668201087389089,0.5739025351604647,-2.1254449341335144,-1.8411621432418457,-0.400835893582214,1.9754800397490007,0.7675802887123484,2.078339632505746,0.14328831389340937,-1.4976002108081323,3.21264876494226,-2.081958613056708,0.5601259504764244,-0.47463913662651214,-1.0980374323106374,0.17673561311143576,0.5944134183399762,1.1663921897800351,0.18723750039518275,-1.612118111222164,0.7602564402765247,0.5991499322602042],[0.9818516708166947,-0.501528996868581,-0.7432056958260509,-2.2725133320293565,-0.39727863011825426,-0.10062585147393699,-0.6012926527607007,-0.15561989429735174,-1.0282469588485648,-2.1646638603320714,0.2917170718759484,0.08340536938978245,0.5292188289996684,0.3032021291476127,0.13421289818508836,-0.1866184458697136,0.7159100037407699,-0.6436178898106365,-1.3073237248921945,0.8430310651732009,-3.0606931986917383,-0.4948390998932024,0.960217444232581,1.2908675321848957,-4.147019097685993,0.9448415955928456,0.09080609351197114,-1.9276982432564518,-0.6817131046034745,0.24438777894778335,-0.3265850998612974,-2.5979756489229295,0.0995964798109073,-2.297810185116524,1.3191318566293309,-0.952854254705797,-1.3190427897146604,1.2703324497119504,-1.2864941284351739,0.8363191064022302,-0.2859577795080753,0.26137106728302506,1.4646410186669714,0.19009089496673603,-1.0556121884835283,-0.5148460762590319,0.8866814915693325,2.092228607798412,0.6220077297009916,0.800830520533115],[0.30954813443558515,-0.4395711554631443,0.1414011432978933,-2.2330825756520443,-0.25832744815146325,-0.44683195079762206,0.12827081819800687,-0.4513730634146034,-0.7508506638689771,-1.6492737053402202,-0.12187384045831952,0.6784846461449349,-0.6199609258919925,1.0127212258684497,-0.39320611756781876,0.36797395587187737,-0.18891810159618,-0.7957826962404775,0.4389473959558638,0.39743895294558573,-1.0100814918342564,1.051487066618415,0.3777058911744141,0.9224850137730903,-2.4172167125863826,0.8362426787945154,0.9206639197054587,-1.404286866131855,-0.5263646696526719,-0.04655298477912181,0.43248032441184614,-0.6680740322988703,0.8103983830202299,-0.19757591110653155,0.014894876931302124,0.9476324894423724,0.5424753578971158,0.6319412802525384,-0.3328965991148763,-0.6730740984586466,-0.6068257035587761,-0.31620291113682264,-0.6762680780554469,1.0563634557687547,-0.7050897692091787,-0.26388004137335513,-0.4283048046021777,-0.34819608962672405,-0.9466969809877189,-0.15041408098376838],[0.3192474942214481,-0.5741532367901535,-2.0332765543023776,-3.153889906994358,0.331098224335553,-0.8780679108576757,2.2877763484492832,-1.4218233454322136,-1.6106421723225604,-1.5427365291791268,0.4201856666993617,-0.26285419892654527,-0.1272219184322497,0.5370210062872692,1.141149590731136,0.734018621013339,0.777656176346486,-1.185712163370442,-0.9904988882868149,1.5264165839224286,-2.125531799030536,0.8506548402407842,1.545340584804297,0.609070255522549,-4.862147875841219,1.0722946897207275,0.32146482254097497,-3.0830516957045107,0.04873775794868373,0.6644606142323143,0.5688398625909411,-2.918792399712638,0.6014320525185964,-2.4048415135498504,0.8966884478001861,-0.6310563599161735,-0.10711690704146316,-0.4966734218050096,-2.1215029036438002,0.2728105004603671,0.6630642956977489,0.6191041454865078,0.47925506519541927,-0.1018953925034952,-1.2868735257018435,0.8438556476327775,1.298196623692361,1.4899303106214812,0.4058668765479937,-0.7344204912046186],[0.06986741493490446,-0.6286566843924059,-0.5915035203232327,-0.7083074507915695,-1.9199728274618106,0.5976051611800753,0.008274658324842117,-0.8530151090313708,-0.022301648979557106,0.22818354108306482,-2.4826664253541977,0.8287549019329457,-0.35485738575732995,-0.6805696882843454,0.39953625177682495,-1.8245273404185285,0.09404131257736559,0.929759908350562,-2.0877014926151443,0.09875951031991294,-0.5639958043557227,-0.8067608670544244,0.7342468684386994,-0.0035515663881983133,-0.4491867281334053,-0.5984085129000806,0.5960849930571803,-0.13535372975927915,0.054208719873434674,0.26609700512958195,-1.0302026065950378,0.6686715474301425,-0.2841177564016064,0.9242158328645943,-0.2739556444371928,-2.8760982882232975,0.21512666056923765,0.8812564220332717,0.21045709483063763,0.22563736204844392,-0.6238115468188246,0.2956555297103042,-0.37310806763974824,-0.7733128480370848,-0.8451022962344099,0.5106511248462171,-0.7228506499669785,-2.2894593273343062,0.3559766556337672,0.4508678474042987],[-0.345992472153266,0.47057870105016286,-1.1159259844290146,-0.4944903190060403,-0.17000986605253476,-0.19373734533458997,-0.06605496341642197,-0.4889872758917015,-0.15857245255900634,0.6140071648102473,0.40393451954903753,0.6058030876994902,0.42998661270837085,-0.43245943441068624,0.1298968435750524,0.34737664588368167,-0.7783982126777986,0.39893049149685295,0.8915679129172199,-0.7400038738233367,1.807521011576939,-0.24734713224529953,-0.87529795401058,-0.6378061476135858,1.1631571409643673,-0.9024878464688902,-0.8755441730857726,1.1673475018400483,0.6935327968957217,0.21409917228499323,0.7432202457223713,0.4786934618982563,0.2142988700508081,0.5661187648219601,-1.8805554736330259,0.10079749310690987,-0.37874566900079715,0.9605626103954952,1.3907489655319396,0.1504436366275879,-0.12518499550864692,0.34447134262067347,-0.1525835847974521,-0.3664385958802434,-0.0662938428115914,-1.5821092068229323,0.8806722276784258,-1.607473050574308,0.013842130095270173,0.27982873854158924],[-0.3204976459126413,0.58043565592602,-2.312311549149433,0.11082277998956389,-0.9896140008781731,0.04509894628029913,1.0083861877586462,-0.2035288403597767,-0.4353445165932941,1.43355793058038,-2.214652222552599,-0.3737885940442941,-0.6229020155084846,-2.0491510837338844,-0.4285775918149322,-1.2965844086323348,-0.9592900687838004,-0.0681942615275728,-1.218263903955529,0.5894160439723393,1.6012327986786135,0.7579691658751965,-0.37784386423189664,-0.8826007258007654,0.5899625703258985,-1.331782466554518,-0.319227001981601,0.5735259531537543,0.2663638907543351,-0.026161407612583343,-1.3906801449667523,1.672554803145749,0.3100367835648685,-0.2351975217676544,-1.2979784724504069,-0.8924773433371643,-0.8364619683526233,0.7683586072723806,0.8222078043182539,-0.6369244315722875,-0.5556516785666344,-0.5567017587779061,0.13197181057974172,-1.0360243357418215,0.9545328698865007,-0.8731751311273224,1.4618328417585653,-1.629634929130926,-0.041426670942248785,0.2664618717012035],[0.8195172542965163,0.13718415139065424,-1.201389453584732,1.340035230324719,-1.5883544358909354,1.3754714928079814,-0.26791179644463714,-0.2838593191094531,-0.682997708130688,1.9253297145598494,-2.1326214048498593,0.1581068720661211,0.37121401241852714,-2.3815558018171696,0.06987107192636592,-0.982087861820178,-1.8286469814290154,-0.5867332857030431,-0.6938334162289709,-0.16381605877044395,2.0136982753934487,0.25836533759608565,0.7346652691161707,0.16447007431221192,-0.16649078542424448,-1.9153886566699736,-0.22918685020201768,2.1217724316276296,0.5342500640110435,-1.0972002015179476,0.038140234240919314,2.1356817359356746,0.23254097144734048,0.1356872527394343,-1.1195412496325163,-2.7546473652177244,0.013064457061184597,0.5679741273116872,0.3316706532536602,0.7659960396442385,0.7097450295877631,-0.2233287951919078,0.6712257606354274,-0.9499992591449661,1.000772147949319,-0.20876743196340677,0.6865591666917626,-2.402872767334349,0.10111741922392499,0.3176270077593327],[-0.08394905670107851,-0.268463889340137,2.751472464844648,2.8361479937941523,-0.7409263651840584,1.3483598509810621,-8.195309925175486,1.9188534192933442,-0.5815772558356227,-0.3420008592342135,-3.453496579482932,0.08408807403132847,0.5722729669879724,1.9042427666138337,1.2153140515070027,0.2204514790618822,0.2630410009078572,1.0386254801146744,1.7767425448046015,-1.8687045387340575,-3.1083825441416155,-0.25384099128206994,1.4385680773740632,-0.18264970850349346,1.33896160734313,-3.609420636170449,1.842498447634699,1.0310304682572253,2.5712420011097303,-0.6462405931080877,-0.18120159554506293,1.1994108427278867,-0.0024879110503311565,-0.6171214888666516,0.650078574587107,-0.11968828341896953,0.18939421510687762,0.9224592077137953,-4.902616412384114,0.8866731671209931,-0.1029880686985651,2.1335075190253043,-1.8692935524114278,0.20317200046115966,-3.334334817673226,0.686308308658695,-3.5343770201355063,2.049792521308918,0.8729296960583666,-0.011311805963046187],[-1.0333352053677163,0.8080109935378038,0.11234969622488541,0.10005537620273489,0.7953427455770293,-0.8985200297976629,-3.3699368940880943,0.9394562044449696,-1.956477848959631,-0.06169793807904393,-1.8407614761613589,0.596157694266889,0.6750663756985131,-0.4521255690831928,0.6448075666999249,0.16555964071083543,-0.7433588622321999,0.8521786833209297,-0.8467569303316331,-1.120899476894204,-1.316478893299641,0.9869473632460587,0.48885731581035835,-0.6418573731320754,0.9108149059537934,-1.1371727825672282,0.29723075622830464,0.38790427903311886,0.6412361093817394,-1.8807273634702202,-0.8858014283283359,-0.4272022371455379,0.3727105311999811,-0.9697023194624251,0.29300016187057143,0.5633137846469182,0.48282296621722487,0.40574532878181774,-2.707481483624331,0.2618762981655671,-1.0151039767062398,-0.06469950277144683,0.29787512572458563,0.8412841338633247,-2.0353918072403947,0.9249685877331967,-0.2745264935329479,0.48105350305725697,0.694674209946176,0.6358289493086782],[-0.06977107271357046,0.050777253331842805,0.508301935075644,0.13905652490479672,1.0042936156270372,0.05447421326284782,0.007654331939566463,1.4202246726713463,-0.4676280900192503,1.2913470006288608,1.0236532192256151,0.8524628418838984,0.3530523447694329,0.29013210048127736,1.4099233428358222,-0.9901516090688534,-0.5447755309126788,-3.4282036293274034,1.1136216788447169,0.14318177701340448,0.27817832872492637,-1.5468332032266499,0.9885559471022987,-0.7738696993837646,1.4916176415868594,1.1824739039187357,0.6808784006451569,-1.019046719513571,-0.41180184758838034,-0.6384673167938067,-2.9861392445193458,-0.3689602947152806,-0.9549361583645574,-0.49729382280844375,-0.5516358497717265,0.9221700563691904,1.0415038619748969,-2.415022433245221,0.0631805873771986,-0.3204106372927359,0.8321342637826711,-0.017349514261327158,0.7837370535624525,-0.26385297613429803,-0.9368080688768723,0.6447886105908767,1.3041236007244292,-3.3254566984271334,-1.480049267678101,1.027227292404093],[-0.09793220203191945,0.1551730454415185,0.7848740356614426,0.3211607120155611,1.0362942222621097,-0.3615487785806577,0.41417975738684026,0.7583147791475728,-0.5733796947316635,1.51378765991559,0.9098659586893965,0.36802454702785126,0.35783611288261735,-0.2922991461779479,1.6760452319302799,0.3526719791784804,-0.17009888594042913,-2.4144735564747424,1.0130853785907106,0.23157257874001919,0.22023893304398062,0.4112466983851662,-0.3690415762313752,-0.30713898657829053,1.2036396998653365,1.4279042343842432,0.69755323756855,0.1170746603032731,0.8375910478185818,-0.030919443674102577,-1.6479568189273814,-0.7642833211419622,0.8360325047726236,-0.05809277648807119,1.4319106359842377,0.15288796558461287,0.41749242637287637,0.20793986333206524,0.9099711969114875,1.2460430840733736,-1.0830235147819394,-0.11262485938862159,1.3676373627654634,-0.34728170513141826,-0.46391089932303486,1.1132296654029312,1.859325636692718,-1.8881796556378831,-0.9819326053156252,0.01432157403203931],[1.888668732813607,0.3057264007157779,1.149543620324013,0.5360574155636836,-1.094856554173859,-0.6522862023119086,-0.14073943794393395,-0.6524672791323339,1.3441472578841007,0.15818026895069554,1.4026570787987664,0.5642445190323757,0.4576972758050047,1.9521791669224917,0.9278583783129339,0.012062344495231402,-1.0518274610577856,1.6361489476483921,-0.23290400365319,0.613212488558266,0.05655014299833948,-0.45843780272702694,1.206326792092702,-0.13392857054891547,-0.9498448056708155,-0.5019837243232487,-1.8984944547667488,-0.11587791917162284,0.9678755042732134,0.052927049838640966,0.2576396381158775,0.5563494194859162,-0.5696827090427876,0.4144398317749309,-1.2572342004352302,0.04576290689391647,-0.3637564794933432,0.05452117348371597,0.35638903911623393,-0.13891644753764537,0.9649202794866041,-0.744659080288305,-1.2888696336999013,0.09693120275768405,0.8971975428951368,-0.18131309280695698,-2.040089005056387,1.2484700084768103,-1.1815718784841307,1.0544598981816533],[-0.3556603232547599,0.16769379033973436,0.771863200736077,0.3307084941817532,-0.40982455935948164,-0.7067334173470956,0.741067606585911,0.05134524239674443,-0.10514152117617513,-1.2468177766937483,-0.7368502900445538,-0.276280288106056,1.1767337866173526,0.8616462694467544,-1.1799853167130236,-0.7704858950186034,0.004803284784132334,0.7357947275035785,-1.8628864183918568,-1.2837614064193885,0.2100006968868962,-1.0588041929294603,1.5737760742701306,-0.7239958045671928,-0.8095854150282404,0.9984071521357156,-2.0793346215736137,-0.7888788097875009,-0.6504941038549753,0.9274686184194849,1.5552364492660775,0.04772417147583756,0.7221338508252827,0.20129264892293508,-1.5662382933877448,-1.280743972081637,-0.6952317659190157,-0.961872245546582,0.1858360587851446,-0.2153817221350937,-0.5109306462195871,-1.2988864039615553,0.05568054150026069,-0.6072109643108069,-0.39073654035258415,-0.37965474274846267,-1.4764222148550197,0.8542509283239909,-0.002434788219896066,0.561837025765095],[0.26504164075477155,-0.2903851867062602,-0.2728419368848011,0.07995054147123298,-0.28498188939298974,0.1465837153742638,-0.2676557862736005,-0.7017945051231487,0.6835341901454263,-1.2932211207499955,0.5667113868095267,0.5792407524531398,-0.17464251209302617,-0.5889625145144073,0.6321039782404889,0.8049090883527079,0.052886343709419484,0.33092510206833087,-1.0405878723265105,-0.5433537350058845,-0.19153982416280674,-1.169984371589661,-0.6784326422535173,-0.13726167714277576,-1.3150757329166831,-0.3912464671675744,-1.991088029995081,-0.723115453513067,-0.5541436016557695,-0.70464143618269,0.8348811530463728,-0.2234590024446463,-0.17248208956609754,0.35908062841680155,0.9351812563413805,-0.6044635109896137,0.25060948655491694,-0.09227699792070534,0.9496289681349768,-0.5482563288242622,0.6576847064136091,-0.31517931755204565,-0.9478917097162428,0.6167810786458511,0.3511653676550801,-0.6827945682820139,-1.394684115886324,-0.5525895357197106,0.6156270912432695,0.15657813634886925],[0.4391183446060375,-1.8731099210408453,-1.3496305210114863,0.2589997818098837,-1.0156413862682994,0.27125515547589296,0.19293210973520386,-2.5793796570761454,1.072235172162822,-2.5240253894249247,-0.34656465704363953,0.5464345267214675,0.8798007378521071,0.8197931787189219,-2.727294843203246,0.7423371447298599,-0.401849122463435,1.261768214332548,-2.5356649954562847,-2.3281814058054,-1.3111635233601902,-0.05501805869567442,0.29016020373551654,1.0255733377052134,-1.172544324385062,0.23722483981588452,-2.012178984481965,-1.3310189471438971,0.02988536850552401,-0.3244153231224796,0.07308653159966068,0.5122658493466127,1.2451054870177947,-0.1587902728891192,-2.0411195183442885,0.1573479311088279,0.7000527493026977,0.9006571254258813,-0.08645579634679873,0.9769736533656058,0.39062328757534537,-0.358538782421273,-1.1825460843644076,0.8649025376954379,-0.4478221208873624,-0.47285204079044674,-0.8134292312874017,0.7437903271829627,-0.023861641870593815,-0.980116578953282],[0.16788410948180107,0.46245512763415797,0.4911626176713223,-0.20068055013859126,-0.6496805984249774,0.558647570105491,0.4503115506229079,0.7992028598371306,0.35305101143689077,-0.08149049105417265,-0.7954049039800294,0.023580364972637533,-0.09644826115861872,0.01604291595842973,-0.2331074166463124,0.40632885483326475,0.9886595784290245,-0.11409695039556748,-0.8929547017345444,0.6278632251164141,-0.22914165632336864,0.10335230972597141,-0.6288862249846816,-0.4505206252871639,-0.7423497330570199,-0.05974553923344073,-0.9026030349686511,0.6657259200507607,-1.656079568748886,0.1148193726040513,0.08925820238078959,0.10731508148863768,-2.113469263737965,0.41615725305239326,-1.9755247124947677,-0.5557644648060034,0.5175398938912351,-0.5462737185970853,-0.4228965177164916,-0.4680651552734771,-0.8514327696717758,-0.24042705210594992,-1.7178842919575816,-1.4204943763122326,-0.26549715233274906,0.3826165347891964,0.4724954208256314,-0.8050631412639168,0.6666822511016963,0.24946164636496543],[0.5018106295650897,0.24522748078394088,-0.478546903604338,-1.0874832478812904,-0.0908621736188511,0.24137744632345398,-0.6672411903640718,-0.5926439553863835,-0.8006591221650744,0.7100760927243557,-0.9145050422316272,0.11923925196594712,-0.6325205052044277,-0.37164312028942165,-0.28912422435645047,0.45466811841015153,0.39719468556345644,1.005808878795949,-0.1859619491986335,0.17890265802954916,-0.04449427077913434,0.2043823549954877,-0.5069654287586932,-0.6951575241670275,-0.1304819988055614,0.6254953479096953,-0.4428256013374827,-0.46741455224598616,-1.7963676226789909,-0.30584626558314754,-0.4151911871345867,0.8589457544510118,0.6761564777917183,0.1440074778523448,-0.9253554816761219,0.11464242511797199,0.9366218121338503,0.12386748524262876,0.22710149257738196,0.1884280530233604,-0.8748895541703825,0.3984278739132556,0.08955884155567408,-0.1784416888454294,-0.4959081489031214,0.21349595259236262,0.29506129324303737,-0.10170209901367236,-0.5992825022218368,-0.20474479196841264],[0.4508756318559455,-0.7049800157365824,-0.4469165666127868,-1.3186955089356986,-0.6102769402716317,0.230497266433526,-0.3983445090164818,-0.07392200538064694,-0.375419260431495,-0.6704932766379627,0.597719943977369,-0.3088847010188428,-0.02926243691389223,0.12072808164986151,0.21629527023462186,0.7339709504033765,-0.40521129004916423,0.2082884896805701,0.2890390145455802,-0.05809263890739506,-0.3073397870003785,-0.07677002955273016,0.33992185563903526,0.19187463598055843,-0.9869025475082486,-0.2433132713377903,-0.8006099590020416,0.39508777416266705,-1.051429036216081,0.8861958017072644,0.4360673062888089,0.6890197713054492,-0.25881958366679425,-0.49159423296567606,-0.4555547710869118,-0.0031928163910064575,-0.6961908210039304,-0.2255322808328178,0.5851596617604198,-1.3797469811078502,-0.6063536015778077,0.5479922526698632,0.5559562693105391,0.411962024287781,0.4625212579509667,-0.9644911949325604,-1.079343018660265,0.1980755519091388,0.24170383921628097,0.2946842025908366],[0.10113550207034558,-2.0303496698434973,-0.10316602955476686,-0.9966492210111007,0.9936634095793022,-0.7446138526742506,-1.340181378634315,-0.842350318208404,0.6673098130600846,0.4362451431906456,0.5285519185198024,-0.4684403430236143,0.7490109617780372,0.30250436079046183,0.4636904317561517,-0.278336943778334,1.0064894097972241,0.011764289926007752,-0.5896960383682524,1.1426381897163735,-1.148426056560054,1.0425324518470862,-1.8895045210596397,0.7153595041173904,-0.7123328741649572,0.27439697264984114,-2.6791567118520385,-0.0904874526309564,-1.154239970245484,-0.3723948627707553,-0.3990341160703699,0.734711888140074,-0.11251230200184476,0.4531107946137531,-1.0902806240611609,0.34584378183405357,-2.661066027583547,0.747449190686564,0.4704932908589856,-0.86666623061524,-0.2500582708279127,-0.6587050007204113,-0.0791702808931236,0.684242342815999,-0.3136906139305086,-0.5264726986577885,-0.9407307666932356,0.5304198592120659,0.5500892893628547,0.7437295192227334],[0.5178107481663131,0.8680392367817136,1.2997708001789279,-1.8851104373808723,0.818788935714366,0.23806339863383913,-1.138819965486911,-0.34764439409628406,1.0470405054726868,-0.8040893832108483,0.4280366027146654,1.1016294331005647,-0.7598377558987365,0.8762995436049763,0.22457673556881316,0.227043582604922,-0.006861347122110642,-0.7471852694472628,1.5889822891791197,1.1005834715472866,0.5225496150909787,1.7477649858410604,-1.3038126464942914,0.12059818886577157,-2.5380243994162,-0.6580960195680646,0.14479409818119496,1.2393099464019703,-1.3068226076732379,0.13103759458460898,-0.17844052104904967,-0.9021748875456752,-0.6888936135004234,-0.23047749311860863,1.13062498351169,0.8846932014037242,-2.391511111846991,2.8354481088615975,0.5609303155281979,1.1104156906863794,1.278013115611868,1.128199249630744,0.6975004910291077,-0.3348793825549468,1.8309950891982834,0.05907647315435226,1.642118550398269,0.2541624328630131,0.05530049509754368,0.8544084749534874],[0.6074025396066831,1.2141208883255843,-0.31954492239604143,-0.7299724384903407,-0.6656275712033045,-0.4904170196783,0.6705692448977415,0.051762969610248746,-1.7059331047975845,2.061488806245459,-0.14666668886330464,-2.548733837175153,1.0633182832938377,-0.09933024371047396,0.06920491646505167,0.2091025952805876,-0.22900306160719014,1.5090080472218899,0.3020833375199892,1.0495156133458499,0.7762403291647328,-0.06588589244045401,-0.328328077864239,0.3866686433886891,-1.779431718165941,0.7770112980192442,-1.7179775594022981,-0.5939329952015238,-2.28445245369772,-2.9879680360522816,-2.450279208291553,0.2386649192664652,-1.014158753834348,-1.378914973683728,-1.9723462815672543,-1.8180648321251025,0.8468353815721125,-0.1802901654144674,-0.7217525779479433,0.6308858887623585,1.0267547397474566,1.0216372859685008,0.44624044287938763,-0.5939217766045141,0.5410582992114946,-1.3930518948916422,-0.013999700620301163,-2.1659437481506933,-2.8349516194823634,-2.8397372004034613],[0.11226026723501964,-0.21015155103027697,0.612368779356994,0.4307351025355583,-0.5150276571768587,1.1968373577785305,0.07566440442165373,0.052589999399387403,0.5396127884569308,-0.7909641890485982,-0.9828761196299267,-1.5772216875591576,-0.19690144598653103,-1.6074966879165866,-1.8504972295133348,1.4243471076466774,0.4649012947856972,-1.6370481743795462,0.8327302010237299,-0.7468069180808025,0.826342260059409,0.26883898128984485,0.6478481438335721,0.5578846236306176,0.5670554335704383,1.1914327478271896,-0.5116338034146881,-1.4288013290802015,-0.38235854361983246,-1.9569343708964877,-0.7980426291735826,0.12751807084941064,0.8292666873397075,0.7999744744675444,1.1298522561935644,0.7087559302644751,-0.06931852611637054,-0.16373018749537854,-1.0453737372670573,0.9900478248432281,0.2010830156739329,0.581068460138652,0.9406000947936892,-0.11001915646817113,-0.4966073845371642,-0.22841634646975917,0.47696441910113196,0.7581997192378006,0.3222700981282206,-0.7958133548250336],[-0.06225773947670546,-0.23720535374532642,0.3303679662462383,-0.5943154039689138,-1.6477238104472598,0.34122936173220336,1.1266711272315748,0.7342399497462518,1.7837486126479658,1.0860182361346913,-1.5028942205799454,-1.7306745439169484,0.7914697327860042,-1.1776247408716214,-3.0760261594222116,1.8762984667782827,-0.27878039016352646,-4.048919518532372,-0.38478570600793993,-2.898490423136,1.5504216087924874,3.375880995060728,-2.2552393705808402,1.092286449542917,-1.2932955375203548,0.4784219814704661,0.7305427380655141,-0.27737648241706053,-1.7594207716586934,-1.0331915385087092,-0.3036216034278346,-0.06355816706029822,-0.33877726324325375,-0.14037919632918375,1.0007857309625363,1.6109467624403109,-1.060121761501319,1.3628056083483573,0.7221556929239026,-0.11760342791323396,0.5073841354375064,-0.3475644060461288,0.8550130064794151,0.7778833483674825,0.49243238193999006,1.5110632609171422,1.9913417809008729,0.2627471310686198,0.822942433065927,-0.4036209392155697],[0.5076458927310028,0.22061614737291357,-0.582367221550238,-1.1661812221958496,0.7717818861833535,0.7519362179387391,-0.03788584033125137,-1.896135532495528,-1.0411776593190478,-1.8625199181335976,0.5100610294729954,0.051913376244674604,-1.5017144935894036,-1.2580343102195963,-1.9408524996624443,0.5502771005713395,-1.1916101737046692,-2.0463286270494683,0.7568431705837579,-0.2450159989328303,-0.6052094689046051,-0.15073659372199566,-1.8034421371133735,0.1803669927844885,0.9426258766715532,1.0601874318648608,0.7729255486061413,-0.976693778553504,-2.599714400082285,0.9816476621097691,-0.7552793004013608,-0.8679814737715308,-3.071729739559964,0.7339927860804539,1.0648552225808308,1.6842697340779653,-0.9336009579016628,-0.5982987122171103,0.7679609466656488,-0.8664827631470741,-0.6681839566693386,-0.9627710613331694,1.0621111200994036,-0.2661916791699039,0.5456479268813895,-0.6142576898104907,0.8157724350558033,-0.6232474155492524,-0.49345815056105974,0.4012951569940294],[-1.0149129135710275,0.6907016088951349,-1.462021701059847,-0.24744437522849738,0.3648385214218493,0.4946220915641182,-0.6106383613365852,-1.0325562411940852,-0.4763932378636328,0.060800413528955426,-0.8701241887444512,0.33389336215232407,-0.8357916374879754,0.9246741481861364,0.1915386968457412,0.2661170612161435,-1.6759834232725954,-0.6046597208511156,-0.2701275444060365,-1.7327991434828287,0.18970807810252716,1.008724248512066,-1.1536481454055023,0.949375761201082,-0.07160603883273808,0.8336850407136812,-0.32441734737289657,-0.1831872684985473,-1.7376077958574423,-0.5418789594456747,-0.181035240618013,-0.5207098391654748,-1.9819527100631251,0.09366828905412858,-0.09157402703800006,-0.5926512990947921,-0.03918027937359387,-0.3252604293316902,0.013389538248474291,0.39047917645579366,0.04879918227061771,0.2764376268095433,-0.00044992556582835726,0.4454143237250332,0.8877751767222609,-0.3560876534103672,0.5224399391782407,-1.2097301742705053,-0.2609239891286784,0.98782614201384]],[[-0.9484590118570151,-0.36557943665475234,0.7362315280649598,-0.3353112402849292,-0.8866872346683836,0.18510372112724083,-0.9822442867520584,0.747641116515152,0.2216764121875391,0.5877549859163886,0.443388565980998,0.35970246057081995,0.902766776835631,-0.49926931594684376,-0.9494023402519495,-0.7349568193912581,0.312553029732126,-0.4516693164064084,0.8600054521603698,0.7429277936274171,0.5994867511817323,-0.2931590248707963,0.7356777151389651,0.8029036477456503,-0.46765594186164267,0.7069907622805952,-0.4248609825799588,-0.8635514457556088,0.9131938785995131,-0.004511454916010705,0.6012239997369434,0.2247483397664157,0.4221210993009827,-0.78859259644418,0.551430991669026,-0.6639137482730233,-0.43432904229703123,0.6660107071391138],[0.3143011096035901,0.7485434086625433,-0.8140366994214192,0.0155929249470657,-0.8915085271399351,0.617297734588642,0.03487408901780678,-0.9518587303288256,-0.806917841164372,0.35743051662504505,-0.024799788239776188,-0.23746208051672663,-1.0347257910982333,-0.014824700774984526,-0.7741017283356225,0.8703467010714401,0.692928999554019,0.4143774125691614,0.8183066406593859,0.3862066539629468,-0.32109765040874994,-0.6636683235884224,0.19951693662206793,-0.5409458733986704,2.796611713129248,-0.9074657590642508,-0.5934964246456903,-1.1271675061102582,0.8286227357207749,-0.6094615991074053,-0.11365728865416104,0.74929804631278,-0.9680075877922286,-0.7825512997816768,-0.2879024564107171,0.052994587828991746,0.6193014330532192,0.14530096117982147],[-0.8281766613406188,0.08749794230792764,-0.6671035690025716,0.23299943280482388,-0.4855804589656096,0.24294273749311143,0.3022207844522419,-0.09603070769168923,-0.04087796791713218,0.42371674341135007,-0.5488315497989432,-0.030813826664253714,-0.12001134211562352,0.3357773283227451,-0.07835573452328194,-0.773603361854719,-0.14076631078022497,0.3213661441379778,-0.8731052377570392,-0.09667210772261552,-0.04315424360727402,-0.0537802420525128,-0.9536900527588957,-1.0479116172248835,2.3672434773531434,0.35903815461109884,0.31710577053625766,-0.7227568068981227,0.416776263224372,-0.1592996229288087,0.016214010659990053,-0.8302678554020707,0.4371468353921183,0.518793858145377,-1.2131995598626926,0.3029117352245627,0.8357049567868111,-0.5649384107309996],[0.6910231297742501,0.0994073573638225,0.2181756121035065,-0.15171845332713269,-0.2503605852835057,0.5544422525440428,-0.03200700547039251,-0.2980231452994483,0.11724927758109628,0.4203418145386078,0.8305556471129592,-0.3683984820577799,-0.29377098882728564,0.3790512116291218,0.15151317769044742,0.3108999383899468,0.9610822670251312,-0.07298832336360171,0.48283457140965635,0.7444249823654245,-0.2811674371868935,0.8779627771650191,-0.3270200390381743,0.6854967513662754,3.1939398196465723,0.8774479163709413,0.32661193466175165,-1.2902929856500636,-0.7974001653582388,-0.2076141098764828,0.6371647426718926,-0.8865153363264274,0.24496650727812735,-1.110085712797888,-0.5957870821809896,-0.08202777703397912,-0.34627977630111634,-1.2658236045222742],[-0.730006853122245,-0.7093997752115342,0.4221670935104411,0.1420408428402264,-0.527762402784024,-0.006140145529487157,-0.07317016092328839,0.6245218069233495,-0.24936297681418695,-0.09952857026192638,-0.8587320528331917,0.0042964676150799,0.8648389674245306,-0.8358045830361411,-0.9386543685835806,0.5846411377162761,-0.48065963665066563,0.14652000447348495,-0.954084701938787,0.5649606938552487,-0.8535120014137271,0.4047005766358171,0.6246434113868082,1.6383924603462234,0.8043471940225987,0.7018107405157955,-0.8786261168675388,0.7266309746748879,0.1416275811917222,-0.5350609890481703,-0.5711426137696464,-0.18209413431050292,0.21569484854073795,-0.5067179301112738,-0.5859082588023792,-0.5919602185537977,-0.29359804982156296,-0.009416621561216074],[0.4620978035683661,0.8570813538549171,0.4694368658213615,-0.5502055911159506,-0.5809817795437701,-0.3417881883380023,-0.5838615790501095,-0.5610889257596464,-0.3276683490436461,-0.22302485343243203,-0.3688165366756199,0.7570368872851241,-0.3102937425026115,-0.5428114159284725,-0.4971838913916361,0.7291163179026044,0.6255495556142688,-0.5443234983503378,0.3351691508214648,-0.7596328468304411,-0.9970490442135506,-0.1898547228778391,0.17661397223744715,0.7906202336454369,-0.3411496451155118,-0.30341002702196457,-0.9544811014555463,0.6854114288827173,0.29016849175319065,0.930153324879304,0.872353794967686,-0.6623243532269776,0.09515753017721598,0.5848627089317752,0.34063123235369913,0.16748971959491424,0.8669971966343029,0.2911271653739069],[0.5080236525928622,0.48970429588559283,-0.4978919565103896,0.5710973340569678,-0.42208690208400607,-0.9572679972258209,0.47144641659876735,0.6086753409652861,0.21326872227871083,0.17607514274425132,-0.6419877318491498,0.7106204423529543,-0.6270770740286998,-0.2290421306385017,0.06927882753879343,-0.3476448518099841,-0.7927465419318186,-0.5752930995307558,0.03479716103016509,0.4872922304112558,0.9697154672588301,-0.32798176960282727,-0.8127674675455447,1.1825276635201787,0.924247034952264,0.6868797257559808,0.3169449208668367,0.7399618149779472,0.31836808236308023,-0.3687300469621823,-0.9468076262400767,-0.6781049625829529,0.6660018816686869,-0.2968129968185062,-0.22732472760807973,-0.9497259667629148,-0.30301664010190477,0.04750265281652761],[0.8110123857878143,0.3203084093406246,-0.46702895491211005,-0.5270591312906826,-0.5825518038621829,-0.591247014844837,0.9153326079173474,0.34536158007575957,-0.11254608525382064,0.6042220076212131,0.9621070686385629,0.43571377320434,-0.7157558315700265,0.5069429452649502,-0.8029471114217882,0.808122437237135,-0.08827840085577301,-0.8167261469652853,-0.934763763596395,0.630699872734768,0.42600611838508784,0.20431400252666296,-0.20584354725553988,0.5396696876014533,0.10330526446462919,0.4119110667503484,0.4627439311259261,-0.5409180793103444,0.5330825806158612,0.6388559685575889,0.7459510304709026,0.3267582461304633,-0.1941104232017077,0.5735738717039216,-0.07489828342222736,-0.5163598784812461,-0.4503242573782287,0.48277207560065805],[0.5593301416798783,-0.27237828915578094,0.6428042372236148,0.47305701470933653,0.2504569398682022,-0.13177276264198565,-0.7803015512128074,0.8939455200288269,-0.6869902289369743,-0.5876767525872966,-0.9956976963195525,0.5118928823427166,-0.7492700443814396,0.42024228720811085,-0.7155259463416573,0.05937589156724364,-0.623035088764455,0.8996562574692979,0.08623624143309394,-0.03519678403746245,0.17968831547630526,-0.45622694102637545,-0.7804260288126499,-0.4859183626977072,-0.4994840681883567,2.33345419961188,0.1514865840952708,-0.6624713753108976,0.02459499425090031,-0.976087168232239,-0.8513166425393768,0.3456088487929571,0.4227235690227707,-0.8064219318607041,0.22526924604096485,0.6638783024660221,-0.3287043427534242,-0.1698354734036657],[0.5575726524258908,0.5065558138437545,0.0048725488518777905,0.38770473449353055,0.5162576951832727,0.94224824551039,-0.300689262920984,-0.06474046781871647,-0.4447029217239027,0.7622518434777555,-0.3485812125401037,0.0419207811735633,-0.6318887259414498,0.31841401283777737,0.17802808641736462,-0.9303185932878979,-0.21293966243893717,-0.4206056267404049,0.8009933466458989,-0.7533389502462727,0.1414365188465834,-0.09813240721898217,0.05601605149741069,0.7512708481903062,0.861575648969885,2.236049896798962,0.7913361196285752,-0.47093511772289576,-0.059411194157917804,-0.45861526598410723,0.8055548780145891,0.7467557801582968,-0.3022537136600912,0.8497864820199931,0.8861889250273732,-0.27224677432611705,-0.00687771224864084,-0.95328669185443],[-0.04638268858421819,-0.515890537887218,0.10910459588021226,0.9002186451516546,-0.9246634696390578,0.7484841688024372,0.7749828976813566,0.3138096217666966,-0.10168583409079904,0.3340310110248604,-0.3154241980950511,-0.19945827520799206,0.10388349242477889,3.205374585247408,-0.8451052743718113,0.5334429708470178,0.5533412336000706,0.7303371544605555,-0.5498731725842871,0.04204158786447895,-0.7354611785309284,-0.5302624789658106,0.8670309521389851,-0.5374184481555409,0.4776107205497095,-0.18171318649642798,-0.6417002079980286,0.29042853854028317,-0.06183075395597208,0.875773954096553,-0.3432704053730074,-0.702832762521795,0.6659315599483352,0.7787691540268268,0.14780106547835858,0.09188115309824,-0.02707534723993128,0.2043132485081696],[-0.5827002989945458,0.25008258954354834,0.536039521235085,0.9400682600486809,0.19206043409903198,0.9271915914624067,-0.602627343548967,0.9316713155317988,0.0887701944429712,0.39469187027214586,-0.14294196094359743,-0.10295860229015674,0.14530311593522527,2.5355974071362333,0.4447137420733769,0.5494708600835303,-0.2671245856202788,0.7886937512214433,0.30443278594752377,-0.015834012155502678,0.5254424115039665,-0.4092840134516375,-0.33967866784349815,-0.7304068136052588,0.2548558054755308,0.8262691267644198,-0.6529516636618641,-0.24433464867376048,-0.9892218688439515,-0.19343150067422527,-0.8604909303635755,-0.2321358741740729,-0.8291000379691049,-0.30679848173729946,-0.8995586783962505,-0.042981795973279974,0.5200530254883371,0.21936915477987684],[-0.35043235845193793,-0.46144135720367363,0.23496481573311992,-0.04752570771855708,-0.6181972665273614,0.21252645314490018,-0.8188176224099033,0.7851775682876003,-0.6123489266491182,-0.16415956264643233,-0.1396525089478683,0.030997831342409698,-0.49231594706662557,-0.5269657627819236,-0.037937623848747874,-0.4553603841573263,-0.32710030084905634,0.4330390322139174,0.5968199653967687,-0.4205690080533693,3.611047030081934,0.6492294052887109,-0.5545509427967587,-0.49458203896380604,-1.1681695655026922,0.6982626771605066,-1.04987657894007,0.3949016075719453,0.753586573055737,-0.8476517890468277,0.5183692115504936,-0.5096692895179842,0.8611672593700261,0.5145249793317102,-0.0875373504356403,-0.10026751103462882,-0.7281166451536025,-1.219068546429052],[-1.0278854023661437,0.24080881656445025,-0.906274026670353,0.18185619027162656,0.7024771146940708,0.4919280530196143,0.41657101473402497,0.053998221202063344,0.9221179657078432,0.7044267315757055,-0.8794287651445948,0.8944556340538986,0.021916404944230687,-0.5045557427436087,-0.2797624527511532,0.928601456725126,-0.7536971037417892,0.5686816607418339,-0.9366523955959803,-0.1318647400472066,-0.7122200992847688,0.6675635134396289,-0.909971463258392,-0.35919430631711585,-0.9776463938416349,-0.20564593882135423,0.36162709540680754,-0.8164520758744984,-0.1737447425909246,0.7534431466102168,0.28302577577806515,0.8717709842146582,-0.32152125813477594,0.3526461197851154,-0.8660792691562701,0.27628869988277016,-0.8891961513885583,-0.0746212612265935],[-1.0127501988857317,-0.299916970414566,0.11786080686820924,0.5263076097220714,-0.14132502043606132,-0.4067301114878945,0.15774441830230534,0.7982682032216089,0.6287915650251777,-0.7145763979972595,-0.9967263869252694,0.3738836537094179,-0.6783619702368203,0.2745476727190027,-0.12754525219212176,0.15713243923445708,-1.2689133068399878,-0.47944999266911975,0.4470080733107305,-0.23405275832264438,-0.01797955282703779,1.4804688180502346,-0.5945025468141552,-0.9119696025795501,0.49135392518130794,0.1844121462543736,-0.7885044961363133,0.702424313829444,0.6426667667170657,-0.9953591786823937,-0.5331447015190462,-0.592795976026957,0.5675083638043956,0.6888821530954667,-0.16073533579132285,-0.8268545249709485,-0.8361507195255173,-0.23742185992952386],[-0.7608362645731639,-0.08375763990482053,-0.5371454867578669,-0.7401706867189002,-0.7085978553555004,-0.2804147290787813,-0.9367243018017972,0.016805010512416924,-0.6571176068614654,0.704237899037914,0.2080843798357681,-0.6923761216473,-0.8282357339838855,-0.664299819759775,-0.4407961425198805,-0.05111817407316986,0.49357778368298805,0.14028703492203676,0.2827575729811223,-0.9205227348054578,0.18360301331414072,1.4190211119707705,0.41431414642385855,-0.055358175503202815,-0.8623982021962792,-0.04963066850512837,0.1478368375773039,-0.11669117497021345,0.7861511005015839,-0.00393263648958918,-0.37956382266417066,-0.43531566271036515,0.5053900739932331,0.8867405582765314,0.08531959298875175,0.4630746546222211,0.7785547207091892,-0.724831257061538],[-0.9916463380626044,0.35069859510110657,-0.11974081827040736,0.39686688558108496,-0.1333998495361437,-0.2785642758062065,-0.39502416384766975,-0.2154380083958908,0.11268657742564396,-0.5348428923569091,-0.26136666962653593,0.4416044462044527,-0.5643910039122761,-0.2505348098360679,0.19367092311815473,0.8917292260098979,-0.6681456435921281,-0.4963880537482286,-0.015787636223211613,-0.9379731309297533,-0.9224435933337695,1.4312072124486646,-1.0428328468512482,0.2296290964252014,-0.6851679755848143,-0.5835579888617609,-0.5377674144944801,0.05928337392602025,-0.9199534565121156,-0.25607366149672006,0.013476839503275205,0.3303260338290747,-0.8642996627383074,0.49691974723085636,-0.13543135178455856,0.48229221181161847,-0.778057995257683,0.318599904019982],[0.5530394677310705,0.09883468260619746,-0.0880721849817135,-0.9589204105553557,-0.6283231988498245,-0.8905524120353292,-0.8951980294100758,0.20377052160071435,0.8820501585441128,-0.8100073441637538,-0.11348720532471374,-0.7558621683945951,0.004475342972206333,-0.9870148635086898,-0.2659246099977048,-0.29073580716236624,-0.561588825721562,-0.3108615584408872,-0.5763704190148483,-0.9836273725502656,0.6869922128246774,1.9312459212704693,-0.9577872889785586,0.5790367510879679,-0.9850268375198207,-0.07256674967775673,0.10755024501812677,-0.1384548895990991,-0.03917170537812416,-0.1364582405056358,-0.4127718415001616,-0.9974687503217169,0.1338256825375555,0.553874407084633,-0.224212728409346,-0.24337510376714522,0.44711014037461416,-0.11882237459127958],[0.45606688056269684,-0.9815917095000828,0.07591299796904485,-0.8908838284075611,-0.4912006731944124,-0.655648522623597,-0.6427421295340612,0.403515619670845,-0.2779441937794175,-0.883872826009387,-0.00885004094006021,-0.7552891605123686,0.5471076008606746,0.32130383326204914,-0.8732512609830656,-0.994310170558094,-1.092642735082274,0.12060291961805479,0.9494284116793842,-0.6522193203971519,-0.7694580099475086,1.6757788562182458,0.604551079749947,-0.8904446574193942,0.36862004726576375,-0.2558111132163375,0.46317058700396463,0.11945937439765125,0.532240021642939,0.8421184182362973,-0.39125789780425546,0.020656148321718495,0.4946375133294531,-0.5280317062316644,-0.7293516116522624,0.8843753077978174,0.6784363813434684,0.8614229381410098],[-0.9975531956723624,0.44172502923641477,0.6148145957004552,-0.033778119014040354,-0.1217143275256194,-0.31238609128065925,-0.9765731771419208,0.811631406826535,-1.0192612433426065,0.20736632599081423,0.7138754742844771,0.2758779947337275,-0.24784657984055491,0.36903917996782726,0.09682851815319395,-0.6193541191663807,0.7112534550387009,-0.37832464849613784,0.23329477629068654,0.44715172137351783,0.44018364509830904,1.697151535300578,-0.8229553664539881,0.6613441530056503,0.47672802307696077,0.05676330626035508,-0.0034287688309851795,0.1819384190519512,-0.23452645559126467,-0.8369015394871988,-0.30897634350989756,0.367561562452209,0.8571546137617292,-0.3171630736341692,-0.4321289436858761,-0.49535009000886027,-0.5986143710893881,0.8063919601801485],[-0.1212980526056551,0.31057102165389117,-0.2848004444649901,-0.8884209291314052,0.9773359449290645,0.23925013619505267,0.7432030682628136,-0.24361576582000058,-0.851118703968278,-0.7365162034527366,-0.8117841748216227,0.5026932935163806,0.6678105260862572,0.446933219866103,-0.401333148040011,-0.4395387385488572,2.2580026718025383,-0.8225445401079021,0.5506365172652624,0.17008072267125057,-1.0041490387262029,-1.4290047860975488,0.16092283017838369,-0.3235783339501489,0.31257357004459535,-0.7828302835924869,-0.37245271959968324,0.44287903502189524,-0.27464203707162976,-0.3983883797441051,0.5054217092039643,0.2785682592358871,0.3086276288084513,0.8239186818877586,-0.3708600654966381,0.5771358850339919,-0.22192227952086063,-0.13795732202367864],[0.7430057918192207,-0.8633990893795401,0.8298136178360849,-0.43603120295469777,-0.9919920823389913,-0.4387027961368741,0.40356138317023094,-0.30113516925362593,0.5220463422904051,0.747383593772216,0.3295954279152381,0.5410281975938336,0.030389289215395073,0.6402215179302146,0.46656424069740504,0.362096877118242,1.7180595368013085,0.3495178056140371,0.679561325754059,-0.6138811939707909,-0.747852157747412,-1.5743654854171636,0.8291962379773941,-0.2227216560677293,0.2309507570176968,0.5810387203447489,-0.505312397014242,-0.6960200053966259,0.2133027990250538,-0.6451024577464748,-0.5629121711175177,-0.3115625020813243,-0.17232545361942456,0.5935907279143836,-0.08501180868164351,0.6398170402301999,0.37053693456246106,-0.984571866695708],[0.9279314738758373,-0.7476279287287483,0.2924504538397934,0.46929606867093343,-0.7841146069292152,0.7161842372870315,-0.5922916419134464,0.48123670878988123,-0.8748497979930886,-0.1662189889037676,0.9831309912113039,-0.29384176861006855,0.5306933044416124,0.13806249600315007,0.6875899756722498,-0.40657817601383445,0.7877591281718073,-0.7345843542155748,0.9100141760697361,-0.834537877309848,0.532840415490855,-0.11827353128953594,0.4599621974170966,0.3325080016068901,-0.09168884583733568,-0.2983547327244349,0.5443406382737089,-0.4240981763113938,-0.5837010898705421,0.758651679115943,0.47864105371668847,0.868629046336374,0.6685585624429989,-0.9395807340790449,-0.004480440426756901,-0.4565334540023562,-0.8684471780418715,-0.4702825130596029],[0.8341735527861975,-0.9658719638355341,-0.6555469696896209,0.4976101951982161,0.8796496647211248,0.7610411359903753,0.6684137496628288,-0.07610031826839678,-0.06765873083239811,-0.17602514210738665,-0.16844812352127647,0.05125218635806345,1.8003349452798207,-0.19274127222088513,-0.3827932343943038,-0.9591132772076955,-0.3373340667566965,-0.18507688622429946,-0.23529425973590296,0.6686178799312925,-0.8872329791472461,-0.9622720755696654,-0.8174709105789155,0.4268924339025377,0.7512847095538644,-0.6687397833224691,-0.4598615800893213,0.5553398908077845,-0.26383947727997425,0.8270092550287449,-0.32803754126203694,-0.3151562690686741,-1.0944226102393115,0.37839422623096697,0.43416922247068285,-0.584178809793221,-0.8088343961602824,-0.439080282010495],[-0.9135070909571688,0.8249923463047331,-0.024461953516940704,-0.8319665463404982,-0.5871185471179768,-0.4998114161663923,0.24526320423506967,0.8668818496251289,0.5152411642937449,-0.07785229947945009,0.7501045371061574,-0.4640682937489585,2.790495675269458,-0.6259765383090307,-0.5427546412300646,-0.7456996126713831,-0.8670917623136499,-1.0385881874188163,0.30794852861691513,-0.7316739150129489,-0.4443201387559294,0.12707070455724376,0.2756541750855879,0.487029367573759,-0.3992065274687035,0.4611286740308319,-0.6366370154304581,-0.2774503610810904,0.4013792306652534,-0.6870479871950413,0.062027966150518726,0.5304831354213587,0.05189423748575002,-0.6139080230157742,-0.5960656551380238,0.3574891215702592,0.4826350981200215,-0.7757915563355536],[0.5373285865536864,-0.8379938288863834,-0.031009710431393604,-0.6655192197012435,-0.2559144328847161,-0.8004220392885146,0.834913317111326,-0.9778732661777104,0.8195428627860122,0.662074215855512,0.29226047098786434,-0.06404551598437448,2.8510548353007703,0.4774499082716708,0.46061116338488445,0.32106613558872893,-0.29227430174392577,-0.23160910721079359,-0.428758503039016,-0.29861852680555895,-0.6287050951153791,0.21357991122767458,0.6526625318048164,-0.34562657170957717,-0.1399938472261566,0.6884799094498832,-0.2828406552358009,0.13655062274516916,-0.7628613553071422,0.5044951111578391,0.9276598147782704,-0.7178691150703012,-0.5242587539733937,0.3040592338744955,0.7436073196678326,-0.46459640381135603,0.4364885890271486,0.5915382926130449],[0.5071795927963951,-0.3567728550058285,-0.6004654347283467,-0.5996612243141554,0.6965422751918562,0.4867533715516805,0.20846303761729967,-0.10012437672755099,-0.23737041650774537,-0.6696940628801136,0.8994644537705704,-1.0795986377361926,-1.0340589521787045,-0.8522690653219307,0.39555143972207674,0.9360589238412405,0.11595763929231848,-0.8013451695731854,-0.698709676077969,0.7028976318173579,0.6322802007467593,0.05491100548213547,0.030955187297209405,0.6728951472666238,-0.09244248398420714,0.5704953391700526,-0.08565817046757099,-1.0958931642758387,0.5938966037919213,-0.16500907097946815,-0.8111097645566205,0.020902257320640653,-0.19727926900501763,-0.5804852851270318,-0.8032328591512069,0.7372637367314604,0.6228650907357743,3.265463779430921],[-0.33952539382825847,0.47154721443055797,-0.34435539540174875,0.7870010125914673,-0.5326489612001115,-0.188131418068058,0.7647072770285092,-1.0005914701689251,-0.28336921297854767,0.5730173338013893,0.05672460021472567,-0.07135507142822932,-0.563158687975723,0.14691368949566222,-0.624722889777671,-0.05821887716668338,-0.7556129696679477,0.5120710851364074,-0.44255211834169,0.3440342701046688,-0.9210731579168971,0.374201478983834,-0.05236542116532578,-0.5980691789711426,-1.320989634658892,0.8772128289410074,-0.9759535787591631,-1.4943058392232162,0.5236078373048191,0.176228531373836,0.5615888651463803,0.4101909484110931,-0.06231127961139495,-0.396829965686693,-0.6322282380458033,-0.5537896652934194,0.8944060858778504,3.1187125303578793],[0.8276717745986009,-0.3526846564309195,-0.16204517412534508,0.06487208865372562,-0.14866484176751396,-0.0074283673367222134,-0.31627883571280296,-0.8336938030334096,-0.009398036909925692,-0.2810804197160279,0.9076884238793987,-0.5728208496062974,-0.994525566283037,-0.6984039607744932,0.2008469004685605,-0.715740517475773,0.2933673309494153,0.05052264735774119,-0.8395116779392061,-0.9648791701190724,0.16320475067411025,-0.9976975439660207,-1.0051422588913352,-0.2053466304108197,-0.2071085031811163,0.556367686054512,-0.9679543964261861,2.116307870482124,-0.2078010867672768,-0.06897761827142224,0.38332676439137753,0.0007512244833809321,-0.055816744460928394,-0.888543649922145,-0.015070000355266332,0.5257273277570588,-0.511530911737323,-1.4555433544497365],[0.9414400073976735,-0.10148787281662722,-0.21542566805920088,-0.3606703873059737,0.1737911537331082,-0.18335044819351323,0.08848550956136139,0.8451755193238382,0.9009166259905529,0.4097082339275692,0.41683747579686237,0.02655555846940497,-0.8235863443724198,0.16478644534863116,0.40116919840482435,-0.00635002616992482,-0.5670318759099449,-0.930673315046979,0.3821366332406824,0.7681749958449993,0.23747047482163716,0.7714219491246309,0.24091185476481922,-0.862788855095866,-0.4305679168322885,0.2631005341372857,-0.6363945142741324,2.358579437401503,-0.2118302342656281,-0.4175268318656041,0.37091208693851097,0.41965543471003,-0.9842260640639291,-1.0325187074680564,0.6249610530688688,-0.4966159160833214,-0.2988689766775924,-0.5019488364986207],[-0.39636211925243064,-0.18880536408254317,0.6049520194685862,0.8305705548416804,0.12056430925512666,0.3170909618318675,-0.6458653858590168,0.5323109857791116,-0.6546171092227653,-0.5813001308013536,-0.04448503822794829,-0.6606942492236726,-0.5473473754794637,-0.26547827169209043,-0.8847755170760627,0.053547545547702774,0.3300558487777573,-0.6911404073419702,-0.9096149185452084,0.3096795196016902,-0.7882464057485004,0.040291381313785214,-0.8552711341655999,-0.8148860422744497,-0.9908739284500957,0.3196075658848347,0.4093751377972306,0.7333403991391306,-0.871051398244475,-0.27624558573314284,0.8679942635028777,0.4292264101117117,-0.88743377634401,0.3902053932426983,0.6793439125167262,1.9916046980860311,-0.3888490689813978,-0.11739891660583233],[-0.9090018634405399,-0.5248185602722899,0.6527734247852904,0.9045417654323739,0.3877226815473638,-0.6437989103152902,0.6638085544683184,-0.5307479763401814,0.575481341007355,-0.7826718583868955,-0.5044274640417951,-0.38818303156288403,-0.36314212216313785,0.5763141614053272,-0.14424832982118427,0.044857937800809135,-0.9084252462150392,0.046186233985135015,-0.189853270737099,-0.23950058390886572,-0.8725038015547851,-0.8856855234492572,0.3412701115076154,-0.7223556615590286,-0.13808966846891027,-0.3509817158988669,0.15855923104798061,-0.5937197083385977,-0.42050558876181965,-0.9869582014569713,-0.8626868791620586,-0.925714798617255,0.39898694820271635,0.4333736065528242,-0.7805918252838162,1.6358939057828858,-0.3795139512318793,0.08481111837723383],[0.002800343807628492,-0.9643644641108127,0.8210973657069459,0.45150918803413637,-0.5207854504694572,-0.6412775244523441,0.048431141552445364,-0.336348051374643,-0.349106537136845,0.755860070970532,0.8046573980776226,0.22966820479001,-0.02088982967136522,0.07107055745446701,0.8893395807926574,-0.8129338012729298,-0.842812811677645,-0.7057644532265712,0.05360420991435202,0.746508585306617,-0.3346462722896198,0.43492897772976263,-0.2994216970642013,-0.11745008210575057,0.2551951739188556,0.08273305329183998,0.7268008971936194,-0.486818332998837,-0.9424406663746682,-0.13643195506682154,-0.9882762758803577,0.1968093996202711,0.37937081153376445,0.8131852351438842,-0.2603669825968911,0.6020324403001552,-0.04481238187007245,0.5092022016045975],[0.4180521324468623,0.5497317549307243,0.49164853904680755,-0.7433290456943888,-0.25140703093282546,-0.9482999345498521,-0.1596197764822076,0.41213172921804625,-0.1392642585245778,0.3218942875668935,-0.322394379362778,-0.22782060405127655,0.5244624129291799,-0.5161277755650955,0.5513392150495074,0.7910891584952086,-0.0326315657751777,-0.5942361486620019,-0.8890409753561543,0.6621790557586602,0.6307625389013816,0.47354306209022434,2.5665111510930583,0.02561255053127339,0.14178224772963632,0.507863779523944,-0.38469043805043024,-0.027629681083567136,-0.9924412822868792,0.737373877355704,0.6815759141272454,-0.34804838522974413,0.16619355845206593,0.7297302061143077,0.23209826279042037,0.09737238899156633,0.8233545171634435,0.661389972110911],[0.25777164332994296,0.9715854063188712,-0.2841686975776669,-0.03225437876391785,-0.8135709135243264,-0.9874377350789727,-0.3420737657025502,0.40054988493571875,0.6038312460865128,0.673094444904339,-0.906150457983076,-0.9354970328457296,-0.8234123869252202,0.9744676444817041,-0.9958173186356526,0.5295332572898188,-0.2825648948480445,0.03450600084033672,0.6078910591502459,-0.2694861735843855,0.04226451182315995,-1.291794852892734,2.061263293448764,0.4166423914191968,-0.7002529892134907,-0.8965880607007943,-0.5358242274063153,0.7235767866804768,0.3004355963395538,0.6208465598118221,0.39127003069019667,0.56561921798518,-0.5804136229956255,-0.6746719348792236,-1.0088711392834235,0.01683214176909114,0.19305663601397452,0.5526437820629678],[0.001993836021009455,-0.3883595904104486,0.8052290344610761,0.6338765396882629,0.19385827024634578,-1.0036413752370434,-0.9564284954067261,0.8323410593995136,0.914155428373636,-0.44289637739551596,-0.6408862565027862,0.6438937450113715,-0.6170798950347234,0.7161075312043168,-0.577820715811307,-0.18267676866826815,0.22059879202352212,0.21404855939390185,-0.8980000569647937,0.48859645408962205,-0.921545403143302,0.5383617922118143,0.6048821080724671,-0.28558672001172686,-0.9012222374981465,0.21373290946661358,0.19232338413021258,-0.7945294538383548,-0.708163638095191,-0.16599532171286346,-0.8616406384187576,0.10233905896193655,-0.6504020195618859,-0.4153034929715275,-0.3969134877775852,0.16539989959292406,0.22180853705971798,-0.7335834334007293],[-0.4969152324484731,0.8401718796163352,-0.6619511016357776,0.23342223390430183,-0.12413684349824138,-0.7523404678107574,0.2241666970076126,-0.8688325505641845,0.15666587173552493,0.005321296928666577,-0.810375147376977,-0.23204665280293205,-0.9927511303992563,0.6712593264055866,-0.7241933977290659,-0.15395309035377672,0.6109263102908099,-0.04002075806976289,2.0638083930257682,-0.8192745274963152,-1.026419725869174,-0.5311479815361605,0.6493988500603869,0.655073454703629,-1.017130857969722,-0.8013340487887528,0.2698249152124185,-0.9704622544651641,-0.6215196864385782,-0.22226048830058304,0.387832799589916,-0.678586084624185,0.037661490714463716,-0.01642554276521898,-1.0258697708210478,0.4670831827399491,-1.0566405598187667,0.10774227018306798],[0.7536400610904802,0.9068091358320738,-0.3399175003279949,0.9097215672547817,0.14828903899356494,-0.8483905948942811,-0.7718302173820888,-0.8477335496638065,-0.43120497662463275,-0.0411542982491512,0.38396281936045373,2.634397238325308,-0.5869929157083937,0.48660984263039986,-0.03969516233796598,-0.022450522959803484,0.747598298525273,-0.34248868495324325,-0.2955015051679281,0.31187587816103524,0.2061001940354912,-1.0889985206492736,-1.01923758065807,-0.35404095574037747,0.5502738188195414,-0.34313913249719713,0.5758454593904955,0.38372760389303623,0.476875910296209,-0.35870459735488164,-0.0687989189226774,-0.10579499896980707,-0.05873993994056321,-0.4407628931555959,0.2840337651979329,0.4685065830554344,-0.21086773471440579,0.4229300645834653],[-0.9840443794869185,0.5788603706313062,-0.09973092639917745,-0.9071651072751635,-0.2830923273430268,0.11695340746917221,-0.5607902200558984,-0.762566314143685,0.3138806507839752,0.662723247860686,-0.3827238070596435,-0.061542940115144225,-0.18877086627616685,0.32172712218302446,0.08090395498939534,0.6618613342179055,-0.5004772535633645,-0.6405683013399167,-0.1842611174094827,-0.6166422616402707,-0.15371985666384852,-0.518197949116771,-0.5073577284934679,0.008972803118836664,0.6335815984162148,-0.24339608967612344,0.3168521273967208,-0.45392113268025674,0.8470643515690583,-0.07581451180089623,-0.7906380763085369,-0.298985854757902,-0.6244796162401747,-0.7527611792866117,-0.08351183973706301,-0.3458785966143854,1.5445870029156783,-0.9635595418914734],[-0.6882096360677976,-0.9936192156679022,0.11413191863734494,-0.7496170907367252,0.10981673991117522,-0.6602127736192676,-0.9478063551374756,0.9927293840417498,-0.11499223689790712,-0.34185703812658114,-0.3148015851728312,-0.1989907602931378,0.2182719693052559,0.6432717013885667,-0.21846850796359185,0.3203428079119235,-0.4459298895239699,-0.1094204542660521,0.1504975717553992,0.13229935054867017,0.1994263559151109,-0.8612344184786201,0.529356075430039,-1.0055352662904016,-0.12687795219131778,0.5519496421851763,0.2955322449914148,0.4116804816543185,0.46568809143581874,0.5830366487211048,-0.780312249883942,0.30932863568969166,-0.4961760786428298,0.475684709439426,0.19227357870687992,-0.6833606340867505,1.4550736863430391,-0.8705998328377476],[0.08420002364752656,-0.5771372421147136,-0.9564206353337419,0.20401100363285327,0.028878845633201266,-0.7369046845195885,0.4159886372483371,-0.0381374917011922,-0.5294482938479604,0.27017490525050364,-0.025047562532537607,-0.6616888180096057,-0.5230333944563961,0.35822659504684873,0.730300755607088,0.0006150558585234514,0.32424223955108933,-0.9641302577701834,0.08580591782587639,-0.8129116839617625,-0.976991731456375,-0.038288486140101205,0.29090243762125906,0.6586473117266473,-0.8790177661072327,-0.48176130682330753,-0.5718984657114997,0.11450236652298816,0.8608271978743166,-0.24741133508468469,-0.20052379523434097,-0.6500779541128843,0.8650054383901513,0.20448294041941234,-0.3086572238556276,0.6735614615666304,-0.2584140300294657,0.33126289973265505],[-0.13675192845193374,-0.7777103533273328,-0.9415450579160407,-0.9860467368414365,0.2948876654134029,0.8050811248088204,0.6985981149211962,0.08554022086408797,0.702669153235027,-0.967044156209125,0.9167598627134871,0.574443783802688,0.3936683633456015,-0.8769894398841425,-0.024116061319904097,-0.6872772432637481,-0.4787504886413481,-0.31300633114646165,-0.1998831231825777,-0.3774639418902401,0.11785148395085991,0.7400002823347468,-0.7981528257092428,0.7159403095278281,-0.45379620290882106,-0.44852339531960506,0.9157520825522603,0.11141497011347296,0.6180288758016226,0.036000269248282105,0.8448334938385214,-0.10664538351116166,0.5340115950866691,-0.5820977039401722,1.758862663687139,0.17331272686908547,0.19317902997673822,-0.5606589942188849],[-0.7399180291694775,-0.1662232927071181,-0.2536816016792697,0.7101675399824228,-0.29749851119859594,-0.5279330801747631,-0.48578360205336224,0.7876785142199907,-0.05584149728813054,0.7359890157522538,0.6727436673171071,-0.1688807162752333,-0.9152506064031235,0.14907175537699327,0.7912086362308907,-0.06972679667387621,-0.24805036844480058,-0.3410909285324211,0.27973658996469136,-0.6419854144127279,-0.28269119660758535,0.5061119117185244,-0.4573325495797783,-0.1851450838962932,-0.6680952810437697,0.034463880880720915,-1.025578940510829,0.33058896741325383,-0.3556276043196997,-0.6854712904686221,-1.006573319179508,-0.08903210649818062,0.8373966842228556,0.6106839303661421,1.7864281352829807,0.7380720364658383,-1.0002829834313476,-0.4609713946900845],[-0.38488925143805724,0.052469529750670194,-0.5648127773022332,0.10292138149510367,-0.968562920528938,0.08776315409330235,-0.6644875915850466,0.2783023121971094,0.4541490611281538,0.382914209720882,-0.5145401296373765,0.1891573039364324,0.31924507113044787,0.5564747438107386,0.10404872365693944,2.2302271682648094,-0.4937825422943014,-0.8022794593938866,-0.6636406001192482,-0.9094030085033731,0.18083905551257257,0.3858946866898843,0.25565686139117705,0.5106339612289753,-0.033594870156064674,-0.6409893131449872,-0.8426961644831221,0.5627326922009828,-1.0372044668039726,0.2901210982402041,0.3297581458225271,0.24543612190072583,0.05612489496728952,-0.9144759933617866,-0.2594548809349524,-0.5531525547220939,0.06254620130534162,0.323439990635893],[0.12604163374439797,-0.9822393758282564,-0.8746949611647556,-0.0529495881821719,-0.3745994444718104,-0.3155896035034251,0.3360800395045875,-0.17003044089299338,-0.3771380809795716,-0.3038612538796992,-0.42154512774303904,0.21906407517752075,-0.49145199939436496,0.5008348378362336,-0.5421977217361967,2.735318318357648,-1.0313098789209458,0.19687334198427928,-0.7008994386712086,-0.7031160806783008,-0.9372923906057286,-0.056323424873393306,-1.0507371065555793,-0.02477376878981456,-0.6334195966305631,-0.16186973782766295,-0.5924239488105532,-0.7310246319994194,0.3365885977200043,0.2658143936022408,0.810227259770425,0.08423116389738472,-0.1412988920030692,-0.1487526617971737,0.19381811365083781,-1.0502992919559972,0.14592186842958518,-0.0791993602503158],[0.8819457324071431,0.7991547348803619,0.203801278246102,-0.13885184555576705,-0.6236452043771349,0.9013976619191422,0.7173811741431952,-0.9638292200424973,0.02176952277778465,-0.6085228826496946,0.3742516208200103,-0.07093783064935792,-0.5777192704573515,0.634474324019848,0.2849488623928095,0.2503698658995882,0.5163894131670648,1.288010076664598,-0.21100258390591717,-0.3409267713363066,0.21866644711902763,-0.6465886058278302,0.8787435080691964,0.5487035153171933,0.7287190321487726,0.08688631682672435,-0.2912912700935857,0.6918763021874647,0.6112053143492395,-1.0496507901595438,-0.3249869061104513,0.8795071371304345,-0.10835218174476262,0.30706054186099885,0.14341255702349595,-0.2634186865038049,-0.5101731349406773,-0.1788124733379437],[0.5701974327375262,-0.6393049305586039,-0.8386519402227031,-0.7762789613769259,-0.9262006216894741,-0.017650842072917918,0.6142367969814014,-0.34881604393795457,-0.5732873704246109,-0.8822256894214596,-0.3898266131505272,-0.8121657454915848,0.21715257805470878,-0.8325015420512618,0.14368007199035887,-0.8462683037570673,-0.051659506932513186,0.7108499154831419,-0.8571305733869399,0.3543321292612509,-0.20554158025368463,-0.056402192842562426,0.5388053274382718,-0.3790981399443613,-0.7112584877829102,-0.18782174574994095,-0.13140778567518535,0.34653687030380015,-0.06191705866484514,0.5149674952886244,-1.0104148530991737,0.16365179133916044,0.057448312028432556,0.28897136802342854,-0.5596878404785829,-0.8320634900742709,-0.4587397396254168,-0.6633739031220395],[0.8045438702935134,-0.765497700715081,0.3931672014401044,-0.36103148251452705,-0.2765176814631406,0.2075869123724321,-0.36898473675838106,-0.3492652380621438,-0.3322291475885569,-0.431182337999119,0.8032627044300223,0.9089571566965394,-0.8903085752126578,-0.7080543370530963,-0.9362842086544791,-0.6224150037719329,-0.698287207755297,2.845225308305154,0.13930066864864526,-0.9039152724017439,0.5212991610931218,0.15343857827213803,0.2986318563306279,-0.6658448711126054,-0.28086871712288347,-0.6338136691686977,-0.6910093919250581,-0.36166338828585964,0.023990845447961606,0.31610553796696234,-1.0061865486954298,0.7367937050664833,-0.9470351329714832,-0.27636823456587734,-0.5651938793215562,-0.42153879847032855,0.8800548760409168,0.7811723751623102],[-0.5829455954291853,0.7926614498221244,-0.3081503191142351,0.20347969509976668,-0.8486048595691013,0.0966066938793854,-0.9736533087531853,0.5282233760859754,-0.9825675441947089,0.8977033294012741,0.26202210781968294,-0.6901450150244328,-0.10989340394061016,0.6536774344386067,0.27105525567102423,0.97414124235225,-0.6614586469581129,0.008396192537453903,0.6939162246792623,0.6678953427559479,0.7919033589878661,0.840644400667294,0.324520928568794,0.7688676340525389,0.7696748334406354,-0.25798431722261883,0.19540064940996787,0.3683049345643952,-0.26589890871782795,-0.7497400132928677,0.00011650180007675352,-0.5896915906199616,-0.8145614056459349,-0.3189877367927514,0.8498308269685694,-0.29609627885896367,-0.37832096681875516,0.36917280379386647],[-0.5118678570395735,0.05806692463992114,-0.30800286252510234,0.20801152683207155,0.3192436847771945,-0.8243924035580382,-0.5418128531820717,0.13032917308688785,-0.8307483219781396,0.44742279639831006,-0.48699965755835706,-0.7369185676810367,-0.03823544452165275,-0.8113848593502089,0.6204681299378985,-1.0577882142618271,-0.8084119842946306,0.49016681258619177,-0.05574467451679376,1.7589866918110537,0.025562298357892355,0.5078995181615552,-0.8282497027331894,0.866028288220385,-0.7323362653466272,-0.9171926384062715,-0.06301778469393805,0.01488139510720112,0.3882303743963096,-0.739561904133376,0.4961132971686063,-0.873168126117829,-0.23715520071100668,0.07352996169014672,-0.17053183264207963,-0.3706790175927038,-0.9507249308461643,0.27249255441079323],[-0.02751956522424098,-0.4139869779471462,-0.2915428126157481,-0.7361685892562624,0.975945957214666,-0.23220388160107203,-0.6851592734993545,-0.7659998951799076,-0.27897345118675776,-0.4342767646872073,0.20019461998043397,-0.751681579714296,0.05540361404729482,-0.6362406662991161,-0.19890734648576858,-0.9188879841198405,-0.5556031829961223,-1.221152295674852,-0.8326026138833115,1.3051605611854074,0.6430972170860595,-0.832564322947612,0.047173279023915854,-0.12296105819152181,-0.12170095629656369,-0.1369176400891785,-0.9819376633143221,-0.45985952942060415,0.04523434141523618,-0.39725037190130336,0.2769217254013389,0.40055909769655207,-0.17629883025323626,-0.8253849419548653,-0.2153331828931559,0.2292673062562403,-0.07915667490675221,-0.6421212490984999],[0.9290703148343332,-0.06595571602886358,0.7031472720689776,0.8865206626885739,-0.5129203093359873,0.1542431923466263,0.1892612221928116,0.04484103034414017,-0.4164732431086776,-0.5045825801378546,-0.40283604164553655,0.009199804168198697,-0.47705404514272765,0.867901079909992,0.6813535947963143,-1.2701039062954693,0.8322799436297492,-0.7875772896643789,-0.21034397512080977,1.5606916032862825,0.14047281439587017,-0.48930144705739914,-0.2892106495951879,-0.8634345397062646,0.022829436445043733,0.1937969675216409,-0.38670989862377264,-0.6196098092734205,0.7252543114259409,-0.8270361897599486,-0.8486917659954352,-0.22191631723486865,0.4222451166479977,-0.9310780273853663,0.47665297647135346,-0.1983846571385273,0.7580488827312739,-0.5900614781556195],[-0.010931890987870544,0.25283562081856026,-0.7917373215640875,-0.7272964142994865,-0.7267260037944311,-0.5795176631432115,0.08917740087650254,0.07719345733466382,-0.1870777663066353,0.470654563956553,0.7567695903768129,-0.27464613238702806,0.6590201345864354,-0.8217994433637205,-0.10411806460651438,-0.8007442674476438,0.27937703135725567,-0.14741910815165657,0.23710377981516334,-1.0813268260854008,-0.46114667752535543,0.006766609302361396,0.5394859434484188,-0.9441201331028873,-0.4815967916871956,-0.8617479587119777,4.21262126461401,0.8328605757154826,0.21352822264362903,0.1900710225262028,-0.9354810622697728,-0.052512037427442176,-0.7739211045166838,-0.0991439907942026,0.2992186111362355,0.6125341491378878,0.15536949186463367,-0.4872632257267773],[0.8190886978062655,0.6656894795678461,0.257221943201162,-0.6445519879846305,-0.09583241690621402,-0.22292372141864653,-0.01105013181016138,-0.8273861120882369,0.3711432877560496,0.6878014166655246,-0.5300151738833395,0.16613836988652234,-0.024807103995458154,-0.40195365784798004,0.7916310078024277,-0.7540037026540739,-0.31451289241427743,0.40396623148701666,0.5504026330360573,-0.29663515990184697,-0.8088740085464123,0.10417436810225929,-0.15687350391489266,-0.20098894413433452,0.4592278830410575,0.7895146117225506,2.5333185378828187,-0.6887033042454015,0.713737199811254,-0.4445067846072283,0.5438031593193798,0.27954998794760005,0.416554336727131,-0.24100862908960463,-0.0973685969115171,0.6837175986860071,0.41090831647983783,-0.9552889108413788],[-0.20895829231638988,-0.9575915513118525,0.39790044062431534,0.2031592692849579,0.3429817079053207,0.045370056356896914,-0.3963599129356837,0.1438880486410332,0.9209652270809392,-0.9415710178170221,0.5889885990064861,-0.7063774280372384,-0.3943480349348698,0.6428843993641982,-0.6810325502926287,0.03224540834943634,-0.27652318076932686,-0.48086682306164524,-0.6881914082159014,-0.05765514600660106,-0.1614843042362464,-0.4788714813037177,0.6165128057848878,-0.9041300133017056,-0.4253898410975431,-0.46652825684757604,-0.061790508502260484,0.5283956328345794,1.551731219597246,-0.4746460251650747,0.05050296620696704,0.43468731228276425,-0.3692187213004959,0.6990590564560817,0.3240775271728913,0.6711473355410239,0.5065445223503279,-0.6975135583439793],[0.7767284651040484,0.22298767817417384,0.04270585150782126,0.508847340527105,-0.036367675692038026,-1.0054143069972616,0.8102176815661922,0.325967372800441,-0.5592285452206144,0.36781391355028636,-1.0027400553857535,0.3781768100322032,-0.20911755914371888,-0.2055887647378645,-0.27927836171461096,-0.5717344405882088,-0.2984446837810505,-0.72441014292846,0.3177568620615965,-0.9691264399783139,0.8613820177892386,-0.14518732943652354,-0.8224213842656449,0.16707470087391144,-0.342044350018292,0.1613051538042202,0.6426051424874374,0.3147796199664087,1.9488955385761815,-0.2461354982802673,0.0723017519054402,-0.6819471246337737,-0.7777210549984156,-0.5822902077475663,0.5297943388916831,-0.7202638470373498,-0.6497733605751,-0.9127017450060791],[-0.12919318247538522,-0.55382857543372,0.8172170330042271,-0.1056993520869896,-0.03480574027517221,-0.9362209723775935,-0.6424883760447797,-0.010416201895847878,-0.672673346437352,0.6434226375259476,0.543823808846352,0.7350659107290095,0.22697737569291337,-0.7978514389089199,-0.8460742305310923,0.5058811971788604,0.5020586098128396,0.5084890979398574,-0.544392087270858,-0.20219332224462438,0.14105340182524886,-0.031069745329628667,0.7430967583719477,-0.6660259001645801,-0.9054564805116392,0.4370119082999894,-0.09732124143530202,-0.4681938690042746,-0.6899393031106245,1.5553706526667264,-0.6986132920207782,-0.7920571973936792,-0.1354783791201322,-1.0394559488285497,-0.2721144845107513,0.35468546560472436,0.5810523099748806,-0.7496415837308387],[-0.6077639689181321,-0.08709698675017254,0.2603039656658579,-0.8253617733281532,-0.5186393458182557,0.7780645066525071,-0.6000294490076763,-0.3140668840146562,-0.3726198820842096,-0.33390862588617937,-0.8357940183240768,0.5947486719175614,-0.01877957472950933,0.28767796913381455,-0.46251571719125273,0.16217130208497657,0.20918754523614794,-0.9672512244676318,-0.09944573871002076,-0.7096676432219279,-0.7586796417930428,0.049227380025850934,-1.0060345539041886,0.4362719581813597,-0.3889965901273586,-0.8508251179788571,-1.0639351543571174,0.06584251547935578,-0.09406181289439447,1.6601853225699972,0.8227736549004463,-0.5169986047971183,0.2879260773015125,-0.5373844107125402,0.7045934793640699,-0.5524295072290815,0.7898652441329762,0.3790773014264595],[-0.6906595102085957,0.677311003837914,-0.9133492861016874,0.5616676117912084,0.7574664825178905,0.5043769603813947,-0.7945594446224057,-0.12099350114230521,-0.23635654297930403,0.44816823362667657,0.201782302892214,-0.2745070442470493,-0.36811249438309773,0.03808577472695293,-0.8932055760590698,0.3579888786121692,0.22771739183906645,-0.9704162577973164,0.45518168147837373,0.3548985684745692,0.579866715749201,-0.7494163931731483,-0.14963706005874902,-0.21259361701448048,0.7378707924832882,-0.19985930868587634,-0.7241833708912483,0.7064736676550156,-0.026826189453622414,0.8174590802279272,0.12447842886150053,-0.0926315751930362,0.24932541460258087,-0.3657780727741316,-0.6535236674638056,-1.02003800723355,0.11678205031508733,-0.35750547704014607],[0.8743238547662129,0.991926387252673,0.2081681678403378,0.5635369678568903,0.9228169442233052,-0.8613353852944918,0.7207732983313728,-0.5298430871754838,-0.31552232713395356,-0.2744396605338407,0.7067831694057695,0.922367146316384,-0.974623794273653,-0.795016219236306,-0.49358146156988336,0.3993207212747347,-0.7193023262527771,-0.8986014219067882,0.2796463773329116,-0.13332901408949396,0.6402712928142736,-0.8467611082905995,-0.6250584231680473,-0.6180236175188966,-0.548135191945964,0.5859667954166665,-0.9586965244176636,-0.4861238520889467,-1.367908631868019,1.710756354177098,0.25141692286515077,0.6171578480227362,-0.7796454037075609,-0.8863154703320084,-0.7005036777237179,-0.5929800407767065,-0.24829415901921045,0.13708506281294308],[-0.00011245301140244786,-0.6051636163438442,0.8767807063671548,0.9607771728841175,-0.6416535546222211,-0.46039214834503417,0.38197217061038125,-0.5193168972159048,-0.6609601301657704,0.8301249134248221,0.6007724549393134,0.45735480167420184,-0.7041888832717897,0.32410246015797156,0.5363884645680272,0.35868055872980803,0.2480871562391442,-0.23448518500068216,0.6013413126963574,0.03300904481161525,0.6162212646019455,0.45160692327200963,0.0898271045191485,0.10823423882588522,-0.7358726056707516,-0.01269835132829481,-0.02959487979693353,0.6950883326719907,-0.6080273916133139,-0.11308890238730795,-0.9403539564307982,-0.5950666712253815,-0.2740170513666214,-0.550106317409231,-0.6795547131352621,-0.105023795865278,0.42271078513968885,0.526596252450935],[0.07780907907860882,-0.3248655015438769,0.6392386949978067,0.3157334887813598,0.7271328127833485,0.17519606270870988,-0.9247121406703527,0.8437222913199285,-0.5637757785365552,-0.19483767659618229,-0.8081144941302922,0.8141657771594026,-0.0682791582184827,0.8632175702685383,0.8035251645453139,0.7024630814835078,-0.7020795141549456,-0.610946173012328,0.3364800101795947,0.9040152534354838,-0.8365210766035408,-0.8981323582969841,-0.31304654328908904,-0.3541165449931676,0.7584740534434253,0.15028283756588748,-0.29207152889310584,-0.4996026206520726,-0.3683826545211004,-0.6313390083544237,-0.9456886082859157,0.5430053397481487,0.8061822051258781,-0.5945899293010538,-0.7334269556229084,-0.28459135516443296,-0.5910090720043032,-0.34589980393345354],[0.892174065656808,-0.164604345521493,0.9854476135004039,0.4919216161842366,-0.2880701265442093,0.253514776643912,0.00698999610580508,-0.7806838744372094,0.33709648118652774,0.6692515068886925,0.7696178222949359,-0.8030096702828795,-0.843068611084062,-0.02745750457170363,1.4772289709017268,0.47136930953583966,-0.8502765956632793,-0.8488491331340831,-0.1440037670695049,0.5902962028548151,0.8392424477341996,-0.6297268966729452,0.11794371286866616,0.04442314713674567,0.24683111742966835,-0.4085206737880899,0.456930053845201,-0.1662174255885874,-0.6567887565710155,-0.7800325165100545,-0.6041320375317909,0.7769719863796011,-0.5555236633513545,-0.7564616857075769,0.524132829988268,-0.838733012932022,-1.005238980003789,-0.05008796644132769],[-0.44253455821040727,0.6811495269155371,0.08779374985467464,-0.5080119748365985,0.5199850318118557,0.07119542491536278,-0.24495769957076652,0.545450375137042,0.03606836807327268,0.7510567347594873,-0.16830105399396247,0.13061635080880127,-0.6439672231744739,-0.5700796362433621,0.5918246958257841,-0.2765128269433063,0.4526594175756267,-0.2701593507948298,-0.5414806700946917,0.09401949428974715,0.43622312069196273,0.09514370381079097,0.5854366841199349,-0.9221627075040876,-1.0188567873651584,0.14087619516270655,0.6414944784782396,-0.7456003024756754,-0.41618461531863654,0.7419981191391642,0.9435860187904437,-0.4842024917007213,-0.7557986101499113,0.466015530424641,0.5380397321820588,-0.6973306601830999,-0.14233317065122517,-0.3025821442735219],[-1.0309860583266426,-1.0013486345662999,0.2795016367765445,-0.02349175889301035,-0.41977247408411994,0.7725568712577738,0.9567724034204046,-0.565071974919682,-0.17823425075982613,-0.47477969418885324,-0.5233569418105448,0.3415524559888661,-0.03316842583165322,0.6356966385768876,-0.3683237394966118,-0.019696998755878357,0.6198079179674482,0.8347095460806583,0.8551883600566753,-0.23027779006581445,0.21108776414846392,-1.217308024212913,0.049186771690553674,-0.03204152899239435,-0.15782141074186987,-1.029445485286053,0.6194319127421153,-0.0036660908864930603,0.1640102410315215,-0.0024421997372319694,2.445841310445062,-0.17783200711742136,-0.18574652254614027,0.7875454045942054,-0.9472682120702837,0.9269089003546606,-0.5522226567419583,-0.6181142485244184],[0.5634010724530806,-0.9812716819258338,-0.9903078992770141,0.11228794503899349,-0.33694272103156087,-0.6935531662951425,-0.23043843436146938,-0.48929571614489065,0.11519118353904938,-0.3856030286106845,0.805265145042815,-0.2696734230234045,0.30516602216972905,0.6588489661344877,-0.13003217423577204,-0.02193525748855059,0.3303520881948123,-0.815921063867334,-0.42672799944036854,0.5921303298513265,-0.4202460141409042,-0.7396673940872147,0.2228330777911012,0.4385345107265504,-0.9098610611789243,-0.1608494521544392,-0.4379441985090345,-0.1552885659171368,-0.3451335055267303,-0.6366747495210687,-0.17582603633831054,2.7956959958581735,-1.009422529782209,0.18762264852513255,-0.6069400507489583,-0.15912211860392186,-0.9521600363391224,-0.8669788531673044],[0.5681277506561541,-0.9555302925769595,0.09824802627348177,-0.6258731419698247,-0.2096984966035473,0.4683070566906792,0.06201944457457167,-0.3666325156678134,-0.44792778061306954,-0.5442460768444649,0.8468038557617638,0.01723221320799974,-0.45661573231420977,-0.3985873036477206,-0.29289063319983627,0.20651590574503134,-0.24628002482272676,0.8796335441517561,-0.36539922448967943,0.07736351101106259,-0.5489087561601467,0.6804571844358672,-0.746959526416408,0.23246987738119607,0.05262697449008078,0.5603542782746648,0.4428579206849885,-0.2287487445420371,0.04165064669810992,0.6982617832344342,0.8498712995942751,0.27542172637809986,2.773805152835773,-0.15734312348446014,0.8469830704110224,0.2748572523336306,0.3126416963301523,0.31907171243077764],[-0.3476563179003702,-1.0194165083854723,-0.8817595725983076,-0.17405399493350135,0.5825138620378726,-1.012112905921576,-0.7390460858325866,0.6057897753919869,-0.11865566934160571,-0.528544196757112,0.040571112381168145,-0.08109074090865542,-1.2710717020951414,0.0831845926872615,-0.4913377713454601,-0.6956709364184054,-0.43706120808078924,-0.5763668432274001,-0.8424857656192961,0.3784250733726447,-0.9188735377729172,-0.20905281097119804,0.5272417993282577,-0.5062936205717784,-0.6630677602316497,-0.6438892124848273,0.3435134036833965,0.41255728130299624,-0.9678247001048758,0.2961086694438591,-0.9489693089354023,0.696616967530819,2.6192809458497033,-0.5518629824013008,-0.5245292502222204,-0.7349129596415926,-0.06282484371936259,0.052836808313695256],[0.6961229625202835,-0.022568695383097942,-0.25644694779985944,-0.34481842378774785,0.3562620403023469,-0.3875275051729462,-0.330274082947949,0.9317502806784702,-0.83956258369781,0.44248848189739265,-0.9408513301395244,0.431477514625938,0.3759786488622542,0.01277820545043385,-0.48062379583482495,0.8881564276398024,-0.3188664883743219,0.4463345089275417,-0.6646405435179357,0.35188726416524907,-0.053233413017282044,-0.5171353294842418,0.6846087401207008,-0.14768426727975434,-0.5793419247783352,-0.25064105715346136,0.7047707272244012,0.3300431477594094,0.7782909795223201,-0.5329098589063763,0.7090024779017927,-0.8599947125674527,-0.9504848944918125,0.9649593189877484,-0.8126854885356766,0.7338124600631264,-0.08740491239044047,0.576296883250567],[0.2614784828447153,0.14726522073856976,-0.19867584250079304,0.22125600228478234,0.5432249377436627,0.42033200038386365,-0.1465492016983704,0.2616439567895207,-0.4585211893760673,-0.5434383725429962,-0.3175793043524711,0.6961086786565533,0.8413101308646609,-0.20363733471924622,-0.5584553290086157,-0.8206886152568276,0.021081055319514524,0.34729097590912966,-0.07639358923742376,-0.6353310230021051,-0.8493427554565338,-0.36112231906383796,-0.7115999299853809,0.60646984318575,-1.0622242926181364,-0.9777130791471162,0.9138816963354257,0.43902280691669676,0.07117164441047416,-0.006942990609317277,-0.617325193488013,-0.2875340016490194,0.36019228436885303,0.4012486834378371,-0.36831016277782114,-1.0272784952714364,-0.679553378194044,0.001401438185831637]]],"Output":[[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0]],"Rate":0.1,"Error":0.00248,"Time":3.63}