Thibault Hervier commited on
Commit
cdcf038
·
1 Parent(s): df7ae23

Move code onto HF space repo

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. Dockerfile +40 -0
  2. app.py +247 -0
  3. draw_input_schema.py +14 -0
  4. emotion_recordings/affection1.json +0 -0
  5. emotion_recordings/amazed1.json +0 -0
  6. emotion_recordings/anxiety1.json +0 -0
  7. emotion_recordings/attentive1.json +0 -0
  8. emotion_recordings/attentive2.json +0 -0
  9. emotion_recordings/boredom1.json +0 -0
  10. emotion_recordings/boredom2.json +0 -0
  11. emotion_recordings/calming1.json +0 -0
  12. emotion_recordings/cheerful1.json +0 -0
  13. emotion_recordings/come1.json +0 -0
  14. emotion_recordings/confused1.json +0 -0
  15. emotion_recordings/contempt1.json +0 -0
  16. emotion_recordings/curious1.json +0 -0
  17. emotion_recordings/dance1.json +0 -0
  18. emotion_recordings/dance2.json +0 -0
  19. emotion_recordings/dance3.json +0 -0
  20. emotion_recordings/disgusted1.json +0 -0
  21. emotion_recordings/displeased1.json +0 -0
  22. emotion_recordings/displeased2.json +0 -0
  23. emotion_recordings/downcast1.json +0 -0
  24. emotion_recordings/enthusiastic1.json +0 -0
  25. emotion_recordings/enthusiastic2.json +0 -0
  26. emotion_recordings/exhausted1.json +0 -0
  27. emotion_recordings/fear1.json +0 -0
  28. emotion_recordings/frustrated1.json +0 -0
  29. emotion_recordings/furious1.json +0 -0
  30. emotion_recordings/go_away1.json +0 -0
  31. emotion_recordings/grateful1.json +0 -0
  32. emotion_recordings/helpful1.json +0 -0
  33. emotion_recordings/helpful2.json +0 -0
  34. emotion_recordings/impatient1.json +0 -0
  35. emotion_recordings/impatient2.json +0 -0
  36. emotion_recordings/incomprehensible2.json +0 -0
  37. emotion_recordings/indifferent1.json +0 -0
  38. emotion_recordings/inquiring1.json +0 -0
  39. emotion_recordings/inquiring2.json +0 -0
  40. emotion_recordings/inquiring3.json +0 -0
  41. emotion_recordings/irritated1.json +0 -0
  42. emotion_recordings/irritated2.json +0 -0
  43. emotion_recordings/laughing1.json +0 -0
  44. emotion_recordings/laughing2.json +3742 -0
  45. emotion_recordings/listening1.json +0 -0
  46. emotion_recordings/listening2.json +0 -0
  47. emotion_recordings/lonely1.json +0 -0
  48. emotion_recordings/lost1.json +0 -0
  49. emotion_recordings/loving1.json +0 -0
  50. emotion_recordings/macarena1.json +0 -0
Dockerfile ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use official Python image
2
+ FROM pollenrobotics/reachy2
3
+
4
+ # Set environment variables
5
+ ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1
6
+
7
+ # DO NOT set working directory to keep the original Reachy setup
8
+ #WORKDIR /app
9
+
10
+ # Switch back to root to install system packages
11
+ USER root
12
+ # Install PortAudio (needed for Reachy Emotions)
13
+ RUN apt-get update && \
14
+ apt-get install -y portaudio19-dev && \
15
+ apt-get install -y nginx && \
16
+ apt-get clean && \
17
+ rm -rf /var/lib/apt/lists/*
18
+ # Switch back to non-root user as expected by base image
19
+ USER reachy
20
+
21
+ # Copy requirements first to leverage Docker cache
22
+ COPY requirements_docker.txt /app/requirements_docker.txt
23
+ RUN pip install --no-cache-dir --upgrade pip && \
24
+ pip install --no-cache-dir -r /app/requirements_docker.txt
25
+
26
+ # Copy the all the files
27
+ COPY . /app
28
+
29
+ # Copy the entrypoint
30
+ COPY entrypoint.sh .
31
+
32
+ # Set the DOCKER environment variable
33
+ ENV IN_DOCKER=True
34
+ ENV WITH_REACHY=True
35
+
36
+ # Expose the port Gradio uses
37
+ EXPOSE 8080
38
+
39
+ # Run the app
40
+ ENTRYPOINT ["sh", "entrypoint.sh"]
app.py ADDED
@@ -0,0 +1,247 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ if not os.getenv("OPENAI_API_KEY"):
3
+ raise ValueError("OPENAI_API_KEY must be set")
4
+
5
+ if os.getenv("WITH_REACHY"):
6
+ WITH_REACHY = True
7
+ else:
8
+ WITH_REACHY = False
9
+
10
+ if os.getenv("IN_DOCKER"):
11
+ IN_DOCKER = True
12
+ else:
13
+ IN_DOCKER = False
14
+
15
+
16
+ import gradio as gr
17
+ import uuid
18
+ from pictionagent import AgentStatus, ItemTopic, PictionagentManager
19
+ import logging
20
+ logging.basicConfig(level=logging.INFO)
21
+
22
+ ELEMENTS_UPDATE_PERIOD = 0.5 # seconds
23
+
24
+ pictionagent_manager = PictionagentManager(fake_robot=not WITH_REACHY)
25
+
26
+ #Gradio update functions
27
+ def connect_user():
28
+ user_id = str(uuid.uuid4())
29
+ (nb_connected_users, connected_users, nb_connected_users_game, user_id_game, user_score_game, leaderboard) = update_users(user_id)
30
+ return user_id, user_id, nb_connected_users, connected_users, nb_connected_users_game, user_id_game, user_score_game, leaderboard
31
+
32
+ def tick_check_update(history_state: int, hidden_for_history_changes: gr.Textbox,
33
+ hidden_for_guess_interactivity_changes: gr.Textbox,
34
+ hidden_for_game_interactivity_changes: gr.Textbox):
35
+ # Check history state change
36
+ if history_state != len(pictionagent_manager.agent_history):
37
+ history_state = len(pictionagent_manager.agent_history)
38
+ hidden_for_history_changes = str(uuid.uuid4())
39
+
40
+ # Game elements interactivity
41
+ if not pictionagent_manager.async_init_done:
42
+ hidden_for_game_interactivity_changes = "False"
43
+ elif pictionagent_manager.game_running:
44
+ hidden_for_game_interactivity_changes = "False"
45
+ else:
46
+ hidden_for_game_interactivity_changes = "True"
47
+
48
+ # Guess elements interactivity
49
+ if not pictionagent_manager.async_init_done:
50
+ hidden_for_guess_interactivity_changes = "False"
51
+ elif (pictionagent_manager.agent_status == AgentStatus.DRAWING or pictionagent_manager.agent_status == AgentStatus.WAITING_FOR_GUESS) and not pictionagent_manager.is_drawing_guessed:
52
+ hidden_for_guess_interactivity_changes = "True"
53
+ else:
54
+ hidden_for_guess_interactivity_changes = "False"
55
+
56
+
57
+ return (pictionagent_manager.drawing_image,
58
+ pictionagent_manager.generated_source_image,
59
+ pictionagent_manager.displayed_item_to_guess,
60
+ pictionagent_manager.agent_status.value,
61
+ pictionagent_manager.nb_drawing_points,
62
+ pictionagent_manager.drawing_duration,
63
+ history_state,
64
+ hidden_for_history_changes,
65
+ hidden_for_game_interactivity_changes,
66
+ hidden_for_guess_interactivity_changes)
67
+
68
+
69
+ def update_history():
70
+ return pictionagent_manager.agent_history
71
+
72
+ def change_topic(topic:str):
73
+ pictionagent_manager.current_topic = ItemTopic(topic)
74
+
75
+ def set_nb_points(nb_points: int):
76
+ pictionagent_manager.nb_drawing_points = nb_points
77
+
78
+ def set_draw_duration(draw_duration: float):
79
+ pictionagent_manager.drawing_duration = draw_duration
80
+
81
+ def update_game_elements_interactivity(hidden_for_game_interactivity_changes: gr.Textbox):
82
+ if hidden_for_game_interactivity_changes == "True":
83
+ return gr.update(interactive=True), gr.update(interactive=True), gr.update(interactive=True), gr.update(interactive=True), gr.update(interactive=True)
84
+ else:
85
+ return gr.update(interactive=False), gr.update(interactive=False), gr.update(interactive=False), gr.update(interactive=False), gr.update(interactive=False)
86
+
87
+ def update_guess_elements_interactivity(hidden_for_guess_interactivity_changes: gr.Textbox):
88
+ if hidden_for_guess_interactivity_changes == "True":
89
+ return gr.update(interactive=True), gr.update(interactive=True)
90
+ else:
91
+ return gr.update(value="", interactive=False), gr.update(interactive=False)
92
+
93
+ async def guess_drawing(guess_input: str, user_id: str):
94
+ if not pictionagent_manager.async_init_done:
95
+ return
96
+ elif (pictionagent_manager.agent_status != AgentStatus.DRAWING and pictionagent_manager.agent_status != AgentStatus.WAITING_FOR_GUESS) or pictionagent_manager.is_drawing_guessed:
97
+ return
98
+
99
+ await pictionagent_manager.try_guess_drawing(guess_input, user_id)
100
+
101
+ def reset_game():
102
+ pictionagent_manager.reset_game()
103
+ return [], pictionagent_manager.agent_status, pictionagent_manager.drawing_image, pictionagent_manager.generated_source_image, pictionagent_manager.displayed_item_to_guess
104
+
105
+ def update_users(user_id: str):
106
+ leaderboard = ""
107
+ for i in range(0, min(len(pictionagent_manager.leaderboard), 10)):
108
+ leaderboard += str(i + 1) + ") " + pictionagent_manager.get_user_display_name(pictionagent_manager.leaderboard[i].id) + " : " + str(pictionagent_manager.leaderboard[i].score) + "\n"
109
+
110
+ if user_id is None:
111
+ return 0, "", 0, "", 0, leaderboard
112
+
113
+ pictionagent_manager.on_user_ping(user_id)
114
+ if pictionagent_manager.connected_users:
115
+ output = ""
116
+ for id in pictionagent_manager.connected_users.keys():
117
+ output += pictionagent_manager.get_user_display_name(id) + "\n"
118
+ return len(pictionagent_manager.connected_users), output, len(pictionagent_manager.connected_users), pictionagent_manager.get_user_display_name(user_id), pictionagent_manager.connected_users[user_id].score, leaderboard
119
+ else:
120
+ return 0, "", 0, "", 0, leaderboard
121
+
122
+ def update_name(name_box: str, user_id: str):
123
+ pictionagent_manager.set_user_name(user_id, name_box)
124
+ return update_users(user_id)
125
+ #endregion
126
+
127
+ if IN_DOCKER:
128
+ vnc_url = "/vnc/vnc.html?autoconnect=1"
129
+ else:
130
+ vnc_url = "http://localhost:6080/vnc.html?autoconnect=1"
131
+
132
+ reachy_iframe_html = f"""
133
+ <div style="overflow:hidden; width:350px; height:500px; pointer-events: none; user-select: none;">
134
+ <iframe src="{vnc_url}"
135
+ tabindex="-1"
136
+ style="
137
+ transform: scale(1) translate(-45%, -15%);
138
+ transform-origin: top left;
139
+ width: 1024px;
140
+ height: 768px;
141
+ border: none;">
142
+ </iframe>
143
+ </div>
144
+ """
145
+ # Gradio UI
146
+ with gr.Blocks() as demo:
147
+ if WITH_REACHY:
148
+ gr.Markdown("# Pictionagent x Reachy")
149
+ else:
150
+ gr.Markdown("# Pictionagent")
151
+ user_state = gr.State()
152
+
153
+ with gr.Tab("Game"):
154
+ with gr.Row():
155
+ with gr.Column(scale=1):
156
+ nb_connected_users_game = gr.Textbox(label="Connected users", value=0, interactive=False)
157
+ with gr.Column(scale=1):
158
+ user_id_game = gr.Textbox(label="You", value="", interactive=False)
159
+ with gr.Column(scale=1):
160
+ user_score_game = gr.Textbox(label="Your score", value="", interactive=False)
161
+ with gr.Row():
162
+ with gr.Column(scale=1):
163
+ topic_dropdown = gr.Dropdown(choices=[e.value for e in ItemTopic],
164
+ label="Pick a topic")
165
+ with gr.Column(scale=1):
166
+ start_btn = gr.Button("Play")
167
+ clear_btn = gr.Button("Reset")
168
+ with gr.Row():
169
+ with gr.Column(scale=2 if WITH_REACHY else 1):
170
+ agent_status_display = gr.Textbox(label="Agent Status", value=pictionagent_manager.agent_status.value)
171
+ chatbot = gr.Chatbot(pictionagent_manager.agent_history, type="messages", show_label=False)
172
+ if WITH_REACHY:
173
+ with gr.Column(scale=2):
174
+ gr.HTML(reachy_iframe_html)
175
+ with gr.Column(scale=3 if WITH_REACHY else 1):
176
+ item_to_guess = gr.Textbox(label="Item to guess", value="", interactive=False)
177
+ with gr.Row():
178
+ drawing_image_display = gr.Image(label="Drawn Image", type="pil", interactive=False, show_label=False)
179
+ source_image_display = gr.Image(label="Source Image", type="pil", interactive=False, show_label=False)
180
+ gr.Markdown("### Your Guess")
181
+ with gr.Row():
182
+ guess_input = gr.Textbox(label="Guess", value="", show_label=False)
183
+ guess_btn = gr.Button("Submit")
184
+
185
+ hidden_for_history_changes = gr.Textbox(value="", visible=False, interactive=False)
186
+ history_state = gr.State(0)
187
+ hidden_for_guess_interactivity_changes = gr.Textbox(value="", visible=False, interactive=False)
188
+ hidden_for_game_interactivity_changes = gr.Textbox(value="", visible=False, interactive=False)
189
+
190
+ with gr.Tab("Connection Infos"):
191
+ with gr.Column(scale=1):
192
+ id_box = gr.Textbox(label="Your ID", interactive=False)
193
+ name_box = gr.Textbox(label="Your name")
194
+ name_btn = gr.Button("Set/Update name")
195
+ with gr.Column(scale=1):
196
+ nb_connected_users = gr.Textbox(label="Number of connected users", value=0, interactive=False)
197
+ connected_users = gr.Textbox(label="Connected users", value="", lines=5, max_lines=5, interactive=False)
198
+
199
+ with gr.Tab("Game config"):
200
+ nb_points_slider = gr.Slider(label="Drawing points", value=100, minimum=20, maximum=100, step=10)
201
+ draw_duration_slider = gr.Slider(label="Duration between points", value=0.05, minimum=0.02, maximum=0.2, step=0.01)
202
+
203
+ with gr.Tab("Leaderboard"):
204
+ leaderboard = gr.Textbox(label="Leaderboard", value="", lines=10, max_lines=10, interactive=False)
205
+
206
+ # Game tab
207
+ topic_dropdown.change(change_topic, inputs=[topic_dropdown], outputs=[], api_name=False)
208
+ start_btn.click(pictionagent_manager.start_game, inputs=[], outputs=[], api_name=False)
209
+ guess_btn.click(guess_drawing, inputs=[guess_input, user_state], outputs=[], api_name=False)
210
+ guess_input.submit(guess_drawing, inputs=[guess_input, user_state], outputs=[], api_name=False)
211
+
212
+ clear_btn.click(reset_game, inputs=[], outputs=[chatbot, agent_status_display, drawing_image_display, source_image_display, item_to_guess], api_name=False)
213
+
214
+ # Timer triggers the update function with given period
215
+ # + workaround (with hidden textboxes) to update elements only on value change (not on each time tick)
216
+ timer = gr.Timer(value=ELEMENTS_UPDATE_PERIOD)
217
+ timer.tick(tick_check_update,
218
+ inputs=[history_state, hidden_for_history_changes, hidden_for_game_interactivity_changes, hidden_for_guess_interactivity_changes],
219
+ outputs=[drawing_image_display, source_image_display, item_to_guess, agent_status_display, nb_points_slider, draw_duration_slider, history_state, hidden_for_history_changes, hidden_for_game_interactivity_changes, hidden_for_guess_interactivity_changes],
220
+ api_name=False)
221
+ hidden_for_history_changes.change(update_history, outputs=chatbot, api_name=False)
222
+ hidden_for_game_interactivity_changes.change(update_game_elements_interactivity,
223
+ inputs=[hidden_for_game_interactivity_changes], outputs=[topic_dropdown, start_btn, clear_btn, nb_points_slider, draw_duration_slider], api_name=False)
224
+ hidden_for_guess_interactivity_changes.change(update_guess_elements_interactivity,
225
+ inputs=[hidden_for_guess_interactivity_changes], outputs=[guess_input, guess_btn],
226
+ api_name=False)
227
+
228
+ # Connection tab
229
+ connection_timer = gr.Timer(value=1)
230
+ connection_timer.tick(update_users, inputs=[user_state], outputs=[nb_connected_users, connected_users, nb_connected_users_game, user_id_game, user_score_game, leaderboard], api_name=False)
231
+ name_btn.click(update_name, inputs=[name_box, user_state], outputs=[nb_connected_users, connected_users, nb_connected_users_game, user_id_game, user_score_game, leaderboard], api_name=False)
232
+
233
+ # Game config tab
234
+ nb_points_slider.change(set_nb_points, inputs=[nb_points_slider], outputs=[], api_name=False)
235
+ draw_duration_slider.change(set_draw_duration, inputs=[draw_duration_slider], outputs=[], api_name=False)
236
+
237
+ # Register the init_agent to run before interface is live
238
+ demo.load(fn=pictionagent_manager.async_init, inputs=[], outputs=[], queue=False, api_name=False)
239
+ demo.load(fn=connect_user, inputs=[], outputs=[user_state, id_box, nb_connected_users, connected_users, nb_connected_users_game, user_id_game, user_score_game, leaderboard], api_name=False)
240
+
241
+ # When using the docker image, we use a nginx reverse proxy to access the gradio app
242
+ # So we need to set the root_path to "/gradio" to route it properly via nginx
243
+ if IN_DOCKER:
244
+ root_path = "/gradio"
245
+ else:
246
+ root_path = None
247
+ demo.launch(server_name="0.0.0.0", server_port=7860, root_path=root_path)
draw_input_schema.py ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pydantic import BaseModel, Field
2
+
3
+ class Point(BaseModel):
4
+ """A point on the canvas"""
5
+ x: int = Field(description="The x coordinate of the point")
6
+ y: int = Field(description="The y coordinate of the point")
7
+
8
+ class Line(BaseModel):
9
+ """A line on the canvas"""
10
+ points: list[Point] = Field(description="The points of the line")
11
+
12
+ class DrawInputSchema(BaseModel):
13
+ """Draw points on the canvas"""
14
+ points: list[Point] = Field(description="The points to draw")
emotion_recordings/affection1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/amazed1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/anxiety1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/attentive1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/attentive2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/boredom1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/boredom2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/calming1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/cheerful1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/come1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/confused1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/contempt1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/curious1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/dance1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/dance2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/dance3.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/disgusted1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/displeased1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/displeased2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/downcast1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/enthusiastic1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/enthusiastic2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/exhausted1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/fear1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/frustrated1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/furious1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/go_away1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/grateful1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/helpful1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/helpful2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/impatient1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/impatient2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/incomprehensible2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/indifferent1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/inquiring1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/inquiring2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/inquiring3.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/irritated1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/irritated2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/laughing1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/laughing2.json ADDED
@@ -0,0 +1,3742 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "time": [
3
+ 0.016972064971923828,
4
+ 0.03521275520324707,
5
+ 0.06567096710205078,
6
+ 0.10089349746704102,
7
+ 0.13481521606445312,
8
+ 0.1730668544769287,
9
+ 0.21970653533935547,
10
+ 0.2640659809112549,
11
+ 0.29449462890625,
12
+ 0.32895517349243164,
13
+ 0.362746000289917,
14
+ 0.40230655670166016,
15
+ 0.43186092376708984,
16
+ 0.46519017219543457,
17
+ 0.4913487434387207,
18
+ 0.5190103054046631,
19
+ 0.5466160774230957,
20
+ 0.5932431221008301,
21
+ 0.6250081062316895,
22
+ 0.6642794609069824,
23
+ 0.6880893707275391,
24
+ 0.7157390117645264,
25
+ 0.7533078193664551,
26
+ 0.7896757125854492,
27
+ 0.8221065998077393,
28
+ 0.8558573722839355,
29
+ 0.8876113891601562,
30
+ 0.9297261238098145,
31
+ 0.993048906326294,
32
+ 1.0277070999145508,
33
+ 1.0496611595153809,
34
+ 1.079409122467041,
35
+ 1.110546588897705,
36
+ 1.141493797302246,
37
+ 1.168700933456421,
38
+ 1.2129976749420166,
39
+ 1.2574665546417236,
40
+ 1.2945199012756348,
41
+ 1.3277947902679443,
42
+ 1.3653268814086914,
43
+ 1.4142892360687256,
44
+ 1.4457626342773438,
45
+ 1.4689514636993408,
46
+ 1.4971740245819092,
47
+ 1.530592679977417,
48
+ 1.570465087890625,
49
+ 1.6015756130218506,
50
+ 1.6330676078796387,
51
+ 1.666093111038208,
52
+ 1.6934616565704346,
53
+ 1.7296311855316162,
54
+ 1.7690856456756592,
55
+ 1.805875301361084,
56
+ 1.8361377716064453,
57
+ 1.868551254272461,
58
+ 1.9065496921539307,
59
+ 1.9403982162475586,
60
+ 1.9671804904937744,
61
+ 2.014117479324341,
62
+ 2.046264171600342,
63
+ 2.082847833633423,
64
+ 2.116133451461792,
65
+ 2.1503918170928955,
66
+ 2.2079286575317383,
67
+ 2.2533257007598877,
68
+ 2.285662889480591,
69
+ 2.3219716548919678,
70
+ 2.3599846363067627,
71
+ 2.4146180152893066,
72
+ 2.448308229446411,
73
+ 2.486050605773926,
74
+ 2.51914644241333,
75
+ 2.560969829559326,
76
+ 2.6090047359466553,
77
+ 2.645538091659546,
78
+ 2.6769211292266846,
79
+ 2.712285280227661,
80
+ 2.737551212310791,
81
+ 2.7685911655426025,
82
+ 2.808056116104126,
83
+ 2.841948986053467,
84
+ 2.872222423553467,
85
+ 2.8995749950408936,
86
+ 2.938436269760132,
87
+ 2.9974405765533447,
88
+ 3.0399255752563477,
89
+ 3.0713493824005127,
90
+ 3.1038546562194824,
91
+ 3.1330718994140625,
92
+ 3.190387010574341,
93
+ 3.2226405143737793,
94
+ 3.2596042156219482,
95
+ 3.2858097553253174,
96
+ 3.3074793815612793,
97
+ 3.335909366607666,
98
+ 3.379175901412964,
99
+ 3.413468837738037,
100
+ 3.4430394172668457,
101
+ 3.4760499000549316,
102
+ 3.512528896331787,
103
+ 3.545846939086914,
104
+ 3.5929439067840576,
105
+ 3.6161656379699707,
106
+ 3.6439549922943115,
107
+ 3.6801607608795166,
108
+ 3.7169289588928223,
109
+ 3.748138427734375,
110
+ 3.7923476696014404,
111
+ 3.8242061138153076,
112
+ 3.852304697036743,
113
+ 3.8784124851226807,
114
+ 3.9078757762908936,
115
+ 3.9377007484436035,
116
+ 3.9701900482177734,
117
+ 4.015055894851685,
118
+ 4.033102989196777,
119
+ 4.065886497497559,
120
+ 4.094002723693848,
121
+ 4.126587152481079,
122
+ 4.15990138053894,
123
+ 4.206968069076538,
124
+ 4.244361639022827,
125
+ 4.265016555786133,
126
+ 4.297668695449829,
127
+ 4.3274171352386475,
128
+ 4.360641717910767,
129
+ 4.4041173458099365,
130
+ 4.429711103439331,
131
+ 4.46035361289978,
132
+ 4.4906041622161865,
133
+ 4.511845827102661,
134
+ 4.541445732116699,
135
+ 4.563525199890137
136
+ ],
137
+ "l_arm": [
138
+ [
139
+ 7.009909376322358,
140
+ -3.634962643257317,
141
+ -4.1286572542023015,
142
+ -109.4461384677731,
143
+ 39.03373880467915,
144
+ 18.390811972372717,
145
+ -0.529498462574191
146
+ ],
147
+ [
148
+ 6.982175393197521,
149
+ -3.6072286601324803,
150
+ -4.143845460482294,
151
+ -109.40981552176696,
152
+ 39.03156680452309,
153
+ 18.39754824644164,
154
+ -0.5498574955818536
155
+ ],
156
+ [
157
+ 6.96038708974518,
158
+ -3.58544035668014,
159
+ -4.1623266717158796,
160
+ -109.37020725477007,
161
+ 39.00759284053634,
162
+ 18.431687239460658,
163
+ -0.608512758935543
164
+ ],
165
+ [
166
+ 6.92011415996467,
167
+ -3.546482878645091,
168
+ -4.189406664227687,
169
+ -109.30747196724349,
170
+ 38.996562085026774,
171
+ 18.448229957630428,
172
+ -0.6311944831478331
173
+ ],
174
+ [
175
+ 6.897006349342047,
176
+ -3.524698203730747,
177
+ -4.230988002121078,
178
+ -109.2381592075462,
179
+ 38.989878744923914,
180
+ 18.4590558074649,
181
+ -0.6370227689439696
182
+ ],
183
+ [
184
+ 6.859368591920692,
185
+ -3.485737524044525,
186
+ -4.283810550727842,
187
+ -109.16156546619368,
188
+ 38.983297857658606,
189
+ 18.47047588375716,
190
+ -0.6235524619619409
191
+ ],
192
+ [
193
+ 6.813149555580861,
194
+ -3.438202822515821,
195
+ -4.288433308135471,
196
+ -109.11733316112867,
197
+ 38.973629724888454,
198
+ 18.511735348985912,
199
+ -0.6266577967959166
200
+ ],
201
+ [
202
+ 6.7497654000831435,
203
+ -3.3800960553689956,
204
+ -4.2805175457742495,
205
+ -109.05393534525261,
206
+ 38.93410683525617,
207
+ 18.588108816737705,
208
+ -0.6992133488842283
209
+ ],
210
+ [
211
+ 6.713450564926655,
212
+ -3.345103929033962,
213
+ -4.27589478836662,
214
+ -109.02026934283363,
215
+ 38.89138400199774,
216
+ 18.653535198797258,
217
+ -0.6842728436833543
218
+ ],
219
+ [
220
+ 6.6725159605702995,
221
+ -3.3041693246776065,
222
+ -4.296363584648679,
223
+ -108.99187624645388,
224
+ 38.853899923832714,
225
+ 18.8030326718032,
226
+ -0.6600555542074278
227
+ ],
228
+ [
229
+ 6.596586028227737,
230
+ -3.2282393923350443,
231
+ -4.340609123205199,
232
+ -108.94895533770952,
233
+ 38.8331771298909,
234
+ 18.905828726359186,
235
+ -0.6583051581500533
236
+ ],
237
+ [
238
+ 6.4995217830458625,
239
+ -3.136459579136644,
240
+ -4.42048989309579,
241
+ -108.87963574782306,
242
+ 38.70430170553651,
243
+ 19.103048731096013,
244
+ -0.6520771462049124
245
+ ],
246
+ [
247
+ 6.448683404392988,
248
+ -3.0829755693974477,
249
+ -4.472658024202701,
250
+ -108.84331280181694,
251
+ 38.650039267675346,
252
+ 19.200223539965076,
253
+ -0.6389514969717048
254
+ ],
255
+ [
256
+ 6.401806962345544,
257
+ -3.0334603264528517,
258
+ -4.545284706307916,
259
+ -108.80237264793188,
260
+ 38.619907888151836,
261
+ 19.25056886433724,
262
+ -0.671696864595774
263
+ ],
264
+ [
265
+ 6.345026319114759,
266
+ -2.9608338577910485,
267
+ -4.689879811037086,
268
+ -108.7290915483268,
269
+ 38.53983416541719,
270
+ 19.466529200609287,
271
+ -0.8461624142778196
272
+ ],
273
+ [
274
+ 6.332480542269915,
275
+ -2.9416805132544517,
276
+ -4.732791328271337,
277
+ -108.71390803780187,
278
+ 38.5137052767473,
279
+ 19.538799432217193,
280
+ -0.9005701537414074
281
+ ],
282
+ [
283
+ 6.284284593052189,
284
+ -2.8736770154436893,
285
+ -4.817309369721545,
286
+ -108.69673694222845,
287
+ 38.476197292920176,
288
+ 19.682107046287815,
289
+ -1.0158934155654298
290
+ ],
291
+ [
292
+ 6.259196027570263,
293
+ -2.852550173123782,
294
+ -4.859570311437352,
295
+ -108.68484558288347,
296
+ 38.36945168147663,
297
+ 19.857352624917418,
298
+ -1.2932416778285543
299
+ ],
300
+ [
301
+ 6.245988576149574,
302
+ -2.8419885662328266,
303
+ -4.8813513578137,
304
+ -108.68154660151436,
305
+ 38.32934481067032,
306
+ 19.933466545480748,
307
+ -1.3833826725129745
308
+ ],
309
+ [
310
+ 6.236742634447492,
311
+ -2.836704134249352,
312
+ -4.888620386637886,
313
+ -108.68749569628143,
314
+ 38.3032022616221,
315
+ 20.00752116400932,
316
+ -1.441787299940636
317
+ ],
318
+ [
319
+ 6.212970161041263,
320
+ -2.820854466836926,
321
+ -4.891265804280796,
322
+ -108.69673011203929,
323
+ 38.260930220848884,
324
+ 20.077464008657543,
325
+ -1.5468247237614425
326
+ ],
327
+ [
328
+ 6.185239593011011,
329
+ -2.7984010737141554,
330
+ -4.892581896356493,
331
+ -108.70730324487447,
332
+ 38.230406105448104,
333
+ 20.129781550152547,
334
+ -1.6165459074267576
335
+ ],
336
+ [
337
+ 6.156186102715893,
338
+ -2.7746392724785043,
339
+ -4.8958744744232625,
340
+ -108.7343781147444,
341
+ 38.19703038606883,
342
+ 20.187839865644946,
343
+ -1.687871972103614
344
+ ],
345
+ [
346
+ 6.148266498373263,
347
+ -2.7746356439405075,
348
+ -4.893243144045515,
349
+ -108.75153554993948,
350
+ 38.17269100696149,
351
+ 20.227982594944404,
352
+ -1.7449141902352696
353
+ ],
354
+ [
355
+ 6.143643740965634,
356
+ -2.7779356925266816,
357
+ -4.906450595466204,
358
+ -108.79643038335396,
359
+ 38.16364442140581,
360
+ 20.24583670943482,
361
+ -1.7710544981276721
362
+ ],
363
+ [
364
+ 6.143643740965634,
365
+ -2.776612770261815,
366
+ -4.919654631792308,
367
+ -108.84265027346744,
368
+ 38.16221349677469,
369
+ 20.268659786546415,
370
+ -1.8317816033165497
371
+ ],
372
+ [
373
+ 6.142982066389789,
374
+ -2.777274231394248,
375
+ -4.909081925843951,
376
+ -108.87170589819668,
377
+ 38.17766338467726,
378
+ 20.261231955824027,
379
+ -1.8413481370227989
380
+ ],
381
+ [
382
+ 6.143643740965634,
383
+ -2.7779356925266816,
384
+ -4.901831253153159,
385
+ -108.89744205098928,
386
+ 38.18099993208681,
387
+ 20.26257067290135,
388
+ -1.8263140368859545
389
+ ],
390
+ [
391
+ 6.144962821249092,
392
+ -2.779254986253552,
393
+ -4.873432180357893,
394
+ -108.92584197755819,
395
+ 38.18498534746752,
396
+ 20.254301021363755,
397
+ -1.7957990995518647
398
+ ],
399
+ [
400
+ 6.150908927808412,
401
+ -2.7772778599322447,
402
+ -4.8397661779389,
403
+ -108.9634694896958,
404
+ 38.170262874711554,
405
+ 20.274226390719978,
406
+ -1.7529877939993421
407
+ ],
408
+ [
409
+ 6.16081270210493,
410
+ -2.7713355953543335,
411
+ -4.819293966562256,
412
+ -108.98527145352648,
413
+ 38.172021648422835,
414
+ 20.271731664125628,
415
+ -1.7428136936220793
416
+ ],
417
+ [
418
+ 6.170716476401449,
419
+ -2.7627474862466888,
420
+ -4.804105760282264,
421
+ -109.0017800207504,
422
+ 38.17347306362146,
423
+ 20.270645664047596,
424
+ -1.736960861833613
425
+ ],
426
+ [
427
+ 6.1792973284331,
428
+ -2.756812478744771,
429
+ -4.780329444894626,
430
+ -109.01498277641603,
431
+ 38.174173158011385,
432
+ 20.27013510740714,
433
+ -1.7380691667481534
434
+ ],
435
+ [
436
+ 6.185239593011011,
437
+ -2.756147389074341,
438
+ -4.73939484053827,
439
+ -109.0242376827414,
440
+ 38.17775559223106,
441
+ 20.265890144837975,
442
+ -1.7220878047507928
443
+ ],
444
+ [
445
+ 6.187881595559337,
446
+ -2.753505173082604,
447
+ -4.7149824637841755,
448
+ -109.027516173543,
449
+ 38.189223479847506,
450
+ 20.249436219127414,
451
+ -1.6882476325079647
452
+ ],
453
+ [
454
+ 6.1898623504186405,
455
+ -2.752847340488167,
456
+ -4.671391342727508,
457
+ -109.03149134363996,
458
+ 38.19361529148383,
459
+ 20.243014133760312,
460
+ -1.682746021853225
461
+ ],
462
+ [
463
+ 6.189201102729618,
464
+ -2.754824466809474,
465
+ -4.639048689460205,
466
+ -109.02158073915427,
467
+ 38.196671801137406,
468
+ 20.232473444323688,
469
+ -1.6921233379751237
470
+ ],
471
+ [
472
+ 6.181274668197819,
473
+ -2.7627511147846855,
474
+ -4.597445580338834,
475
+ -109.01431341787737,
476
+ 38.19436661229253,
477
+ 20.239395841047497,
478
+ -1.694967257990788
479
+ ],
480
+ [
481
+ 6.143643740965634,
482
+ -2.800381828573459,
483
+ -4.5195310511555595,
484
+ -108.97470515088047,
485
+ 38.17052242190002,
486
+ 20.291967807089083,
487
+ -1.6531193292763544
488
+ ],
489
+ [
490
+ 6.092144114623737,
491
+ -2.847919945196748,
492
+ -4.470016021654375,
493
+ -108.95159179072915,
494
+ 38.171775761612714,
495
+ 20.392327191658666,
496
+ -1.5359978067099145
497
+ ],
498
+ [
499
+ 6.065074794282507,
500
+ -2.863111780014737,
501
+ -4.434358592205501,
502
+ -108.91990654316946,
503
+ 38.16110700612915,
504
+ 20.475001508919792,
505
+ -1.3746412043141216
506
+ ],
507
+ [
508
+ 6.003006730860486,
509
+ -2.9066956439954117,
510
+ -4.39211216464168,
511
+ -108.86840008663839,
512
+ 38.14173317454841,
513
+ 20.515214247658243,
514
+ -1.373745489037498
515
+ ],
516
+ [
517
+ 5.95876844937996,
518
+ -2.917911454942807,
519
+ -4.377581790956124,
520
+ -108.83801940521018,
521
+ 38.13935285362266,
522
+ 20.517024247788296,
523
+ -1.3798614965524214
524
+ ],
525
+ [
526
+ 5.938960900786923,
527
+ -2.9113113577704595,
528
+ -4.3729590335484945,
529
+ -108.81887438496663,
530
+ 38.14060619333536,
531
+ 20.510965869994497,
532
+ -1.3829675250774847
533
+ ],
534
+ [
535
+ 5.8504886066941015,
536
+ -2.857169515436826,
537
+ -4.378901298126405,
538
+ -108.74691151187137,
539
+ 38.163702478013754,
540
+ 20.466330583768464,
541
+ -1.3949957016492887
542
+ ],
543
+ [
544
+ 5.8161540995100935,
545
+ -2.8320811633983114,
546
+ -4.388808487517509,
547
+ -108.68946279076239,
548
+ 38.17165623330224,
549
+ 20.455226403725316,
550
+ -1.3948562163798324
551
+ ],
552
+ [
553
+ 5.730985055654619,
554
+ -2.7574739398772046,
555
+ -4.425119907579412,
556
+ -108.59901059558392,
557
+ 38.184759951224905,
558
+ 20.427130420574468,
559
+ -1.3869791939978093
560
+ ],
561
+ [
562
+ 5.702589824840761,
563
+ -2.7277626169876488,
564
+ -4.433053599187205,
565
+ -108.56731168764588,
566
+ 38.1905929327761,
567
+ 20.408854541902805,
568
+ -1.387396369145709
569
+ ],
570
+ [
571
+ 5.676182179075376,
572
+ -2.6973934615036566,
573
+ -4.4356780993757825,
574
+ -108.52374874111955,
575
+ 38.19306204616105,
576
+ 20.371370463737776,
577
+ -1.3796995997247508
578
+ ],
579
+ [
580
+ 5.6240174630630495,
581
+ -2.6399443135078564,
582
+ -4.442950543294554,
583
+ -108.48742579511342,
584
+ 38.193410385808725,
585
+ 20.35859800998985,
586
+ -1.338645893944743
587
+ ],
588
+ [
589
+ 5.602886992205146,
590
+ -2.616175255196212,
591
+ -4.419835475595938,
592
+ -108.40621484588196,
593
+ 38.16523927057701,
594
+ 20.412033994961448,
595
+ -1.2879790170730594
596
+ ],
597
+ [
598
+ 5.594963972767931,
599
+ -2.60429072604039,
600
+ -4.417196888142198,
601
+ -108.35471521954007,
602
+ 38.15656493033109,
603
+ 20.418865891678752,
604
+ -1.283206955999042
605
+ ],
606
+ [
607
+ 5.587040953330717,
608
+ -2.576560158010138,
609
+ -4.417193473047613,
610
+ -108.31114544282457,
611
+ 38.09988119040916,
612
+ 20.453966233823447,
613
+ -1.2516289637536633
614
+ ],
615
+ [
616
+ 5.544787268690902,
617
+ -2.5210990219496345,
618
+ -4.433700759611064,
619
+ -108.27746578002723,
620
+ 38.067072376731,
621
+ 20.479121820536605,
622
+ -1.2394927848156083
623
+ ],
624
+ [
625
+ 5.4985648172564865,
626
+ -2.4669608081539978,
627
+ -4.440958689377848,
628
+ -108.25832758997285,
629
+ 38.0646818105215,
630
+ 20.47893399033443,
631
+ -1.240181459983016
632
+ ],
633
+ [
634
+ 5.470841506302229,
635
+ -2.4339458081402716,
636
+ -4.440973203529835,
637
+ -108.24246789072008,
638
+ 38.06032073473644,
639
+ 20.480976216896263,
640
+ -1.2328959960161396
641
+ ],
642
+ [
643
+ 5.4695185840373615,
644
+ -2.432622885875405,
645
+ -4.421165654936798,
646
+ -108.22266034212704,
647
+ 38.05908447049667,
648
+ 20.484565481305104,
649
+ -1.2357240144976422
650
+ ],
651
+ [
652
+ 5.470176416631798,
653
+ -2.431965053280968,
654
+ -4.396066417284294,
655
+ -108.22134211561723,
656
+ 38.077198132175546,
657
+ 20.454668035760665,
658
+ -1.2472790937477172
659
+ ],
660
+ [
661
+ 5.468199076867079,
662
+ -2.387726985243853,
663
+ -4.387482150158057,
664
+ -108.26558808106057,
665
+ 38.100304662137695,
666
+ 20.42424637319743,
667
+ -1.2393677069764324
668
+ ],
669
+ [
670
+ 5.445087851149872,
671
+ -2.3619771720729053,
672
+ -4.34455611877182,
673
+ -108.32567325518917,
674
+ 38.09489515231505,
675
+ 20.409940541980838,
676
+ -1.340390046782329
677
+ ],
678
+ [
679
+ 5.426599809727117,
680
+ -2.3514191937199462,
681
+ -4.271929436666604,
682
+ -108.42735428136317,
683
+ 38.20465970737174,
684
+ 20.23532675584946,
685
+ -1.5617484736545089
686
+ ],
687
+ [
688
+ 5.320293037937746,
689
+ -2.251712732546335,
690
+ -4.118088390235353,
691
+ -108.80039872326175,
692
+ 38.198222254079,
693
+ 20.215759971424667,
694
+ -1.8472675631556725
695
+ ],
696
+ [
697
+ 5.173717178349272,
698
+ -2.164559518736972,
699
+ -3.881727986459769,
700
+ -109.30086717431608,
701
+ 38.31058569611488,
702
+ 20.008745475418042,
703
+ -2.0411068376967534
704
+ ],
705
+ [
706
+ 4.871977350064681,
707
+ -1.9975110208850315,
708
+ -3.624877015174147,
709
+ -109.86671419610579,
710
+ 38.427043836558184,
711
+ 19.72004362448536,
712
+ -2.2495144788506485
713
+ ],
714
+ [
715
+ 4.323308254037556,
716
+ -1.690486867338671,
717
+ -3.3099333640068624,
718
+ -110.73761112660661,
719
+ 38.61614103882457,
720
+ 19.304305377632314,
721
+ -2.2144211803385345
722
+ ],
723
+ [
724
+ 3.9918575297502317,
725
+ -1.439588939523244,
726
+ -3.2366418056746293,
727
+ -111.06311745188191,
728
+ 38.70315081866136,
729
+ 19.13413804465062,
730
+ -1.9731710014474564
731
+ ],
732
+ [
733
+ 3.5673000145748204,
734
+ -1.1840679341350704,
735
+ -3.218168064960449,
736
+ -111.34965754794229,
737
+ 38.70640540380087,
738
+ 19.100536929028742,
739
+ -1.8090863788084783
740
+ ],
741
+ [
742
+ 2.968446957394674,
743
+ -0.7251906393710494,
744
+ -3.4195363424009995,
745
+ -111.78477474901794,
746
+ 38.67082353331969,
747
+ 19.17034658498815,
748
+ -1.4198837370460515
749
+ ],
750
+ [
751
+ 2.4897548569616226,
752
+ -0.2161294634952853,
753
+ -3.880397807118909,
754
+ -112.58633842925396,
755
+ 38.73492144358568,
756
+ 19.076837880156088,
757
+ -1.314113882158467
758
+ ],
759
+ [
760
+ 2.506269614044479,
761
+ -0.010785217212520576,
762
+ -4.118750064811198,
763
+ -112.98579521267298,
764
+ 38.74929557669397,
765
+ 19.006041261861615,
766
+ -1.3108896059833979
767
+ ],
768
+ [
769
+ 2.6574684444839933,
770
+ 0.35829664941792727,
771
+ -4.401336335115782,
772
+ -113.40044233680612,
773
+ 38.75505684125888,
774
+ 18.89516850861209,
775
+ -1.3091028711852049
776
+ ],
777
+ [
778
+ 2.7875331755276074,
779
+ 0.7168276597017507,
780
+ -4.471989519437686,
781
+ -113.62823597581522,
782
+ 38.76490597404204,
783
+ 18.865750883856844,
784
+ -1.3530944120819646
785
+ ],
786
+ [
787
+ 3.0397577608676034,
788
+ 1.1063748524912929,
789
+ -4.090365079281094,
790
+ -113.95703445227046,
791
+ 38.986931518297055,
792
+ 18.4428836270576,
793
+ -2.1582866303145503
794
+ ],
795
+ [
796
+ 3.3058440016847292,
797
+ 1.596951482080166,
798
+ -3.600453539362651,
799
+ -114.37431802942322,
800
+ 39.61170599715104,
801
+ 16.70461926630957,
802
+ -2.0122196198192426
803
+ ],
804
+ [
805
+ 3.459681419577984,
806
+ 2.4453831733488696,
807
+ -3.3766284537047446,
808
+ -114.72360024319933,
809
+ 40.008539987928785,
810
+ 15.594783535621493,
811
+ -0.9448988285067306
812
+ ],
813
+ [
814
+ 3.369224528644451,
815
+ 3.1895034685611976,
816
+ -3.150811514130133,
817
+ -114.95073135385894,
818
+ 40.28811670613033,
819
+ 14.895283372152978,
820
+ -0.2880126154763209
821
+ ],
822
+ [
823
+ 3.02126587746344,
824
+ 3.485962493400312,
825
+ -2.471412597388965,
826
+ -115.0306172463914,
827
+ 40.33699012473636,
828
+ 14.659066402349964,
829
+ -0.39140316329436087
830
+ ],
831
+ [
832
+ 2.8707285081563594,
833
+ 3.414655318465379,
834
+ -2.192122533689147,
835
+ -115.05373060654273,
836
+ 40.401050468961905,
837
+ 14.49801566436294,
838
+ -0.48472080959264524
839
+ ],
840
+ [
841
+ 2.432974427174249,
842
+ 3.040285392980987,
843
+ -1.5701476853429204,
844
+ -115.47628708973474,
845
+ 40.72737641693761,
846
+ 13.292079172052782,
847
+ 0.3024724727947817
848
+ ],
849
+ [
850
+ 2.4131668785812117,
851
+ 3.156492097085468,
852
+ -1.5305217025428568,
853
+ -116.04017384723265,
854
+ 40.895621051667945,
855
+ 12.593033216164072,
856
+ 1.2074965502052721
857
+ ],
858
+ [
859
+ 2.27583696069482,
860
+ 3.8458020451991484,
861
+ -1.695596595889781,
862
+ -117.58385124116889,
863
+ 41.43836837368467,
864
+ 10.236436098723022,
865
+ 2.1488966143096637
866
+ ],
867
+ [
868
+ 2.411843956316345,
869
+ 4.359489900505229,
870
+ -1.8190612297610471,
871
+ -118.43360873618852,
872
+ 41.79219949344801,
873
+ 8.306008634544916,
874
+ 2.1169202299366026
875
+ ],
876
+ [
877
+ 2.6535069347653857,
878
+ 4.696221641681443,
879
+ -1.7847252284731583,
880
+ -118.78354664812495,
881
+ 41.91103453972248,
882
+ 7.756106689372604,
883
+ 2.036202975316096
884
+ ],
885
+ [
886
+ 2.765744872075267,
887
+ 4.787336365209413,
888
+ -1.7055039987242961,
889
+ -118.96710115187987,
890
+ 41.91912831388894,
891
+ 7.78948497007281,
892
+ 1.973316783297554
893
+ ],
894
+ [
895
+ 2.6336993861723488,
896
+ 4.822989952676879,
897
+ -1.3436710989048741,
898
+ -119.06350244182543,
899
+ 41.8697801971356,
900
+ 7.98729407862555,
901
+ 1.989971772701807
902
+ ],
903
+ [
904
+ 1.962870649292254,
905
+ 4.81507034833425,
906
+ -0.4727878821432511,
907
+ -120.07304538228834,
908
+ 41.918496521390715,
909
+ 7.519705304462001,
910
+ 2.916378717804374
911
+ ],
912
+ [
913
+ 1.7060302434555044,
914
+ 5.427130856935086,
915
+ -0.22387959376913416,
916
+ -120.85411849501432,
917
+ 42.090395307327015,
918
+ 5.899573761164398,
919
+ 3.8360084077029963
920
+ ],
921
+ [
922
+ 1.529735910623188,
923
+ 5.508341806166537,
924
+ 0.1610644650664293,
925
+ -121.4846815591899,
926
+ 42.23528411019049,
927
+ 4.359168027840592,
928
+ 4.2359364741747525
929
+ ],
930
+ [
931
+ 1.3739141093326328,
932
+ 5.627187097724759,
933
+ 0.8569708684742474,
934
+ -122.01288740846365,
935
+ 42.40181778253374,
936
+ 2.884641603495675,
937
+ 4.822941287579043
938
+ ],
939
+ [
940
+ 0.6238586998966807,
941
+ 5.188775184148212,
942
+ 2.0282835844168776,
943
+ -121.66162443982824,
944
+ 42.26292588576153,
945
+ 4.494933832407051,
946
+ 5.075228411838627
947
+ ],
948
+ [
949
+ -0.11431220706387547,
950
+ 4.970892149624805,
951
+ 2.8020936447341938,
952
+ -120.57087055013389,
953
+ 41.98000920505585,
954
+ 7.139338045999514,
955
+ 5.0507293770594375
956
+ ],
957
+ [
958
+ -0.41671701829719177,
959
+ 4.63283407108914,
960
+ 3.094594788392697,
961
+ -119.94956922247285,
962
+ 41.932163729919914,
963
+ 7.429505826282813,
964
+ 5.018161754436347
965
+ ],
966
+ [
967
+ -0.33021808858554863,
968
+ 4.35618238139965,
969
+ 3.0972333758464377,
970
+ -119.6247117651687,
971
+ 42.07058434363939,
972
+ 6.874418486869992,
973
+ 5.218293127306891
974
+ ],
975
+ [
976
+ -0.03706635940344147,
977
+ 4.270352089855154,
978
+ 2.9321765184677906,
979
+ -119.43061144933527,
980
+ 42.07311492872688,
981
+ 6.470743207864837,
982
+ 5.410932209544754
983
+ ],
984
+ [
985
+ 0.2521310437648787,
986
+ 4.299405580150273,
987
+ 2.8014466977537467,
988
+ -119.24177037916277,
989
+ 42.11204017680678,
990
+ 6.1992952685492515,
991
+ 5.560820710880684
992
+ ],
993
+ [
994
+ 1.0081322929558856,
995
+ 4.3053444296336,
996
+ 2.7037318770534284,
997
+ -118.60924022050622,
998
+ 42.06686530563632,
999
+ 6.467606443488508,
1000
+ 5.313364237911591
1001
+ ],
1002
+ [
1003
+ 1.622838539364749,
1004
+ 4.030012247114392,
1005
+ 2.6502369817002425,
1006
+ -118.02622893333228,
1007
+ 41.96257856229398,
1008
+ 7.355418764355684,
1009
+ 5.466577333826025
1010
+ ],
1011
+ [
1012
+ 1.828175690321606,
1013
+ 3.952766222696133,
1014
+ 2.617890699894943,
1015
+ -117.84069367471805,
1016
+ 41.92858129570024,
1017
+ 7.435378935195377,
1018
+ 5.4555704839785495
1019
+ ],
1020
+ [
1021
+ 2.081719355945061,
1022
+ 3.7771300426233707,
1023
+ 2.4924416826263767,
1024
+ -117.5382938794049,
1025
+ 41.97588035570258,
1026
+ 7.518469040222229,
1027
+ 5.08253927557148
1028
+ ],
1029
+ [
1030
+ 2.3788325848406155,
1031
+ 3.781098382531148,
1032
+ 2.193340441795525,
1033
+ -117.09524682870286,
1034
+ 41.99905860265102,
1035
+ 7.379223681160471,
1036
+ 4.6895826978081905
1037
+ ],
1038
+ [
1039
+ 2.5584198159048186,
1040
+ 3.7612874188435264,
1041
+ 1.8546349893925893,
1042
+ -116.40528843950486,
1043
+ 41.986709620631636,
1044
+ 7.331630923023822,
1045
+ 4.33154119330836
1046
+ ],
1047
+ [
1048
+ 2.590776983324108,
1049
+ 3.813452134855852,
1050
+ 1.4195196025859251,
1051
+ -115.59383464535065,
1052
+ 41.853131611033696,
1053
+ 8.153893491539563,
1054
+ 4.475168118722681
1055
+ ],
1056
+ [
1057
+ 2.578892454168286,
1058
+ 3.8530672320419264,
1059
+ 1.0088347352233389,
1060
+ -114.4832663768741,
1061
+ 41.75107833954995,
1062
+ 8.558318383806126,
1063
+ 4.353416154785795
1064
+ ],
1065
+ [
1066
+ 2.5670079250124633,
1067
+ 3.841182702886104,
1068
+ 0.9421433807851594,
1069
+ -114.24226998219936,
1070
+ 41.77407900157996,
1071
+ 8.689758544193852,
1072
+ 4.125663070024897
1073
+ ],
1074
+ [
1075
+ 2.3286558807635864,
1076
+ 3.7705295185642,
1077
+ 0.48921192577619305,
1078
+ -112.89666124400432,
1079
+ 41.733524753383016,
1080
+ 9.02880998836693,
1081
+ 3.682978873122507
1082
+ ],
1083
+ [
1084
+ 2.1688725697544236,
1085
+ 3.737514945437297,
1086
+ 0.15841866055733528,
1087
+ -112.07595254352476,
1088
+ 41.6303479157808,
1089
+ 9.530579590458162,
1090
+ 3.7256888997762427
1091
+ ],
1092
+ [
1093
+ 2.0242774650252535,
1094
+ 3.629895923553637,
1095
+ -0.13474743936946604,
1096
+ -111.31796547019343,
1097
+ 41.58713330890213,
1098
+ 9.687043002643875,
1099
+ 3.423896564412406
1100
+ ],
1101
+ [
1102
+ 1.79582577997831,
1103
+ 3.4027671607715604,
1104
+ -0.42260754952822527,
1105
+ -110.5045377513691,
1106
+ 41.523284700540856,
1107
+ 9.985147462742729,
1108
+ 3.126143005282163
1109
+ ],
1110
+ [
1111
+ 1.7509297726250526,
1112
+ 3.36314843504749,
1113
+ -0.5348527439140992,
1114
+ -110.30644860506038,
1115
+ 41.4824572447771,
1116
+ 10.115891797608759,
1117
+ 3.095448562038949
1118
+ ],
1119
+ [
1120
+ 1.674995998301082,
1121
+ 3.297783524690468,
1122
+ -1.00496383223294,
1123
+ -109.52601753011639,
1124
+ 41.51134894496626,
1125
+ 10.206207389003838,
1126
+ 3.308773939395253
1127
+ ],
1128
+ [
1129
+ 1.5825584592299509,
1130
+ 3.2040302137087573,
1131
+ -1.1964463713452491,
1132
+ -109.1391009740135,
1133
+ 41.48227965985868,
1134
+ 10.369782735662826,
1135
+ 3.256416697425697
1136
+ ],
1137
+ [
1138
+ 1.50530539117911,
1139
+ 3.126777145657916,
1140
+ -1.4050799423502836,
1141
+ -108.71786271733131,
1142
+ 41.46475680954301,
1143
+ 10.522194991897075,
1144
+ 3.2968676390114515
1145
+ ],
1146
+ [
1147
+ 1.493420862023288,
1148
+ 3.0739545970511535,
1149
+ -1.5014862482160152,
1150
+ -108.40621484588196,
1151
+ 41.4214602403943,
1152
+ 10.694432725970934,
1153
+ 3.4130045471203516
1154
+ ],
1155
+ [
1156
+ 1.5072897745764104,
1157
+ 2.9148400042504172,
1158
+ -1.529871127024413,
1159
+ -108.13616965666718,
1160
+ 41.394040445971285,
1161
+ 10.87783611179047,
1162
+ 3.372728629132079
1163
+ ],
1164
+ [
1165
+ 1.5086054397652842,
1166
+ 2.7009112223696246,
1167
+ -1.5424027098823883,
1168
+ -107.92424254710002,
1169
+ 41.37047287824016,
1170
+ 11.052917765879991,
1171
+ 3.2890489934024907
1172
+ ],
1173
+ [
1174
+ 1.6466040758601028,
1175
+ 2.5034901539391066,
1176
+ -1.5714669790697908,
1177
+ -107.70238434247966,
1178
+ 41.30563047735464,
1179
+ 11.194564790208656,
1180
+ 3.0992762427385063
1181
+ ],
1182
+ [
1183
+ 1.706691704587938,
1184
+ 2.4381252435820846,
1185
+ -1.5688175060020604,
1186
+ -107.6759788311484,
1187
+ 41.28125694730145,
1188
+ 11.226265405693976,
1189
+ 3.060872863799875
1190
+ ],
1191
+ [
1192
+ 1.8182719160250875,
1193
+ 2.3225836291480335,
1194
+ -1.5490064355927327,
1195
+ -107.66145784897294,
1196
+ 41.21344682922157,
1197
+ 11.358590929352864,
1198
+ 3.07987573073132
1199
+ ],
1200
+ [
1201
+ 1.9179711201227059,
1202
+ 2.216277070802074,
1203
+ -1.5272324328489668,
1204
+ -107.6528586408079,
1205
+ 41.20398360212651,
1206
+ 11.433148420559078,
1207
+ 3.0690669563697743
1208
+ ],
1209
+ [
1210
+ 2.0586047151332685,
1211
+ 2.0875280049473335,
1212
+ -1.5245938453952261,
1213
+ -107.6462538478805,
1214
+ 41.17578516613811,
1215
+ 11.608160065209606,
1216
+ 3.0325732556343965
1217
+ ],
1218
+ [
1219
+ 2.289698616171949,
1220
+ 1.9013334196347895,
1221
+ -1.552313634533194,
1222
+ -107.62249161975802,
1223
+ 41.14657244705797,
1224
+ 11.766067208631132,
1225
+ 2.960140166703469
1226
+ ],
1227
+ [
1228
+ 2.4488204660486783,
1229
+ 1.8399263904583782,
1230
+ -1.5972095351647457,
1231
+ -107.60797063758258,
1232
+ 41.161230033016814,
1233
+ 11.753547471882499,
1234
+ 2.891000509612957
1235
+ ],
1236
+ [
1237
+ 2.5465389152869933,
1238
+ 1.8333299218240269,
1239
+ -1.6084326031881344,
1240
+ -107.60599671291244,
1241
+ 41.17672773224358,
1242
+ 11.738884763281774,
1243
+ 2.8682331412317774
1244
+ ],
1245
+ [
1246
+ 2.736037177723708,
1247
+ 1.6583548827185808,
1248
+ -1.590605809454401,
1249
+ -107.6185369402286,
1250
+ 41.15392514569949,
1251
+ 11.801122300772576,
1252
+ 2.8469161208321676
1253
+ ],
1254
+ [
1255
+ 2.8918553504762663,
1256
+ 1.4946136905288072,
1257
+ -1.539113440188498,
1258
+ -107.65550875420587,
1259
+ 41.14724522069122,
1260
+ 11.834477529584333,
1261
+ 2.8903981723055265
1262
+ ],
1263
+ [
1264
+ 2.9922196442443147,
1265
+ 1.3638802412767665,
1266
+ -1.481017238490545,
1267
+ -107.68190743534797,
1268
+ 41.13302476683925,
1269
+ 11.896502477437219,
1270
+ 2.865802874547722
1271
+ ],
1272
+ [
1273
+ 3.137468953029925,
1274
+ 1.0654404615783486,
1275
+ -1.334434228547784,
1276
+ -107.73341389187904,
1277
+ 41.07909359315283,
1278
+ 11.990931550259937,
1279
+ 2.722321730983499
1280
+ ],
1281
+ [
1282
+ 3.243121307319444,
1283
+ 0.727389266592706,
1284
+ -1.1693664855551469,
1285
+ -107.79680487756592,
1286
+ 40.90985858099284,
1287
+ 12.500080317975723,
1288
+ 2.4212813567585987
1289
+ ],
1290
+ [
1291
+ 3.2411405524601404,
1292
+ 0.640893938738633,
1293
+ -1.136358742617414,
1294
+ -107.80736435002277,
1295
+ 40.90068563693751,
1296
+ 12.588695192267467,
1297
+ 2.3481086864066056
1298
+ ],
1299
+ [
1300
+ 3.276786882851614,
1301
+ 0.47187188974252897,
1302
+ -1.0822240506380683,
1303
+ -107.82452178521783,
1304
+ 40.80170253548569,
1305
+ 12.817415175682745,
1306
+ 2.1066100593844683
1307
+ ],
1308
+ [
1309
+ 3.321686412021162,
1310
+ 0.47714911801086296,
1311
+ -1.1488903254753893,
1312
+ -107.87801582679737,
1313
+ 40.725385416794545,
1314
+ 13.156937902908556,
1315
+ 2.146170941944005
1316
+ ],
1317
+ [
1318
+ 3.415443351540869,
1319
+ 0.5722289264345841,
1320
+ -1.2644427188017244,
1321
+ -107.94338756734356,
1322
+ 40.68361197983075,
1323
+ 13.373347324118532,
1324
+ 2.2347098303812345
1325
+ ],
1326
+ [
1327
+ 3.4907156647324062,
1328
+ 0.6580628465170766,
1329
+ -1.38593385488968,
1330
+ -108.01072640237072,
1331
+ 40.656021430678486,
1332
+ 13.613221860222088,
1333
+ 2.2420992412895417
1334
+ ]
1335
+ ],
1336
+ "l_hand": [
1337
+ 99.99,
1338
+ 99.99,
1339
+ 99.99,
1340
+ 99.99,
1341
+ 99.99,
1342
+ 99.99,
1343
+ 99.99,
1344
+ 99.99,
1345
+ 99.99,
1346
+ 99.99,
1347
+ 99.99,
1348
+ 99.99,
1349
+ 99.99,
1350
+ 99.99,
1351
+ 99.99,
1352
+ 99.99,
1353
+ 99.99,
1354
+ 99.99,
1355
+ 99.99,
1356
+ 99.99,
1357
+ 99.99,
1358
+ 99.99,
1359
+ 99.99,
1360
+ 99.99,
1361
+ 99.99,
1362
+ 99.99,
1363
+ 99.99,
1364
+ 99.99,
1365
+ 99.99,
1366
+ 99.99,
1367
+ 99.99,
1368
+ 99.99,
1369
+ 99.99,
1370
+ 99.99,
1371
+ 99.99,
1372
+ 99.99,
1373
+ 99.99,
1374
+ 99.99,
1375
+ 99.99,
1376
+ 99.99,
1377
+ 99.99,
1378
+ 99.99,
1379
+ 99.99,
1380
+ 99.99,
1381
+ 99.99,
1382
+ 99.99,
1383
+ 99.99,
1384
+ 99.99,
1385
+ 99.99,
1386
+ 99.99,
1387
+ 99.99,
1388
+ 99.99,
1389
+ 99.99,
1390
+ 99.99,
1391
+ 99.99,
1392
+ 99.99,
1393
+ 99.99,
1394
+ 99.99,
1395
+ 99.99,
1396
+ 99.99,
1397
+ 99.99,
1398
+ 99.99,
1399
+ 99.99,
1400
+ 99.99,
1401
+ 99.99,
1402
+ 99.99,
1403
+ 99.99,
1404
+ 99.99,
1405
+ 99.99,
1406
+ 99.99,
1407
+ 99.99,
1408
+ 99.99,
1409
+ 99.99,
1410
+ 99.99,
1411
+ 99.99,
1412
+ 99.99,
1413
+ 99.99,
1414
+ 99.99,
1415
+ 99.99,
1416
+ 99.99,
1417
+ 99.99,
1418
+ 99.99,
1419
+ 99.99,
1420
+ 99.99,
1421
+ 99.99,
1422
+ 99.99,
1423
+ 99.99,
1424
+ 99.99,
1425
+ 99.99,
1426
+ 99.99,
1427
+ 99.99,
1428
+ 99.99,
1429
+ 99.99,
1430
+ 99.99,
1431
+ 99.99,
1432
+ 99.99,
1433
+ 99.99,
1434
+ 99.99,
1435
+ 99.99,
1436
+ 99.99,
1437
+ 99.99,
1438
+ 99.99,
1439
+ 99.99,
1440
+ 99.92,
1441
+ 99.99,
1442
+ 99.99,
1443
+ 99.99,
1444
+ 99.99,
1445
+ 99.99,
1446
+ 99.99,
1447
+ 99.99,
1448
+ 99.99,
1449
+ 99.99,
1450
+ 99.99,
1451
+ 99.99,
1452
+ 99.99,
1453
+ 99.99,
1454
+ 99.99,
1455
+ 99.99,
1456
+ 99.99,
1457
+ 99.99,
1458
+ 99.99,
1459
+ 99.99,
1460
+ 99.99,
1461
+ 99.99,
1462
+ 99.99,
1463
+ 99.99,
1464
+ 99.99,
1465
+ 99.99,
1466
+ 99.99,
1467
+ 99.99,
1468
+ 99.99,
1469
+ 99.99
1470
+ ],
1471
+ "r_arm": [
1472
+ [
1473
+ 7.721845606722174,
1474
+ 4.0507773028517,
1475
+ 1.233640059748848,
1476
+ -109.04892198640182,
1477
+ -34.59856229732054,
1478
+ 26.352908629376444,
1479
+ 8.879818803133212
1480
+ ],
1481
+ [
1482
+ 7.71854150271118,
1483
+ 4.0474736257275294,
1484
+ 1.2415630791860626,
1485
+ -109.04099896696461,
1486
+ -34.59853156146927,
1487
+ 26.352912044471026,
1488
+ 8.88261832691927
1489
+ ],
1490
+ [
1491
+ 7.696091524682995,
1492
+ 4.043508700914337,
1493
+ 1.2514668534825812,
1494
+ -109.0192038333231,
1495
+ -34.598319825605,
1496
+ 26.349507195169775,
1497
+ 8.882694312773786
1498
+ ],
1499
+ [
1500
+ 7.634681293855411,
1501
+ 4.042850868319901,
1502
+ 1.2587284117873625,
1503
+ -108.97232824504931,
1504
+ -34.5921248440278,
1505
+ 26.360865799759505,
1506
+ 8.906926970175345
1507
+ ],
1508
+ [
1509
+ 7.582519992937669,
1510
+ 4.034266174306841,
1511
+ 1.2673128923570107,
1512
+ -108.9214911470569,
1513
+ -34.59065293826166,
1514
+ 26.36585354540091,
1515
+ 8.90817177215158
1516
+ ],
1517
+ [
1518
+ 7.455755097036818,
1519
+ 3.9497553899326268,
1520
+ 1.3161738245234604,
1521
+ -108.84622246240336,
1522
+ -34.56712976676014,
1523
+ 26.39086057549962,
1524
+ 8.843518055241885
1525
+ ],
1526
+ [
1527
+ 7.261641120825055,
1528
+ 3.882409724716301,
1529
+ 1.3353163901677734,
1530
+ -108.72935792570445,
1531
+ -34.55601704898053,
1532
+ 26.448104390933494,
1533
+ 8.865127066228514
1534
+ ],
1535
+ [
1536
+ 7.042431748942197,
1537
+ 3.8599524896121222,
1538
+ 1.3260740770036883,
1539
+ -108.5497717618573,
1540
+ -34.528986575340205,
1541
+ 26.45720049536066,
1542
+ 8.915632046272526
1543
+ ],
1544
+ [
1545
+ 6.967159649194071,
1546
+ 3.861279253858397,
1547
+ 1.324089693606388,
1548
+ -108.47250866196612,
1549
+ -34.513471800640524,
1550
+ 26.485733610618386,
1551
+ 8.941708854749988
1552
+ ],
1553
+ [
1554
+ 6.777007182700916,
1555
+ 3.8705251955604787,
1556
+ 1.324089693606388,
1557
+ -108.31272321652284,
1558
+ -34.45153906034143,
1559
+ 26.639943914151644,
1560
+ 9.185113744880795
1561
+ ],
1562
+ [
1563
+ 6.634389417736465,
1564
+ 3.8903289021721075,
1565
+ 1.3128666255829993,
1566
+ -108.17341467821126,
1567
+ -34.41922202028351,
1568
+ 26.669440086082343,
1569
+ 9.220485587044998
1570
+ ],
1571
+ [
1572
+ 6.500359334992835,
1573
+ 3.9583362419642785,
1574
+ 1.323431861011951,
1575
+ -108.04928282023545,
1576
+ -34.37406080949139,
1577
+ 26.75604517721081,
1578
+ 9.291881554439142
1579
+ ],
1580
+ [
1581
+ 6.379522616404731,
1582
+ 4.015781547978671,
1583
+ 1.3227740284175142,
1584
+ -107.87828220417501,
1585
+ -34.32411846628026,
1586
+ 26.894189168268905,
1587
+ 9.469276081336359
1588
+ ],
1589
+ [
1590
+ 6.307557608875362,
1591
+ 4.048131458321967,
1592
+ 1.3089087444023884,
1593
+ -107.76800880002514,
1594
+ -34.28784333159832,
1595
+ 26.94084448294197,
1596
+ 9.594242929938204
1597
+ ],
1598
+ [
1599
+ 6.230308169362518,
1600
+ 4.088404388102478,
1601
+ 1.3155088415747362,
1602
+ -107.6914218888618,
1603
+ -34.26505099033799,
1604
+ 26.974845164630292,
1605
+ 9.664940510489714
1606
+ ],
1607
+ [
1608
+ 6.173527526131732,
1609
+ 4.120100307832745,
1610
+ 1.3089051158643918,
1611
+ -107.6465270554473,
1612
+ -34.179837550252905,
1613
+ 27.068649275143954,
1614
+ 9.752316559220748
1615
+ ],
1616
+ [
1617
+ 6.122685732384273,
1618
+ 4.152450218176041,
1619
+ 1.312205164450566,
1620
+ -107.59964463698434,
1621
+ -34.11974554593514,
1622
+ 27.093036465575487,
1623
+ 9.873105893371486
1624
+ ],
1625
+ [
1626
+ 6.071847780618222,
1627
+ 4.190080718521403,
1628
+ 1.3062628998726546,
1629
+ -107.56993331409478,
1630
+ -34.02615829392762,
1631
+ 27.174583801623562,
1632
+ 10.003167209320514
1633
+ ],
1634
+ [
1635
+ 6.054020986884488,
1636
+ 4.205268924801396,
1637
+ 1.2976784193030064,
1638
+ -107.56135459649724,
1639
+ -34.01075280225466,
1640
+ 27.183951406070232,
1641
+ 10.025696588297802
1642
+ ],
1643
+ [
1644
+ 6.020348154276325,
1645
+ 4.238941757409559,
1646
+ 1.275232283256229,
1647
+ -107.56135459649724,
1648
+ -33.99140287633601,
1649
+ 27.219350568991118,
1650
+ 10.097490414211098
1651
+ ],
1652
+ [
1653
+ 6.019025232011458,
1654
+ 4.240264679674425,
1655
+ 1.271932234670055,
1656
+ -107.56597180437618,
1657
+ -33.988493215749585,
1658
+ 27.229266296118684,
1659
+ 10.111931995437443
1660
+ ],
1661
+ [
1662
+ 6.015724969981873,
1663
+ 4.236964844531663,
1664
+ 1.2541054409363217,
1665
+ -107.59172161754712,
1666
+ -33.97478844117995,
1667
+ 27.276365573087798,
1668
+ 10.183340769436281
1669
+ ],
1670
+ [
1671
+ 6.013086382528132,
1672
+ 4.234326257077923,
1673
+ 1.2342978923432848,
1674
+ -107.61813395906756,
1675
+ -33.95486477937103,
1676
+ 27.353420352209298,
1677
+ 10.308341768983977
1678
+ ],
1679
+ [
1680
+ 6.00912145771494,
1681
+ 4.236968259626248,
1682
+ 1.2191168364175793,
1683
+ -107.64520199874832,
1684
+ -33.93950368392767,
1685
+ 27.354844446651246,
1686
+ 10.369588929045127
1687
+ ],
1688
+ [
1689
+ 6.006482870261199,
1690
+ 4.240929769344855,
1691
+ 1.210532355847931,
1692
+ -107.68019988805547,
1693
+ -33.92574426784468,
1694
+ 27.35353817297248,
1695
+ 10.428964617273694
1696
+ ],
1697
+ [
1698
+ 6.006482870261199,
1699
+ 4.240929769344855,
1700
+ 1.216467470071555,
1701
+ -107.71651600387243,
1702
+ -33.92918326809178,
1703
+ 27.339543115363124,
1704
+ 10.453916152085398
1705
+ ],
1706
+ [
1707
+ 6.00912145771494,
1708
+ 4.236968259626248,
1709
+ 1.2276941666329402,
1710
+ -107.74622732676198,
1711
+ -33.940565778343604,
1712
+ 27.270293534915655,
1713
+ 10.463442558430273
1714
+ ],
1715
+ [
1716
+ 6.0144058896984145,
1717
+ 4.219799298486952,
1718
+ 1.2534403512658918,
1719
+ -107.79706442475438,
1720
+ -33.98062142273115,
1721
+ 27.191386066981792,
1722
+ 10.485960838350158
1723
+ ],
1724
+ [
1725
+ 6.038174948010059,
1726
+ 4.155092220724367,
1727
+ 1.3069207324670915,
1728
+ -107.85451314586336,
1729
+ -34.02439610512176,
1730
+ 27.14246142195699,
1731
+ 10.462765515928796
1732
+ ],
1733
+ [
1734
+ 6.044778460276992,
1735
+ 4.118119552973441,
1736
+ 1.3346549290353398,
1737
+ -107.88225054408278,
1738
+ -34.02855910542088,
1739
+ 27.137342195174067,
1740
+ 10.460888067680688
1741
+ ],
1742
+ [
1743
+ 6.049397802590036,
1744
+ 4.080485210646671,
1745
+ 1.3551239387608103,
1746
+ -107.90272062102531,
1747
+ -34.030655973496074,
1748
+ 27.135212883700316,
1749
+ 10.455113142737442
1750
+ ],
1751
+ [
1752
+ 6.049401644571444,
1753
+ 4.060673820072226,
1754
+ 1.3617240359331582,
1755
+ -107.90799352706456,
1756
+ -34.03231570946439,
1757
+ 27.137135581951675,
1758
+ 10.45180391608457
1759
+ ],
1760
+ [
1761
+ 6.046759215136295,
1762
+ 4.013139545430345,
1763
+ 1.3742736547594103,
1764
+ -107.91393579164247,
1765
+ -34.036133785210424,
1766
+ 27.15312334725138,
1767
+ 10.43013172584812
1768
+ ],
1769
+ [
1770
+ 6.050720724854902,
1771
+ 3.941832370495412,
1772
+ 1.3947354074088876,
1773
+ -107.91855982971057,
1774
+ -34.0422672950851,
1775
+ 27.19085160467924,
1776
+ 10.356887338509843
1777
+ ],
1778
+ [
1779
+ 6.03553251857491,
1780
+ 3.880428969856997,
1781
+ 1.411904368548184,
1782
+ -107.91855982971057,
1783
+ -33.999974763744376,
1784
+ 27.279261573295884,
1785
+ 10.317583014931003
1786
+ ],
1787
+ [
1788
+ 5.992613744264665,
1789
+ 3.7714874525952937,
1790
+ 1.4515266160885454,
1791
+ -107.91062998008418,
1792
+ -33.91928973907902,
1793
+ 27.323336784009975,
1794
+ 10.06702094032367
1795
+ ],
1796
+ [
1797
+ 5.921968243905577,
1798
+ 3.696872758554782,
1799
+ 1.4772764292594935,
1800
+ -107.90072620578766,
1801
+ -33.84108065798779,
1802
+ 27.34224274763257,
1803
+ 9.918538604183118
1804
+ ],
1805
+ [
1806
+ 5.873103363036013,
1807
+ 3.651977071366642,
1808
+ 1.4964261452580936,
1809
+ -107.88157435535494,
1810
+ -33.84406545065508,
1811
+ 27.37129495726722,
1812
+ 9.889667394561474
1813
+ ],
1814
+ [
1815
+ 5.801800030082489,
1816
+ 3.5529356998634607,
1817
+ 1.540660584757212,
1818
+ -107.8597860519026,
1819
+ -33.84758641317222,
1820
+ 27.424546527131223,
1821
+ 9.7254167129483
1822
+ ],
1823
+ [
1824
+ 5.7417195517089405,
1825
+ 3.536431828394594,
1826
+ 1.5479221430619932,
1827
+ -107.84460254137767,
1828
+ -33.868121376911866,
1829
+ 27.396884260992675,
1830
+ 9.676212030167529
1831
+ ],
1832
+ [
1833
+ 5.647304566151385,
1834
+ 3.5516164061365902,
1835
+ 1.5281145944689563,
1836
+ -107.8049874441916,
1837
+ -33.878885755043804,
1838
+ 27.412580035705364,
1839
+ 9.800763091003649
1840
+ ],
1841
+ [
1842
+ 5.5891975855611475,
1843
+ 3.562185270103539,
1844
+ 1.5050106258277418,
1845
+ -107.76999638507363,
1846
+ -33.86499998046117,
1847
+ 27.45136526490728,
1848
+ 9.883948818678881
1849
+ ],
1850
+ [
1851
+ 5.560144095266029,
1852
+ 3.5767083867131015,
1853
+ 1.495099701176936,
1854
+ -107.75744932756831,
1855
+ -33.853006168278625,
1856
+ 27.43527333922273,
1857
+ 9.912735504709545
1858
+ ],
1859
+ [
1860
+ 5.500725291468327,
1861
+ 3.607080957291679,
1862
+ 1.4693498880059879,
1863
+ -107.72906306137773,
1864
+ -33.843778582709945,
1865
+ 27.38987648690424,
1866
+ 9.915231085077538
1867
+ ],
1868
+ [
1869
+ 5.453187174845038,
1870
+ 3.6282041710735897,
1871
+ 1.4369963491246953,
1872
+ -107.68746037914319,
1873
+ -33.843160450590055,
1874
+ 27.380222014512427,
1875
+ 9.913708806666273
1876
+ ],
1877
+ [
1878
+ 5.378565650615356,
1879
+ 3.6420732970701235,
1880
+ 1.4026655772003898,
1881
+ -107.63464252629147,
1882
+ -33.841340205176245,
1883
+ 27.37849909929429,
1884
+ 9.911850141438382
1885
+ ],
1886
+ [
1887
+ 5.334331211116238,
1888
+ 3.6559385810852496,
1889
+ 1.3861581839152326,
1890
+ -107.60493120340192,
1891
+ -33.83922626162813,
1892
+ 27.37544941982988,
1893
+ 9.917191349369332
1894
+ ],
1895
+ [
1896
+ 5.2887738493522525,
1897
+ 3.6618808456631604,
1898
+ 1.3861581839152326,
1899
+ -107.55738625658947,
1900
+ -33.838819865372514,
1901
+ 27.373671863098384,
1902
+ 9.921518274208536
1903
+ ],
1904
+ [
1905
+ 5.266981703918504,
1906
+ 3.6559347391038415,
1907
+ 1.3967233126224787,
1908
+ -107.53098074525819,
1909
+ -33.83877888423749,
1910
+ 27.373330353639883,
1911
+ 9.922866382795966
1912
+ ],
1913
+ [
1914
+ 5.239254977869661,
1915
+ 3.6638616005224645,
1916
+ 1.4066235651027064,
1917
+ -107.49466462944123,
1918
+ -33.83464320469505,
1919
+ 27.36402251334845,
1920
+ 9.937045855512913
1921
+ ],
1922
+ [
1923
+ 5.198320373513305,
1924
+ 3.6863111516638267,
1925
+ 1.4053006428378396,
1926
+ -107.43128047394352,
1927
+ -33.83050411005802,
1928
+ 27.349040493404026,
1929
+ 9.944722134366362
1930
+ ],
1931
+ [
1932
+ 5.173890067512638,
1933
+ 3.6909343359582794,
1934
+ 1.4145465845399212,
1935
+ -107.40751141563187,
1936
+ -33.830903676124464,
1937
+ 27.34872288960762,
1938
+ 9.94486812965987
1939
+ ],
1940
+ [
1941
+ 5.165305373499579,
1942
+ 3.692911248836175,
1943
+ 1.4198273879853989,
1944
+ -107.39562688647605,
1945
+ -33.83224580829638,
1946
+ 27.347771785765698,
1947
+ 9.944907403247598
1948
+ ],
1949
+ [
1950
+ 5.102582892577705,
1951
+ 3.7028188651141014,
1952
+ 1.4389734754460024,
1953
+ -107.35667431763947,
1954
+ -33.832505355484834,
1955
+ 27.349279550024978,
1956
+ 9.945143044773964
1957
+ ],
1958
+ [
1959
+ 5.05966411826746,
1960
+ 3.7034766977085383,
1961
+ 1.449542339412951,
1962
+ -107.34082827876504,
1963
+ -33.83142618559597,
1964
+ 27.35173671057889,
1965
+ 9.945340266486248
1966
+ ],
1967
+ [
1968
+ 4.977137076960312,
1969
+ 3.7001730205843675,
1970
+ 1.464726917154947,
1971
+ -107.3190399753127,
1972
+ -33.830910506313636,
1973
+ 27.360327381007473,
1974
+ 9.96812150868918
1975
+ ],
1976
+ [
1977
+ 4.9262957100996765,
1978
+ 3.7021537754436715,
1979
+ 1.4620882229795007,
1980
+ -107.30583721964706,
1981
+ -33.82184343019045,
1982
+ 27.401387063203003,
1983
+ 10.048362571058489
1984
+ ],
1985
+ [
1986
+ 4.9018649772121865,
1987
+ 3.6988535134140856,
1988
+ 1.4614232400307765,
1989
+ -107.30385646478776,
1990
+ -33.81938456208924,
1991
+ 27.41185603565334,
1992
+ 10.066257666683923
1993
+ ],
1994
+ [
1995
+ 4.792920044855898,
1996
+ 3.727253013096176,
1997
+ 1.3828508782530655,
1998
+ -107.26226061274238,
1999
+ -33.783881238783515,
2000
+ 27.542647328069915,
2001
+ 10.288344682641473
2002
+ ],
2003
+ [
2004
+ 4.604086658646202,
2005
+ 3.9055171084521003,
2006
+ 1.1240334528167144,
2007
+ -107.23187993131417,
2008
+ -33.63649941687298,
2009
+ 27.721292633358892,
2010
+ 10.7149736661261
2011
+ ],
2012
+ [
2013
+ 4.293765978329958,
2014
+ 4.314875531733529,
2015
+ 0.5991262113860943,
2016
+ -107.27348944373789,
2017
+ -33.42438789219823,
2018
+ 27.98556972781961,
2019
+ 11.439373284213898
2020
+ ],
2021
+ [
2022
+ 3.9055307688304404,
2023
+ 4.782340935605195,
2024
+ 0.06497307494413883,
2025
+ -107.43128047394352,
2026
+ -33.30610609124654,
2027
+ 28.11613220889899,
2028
+ 12.240284681384178
2029
+ ],
2030
+ [
2031
+ 3.6335022634354037,
2032
+ 5.060976795248573,
2033
+ -0.22289423225965405,
2034
+ -107.577856333532,
2035
+ -33.23869212413851,
2036
+ 28.24801291648818,
2037
+ 12.530347447508987
2038
+ ],
2039
+ [
2040
+ 2.8081712324350354,
2041
+ 5.554849844885624,
2042
+ -0.9775834181193572,
2043
+ -108.38404405183611,
2044
+ -32.97730078460212,
2045
+ 28.546212145461766,
2046
+ 12.321115701343048
2047
+ ],
2048
+ [
2049
+ 2.2608214301347815,
2050
+ 5.505334388497616,
2051
+ -1.266773627577697,
2052
+ -109.0284519094593,
2053
+ -32.579534473002674,
2054
+ 28.947178400687367,
2055
+ 11.35633696692676
2056
+ ],
2057
+ [
2058
+ 1.7933560262631159,
2059
+ 5.387804762128267,
2060
+ -1.385618919135919,
2061
+ -109.49987839616276,
2062
+ -32.63880002443088,
2063
+ 28.91879213449679,
2064
+ 10.976203642443346
2065
+ ],
2066
+ [
2067
+ 1.4236019212754771,
2068
+ 5.268956055475461,
2069
+ -1.487963861041565,
2070
+ -109.8742547249495,
2071
+ -32.69805533057532,
2072
+ 28.83375286423555,
2073
+ 10.78075863311708
2074
+ ],
2075
+ [
2076
+ 0.9251131578633788,
2077
+ 5.198303298040379,
2078
+ -1.6048248759241925,
2079
+ -110.44801793598724,
2080
+ -32.88687932527491,
2081
+ 28.63395787818163,
2082
+ 11.008706805156145
2083
+ ],
2084
+ [
2085
+ 0.7059036258979615,
2086
+ 5.054376698076225,
2087
+ -1.5784207519750983,
2088
+ -111.35653554843648,
2089
+ -33.37848560588116,
2090
+ 27.872736710278293,
2091
+ 11.816173476382346
2092
+ ],
2093
+ [
2094
+ 0.750799579890366,
2095
+ 4.6199156220477064,
2096
+ -1.2865740258164466,
2097
+ -111.82928026164974,
2098
+ -33.64397505891956,
2099
+ 27.536684572924493,
2100
+ 11.701519359653572
2101
+ ],
2102
+ [
2103
+ 0.9501943595476061,
2104
+ 3.242615019547217,
2105
+ -0.610467953946312,
2106
+ -112.50671208390996,
2107
+ -34.00638831137502,
2108
+ 26.946496464480155,
2109
+ 10.37969931656404
2110
+ ],
2111
+ [
2112
+ 1.108007694589749,
2113
+ 1.9280336963174272,
2114
+ -0.03406467135609937,
2115
+ -112.85730569400671,
2116
+ -34.25574485759385,
2117
+ 26.086225600780587,
2118
+ 8.500029549429238
2119
+ ],
2120
+ [
2121
+ 1.1971416632584153,
2122
+ -0.10755320127161895,
2123
+ 0.6928795757286579,
2124
+ -113.32940153924882,
2125
+ -34.90552807409384,
2126
+ 25.44401877161743,
2127
+ 6.415755062404356
2128
+ ],
2129
+ [
2130
+ 1.2790032947300165,
2131
+ -1.799139488942824,
2132
+ 1.3491816741828992,
2133
+ -113.82459025407475,
2134
+ -35.689097620961455,
2135
+ 24.409303168968442,
2136
+ 4.426847091665779
2137
+ ],
2138
+ [
2139
+ 1.3014565811310814,
2140
+ -3.9476367506294534,
2141
+ 2.1342328384918807,
2142
+ -114.59643578123203,
2143
+ -36.63137344338349,
2144
+ 23.075526025963157,
2145
+ 2.725974814972398
2146
+ ],
2147
+ [
2148
+ 1.156200015269478,
2149
+ -4.75182663860134,
2150
+ 2.384473040434577,
2151
+ -114.84931670506259,
2152
+ -36.95255625891417,
2153
+ 22.58185702822756,
2154
+ 2.774885159288625
2155
+ ],
2156
+ [
2157
+ 0.7719336259254135,
2158
+ -4.634304269307985,
2159
+ 2.109137229377373,
2160
+ -114.86714349879632,
2161
+ -36.600658082685946,
2162
+ 23.15168946539797,
2163
+ 4.60307579064904
2164
+ ],
2165
+ [
2166
+ 0.27805339925364897,
2167
+ -3.88292583088546,
2168
+ 1.4568002691797357,
2169
+ -114.9939254701701,
2170
+ -35.97947969842996,
2171
+ 24.16232352858078,
2172
+ 6.5659082335706245
2173
+ ],
2174
+ [
2175
+ 0.006686395845448797,
2176
+ -3.1071170864622695,
2177
+ 0.7305102895174316,
2178
+ -115.80339850946498,
2179
+ -35.35279959679754,
2180
+ 23.794326596478836,
2181
+ 5.925865720600716
2182
+ ],
2183
+ [
2184
+ 0.4543441835892482,
2185
+ -3.4293222959343352,
2186
+ 0.9655730640724187,
2187
+ -117.49630187638766,
2188
+ -35.01784711990011,
2189
+ 20.380290690793814,
2190
+ 1.3091451329806942
2191
+ ],
2192
+ [
2193
+ 0.9455785390508527,
2194
+ -4.43556710880177,
2195
+ 1.6581865825885633,
2196
+ -118.58111350150412,
2197
+ -36.764879735995144,
2198
+ 16.907696158259686,
2199
+ -0.8126181813251234
2200
+ ],
2201
+ [
2202
+ 1.4209633338217367,
2203
+ -5.534239322178286,
2204
+ 2.3481650354672583,
2205
+ -119.28165868391564,
2206
+ -38.69027932717047,
2207
+ 12.66691964128433,
2208
+ -2.728043721960677
2209
+ ],
2210
+ [
2211
+ 2.044915521932682,
2212
+ -6.995399920091135,
2213
+ 3.20980065634036,
2214
+ -119.98878816868707,
2215
+ -40.470240285254135,
2216
+ 8.236736002209,
2217
+ -5.009822093459762
2218
+ ],
2219
+ [
2220
+ 2.2238412918644515,
2221
+ -8.444669158658991,
2222
+ 3.916279352149925,
2223
+ -120.6860275395403,
2224
+ -41.40634503176106,
2225
+ 7.47586658904792,
2226
+ -4.473313295476199
2227
+ ],
2228
+ [
2229
+ 1.8342867886380634,
2230
+ -8.12642930088694,
2231
+ 3.4765447297519225,
2232
+ -121.77547003291401,
2233
+ -41.78961426684716,
2234
+ 7.7522544626807175,
2235
+ -1.2938823282283602
2236
+ ],
2237
+ [
2238
+ 1.9986930704982668,
2239
+ -8.41760368029917,
2240
+ 3.563705200637278,
2241
+ -123.5106249500424,
2242
+ -42.10401128943743,
2243
+ 4.740023644828734,
2244
+ -2.338821336682681
2245
+ ],
2246
+ [
2247
+ 2.134045862063352,
2248
+ -8.50145705896577,
2249
+ 3.4864521325864373,
2250
+ -124.55318502495314,
2251
+ -42.32269345609373,
2252
+ 2.187795181963121,
2253
+ -2.2628273713166496
2254
+ ],
2255
+ [
2256
+ 2.2013915272796774,
2257
+ -8.298096714165103,
2258
+ 3.1715084814191528,
2259
+ -124.68062269448724,
2260
+ -42.393211744179524,
2261
+ -0.09913052414814863,
2262
+ -2.2469713006018766
2263
+ ],
2264
+ [
2265
+ 2.2284642627154923,
2266
+ -8.186509352373665,
2267
+ 2.8453345051524863,
2268
+ -124.36103814322234,
2269
+ -42.43219504886738,
2270
+ -2.2593181481871443,
2271
+ -2.706747405571989
2272
+ ],
2273
+ [
2274
+ 1.5404737150503884,
2275
+ -8.053137102224472,
2276
+ 2.3527809626857175,
2277
+ -122.84244120391838,
2278
+ -42.488656807641284,
2279
+ -0.2240983999464126,
2280
+ -2.9175635421819597
2281
+ ],
2282
+ [
2283
+ 0.7078808055801216,
2284
+ -7.967961228179829,
2285
+ 2.1441472849589776,
2286
+ -121.3555363423633,
2287
+ -42.33424330598022,
2288
+ 3.388030387307023,
2289
+ -2.411249729858554
2290
+ ],
2291
+ [
2292
+ 0.48339404534637026,
2293
+ -7.934950070147511,
2294
+ 2.112437277963547,
2295
+ -120.83657856922572,
2296
+ -42.26339375371968,
2297
+ 4.340717125571449,
2298
+ -2.2730502435134547
2299
+ ],
2300
+ [
2301
+ 0.39689869081187085,
2302
+ -7.888069359231836,
2303
+ 2.286089501525832,
2304
+ -120.03699564384901,
2305
+ -42.24241482768399,
2306
+ 4.652006412089365,
2307
+ -2.366177098082228
2308
+ ],
2309
+ [
2310
+ 0.5098017444726081,
2311
+ -8.002295735363836,
2312
+ 2.537652625733395,
2313
+ -119.60452172598214,
2314
+ -42.302332662177925,
2315
+ 4.49503884656554,
2316
+ -2.6368711552681736
2317
+ ],
2318
+ [
2319
+ 0.7666456187647956,
2320
+ -8.282908934771934,
2321
+ 2.814300259998064,
2322
+ -119.00037783351618,
2323
+ -42.30080611489842,
2324
+ 4.665922495636443,
2325
+ -2.928035289396647
2326
+ ],
2327
+ [
2328
+ 0.8960561457519693,
2329
+ -8.392511272835835,
2330
+ 3.0216216876305158,
2331
+ -118.36389982551937,
2332
+ -42.18333369136337,
2333
+ 5.412119381799867,
2334
+ -2.748522336639668
2335
+ ],
2336
+ [
2337
+ 1.1674230832928667,
2338
+ -8.630870360717294,
2339
+ 3.3240266055855376,
2340
+ -117.48706746062982,
2341
+ -42.08859213738613,
2342
+ 6.6849806289187494,
2343
+ -2.6895481354682507
2344
+ ],
2345
+ [
2346
+ 1.339752384590285,
2347
+ -8.709439734287242,
2348
+ 3.452117838845841,
2349
+ -117.00507467128035,
2350
+ -41.91644404954513,
2351
+ 7.551523740710505,
2352
+ -2.410478131925754
2353
+ ],
2354
+ [
2355
+ 1.56688498935377,
2356
+ -8.502114464673383,
2357
+ 3.4501334554485408,
2358
+ -116.44319598939842,
2359
+ -41.70321920403567,
2360
+ 8.73934913266273,
2361
+ -1.781769143944718
2362
+ ],
2363
+ [
2364
+ 1.7682640456866046,
2365
+ -8.41561951034528,
2366
+ 3.490413642305045,
2367
+ -115.99751248567675,
2368
+ -41.618507782854586,
2369
+ 9.385835075340898,
2370
+ -1.8142585395574704
2371
+ ],
2372
+ [
2373
+ 1.9940737281852225,
2374
+ -8.45523802262594,
2375
+ 3.6297315721267336,
2376
+ -115.44355682323203,
2377
+ -41.44538980815144,
2378
+ 10.369131306370736,
2379
+ -2.0769237093740656
2380
+ ],
2381
+ [
2382
+ 2.1776224689680332,
2383
+ -8.084168359171134,
2384
+ 3.6085904290982516,
2385
+ -114.26168821000971,
2386
+ -40.85534684122697,
2387
+ 12.575915908330373,
2388
+ -0.9501726950413324
2389
+ ],
2390
+ [
2391
+ 2.205353036998285,
2392
+ -7.908538582400718,
2393
+ 3.6237854655674147,
2394
+ -113.68395665906418,
2395
+ -40.72936741708067,
2396
+ 13.249056664244518,
2397
+ -0.4884614587411379
2398
+ ],
2399
+ [
2400
+ 2.257517753010611,
2401
+ -7.806197589198185,
2402
+ 3.7545191282628667,
2403
+ -112.92597641592202,
2404
+ -40.50961632581926,
2405
+ 14.062588543453689,
2406
+ -0.6885190869129866
2407
+ ],
2408
+ [
2409
+ 2.247610350176096,
2410
+ -7.744797603654356,
2411
+ 3.834407155229451,
2412
+ -112.29146550240617,
2413
+ -40.18007677383907,
2414
+ 15.107709085529544,
2415
+ -0.9230213057083566
2416
+ ],
2417
+ [
2418
+ 2.0785810974648515,
2419
+ -6.948519636062283,
2420
+ 3.5537977978027633,
2421
+ -111.16043398717625,
2422
+ -39.733047722850905,
2423
+ 16.485836354363016,
2424
+ -0.10434300569160634
2425
+ ],
2426
+ [
2427
+ 2.033688825371297,
2428
+ -6.635553111216305,
2429
+ 3.4118376519893374,
2430
+ -110.72401221996911,
2431
+ -39.62349831875307,
2432
+ 16.88258838287072,
2433
+ 0.05305345102238107
2434
+ ],
2435
+ [
2436
+ 1.9293666504226374,
2437
+ -5.947566085367493,
2438
+ 3.192631695201064,
2439
+ -109.88546989556664,
2440
+ -39.02295052088512,
2441
+ 18.344371808658508,
2442
+ 0.062478581803523066
2443
+ ],
2444
+ [
2445
+ 1.8514557497773598,
2446
+ -5.435197737231694,
2447
+ 3.0196445613092084,
2448
+ -109.41668669207199,
2449
+ -38.81898741189019,
2450
+ 18.80116119997062,
2451
+ 0.28530073689113494
2452
+ ],
2453
+ [
2454
+ 1.7583567495737953,
2455
+ -4.998770420495858,
2456
+ 2.8440152114256163,
2457
+ -108.9214911470569,
2458
+ -38.6305971342029,
2459
+ 19.2066183045755,
2460
+ 0.8401619863702576
2461
+ ],
2462
+ [
2463
+ 1.7068606450481898,
2464
+ -4.761075995398007,
2465
+ 2.8268498788243166,
2466
+ -108.46987220894648,
2467
+ -38.45140712132762,
2468
+ 19.642377543433145,
2469
+ 1.1055693170560543
2470
+ ],
2471
+ [
2472
+ 1.7227066839226195,
2473
+ -4.510171130671703,
2474
+ 2.7482741019520205,
2475
+ -108.0215522522052,
2476
+ -38.30459562021278,
2477
+ 20.009471183017357,
2478
+ 1.2359098169874077
2479
+ ],
2480
+ [
2481
+ 1.6976148100678141,
2482
+ -4.120620255983312,
2483
+ 2.569348118576839,
2484
+ -107.60360614670294,
2485
+ -38.129544701974524,
2486
+ 20.4131148723976,
2487
+ 1.7393009486762827
2488
+ ],
2489
+ [
2490
+ 1.7121414484936677,
2491
+ -3.8287803600138304,
2492
+ 2.4240881376206507,
2493
+ -107.17971777662278,
2494
+ -37.94649563221818,
2495
+ 20.79461338094137,
2496
+ 2.011659757750713
2497
+ ],
2498
+ [
2499
+ 1.681107310060951,
2500
+ -3.5389323179610535,
2501
+ 2.2834545426100883,
2502
+ -106.73668438629907,
2503
+ -37.65880464928266,
2504
+ 21.358399393149025,
2505
+ 2.099857350172853
2506
+ ],
2507
+ [
2508
+ 1.6665805649133918,
2509
+ -3.2048391642385803,
2510
+ 2.0998985447512846,
2511
+ -106.3642956425608,
2512
+ -37.468351654466026,
2513
+ 21.70539178600589,
2514
+ 2.4696324793365303
2515
+ ],
2516
+ [
2517
+ 1.6269654677273178,
2518
+ -2.8522575422065293,
2519
+ 1.9084231559932627,
2520
+ -106.02889237317817,
2521
+ -37.28615635835593,
2522
+ 22.021597101178923,
2523
+ 3.0519823053780453
2524
+ ],
2525
+ [
2526
+ 1.5992384215133568,
2527
+ -2.5445718208060293,
2528
+ 1.7110055026573299,
2529
+ -105.73110978574394,
2530
+ -37.10661800583298,
2531
+ 22.347351020811633,
2532
+ 3.5276800081902806
2533
+ ],
2534
+ [
2535
+ 1.513397351076577,
2536
+ -2.0229718316767236,
2537
+ 1.3954004970793177,
2538
+ -105.33891349341265,
2539
+ -36.8721239512481,
2540
+ 22.779520995260437,
2541
+ 4.17351452157636
2542
+ ],
2543
+ [
2544
+ 1.376067433190185,
2545
+ -1.406284937130262,
2546
+ 1.029615052164574,
2547
+ -104.87541685633558,
2548
+ -36.58542676083682,
2549
+ 23.28800979594767,
2550
+ 4.949886329719254
2551
+ ],
2552
+ [
2553
+ 1.2083611027438075,
2554
+ -0.8001667464681901,
2555
+ 0.7153292869525791,
2556
+ -104.29305443713278,
2557
+ -36.33330057290955,
2558
+ 23.72382879896055,
2559
+ 5.776422035334483
2560
+ ],
2561
+ [
2562
+ 1.05782010489873,
2563
+ -0.31949757307468474,
2564
+ 0.548284470999488,
2565
+ -103.78267538159275,
2566
+ -36.29063238116448,
2567
+ 23.815377239500815,
2568
+ 6.312682385186987
2569
+ ],
2570
+ [
2571
+ 0.9746284008079746,
2572
+ -0.12274498272875536,
2573
+ 0.4875461066706504,
2574
+ -103.55686932763213,
2575
+ -36.26329796410609,
2576
+ 23.92749991736845,
2577
+ 6.555702650290156
2578
+ ],
2579
+ [
2580
+ 0.8201295751431391,
2581
+ 0.2932279184748752,
2582
+ 0.370674366256592,
2583
+ -103.06894110389392,
2584
+ -36.10781212274533,
2585
+ 24.210368786749946,
2586
+ 7.063458913188904
2587
+ ],
2588
+ [
2589
+ 0.723072587037258,
2590
+ 0.5738372759015634,
2591
+ 0.37397441484276595,
2592
+ -102.72757507936586,
2593
+ -36.05050000541976,
2594
+ 24.26493687557647,
2595
+ 7.360816321347286
2596
+ ],
2597
+ [
2598
+ 0.5877090165798892,
2599
+ 0.9680146432572867,
2600
+ 0.2940863878761812,
2601
+ -102.36510377030245,
2602
+ -35.95930673471633,
2603
+ 24.376260421311216,
2604
+ 7.674403112747266
2605
+ ],
2606
+ [
2607
+ 0.4622707782036067,
2608
+ 1.339080891617508,
2609
+ 0.29605993902034466,
2610
+ -102.06731435267906,
2611
+ -35.84608610393961,
2612
+ 24.594759880407214,
2613
+ 8.074599264143945
2614
+ ],
2615
+ [
2616
+ 0.4246292588421226,
2617
+ 1.516690996360404,
2618
+ 0.3389822885077328,
2619
+ -101.93196049389692,
2620
+ -35.82425681935225,
2621
+ 24.645294742528847,
2622
+ 8.15065512809933
2623
+ ],
2624
+ [
2625
+ 0.37841403780327426,
2626
+ 1.6408206131803944,
2627
+ 0.35218611139042527,
2628
+ -101.8778244145354,
2629
+ -35.79702485513141,
2630
+ 24.699063699222478,
2631
+ 8.250423701305706
2632
+ ],
2633
+ [
2634
+ 0.32954945041840145,
2635
+ 1.8006002956515605,
2636
+ 0.3647284998211108,
2637
+ -101.84811309164584,
2638
+ -35.78553989204204,
2639
+ 24.69887245392572,
2640
+ 8.295608817759925
2641
+ ],
2642
+ [
2643
+ 0.31568774158041923,
2644
+ 1.8501227956721495,
2645
+ 0.370674366256592,
2646
+ -101.84216399687877,
2647
+ -35.77894875949298,
2648
+ 24.713623954985653,
2649
+ 8.340342287955277
2650
+ ],
2651
+ [
2652
+ 0.2952151566778051,
2653
+ 1.9564257254801123,
2654
+ 0.37793592456137337,
2655
+ -101.84282652522826,
2656
+ -35.750647870667024,
2657
+ 24.732709211073963,
2658
+ 8.519272753642102
2659
+ ],
2660
+ [
2661
+ 0.31238769299424524,
2662
+ 2.095082194169368,
2663
+ 0.3739780167003361,
2664
+ -101.85471105438408,
2665
+ -35.75143675751616,
2666
+ 24.65920100767899,
2667
+ 8.58797079631409
2668
+ ]
2669
+ ],
2670
+ "r_hand": [
2671
+ 99.92,
2672
+ 99.92,
2673
+ 99.99,
2674
+ 99.92,
2675
+ 99.92,
2676
+ 99.99,
2677
+ 99.92,
2678
+ 99.99,
2679
+ 99.99,
2680
+ 99.92,
2681
+ 99.92,
2682
+ 99.92,
2683
+ 99.99,
2684
+ 99.92,
2685
+ 99.92,
2686
+ 99.99,
2687
+ 99.99,
2688
+ 99.99,
2689
+ 99.99,
2690
+ 99.99,
2691
+ 99.99,
2692
+ 99.99,
2693
+ 99.99,
2694
+ 99.99,
2695
+ 99.92,
2696
+ 99.99,
2697
+ 99.99,
2698
+ 99.99,
2699
+ 99.99,
2700
+ 99.99,
2701
+ 99.92,
2702
+ 99.99,
2703
+ 99.99,
2704
+ 99.92,
2705
+ 99.92,
2706
+ 99.99,
2707
+ 99.92,
2708
+ 99.92,
2709
+ 99.92,
2710
+ 99.99,
2711
+ 99.92,
2712
+ 99.99,
2713
+ 99.99,
2714
+ 99.99,
2715
+ 99.92,
2716
+ 99.92,
2717
+ 99.92,
2718
+ 99.92,
2719
+ 99.92,
2720
+ 99.92,
2721
+ 99.92,
2722
+ 99.92,
2723
+ 99.99,
2724
+ 99.99,
2725
+ 99.92,
2726
+ 99.99,
2727
+ 99.92,
2728
+ 99.99,
2729
+ 99.99,
2730
+ 99.99,
2731
+ 99.99,
2732
+ 99.99,
2733
+ 99.99,
2734
+ 99.99,
2735
+ 99.99,
2736
+ 99.99,
2737
+ 99.99,
2738
+ 99.99,
2739
+ 99.92,
2740
+ 99.92,
2741
+ 99.92,
2742
+ 99.92,
2743
+ 99.92,
2744
+ 99.99,
2745
+ 99.92,
2746
+ 99.99,
2747
+ 99.92,
2748
+ 99.92,
2749
+ 99.92,
2750
+ 99.99,
2751
+ 99.99,
2752
+ 99.92,
2753
+ 99.99,
2754
+ 99.92,
2755
+ 99.99,
2756
+ 99.92,
2757
+ 99.92,
2758
+ 99.99,
2759
+ 99.99,
2760
+ 99.99,
2761
+ 99.99,
2762
+ 99.92,
2763
+ 99.99,
2764
+ 99.99,
2765
+ 99.99,
2766
+ 99.99,
2767
+ 99.99,
2768
+ 99.99,
2769
+ 99.99,
2770
+ 99.99,
2771
+ 99.99,
2772
+ 99.99,
2773
+ 99.99,
2774
+ 99.99,
2775
+ 99.92,
2776
+ 99.92,
2777
+ 99.99,
2778
+ 99.92,
2779
+ 99.99,
2780
+ 99.99,
2781
+ 99.99,
2782
+ 99.92,
2783
+ 99.92,
2784
+ 99.99,
2785
+ 99.99,
2786
+ 99.99,
2787
+ 99.92,
2788
+ 99.92,
2789
+ 99.99,
2790
+ 99.99,
2791
+ 99.92,
2792
+ 99.99,
2793
+ 99.99,
2794
+ 99.99,
2795
+ 99.99,
2796
+ 99.92,
2797
+ 99.92,
2798
+ 99.92,
2799
+ 99.99,
2800
+ 99.99,
2801
+ 99.99,
2802
+ 99.99,
2803
+ 99.92
2804
+ ],
2805
+ "head": [
2806
+ [
2807
+ 0.43361770774858005,
2808
+ -13.106317663422299,
2809
+ -4.826670143979047
2810
+ ],
2811
+ [
2812
+ 0.42001391859304515,
2813
+ -13.160543389016677,
2814
+ -4.840146534098305
2815
+ ],
2816
+ [
2817
+ 0.3703028946791932,
2818
+ -13.29777384227328,
2819
+ -4.863309413121111
2820
+ ],
2821
+ [
2822
+ 0.35308908374304215,
2823
+ -13.389674891329447,
2824
+ -4.876216763105143
2825
+ ],
2826
+ [
2827
+ 0.32059950136730464,
2828
+ -13.58300766465489,
2829
+ -4.874415300711552
2830
+ ],
2831
+ [
2832
+ 0.31347067818408897,
2833
+ -13.64718412209633,
2834
+ -4.867344347373296
2835
+ ],
2836
+ [
2837
+ 0.29974125090042286,
2838
+ -13.790368792761893,
2839
+ -4.820369721356533
2840
+ ],
2841
+ [
2842
+ 0.35254981896372845,
2843
+ -13.884791889169087,
2844
+ -4.754839605798962
2845
+ ],
2846
+ [
2847
+ 0.3637289976856146,
2848
+ -13.938873327017248,
2849
+ -4.716531209178476
2850
+ ],
2851
+ [
2852
+ 0.3913054062118651,
2853
+ -13.959370724716456,
2854
+ -4.680899819825812
2855
+ ],
2856
+ [
2857
+ 0.3964280214089482,
2858
+ -13.954558002672536,
2859
+ -4.660850653290885
2860
+ ],
2861
+ [
2862
+ 0.38093955360973936,
2863
+ -14.016821153372726,
2864
+ -4.594802724016862
2865
+ ],
2866
+ [
2867
+ 0.3999509582776467,
2868
+ -14.055410868409652,
2869
+ -4.550033395328367
2870
+ ],
2871
+ [
2872
+ 0.41132525095812783,
2873
+ -14.127518029251123,
2874
+ -4.493673235618361
2875
+ ],
2876
+ [
2877
+ 0.4200971348431282,
2878
+ -14.130751270049478,
2879
+ -4.48239104376997
2880
+ ],
2881
+ [
2882
+ 0.45774150901024196,
2883
+ -14.136975279930653,
2884
+ -4.438367486361475
2885
+ ],
2886
+ [
2887
+ 0.4587358351430077,
2888
+ -14.114165863197394,
2889
+ -4.427677813423582
2890
+ ],
2891
+ [
2892
+ 0.47916973342727603,
2893
+ -14.067271491903378,
2894
+ -4.421810254039718
2895
+ ],
2896
+ [
2897
+ 0.5117798312892672,
2898
+ -13.949589893824998,
2899
+ -4.448897076740696
2900
+ ],
2901
+ [
2902
+ 0.5098444331549207,
2903
+ -13.922269137144948,
2904
+ -4.452896152499738
2905
+ ],
2906
+ [
2907
+ 0.5060467946155407,
2908
+ -13.852726712336816,
2909
+ -4.461347657823983
2910
+ ],
2911
+ [
2912
+ 0.49055677935159797,
2913
+ -13.761214130289693,
2914
+ -4.446009614269073
2915
+ ],
2916
+ [
2917
+ 0.4922767063619718,
2918
+ -13.74058354390167,
2919
+ -4.433323391659421
2920
+ ],
2921
+ [
2922
+ 0.5020074314125657,
2923
+ -13.72102700476063,
2924
+ -4.410925920710479
2925
+ ],
2926
+ [
2927
+ 0.4970059186711181,
2928
+ -13.71340109855231,
2929
+ -4.405130505199724
2930
+ ],
2931
+ [
2932
+ 0.4879204330536788,
2933
+ -13.71894038196919,
2934
+ -4.407422033666263
2935
+ ],
2936
+ [
2937
+ 0.4800690772418963,
2938
+ -13.723308287943414,
2939
+ -4.4119009302144985
2940
+ ],
2941
+ [
2942
+ 0.48090572205437,
2943
+ -13.728540212847644,
2944
+ -4.415483364434171
2945
+ ],
2946
+ [
2947
+ 0.5046815571943315,
2948
+ -13.77046220642589,
2949
+ -4.42489152312904
2950
+ ],
2951
+ [
2952
+ 0.5411215235508486,
2953
+ -13.80894861485162,
2954
+ -4.441926868692698
2955
+ ],
2956
+ [
2957
+ 0.5549494016080981,
2958
+ -13.81552864834328,
2959
+ -4.456808570233687
2960
+ ],
2961
+ [
2962
+ 0.5752223101991951,
2963
+ -13.790520764470925,
2964
+ -4.492868127069945
2965
+ ],
2966
+ [
2967
+ 0.5703498773608902,
2968
+ -13.802105619076913,
2969
+ -4.5077916635196
2970
+ ],
2971
+ [
2972
+ 0.5690850650648213,
2973
+ -13.809353303559943,
2974
+ -4.510855430249174
2975
+ ],
2976
+ [
2977
+ 0.5681890296230803,
2978
+ -13.835305461085053,
2979
+ -4.510688090614509
2980
+ ],
2981
+ [
2982
+ 0.548061796160375,
2983
+ -13.899988206298719,
2984
+ -4.494340459722906
2985
+ ],
2986
+ [
2987
+ 0.5212358546691797,
2988
+ -13.960869097465627,
2989
+ -4.474475708295571
2990
+ ],
2991
+ [
2992
+ 0.5197061057385084,
2993
+ -13.98887970325185,
2994
+ -4.470952611344313
2995
+ ],
2996
+ [
2997
+ 0.5291197606012256,
2998
+ -14.122171698678295,
2999
+ -4.471759854326844
3000
+ ],
3001
+ [
3002
+ 0.5235874674560739,
3003
+ -14.216226818643955,
3004
+ -4.467769316304264
3005
+ ],
3006
+ [
3007
+ 0.5468080829217074,
3008
+ -14.378098033105028,
3009
+ -4.482742371625402
3010
+ ],
3011
+ [
3012
+ 0.588132434947577,
3013
+ -14.543735243119713,
3014
+ -4.503472849530037
3015
+ ],
3016
+ [
3017
+ 0.5717889662025001,
3018
+ -14.635585919530753,
3019
+ -4.491203695346578
3020
+ ],
3021
+ [
3022
+ 0.5791786439150721,
3023
+ -14.694725112459308,
3024
+ -4.512654331321826
3025
+ ],
3026
+ [
3027
+ 0.5723500022097932,
3028
+ -14.704454716931991,
3029
+ -4.5222989853167075
3030
+ ],
3031
+ [
3032
+ 0.5612806134427297,
3033
+ -14.70965249089037,
3034
+ -4.53060406846062
3035
+ ],
3036
+ [
3037
+ 0.5581196766000418,
3038
+ -14.704323235790469,
3039
+ -4.5295786863114715
3040
+ ],
3041
+ [
3042
+ 0.5577879855384731,
3043
+ -14.669938355961332,
3044
+ -4.506773965333268
3045
+ ],
3046
+ [
3047
+ 0.5542529891170213,
3048
+ -14.7006946977939,
3049
+ -4.4908570632462
3050
+ ],
3051
+ [
3052
+ 0.5537366161435977,
3053
+ -14.737861172162523,
3054
+ -4.486123315264558
3055
+ ],
3056
+ [
3057
+ 0.5372513142515373,
3058
+ -14.858086161933088,
3059
+ -4.470953892004783
3060
+ ],
3061
+ [
3062
+ 0.5416733814914445,
3063
+ -14.934124950415548,
3064
+ -4.464236400956075
3065
+ ],
3066
+ [
3067
+ 0.5506282931018601,
3068
+ -14.970603283225293,
3069
+ -4.462749981037951
3070
+ ],
3071
+ [
3072
+ 0.6042067515506732,
3073
+ -15.10194952851193,
3074
+ -4.475541644692916
3075
+ ],
3076
+ [
3077
+ 0.6212698981186873,
3078
+ -15.181212166282636,
3079
+ -4.485146598213246
3080
+ ],
3081
+ [
3082
+ 0.6168857704451853,
3083
+ -15.355607386360571,
3084
+ -4.485261430768667
3085
+ ],
3086
+ [
3087
+ 0.6502294733127182,
3088
+ -15.733579809745322,
3089
+ -4.48216436686689
3090
+ ],
3091
+ [
3092
+ 0.6770103782440737,
3093
+ -16.50653524264274,
3094
+ -4.44674940913355
3095
+ ],
3096
+ [
3097
+ 0.7092949749034315,
3098
+ -18.881414215170977,
3099
+ -4.320041289180174
3100
+ ],
3101
+ [
3102
+ 0.6925402007042729,
3103
+ -22.211201444991186,
3104
+ -4.155497763206336
3105
+ ],
3106
+ [
3107
+ 0.622850713385575,
3108
+ -25.22874486935697,
3109
+ -4.040192217185473
3110
+ ],
3111
+ [
3112
+ 0.43330517323319906,
3113
+ -29.966283605988288,
3114
+ -3.946791087832841
3115
+ ],
3116
+ [
3117
+ 0.13399395744622256,
3118
+ -34.80033633068647,
3119
+ -3.86954207520682
3120
+ ],
3121
+ [
3122
+ -0.16880903247136428,
3123
+ -37.959189538790646,
3124
+ -3.778467905927047
3125
+ ],
3126
+ [
3127
+ -0.045985946129243435,
3128
+ -40.36695757971979,
3129
+ -3.233910370336859
3130
+ ],
3131
+ [
3132
+ 0.3689622299307402,
3133
+ -41.07492376266453,
3134
+ -2.747534093644132
3135
+ ],
3136
+ [
3137
+ 1.700653070309706,
3138
+ -41.6719164470695,
3139
+ -1.777127176630048
3140
+ ],
3141
+ [
3142
+ 2.986407580147457,
3143
+ -41.61787599035636,
3144
+ -1.1166681610139135
3145
+ ],
3146
+ [
3147
+ 5.610672554085315,
3148
+ -39.9829575143925,
3149
+ -0.38935874893755856
3150
+ ],
3151
+ [
3152
+ 6.400198879682829,
3153
+ -40.436970433807005,
3154
+ -0.4365716311624783
3155
+ ],
3156
+ [
3157
+ 6.497580301774287,
3158
+ -40.967423415317704,
3159
+ -0.7842842621312361
3160
+ ],
3161
+ [
3162
+ 5.752266217561087,
3163
+ -41.582522931212374,
3164
+ -1.9465313426937025
3165
+ ],
3166
+ [
3167
+ 5.255926615860015,
3168
+ -41.79364749355205,
3169
+ -2.6505123237011583
3170
+ ],
3171
+ [
3172
+ 4.372965009964018,
3173
+ -42.082485948268136,
3174
+ -3.7731488961108997
3175
+ ],
3176
+ [
3177
+ 3.7541823145594204,
3178
+ -42.23886995950475,
3179
+ -4.352914562768622
3180
+ ],
3181
+ [
3182
+ 3.2011113750556346,
3183
+ -42.310955776005066,
3184
+ -4.7301762195928685
3185
+ ],
3186
+ [
3187
+ 2.8933987597852777,
3188
+ -42.358712458681794,
3189
+ -4.269959780864702
3190
+ ],
3191
+ [
3192
+ 2.8933987597852777,
3193
+ -42.358712458681794,
3194
+ -4.269959780864702
3195
+ ],
3196
+ [
3197
+ 3.113887084590221,
3198
+ -42.37535079949994,
3199
+ -3.3605220138682084
3200
+ ],
3201
+ [
3202
+ 3.4199380429015607,
3203
+ -42.37773112042569,
3204
+ -2.708150369116192
3205
+ ],
3206
+ [
3207
+ 3.444544653160178,
3208
+ -42.37082921426939,
3209
+ -2.469754782411356
3210
+ ],
3211
+ [
3212
+ 3.1352077335278277,
3213
+ -42.38891897028618,
3214
+ -2.538043440619967
3215
+ ],
3216
+ [
3217
+ 2.81781908808109,
3218
+ -42.41875665167537,
3219
+ -2.799852488912783
3220
+ ],
3221
+ [
3222
+ 2.603679210666262,
3223
+ -42.43727670960986,
3224
+ -3.0035916957689746
3225
+ ],
3226
+ [
3227
+ 2.5436527334758394,
3228
+ -42.4351047094538,
3229
+ -3.124136637213472
3230
+ ],
3231
+ [
3232
+ 2.4287815447975074,
3233
+ -42.43967752110312,
3234
+ -3.1541525438513274
3235
+ ],
3236
+ [
3237
+ 2.329453518792597,
3238
+ -42.45874057907663,
3239
+ -3.0595595464885283
3240
+ ],
3241
+ [
3242
+ 2.31640614993058,
3243
+ -42.467326126863334,
3244
+ -2.788444578894981
3245
+ ],
3246
+ [
3247
+ 2.3908244760324537,
3248
+ -42.46005539049186,
3249
+ -2.529086074410318
3250
+ ],
3251
+ [
3252
+ 2.5633181287567757,
3253
+ -42.44832454059236,
3254
+ -2.314166915099874
3255
+ ],
3256
+ [
3257
+ 2.725992530775558,
3258
+ -42.43320591686454,
3259
+ -2.3468924858475204
3260
+ ],
3261
+ [
3262
+ 2.7242755919729458,
3263
+ -42.41225431158552,
3264
+ -2.4397273498292757
3265
+ ],
3266
+ [
3267
+ 2.6209647119082717,
3268
+ -42.44818793680896,
3269
+ -2.7882691284106764
3270
+ ],
3271
+ [
3272
+ 2.6209647119082717,
3273
+ -42.44818793680896,
3274
+ -2.7882691284106764
3275
+ ],
3276
+ [
3277
+ 2.8271192444097086,
3278
+ -42.405926141319505,
3279
+ -2.537132677582828
3280
+ ],
3281
+ [
3282
+ 3.0176189833334766,
3283
+ -42.42197367077445,
3284
+ -2.228811535146105
3285
+ ],
3286
+ [
3287
+ 3.2442184064548774,
3288
+ -42.39590966890168,
3289
+ -1.9126736680911263
3290
+ ],
3291
+ [
3292
+ 3.440644828587512,
3293
+ -42.38418906428594,
3294
+ -1.5832574864028195
3295
+ ],
3296
+ [
3297
+ 3.608934926764514,
3298
+ -42.36003410028619,
3299
+ -1.3197713065036474
3300
+ ],
3301
+ [
3302
+ 3.8854794678613986,
3303
+ -42.36530700632544,
3304
+ -0.7440738179094604
3305
+ ],
3306
+ [
3307
+ 4.092615626612614,
3308
+ -42.347790986198945,
3309
+ -0.3886011582286425
3310
+ ],
3311
+ [
3312
+ 4.378500024512667,
3313
+ -42.30032117146735,
3314
+ -0.008110821291437044
3315
+ ],
3316
+ [
3317
+ 4.534957460282857,
3318
+ -42.31083966278917,
3319
+ 0.17114208902166578
3320
+ ],
3321
+ [
3322
+ 4.68593494990458,
3323
+ -42.295922529641864,
3324
+ 0.28851359384368547
3325
+ ],
3326
+ [
3327
+ 4.878337963729255,
3328
+ -42.26980388625574,
3329
+ 0.3569678040983896
3330
+ ],
3331
+ [
3332
+ 4.954409195610272,
3333
+ -42.275776886684916,
3334
+ 0.2863663531233627
3335
+ ],
3336
+ [
3337
+ 4.993707115886763,
3338
+ -42.26941456547305,
3339
+ 0.10635813828038489
3340
+ ],
3341
+ [
3342
+ 4.966321045522774,
3343
+ -42.27995013226779,
3344
+ -0.13414218055533977
3345
+ ],
3346
+ [
3347
+ 4.925950785546591,
3348
+ -42.275548075347714,
3349
+ -0.3663834866735166
3350
+ ],
3351
+ [
3352
+ 4.904672184961062,
3353
+ -42.266935206804334,
3354
+ -0.5071387177482436
3355
+ ],
3356
+ [
3357
+ 4.883778636289993,
3358
+ -42.2722490939786,
3359
+ -0.5590828933555724
3360
+ ],
3361
+ [
3362
+ 4.891544988263121,
3363
+ -42.23832695946573,
3364
+ -0.6215330738451443
3365
+ ],
3366
+ [
3367
+ 4.898697903871416,
3368
+ -42.29351147286485,
3369
+ -0.6624726941216719
3370
+ ],
3371
+ [
3372
+ 4.938828680339826,
3373
+ -42.131243253658276,
3374
+ -0.6972544186137568
3375
+ ],
3376
+ [
3377
+ 4.932175649201411,
3378
+ -41.768734378554434,
3379
+ -0.722936783666651
3380
+ ],
3381
+ [
3382
+ 4.920831558763666,
3383
+ -41.47355750828857,
3384
+ -0.7488556973804098
3385
+ ],
3386
+ [
3387
+ 4.819662796777437,
3388
+ -39.66645679353787,
3389
+ -0.8638996151395494
3390
+ ],
3391
+ [
3392
+ 4.680541661781209,
3393
+ -37.19031172882773,
3394
+ -1.0512728349707439
3395
+ ],
3396
+ [
3397
+ 4.547887862155337,
3398
+ -34.70090243674942,
3399
+ -1.2373904739334196
3400
+ ],
3401
+ [
3402
+ 4.289516320005741,
3403
+ -32.418109782158595,
3404
+ -1.5029441734386957
3405
+ ],
3406
+ [
3407
+ 3.9431407786082926,
3408
+ -29.329190880966177,
3409
+ -1.9640584618776016
3410
+ ],
3411
+ [
3412
+ 3.6730080775947576,
3413
+ -26.628081583110625,
3414
+ -2.4294504764493454
3415
+ ],
3416
+ [
3417
+ 3.502241608956803,
3418
+ -25.2483492198222,
3419
+ -2.680183946116163
3420
+ ],
3421
+ [
3422
+ 3.227071003100149,
3423
+ -22.819351243405364,
3424
+ -3.151930597936958
3425
+ ],
3426
+ [
3427
+ 3.0940238272667666,
3428
+ -21.50527748860827,
3429
+ -3.4413541010441357
3430
+ ],
3431
+ [
3432
+ 2.9575929330298774,
3433
+ -20.30119539265777,
3434
+ -3.6958123716861375
3435
+ ],
3436
+ [
3437
+ 2.941915727893994,
3438
+ -19.21341092770508,
3439
+ -3.8325779451923574
3440
+ ],
3441
+ [
3442
+ 2.916107217784866,
3443
+ -19.00075811053861,
3444
+ -3.855368152018574
3445
+ ],
3446
+ [
3447
+ 2.8047593395012025,
3448
+ -18.270421350514777,
3449
+ -3.9085851440499053
3450
+ ],
3451
+ [
3452
+ 2.7547457061906075,
3453
+ -17.86013017952482,
3454
+ -3.8940944708389003
3455
+ ],
3456
+ [
3457
+ 2.724371641508149,
3458
+ -17.682412072415673,
3459
+ -3.8759615992529857
3460
+ ],
3461
+ [
3462
+ 2.647098723220033,
3463
+ -17.26570564624778,
3464
+ -3.8756508256457503
3465
+ ],
3466
+ [
3467
+ 2.5991702185969956,
3468
+ -17.04652999842395,
3469
+ -3.881351899168595
3470
+ ]
3471
+ ],
3472
+ "l_antenna": [
3473
+ 12.656244909385247,
3474
+ 12.656244909385247,
3475
+ 0.4394543711986204,
3476
+ -7.382806115380142,
3477
+ -4.833984422806484,
3478
+ -2.4609308183339342,
3479
+ -1.054690490876689,
3480
+ -1.142581365116413,
3481
+ -1.142581365116413,
3482
+ -0.9667996166369649,
3483
+ -1.054690490876689,
3484
+ -1.054690490876689,
3485
+ -1.054690490876689,
3486
+ -1.054690490876689,
3487
+ -1.054690490876689,
3488
+ -1.054690490876689,
3489
+ -1.054690490876689,
3490
+ -1.054690490876689,
3491
+ -1.054690490876689,
3492
+ -1.054690490876689,
3493
+ -1.054690490876689,
3494
+ -0.9667996166369649,
3495
+ -1.054690490876689,
3496
+ -1.054690490876689,
3497
+ -1.054690490876689,
3498
+ -1.054690490876689,
3499
+ -1.054690490876689,
3500
+ -1.054690490876689,
3501
+ -1.054690490876689,
3502
+ -1.054690490876689,
3503
+ -1.054690490876689,
3504
+ -1.054690490876689,
3505
+ -1.054690490876689,
3506
+ -1.054690490876689,
3507
+ -1.054690490876689,
3508
+ -1.054690490876689,
3509
+ -1.054690490876689,
3510
+ -1.054690490876689,
3511
+ -1.054690490876689,
3512
+ -1.054690490876689,
3513
+ -1.054690490876689,
3514
+ -1.054690490876689,
3515
+ -1.054690490876689,
3516
+ -1.054690490876689,
3517
+ -1.054690490876689,
3518
+ -0.9667996166369649,
3519
+ -0.9667996166369649,
3520
+ -0.9667996166369649,
3521
+ -1.054690490876689,
3522
+ -1.054690490876689,
3523
+ -0.9667996166369649,
3524
+ -1.054690490876689,
3525
+ -1.054690490876689,
3526
+ -0.9667996166369649,
3527
+ -0.9667996166369649,
3528
+ -1.054690490876689,
3529
+ -0.9667996166369649,
3530
+ -0.9667996166369649,
3531
+ -0.7910178681575167,
3532
+ -0.7031269939177927,
3533
+ -0.7910178681575167,
3534
+ -0.7031269939177927,
3535
+ 0.0,
3536
+ -0.7031269939177927,
3537
+ -0.6152361196780686,
3538
+ -0.17578174847944816,
3539
+ -0.3515634969588963,
3540
+ -2.197271855993102,
3541
+ -21.09375517602042,
3542
+ -34.980472324761806,
3543
+ -34.980472324761806,
3544
+ -63.19336099344319,
3545
+ -65.47851689348686,
3546
+ -65.47851689348686,
3547
+ -66.35742563588408,
3548
+ -66.97265492537299,
3549
+ -70.04882869357417,
3550
+ -70.04882869357417,
3551
+ -70.2246104420536,
3552
+ -70.5761739390125,
3553
+ -70.75195568749196,
3554
+ -70.92773743597141,
3555
+ -70.83984656173168,
3556
+ -71.10351918445085,
3557
+ -71.01562831021113,
3558
+ -71.10351918445085,
3559
+ -71.10351918445085,
3560
+ -71.19141005869058,
3561
+ -71.54297355564947,
3562
+ -71.6308644298892,
3563
+ -71.80663934817947,
3564
+ -71.80663934817947,
3565
+ -72.42187546785755,
3566
+ -72.42187546785755,
3567
+ -72.86132983905617,
3568
+ -72.94922071329589,
3569
+ -73.21289333601506,
3570
+ -73.56445683297396,
3571
+ -73.91602032993285,
3572
+ -74.3554678709423,
3573
+ -74.44335874518202,
3574
+ -74.61914049366148,
3575
+ -74.61914049366148,
3576
+ -74.61914049366148,
3577
+ -71.54297355564947,
3578
+ -62.31445225104595,
3579
+ -46.75780849174981,
3580
+ -26.015630473066626,
3581
+ -2.9882760637722785,
3582
+ 15.996098130494762,
3583
+ 23.642576868594077,
3584
+ 20.126955559383454,
3585
+ 9.0527327259349,
3586
+ -3.251948686491451,
3587
+ -8.43749660625683,
3588
+ -8.43749660625683,
3589
+ -4.570311800087312,
3590
+ -4.0429665546489675,
3591
+ -2.9882760637722785,
3592
+ -2.548821692573658,
3593
+ -1.8457083590342056,
3594
+ -1.4941448620753093,
3595
+ -1.4941448620753093,
3596
+ -1.142581365116413,
3597
+ -0.9667996166369649,
3598
+ -1.054690490876689,
3599
+ -0.9667996166369649,
3600
+ -0.9667996166369649,
3601
+ -1.054690490876689,
3602
+ -0.9667996166369649,
3603
+ -1.054690490876689,
3604
+ -1.054690490876689,
3605
+ -1.054690490876689
3606
+ ],
3607
+ "r_antenna": [
3608
+ 0.0,
3609
+ 0.0,
3610
+ 0.0,
3611
+ -0.08789087423972408,
3612
+ -0.26367262271917224,
3613
+ -0.08789087423972408,
3614
+ -0.17578174847944816,
3615
+ -0.17578174847944816,
3616
+ -0.08789087423972408,
3617
+ -0.17578174847944816,
3618
+ -0.08789087423972408,
3619
+ -0.08789087423972408,
3620
+ -0.08789087423972408,
3621
+ -0.08789087423972408,
3622
+ -0.08789087423972408,
3623
+ -0.08789087423972408,
3624
+ -0.08789087423972408,
3625
+ -0.08789087423972408,
3626
+ -0.08789087423972408,
3627
+ -0.08789087423972408,
3628
+ -0.08789087423972408,
3629
+ -0.08789087423972408,
3630
+ -0.08789087423972408,
3631
+ -0.08789087423972408,
3632
+ -0.08789087423972408,
3633
+ -0.08789087423972408,
3634
+ -0.08789087423972408,
3635
+ -0.08789087423972408,
3636
+ -0.08789087423972408,
3637
+ -0.08789087423972408,
3638
+ -0.08789087423972408,
3639
+ -0.08789087423972408,
3640
+ -0.08789087423972408,
3641
+ -0.08789087423972408,
3642
+ -0.08789087423972408,
3643
+ -0.08789087423972408,
3644
+ -0.08789087423972408,
3645
+ -0.08789087423972408,
3646
+ -0.08789087423972408,
3647
+ -0.08789087423972408,
3648
+ -0.08789087423972408,
3649
+ -0.08789087423972408,
3650
+ -0.08789087423972408,
3651
+ -0.08789087423972408,
3652
+ -0.08789087423972408,
3653
+ -0.08789087423972408,
3654
+ -0.08789087423972408,
3655
+ -0.08789087423972408,
3656
+ -0.08789087423972408,
3657
+ -0.08789087423972408,
3658
+ -0.08789087423972408,
3659
+ -0.08789087423972408,
3660
+ -0.08789087423972408,
3661
+ -0.08789087423972408,
3662
+ -0.08789087423972408,
3663
+ -0.08789087423972408,
3664
+ -0.08789087423972408,
3665
+ -0.08789087423972408,
3666
+ -0.5273452454383445,
3667
+ -0.6152361196780686,
3668
+ -0.26367262271917224,
3669
+ -0.6152361196780686,
3670
+ -0.7031269939177927,
3671
+ 0.08789087423972408,
3672
+ 0.3515634969588963,
3673
+ -0.3515634969588963,
3674
+ 0.3515634969588963,
3675
+ 0.17578174847944816,
3676
+ 0.3515634969588963,
3677
+ -0.26367262271917224,
3678
+ -0.26367262271917224,
3679
+ 0.26367262271917224,
3680
+ 0.7910178681575167,
3681
+ 3.4277304349708992,
3682
+ 10.898441084969106,
3683
+ 21.79688216993821,
3684
+ 25.751957850347456,
3685
+ 25.751957850347456,
3686
+ 23.994140365552973,
3687
+ 23.46679512011463,
3688
+ 23.29101337163518,
3689
+ 22.58788637771739,
3690
+ 22.236322880758493,
3691
+ 22.148432006518767,
3692
+ 21.621100421458763,
3693
+ 23.554685994354355,
3694
+ 28.037106920201943,
3695
+ 34.45312707932346,
3696
+ 43.50585980525836,
3697
+ 49.74608455552209,
3698
+ 49.92186630400154,
3699
+ 48.77929859926346,
3700
+ 47.724608108386775,
3701
+ 47.724608108386775,
3702
+ 47.37304461142788,
3703
+ 47.19726286294843,
3704
+ 46.93359024022926,
3705
+ 46.75780849174981,
3706
+ 46.75780849174981,
3707
+ 46.84569936598953,
3708
+ 46.66991761751009,
3709
+ 46.75780849174981,
3710
+ 46.75780849174981,
3711
+ 46.66991761751009,
3712
+ 44.12109592493643,
3713
+ 35.068363199001524,
3714
+ 20.126955559383454,
3715
+ 2.4609308183339342,
3716
+ -11.337895456167725,
3717
+ -14.414062394179728,
3718
+ -9.843750594092416,
3719
+ -2.548821692573658,
3720
+ 1.9335992332739298,
3721
+ 2.4609308183339342,
3722
+ 2.3730536044725503,
3723
+ 2.3730536044725503,
3724
+ 2.3730536044725503,
3725
+ 2.3730536044725503,
3726
+ 2.109380981753378,
3727
+ 1.3183631135958611,
3728
+ 0.17578174847944816,
3729
+ 0.08789087423972408,
3730
+ 0.17578174847944816,
3731
+ -0.3515634969588963,
3732
+ -0.3515634969588963,
3733
+ -0.08789087423972408,
3734
+ -0.08789087423972408,
3735
+ 0.0,
3736
+ 0.0,
3737
+ 0.0,
3738
+ 0.0,
3739
+ 0.0,
3740
+ 0.0
3741
+ ]
3742
+ }
emotion_recordings/listening1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/listening2.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/lonely1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/lost1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/loving1.json ADDED
The diff for this file is too large to render. See raw diff
 
emotion_recordings/macarena1.json ADDED
The diff for this file is too large to render. See raw diff