@koi-language/koi 1.0.5 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/README.md +4 -125
  2. package/examples/.build/agent-dialogue.ts +138 -0
  3. package/examples/.build/agent-dialogue.ts.map +1 -0
  4. package/examples/.build/chess.ts +77 -0
  5. package/examples/.build/chess.ts.map +1 -0
  6. package/examples/.build/delegation-test.ts +140 -0
  7. package/examples/.build/delegation-test.ts.map +1 -0
  8. package/examples/.build/dialog-demo.ts +77 -0
  9. package/examples/.build/dialog-demo.ts.map +1 -0
  10. package/examples/.build/hello-world.ts +77 -0
  11. package/examples/.build/hello-world.ts.map +1 -0
  12. package/examples/.build/lover-dialog-demo.ts +77 -0
  13. package/examples/.build/lover-dialog-demo.ts.map +1 -0
  14. package/examples/.build/package.json +3 -0
  15. package/examples/.build/registry-interactive-demo.ts +202 -0
  16. package/examples/.build/registry-interactive-demo.ts.map +1 -0
  17. package/examples/.build/registry-playbook-demo.ts +201 -0
  18. package/examples/.build/registry-playbook-demo.ts.map +1 -0
  19. package/examples/.build/tic-tac-toe.ts +77 -0
  20. package/examples/.build/tic-tac-toe.ts.map +1 -0
  21. package/examples/actions-demo.koi +8 -9
  22. package/examples/activists-dialogue.koi +75 -0
  23. package/examples/agent-dialogue.koi +66 -0
  24. package/examples/chess.koi +19 -0
  25. package/examples/counter.koi +20 -69
  26. package/examples/delegation-test.koi +16 -18
  27. package/examples/dialog-demo.koi +20 -0
  28. package/examples/hello-world.koi +7 -43
  29. package/examples/mcp-stdio-demo.koi +29 -0
  30. package/examples/memory-test.koi +49 -0
  31. package/examples/mobile-mcp-demo.koi +32 -0
  32. package/examples/multi-event-handler-test.koi +16 -18
  33. package/examples/pipeline.koi +15 -17
  34. package/examples/prompt-demo.koi +20 -0
  35. package/examples/{registry-playbook-email-compositor.koi → registry-interactive-demo.koi} +27 -27
  36. package/examples/registry-playbook-demo.koi +28 -28
  37. package/examples/skill-import-test.koi +7 -9
  38. package/examples/skills/.build/math-operations.ts +1656 -0
  39. package/examples/skills/.build/math-operations.ts.map +1 -0
  40. package/examples/skills/.build/package.json +3 -0
  41. package/examples/skills/.build/string-operations.ts +1643 -0
  42. package/examples/skills/.build/string-operations.ts.map +1 -0
  43. package/examples/skills/advanced/.build/index.ts +3223 -0
  44. package/examples/skills/advanced/.build/index.ts.map +1 -0
  45. package/examples/skills/advanced/.build/package.json +3 -0
  46. package/examples/skills/advanced/index.koi +3 -5
  47. package/examples/skills/math-operations.koi +1 -3
  48. package/examples/skills/string-operations.koi +1 -3
  49. package/examples/tic-tac-toe.koi +19 -0
  50. package/examples/utils/echo-mcp-server.js +141 -0
  51. package/examples/web-delegation-demo.koi +15 -17
  52. package/package.json +2 -1
  53. package/src/cli/koi.js +30 -41
  54. package/src/compiler/build-optimizer.js +204 -289
  55. package/src/compiler/cache-manager.js +1 -1
  56. package/src/compiler/import-resolver.js +5 -9
  57. package/src/compiler/parser.js +6072 -3476
  58. package/src/compiler/transpiler.js +346 -38
  59. package/src/grammar/koi.pegjs +302 -62
  60. package/src/runtime/actions/{format.js → call-llm.js} +37 -44
  61. package/src/runtime/actions/call-mcp.js +97 -0
  62. package/src/runtime/actions/if.js +179 -0
  63. package/src/runtime/actions/print.js +3 -1
  64. package/src/runtime/actions/prompt-user.js +75 -0
  65. package/src/runtime/actions/repeat.js +147 -0
  66. package/src/runtime/actions/shell.js +185 -0
  67. package/src/runtime/actions/while.js +205 -0
  68. package/src/runtime/agent.js +592 -178
  69. package/src/runtime/cli-display.js +26 -0
  70. package/src/runtime/cli-input.js +421 -0
  71. package/src/runtime/cli-logger.js +2 -5
  72. package/src/runtime/cli-markdown.js +61 -0
  73. package/src/runtime/cli-select.js +106 -0
  74. package/src/runtime/incremental-json-parser.js +51 -17
  75. package/src/runtime/index.js +1 -0
  76. package/src/runtime/llm-provider.js +1083 -572
  77. package/src/runtime/mcp-registry.js +141 -0
  78. package/src/runtime/mcp-stdio-client.js +334 -0
  79. package/src/runtime/planner.js +1 -1
  80. package/src/runtime/playbook-session.js +259 -0
  81. package/src/runtime/registry-backends/keyv-sqlite.js +1 -1
  82. package/src/runtime/registry-backends/local.js +1 -1
  83. package/src/runtime/router.js +22 -26
  84. package/src/runtime/runtime.js +7 -1
  85. package/examples/cache-test.koi +0 -29
  86. package/examples/calculator.koi +0 -61
  87. package/examples/clear-registry.js +0 -33
  88. package/examples/clear-registry.koi +0 -30
  89. package/examples/code-introspection-test.koi +0 -149
  90. package/examples/directory-import-test.koi +0 -84
  91. package/examples/hello-world-claude.koi +0 -52
  92. package/examples/hello.koi +0 -24
  93. package/examples/mcp-example.koi +0 -70
  94. package/examples/new-import-test.koi +0 -89
  95. package/examples/registry-demo.koi +0 -184
  96. package/examples/registry-playbook-email-compositor-2.koi +0 -140
  97. package/examples/sentiment.koi +0 -90
  98. package/examples/simple.koi +0 -48
  99. package/examples/task-chaining-demo.koi +0 -244
  100. package/examples/test-await.koi +0 -22
  101. package/examples/test-crypto-sha256.koi +0 -196
  102. package/examples/test-delegation.koi +0 -41
  103. package/examples/test-multi-team-routing.koi +0 -258
  104. package/examples/test-no-handler.koi +0 -35
  105. package/examples/test-npm-import.koi +0 -67
  106. package/examples/test-parse.koi +0 -10
  107. package/examples/test-peers-with-team.koi +0 -59
  108. package/examples/test-permissions-fail.koi +0 -20
  109. package/examples/test-permissions.koi +0 -36
  110. package/examples/test-simple-registry.koi +0 -31
  111. package/examples/test-typescript-import.koi +0 -64
  112. package/examples/test-uses-team-syntax.koi +0 -25
  113. package/examples/test-uses-team.koi +0 -31
@@ -0,0 +1,3223 @@
1
+ // Generated from index.koi
2
+ // Using local runtime from KOI_RUNTIME_PATH: /Users/antonioparraga/Git/M/src/runtime
3
+ import { Agent, Team, Skill, Role, Runtime, SkillRegistry, skillSelector, registry, mcpRegistry } from 'file:///Users/antonioparraga/Git/M/src/runtime/index.js';
4
+ import { createRequire } from 'module';
5
+ const require = createRequire(import.meta.url);
6
+
7
+ globalThis.SkillRegistry = SkillRegistry;
8
+ globalThis.skillSelector = skillSelector;
9
+ globalThis.registry = registry;
10
+ globalThis.mcpRegistry = mcpRegistry;
11
+
12
+ // ============================================================
13
+ // Pre-computed Affordances (Build-time Cache)
14
+ // Generated at: 2026-02-16T16:55:34.769Z
15
+ // Total agents: 1
16
+ // Total agent affordances: 1
17
+ // Total skills: 1
18
+ // Total skill affordances: 1
19
+ // This avoids embedding API calls at runtime
20
+ // ============================================================
21
+
22
+ const CACHED_AFFORDANCES = {
23
+ "DataAnalyzer": {
24
+ "analyze": {
25
+ "description": "Analyze this data: Use the available statistical tools to compute mean, median, and standard deviation.",
26
+ "embedding": [
27
+ 0.02543279342353344,
28
+ 0.044275980442762375,
29
+ 0.029069198295474052,
30
+ 0.0009235641336999834,
31
+ -0.0023292272817343473,
32
+ 0.014556637965142727,
33
+ -0.011013898067176342,
34
+ -0.025917647406458855,
35
+ 0.004597847815603018,
36
+ 0.05046888813376427,
37
+ -0.011625475250184536,
38
+ -0.027151821181178093,
39
+ -0.06884925812482834,
40
+ 0.027812985703349113,
41
+ 0.059108104556798935,
42
+ 0.03175793215632439,
43
+ -0.01270537730306387,
44
+ 0.002958711003884673,
45
+ -0.023735804483294487,
46
+ 0.027460364624857903,
47
+ 0.024969978258013725,
48
+ 0.01302494015544653,
49
+ -0.006931207608431578,
50
+ -0.015867946669459343,
51
+ 0.05756538733839989,
52
+ 0.026600850746035576,
53
+ -0.014259113930165768,
54
+ 0.00887062307447195,
55
+ -0.008644725196063519,
56
+ -0.059460725635290146,
57
+ -0.030149100348353386,
58
+ -0.013818337582051754,
59
+ 0.019449254497885704,
60
+ -0.049102481454610825,
61
+ 0.012044212780892849,
62
+ 0.0012355510843917727,
63
+ -0.028165606781840324,
64
+ 0.017950614914298058,
65
+ 0.03151550516486168,
66
+ -0.046810444444417953,
67
+ -0.007895405404269695,
68
+ -0.00869982223957777,
69
+ -0.027262015268206596,
70
+ 0.015052511356770992,
71
+ 0.015228821896016598,
72
+ -0.05443587526679039,
73
+ 0.027768908068537712,
74
+ -0.08194031566381454,
75
+ 0.06567566841840744,
76
+ 0.010854116640985012,
77
+ -0.0306119155138731,
78
+ 0.03821530565619469,
79
+ 0.04531180486083031,
80
+ -0.007851327769458294,
81
+ 0.006352688651531935,
82
+ 0.034314434975385666,
83
+ 0.011967076919972897,
84
+ 0.004771403502672911,
85
+ -0.007146086078137159,
86
+ -0.044937144964933395,
87
+ 0.04143297299742699,
88
+ -0.017531877383589745,
89
+ 0.04405559226870537,
90
+ 0.0020661388989537954,
91
+ -0.023096678778529167,
92
+ -0.04901432618498802,
93
+ 0.028452111408114433,
94
+ -0.018424449488520622,
95
+ 0.03482132777571678,
96
+ -0.010237029753625393,
97
+ -0.021047068759799004,
98
+ 0.028914926573634148,
99
+ 0.05677198991179466,
100
+ 0.03724559769034386,
101
+ -0.01146018411964178,
102
+ 0.021785369142889977,
103
+ -0.030744148418307304,
104
+ -0.0805739089846611,
105
+ -0.02474959008395672,
106
+ -0.015427171252667904,
107
+ -0.0003197350015398115,
108
+ -0.007978050969541073,
109
+ -0.0028760654386132956,
110
+ 0.02220410667359829,
111
+ 0.013928531669080257,
112
+ -0.02609395794570446,
113
+ -0.013002901338040829,
114
+ -0.011151640675961971,
115
+ -0.048485394567251205,
116
+ -0.022369397804141045,
117
+ -0.03678278252482414,
118
+ -0.0030881890561431646,
119
+ 0.027901140972971916,
120
+ 0.03451278433203697,
121
+ -0.009702588431537151,
122
+ -0.07792925089597702,
123
+ 0.003978006076067686,
124
+ -0.017157217487692833,
125
+ -0.0021790878381580114,
126
+ 0.0027768907602876425,
127
+ -0.009614433161914349,
128
+ 0.039427440613508224,
129
+ 0.00836923997849226,
130
+ 0.027195898815989494,
131
+ 0.03122900240123272,
132
+ 0.019526390358805656,
133
+ 0.0003395355015527457,
134
+ -0.00010700878192437813,
135
+ -0.062369849532842636,
136
+ 0.00931690912693739,
137
+ -0.015030472539365292,
138
+ -0.011173679493367672,
139
+ -0.025917647406458855,
140
+ 0.017212314531207085,
141
+ -0.011669552884995937,
142
+ 0.04808869585394859,
143
+ 0.011878921650350094,
144
+ -0.004818235989660025,
145
+ 0.008732880465686321,
146
+ -0.03374142572283745,
147
+ -0.014721929095685482,
148
+ -0.013531832955777645,
149
+ 0.004785177763551474,
150
+ -0.02893696539103985,
151
+ 0.01305799838155508,
152
+ -0.033631231635808945,
153
+ -0.0026970000471919775,
154
+ 0.0027149065863341093,
155
+ -0.03376346454024315,
156
+ -0.02162007801234722,
157
+ -0.031008614227175713,
158
+ -0.007597881834954023,
159
+ -0.0017575955716893077,
160
+ -0.02316279523074627,
161
+ -0.014942317269742489,
162
+ -0.011272854171693325,
163
+ 0.021168282255530357,
164
+ 0.049763645976781845,
165
+ -0.012264600954949856,
166
+ -0.0011880298843607306,
167
+ -0.013465716503560543,
168
+ 0.05280500277876854,
169
+ 0.02450716309249401,
170
+ 0.031052691861987114,
171
+ -0.026292307302355766,
172
+ -0.03982413932681084,
173
+ -0.06823217123746872,
174
+ 0.03887647017836571,
175
+ 0.033278610557317734,
176
+ 0.011702611111104488,
177
+ 0.021785369142889977,
178
+ 0.013179211877286434,
179
+ -0.02155396156013012,
180
+ -0.05544966086745262,
181
+ -0.0014655812410637736,
182
+ -0.0020950648467987776,
183
+ 0.040375109761953354,
184
+ -0.02933366410434246,
185
+ 0.00020282597688492388,
186
+ -0.02444104664027691,
187
+ 0.007333416026085615,
188
+ -0.00855106022208929,
189
+ -0.031361233443021774,
190
+ 0.0042810398153960705,
191
+ -0.019559448584914207,
192
+ -0.015967121347784996,
193
+ -0.013608968816697598,
194
+ -0.017289450392127037,
195
+ -0.06082713231444359,
196
+ -0.0353282205760479,
197
+ -0.01302494015544653,
198
+ -0.04698675498366356,
199
+ 0.06951042264699936,
200
+ -0.054832573980093,
201
+ 0.016859693452715874,
202
+ -0.010666786693036556,
203
+ 0.005101985763758421,
204
+ -0.03803899511694908,
205
+ 0.018237119540572166,
206
+ 0.027129782363772392,
207
+ -0.019856972619891167,
208
+ 0.009146108292043209,
209
+ -0.015592462383210659,
210
+ -0.007922953926026821,
211
+ -0.02576337568461895,
212
+ 0.0020578743424266577,
213
+ 0.003997290041297674,
214
+ 0.0026074673514813185,
215
+ 0.019867992028594017,
216
+ 0.027879102155566216,
217
+ -0.004581318702548742,
218
+ -0.00011578987323446199,
219
+ -0.0036997662391513586,
220
+ 0.01806080900132656,
221
+ 0.012969843111932278,
222
+ -0.029487935826182365,
223
+ 0.033322688192129135,
224
+ -0.04081588611006737,
225
+ -0.019394157454371452,
226
+ -0.011184698902070522,
227
+ 0.008176400326192379,
228
+ -0.01962556503713131,
229
+ 0.014600715599954128,
230
+ -0.03512987121939659,
231
+ -0.026160074397921562,
232
+ -0.036562394350767136,
233
+ 0.00787887629121542,
234
+ 0.023735804483294487,
235
+ -0.011945038102567196,
236
+ -0.033631231635808945,
237
+ 0.005939460825175047,
238
+ -0.04905840381979942,
239
+ 0.04610520228743553,
240
+ -0.001960077090188861,
241
+ -0.009504239074885845,
242
+ 0.03640812262892723,
243
+ -0.06880518049001694,
244
+ 0.039758022874593735,
245
+ 0.004917410667985678,
246
+ -0.0026556772645562887,
247
+ -0.0037190502043813467,
248
+ 0.04584073647856712,
249
+ 0.044915106147527695,
250
+ 0.03634200617671013,
251
+ -0.030347449705004692,
252
+ -0.007944992743432522,
253
+ 0.032683562487363815,
254
+ -0.019129691645503044,
255
+ 0.0579180084168911,
256
+ -0.03376346454024315,
257
+ 0.049146559089422226,
258
+ -0.009124069474637508,
259
+ -0.012462950311601162,
260
+ 0.05822655186057091,
261
+ 0.006236984860152006,
262
+ -0.015647558495402336,
263
+ -0.0008684670901857316,
264
+ 0.016617266461253166,
265
+ -0.010986349545419216,
266
+ 0.04597296938300133,
267
+ -0.002413250273093581,
268
+ -0.02838599495589733,
269
+ 0.0025234443601220846,
270
+ 0.08978613466024399,
271
+ -0.023647649213671684,
272
+ -0.005779679398983717,
273
+ -0.008248026482760906,
274
+ 0.03387365862727165,
275
+ 0.0160773154348135,
276
+ 0.004300323780626059,
277
+ 0.012639260850846767,
278
+ -0.06289877742528915,
279
+ 0.013256347738206387,
280
+ -0.053642477840185165,
281
+ -0.016661344096064568,
282
+ -0.0322648249566555,
283
+ -0.031691815704107285,
284
+ 0.02000022493302822,
285
+ 0.04119054600596428,
286
+ 0.01400566753000021,
287
+ -0.04026491567492485,
288
+ -0.028606383129954338,
289
+ -0.040044527500867844,
290
+ 0.008606157265603542,
291
+ -0.014909259043633938,
292
+ -0.00823149736970663,
293
+ 0.053289856761693954,
294
+ 0.005779679398983717,
295
+ -0.06854071468114853,
296
+ -0.006066184025257826,
297
+ -0.001490374910645187,
298
+ 0.037223558872938156,
299
+ 0.004261755850166082,
300
+ 0.012242562137544155,
301
+ -0.011493242345750332,
302
+ 0.009586884640157223,
303
+ -0.005697033833712339,
304
+ -0.0006449797074310482,
305
+ -0.010203971527516842,
306
+ -0.011570378206670284,
307
+ -0.02025367133319378,
308
+ -0.05403917655348778,
309
+ 0.009664020501077175,
310
+ 0.05990150198340416,
311
+ -0.004862313624471426,
312
+ 0.005391245242208242,
313
+ 0.014237075112760067,
314
+ 0.03803899511694908,
315
+ -0.03643016144633293,
316
+ -0.013146153651177883,
317
+ 0.011989115737378597,
318
+ -0.04372501000761986,
319
+ -0.01065025757998228,
320
+ -0.06395664066076279,
321
+ -0.019074594601988792,
322
+ -0.004942204337567091,
323
+ -0.011201228015124798,
324
+ 0.0009821046842262149,
325
+ -0.01274945493787527,
326
+ -0.026622889563441277,
327
+ -0.002511047525331378,
328
+ -0.017531877383589745,
329
+ -0.0045868284069001675,
330
+ 0.0450473390519619,
331
+ 0.000982793397270143,
332
+ -0.023361144587397575,
333
+ 0.047868307679891586,
334
+ 0.02001124434173107,
335
+ -0.018766051158308983,
336
+ -0.020154496654868126,
337
+ -0.005625407677143812,
338
+ 0.05567004904150963,
339
+ 0.036540355533361435,
340
+ 0.0019159995717927814,
341
+ -0.05443587526679039,
342
+ -0.0035344751086086035,
343
+ 0.052981313318014145,
344
+ -0.02640250138938427,
345
+ 0.032066475600004196,
346
+ -0.03338880464434624,
347
+ -0.014170958660542965,
348
+ -0.023008523508906364,
349
+ 0.03768637403845787,
350
+ -0.013267367146909237,
351
+ -0.029576091095805168,
352
+ -0.029179392382502556,
353
+ -0.022986484691500664,
354
+ 0.025609103962779045,
355
+ 0.013917512260377407,
356
+ -0.006776935886591673,
357
+ -0.02448512427508831,
358
+ -0.024242697283625603,
359
+ 0.016859693452715874,
360
+ 0.027967257425189018,
361
+ 0.04482695087790489,
362
+ -0.014126881025731564,
363
+ -0.019901050254702568,
364
+ 0.017620032653212547,
365
+ -0.015978140756487846,
366
+ 0.05130636319518089,
367
+ -0.02926754765212536,
368
+ -0.0742708072066307,
369
+ 0.0024187599774450064,
370
+ 0.059108104556798935,
371
+ 0.029576091095805168,
372
+ -0.026314346119761467,
373
+ -0.036826860159635544,
374
+ 0.06219353899359703,
375
+ 0.0008395411423407495,
376
+ 0.013741201721131802,
377
+ -0.027901140972971916,
378
+ 0.009697078727185726,
379
+ -0.01499741431325674,
380
+ 0.02090381644666195,
381
+ 0.01799469254910946,
382
+ -0.011878921650350094,
383
+ 0.03612161800265312,
384
+ -0.03775249049067497,
385
+ -0.003636404639109969,
386
+ -0.00838025938719511,
387
+ -0.009597904048860073,
388
+ -0.006809994112700224,
389
+ 0.029708324000239372,
390
+ 0.014424405060708523,
391
+ 0.04249083623290062,
392
+ 0.029752401635050774,
393
+ -0.02227022312581539,
394
+ -0.008264555595815182,
395
+ -0.006402275990694761,
396
+ -0.02092585526406765,
397
+ 0.03931724652647972,
398
+ -0.03451278433203697,
399
+ -0.038832392543554306,
400
+ -0.007884385995566845,
401
+ -0.02090381644666195,
402
+ -0.032330941408872604,
403
+ 0.032992105931043625,
404
+ 0.02347133867442608,
405
+ -0.0176751296967268,
406
+ 0.046501901000738144,
407
+ 0.012870668433606625,
408
+ 0.0120993098244071,
409
+ 0.011179189197719097,
410
+ -0.008214968256652355,
411
+ 0.06192907318472862,
412
+ 0.03955967351794243,
413
+ 0.005611633416265249,
414
+ 0.04154316708445549,
415
+ -0.03279375657439232,
416
+ 0.02613803558051586,
417
+ -0.018137944862246513,
418
+ 0.020165516063570976,
419
+ 0.01239683385938406,
420
+ 0.0050716823898255825,
421
+ -0.02224818430840969,
422
+ 0.009713607840240002,
423
+ 0.03960375115275383,
424
+ 0.010484966449439526,
425
+ 0.004702532198280096,
426
+ 0.009118559770286083,
427
+ 0.017642071470618248,
428
+ -0.0321105532348156,
429
+ -0.028804732486605644,
430
+ -0.017917556688189507,
431
+ 0.019845953211188316,
432
+ 0.008628196083009243,
433
+ 0.008000089786946774,
434
+ 0.016209548339247704,
435
+ 0.026666967198252678,
436
+ -0.009774214588105679,
437
+ 0.016187509521842003,
438
+ -0.028143567964434624,
439
+ 0.0027286808472126722,
440
+ -0.02992871217429638,
441
+ 0.010887174867093563,
442
+ -0.018909303471446037,
443
+ 0.0006267288117669523,
444
+ 0.09282749146223068,
445
+ -0.007057930808514357,
446
+ 0.009377515874803066,
447
+ -0.03316841647028923,
448
+ -0.0066336835734546185,
449
+ -0.014424405060708523,
450
+ -0.000009464422873861622,
451
+ -0.019261924549937248,
452
+ 0.04017676040530205,
453
+ -0.0020289483945816755,
454
+ -0.013013920746743679,
455
+ 0.005203915294259787,
456
+ -0.037223558872938156,
457
+ 0.011989115737378597,
458
+ 0.009300380013883114,
459
+ 0.03510783240199089,
460
+ 0.0034876426216214895,
461
+ -0.02220410667359829,
462
+ -0.0035482493694871664,
463
+ 0.008203948847949505,
464
+ -0.007162615191191435,
465
+ 0.02380192093551159,
466
+ 0.00044008760596625507,
467
+ -0.03411608561873436,
468
+ -0.016198528930544853,
469
+ 0.007355454843491316,
470
+ -0.02382395975291729,
471
+ -0.016507072374224663,
472
+ 0.005735601764172316,
473
+ -0.01640789769589901,
474
+ -0.00820945855230093,
475
+ 0.014148919843137264,
476
+ 0.02222614549100399,
477
+ 0.03925113007426262,
478
+ -0.013895473442971706,
479
+ 0.017245372757315636,
480
+ 0.01963658444583416,
481
+ -0.04286549612879753,
482
+ -0.010341714136302471,
483
+ 0.03612161800265312,
484
+ -0.018865225836634636,
485
+ 0.06492634862661362,
486
+ 0.06148829683661461,
487
+ 0.016033237800002098,
488
+ 0.030038906261324883,
489
+ -0.011140621267259121,
490
+ 0.04531180486083031,
491
+ 0.004300323780626059,
492
+ -0.007399532478302717,
493
+ -0.05086558684706688,
494
+ -0.010551082901656628,
495
+ -0.017620032653212547,
496
+ 0.045223649591207504,
497
+ 0.027239976450800896,
498
+ 0.041873749345541,
499
+ -0.0026887354906648397,
500
+ 0.03929520770907402,
501
+ -0.013135134242475033,
502
+ -0.026622889563441277,
503
+ 0.01645197533071041,
504
+ -0.027217937633395195,
505
+ -0.025565026327967644,
506
+ -0.01306901779025793,
507
+ 0.005818247329443693,
508
+ -0.006451863329857588,
509
+ -0.02349337749183178,
510
+ 0.018600760027766228,
511
+ -0.014523579739034176,
512
+ -0.0005051709595136344,
513
+ 0.053025390952825546,
514
+ 0.026248229667544365,
515
+ 0.0030441114213317633,
516
+ -0.004542750772088766,
517
+ -0.0514385960996151,
518
+ -0.032661523669958115,
519
+ 0.06303101032972336,
520
+ -0.00786785688251257,
521
+ 0.0017796343890950084,
522
+ 0.03446870669722557,
523
+ -0.018126925453543663,
524
+ -0.01741066388785839,
525
+ 0.00498352712020278,
526
+ -0.0013381693279370666,
527
+ -0.0011825201800093055,
528
+ -0.016859693452715874,
529
+ 0.024396969005465508,
530
+ 0.04742753133177757,
531
+ 0.009774214588105679,
532
+ 0.05540558323264122,
533
+ -0.003396732499822974,
534
+ 0.0003338536189403385,
535
+ -0.03274967893958092,
536
+ 0.021069107577204704,
537
+ 0.026314346119761467,
538
+ 0.03662851080298424,
539
+ 0.023603571578860283,
540
+ -0.008578608743846416,
541
+ -0.028275800868868828,
542
+ -0.00716812489554286,
543
+ 0.014931297861039639,
544
+ 0.005416038911789656,
545
+ -0.006192907225340605,
546
+ -0.010595160536468029,
547
+ -0.001805805484764278,
548
+ 0.005680504720658064,
549
+ -0.008143342100083828,
550
+ 0.012661299668252468,
551
+ -0.0017989183543249965,
552
+ -0.05417140945792198,
553
+ 0.03277171775698662,
554
+ -0.09212224930524826,
555
+ -0.018788089975714684,
556
+ -0.03598938509821892,
557
+ 0.017223333939909935,
558
+ -0.029113275930285454,
559
+ -0.03479928895831108,
560
+ 0.06065082177519798,
561
+ -0.0030027886386960745,
562
+ -0.04341646656394005,
563
+ 0.019879011437296867,
564
+ 0.01337756123393774,
565
+ -0.022744057700037956,
566
+ -0.03345492109656334,
567
+ 0.021179301664233208,
568
+ 0.015945082530379295,
569
+ -0.007124047260731459,
570
+ -0.02580745331943035,
571
+ 0.01966964267194271,
572
+ -0.0019710964988917112,
573
+ 0.00474936468526721,
574
+ 0.009625452570617199,
575
+ 0.004071671050041914,
576
+ -0.026909394189715385,
577
+ 0.029245508834719658,
578
+ -0.02671104483306408,
579
+ 0.050689276307821274,
580
+ 0.01174668874591589,
581
+ 0.01965862326323986,
582
+ 0.0120772710070014,
583
+ -0.029201431199908257,
584
+ -0.016584208235144615,
585
+ -0.014292172156274319,
586
+ -0.041675399988889694,
587
+ 0.029245508834719658,
588
+ 0.004551015328615904,
589
+ 0.029069198295474052,
590
+ 0.013752221129834652,
591
+ 0.01575775258243084,
592
+ -0.01432523038238287,
593
+ 0.024551240727305412,
594
+ -0.030678031966090202,
595
+ -0.0045069376938045025,
596
+ -0.031096769496798515,
597
+ -0.000902902742382139,
598
+ 0.03700317069888115,
599
+ -0.007724605035036802,
600
+ -0.011956057511270046,
601
+ -0.026931433007121086,
602
+ 0.0009931240929290652,
603
+ -0.030391527339816093,
604
+ -0.05342208966612816,
605
+ 0.0038072054740041494,
606
+ 0.00301931775175035,
607
+ -0.004148806910961866,
608
+ 0.02125643752515316,
609
+ -0.0002405330160399899,
610
+ -0.0027107743080705404,
611
+ -0.03790676221251488,
612
+ 0.038435693830251694,
613
+ 0.09547214955091476,
614
+ 0.021333573386073112,
615
+ -0.04729529842734337,
616
+ -0.016209548339247704,
617
+ 0.03288191184401512,
618
+ -0.041366856545209885,
619
+ -0.00007308966451091692,
620
+ 0.014622754417359829,
621
+ -0.03579103574156761,
622
+ -0.0037521084304898977,
623
+ 0.024044347926974297,
624
+ -0.012275620363652706,
625
+ -0.0020275709684938192,
626
+ 0.04632559046149254,
627
+ 0.014402366243302822,
628
+ 0.0019903804641216993,
629
+ -0.0044270469807088375,
630
+ -0.024992017075419426,
631
+ -0.031030653044581413,
632
+ 0.04998403415083885,
633
+ 0.016496052965521812,
634
+ 0.013135134242475033,
635
+ -0.01272741612046957,
636
+ 0.03808307275176048,
637
+ -0.025675220414996147,
638
+ 0.005785189103335142,
639
+ -0.025322599336504936,
640
+ -0.01672746054828167,
641
+ -0.031735893338918686,
642
+ 0.04242471978068352,
643
+ -0.003936683293431997,
644
+ 0.014270133338868618,
645
+ 0.0014029083540663123,
646
+ 0.013785279355943203,
647
+ -0.026799200102686882,
648
+ 0.0014008422149345279,
649
+ -0.04663413390517235,
650
+ 0.0035730430390685797,
651
+ 0.023383183404803276,
652
+ 0.016198528930544853,
653
+ 0.03438055142760277,
654
+ -0.0038209797348827124,
655
+ -0.007102008443325758,
656
+ 0.030105022713541985,
657
+ -0.033917736262083054,
658
+ -0.00015280819206964225,
659
+ -0.008694312535226345,
660
+ -0.039140935987234116,
661
+ -0.0018319765804335475,
662
+ -0.003710785647854209,
663
+ 0.011113072745501995,
664
+ 0.004782422911375761,
665
+ -0.04808869585394859,
666
+ 0.03477725014090538,
667
+ 0.04112442955374718,
668
+ 0.006154339294880629,
669
+ -0.027239976450800896,
670
+ 0.001758972997777164,
671
+ 0.027812985703349113,
672
+ -0.01111858244985342,
673
+ -0.008457395248115063,
674
+ -0.018479546532034874,
675
+ -0.047868307679891586,
676
+ -0.015030472539365292,
677
+ -0.04795646294951439,
678
+ -0.019493332132697105,
679
+ -0.005713562946766615,
680
+ -0.030060945078730583,
681
+ 0.009261812083423138,
682
+ -0.02642454020678997,
683
+ -0.007967031560838223,
684
+ -0.00044318681466393173,
685
+ -0.04154316708445549,
686
+ -0.0006542773335240781,
687
+ 0.054920729249715805,
688
+ 0.039096858352422714,
689
+ 0.004338891711086035,
690
+ 0.01434726919978857,
691
+ 0.02281017415225506,
692
+ 0.019460273906588554,
693
+ 0.004322362598031759,
694
+ 0.012980862520635128,
695
+ 0.041697438806295395,
696
+ 0.05381878837943077,
697
+ 0.020044302567839622,
698
+ 0.041675399988889694,
699
+ -0.0120552321895957,
700
+ -0.005922931712120771,
701
+ -0.037488024681806564,
702
+ 0.023669688031077385,
703
+ 0.023250950500369072,
704
+ 0.015173724852502346,
705
+ -0.01497537549585104,
706
+ 0.032000359147787094,
707
+ 0.023912115022540092,
708
+ -0.005573065485805273,
709
+ -0.014710909686982632,
710
+ 0.03131715580821037,
711
+ 0.012462950311601162,
712
+ -0.00044421988422982395,
713
+ 0.05046888813376427,
714
+ 0.0136971240863204,
715
+ 0.01897541992366314,
716
+ -0.0418296717107296,
717
+ 0.01336654182523489,
718
+ -0.005652956198900938,
719
+ 0.03660647198557854,
720
+ -0.0483972392976284,
721
+ -0.02444104664027691,
722
+ 0.011934018693864346,
723
+ -0.012771493755280972,
724
+ 0.007234241347759962,
725
+ 0.035901229828596115,
726
+ -0.07678323239088058,
727
+ -0.00043802146683447063,
728
+ 0.0011914734495803714,
729
+ -0.01961454562842846,
730
+ -0.0387221984565258,
731
+ -0.011702611111104488,
732
+ -0.01831425540149212,
733
+ -0.016474014148116112,
734
+ -0.021311534568667412,
735
+ 0.035901229828596115,
736
+ -0.005115760024636984,
737
+ 0.022336339578032494,
738
+ 0.014270133338868618,
739
+ -0.026997549459338188,
740
+ -0.01704702340066433,
741
+ 0.002030325820669532,
742
+ -0.020826680585741997,
743
+ 0.012958823703229427,
744
+ -0.007989070378243923,
745
+ 0.0038264894392341375,
746
+ 0.005099230911582708,
747
+ 0.005011075641959906,
748
+ 0.03089842014014721,
749
+ -0.060033734887838364,
750
+ 0.014876200817525387,
751
+ 0.021708233281970024,
752
+ -0.01737760566174984,
753
+ -0.03416016325354576,
754
+ 0.009366496466100216,
755
+ -0.010099287144839764,
756
+ -0.03182404860854149,
757
+ 0.03775249049067497,
758
+ 0.017002945765852928,
759
+ 0.0001021877906168811,
760
+ -0.051085975021123886,
761
+ 0.021322553977370262,
762
+ -0.015856927260756493,
763
+ 0.01733352802693844,
764
+ 0.03354307636618614,
765
+ 0.007724605035036802,
766
+ 0.01645197533071041,
767
+ 0.024352891370654106,
768
+ -0.015239841304719448,
769
+ -0.022049834951758385,
770
+ -0.06289877742528915,
771
+ 0.025565026327967644,
772
+ 0.0032948029693216085,
773
+ -0.013410619460046291,
774
+ 0.0024228922557085752,
775
+ 0.010727393440902233,
776
+ -0.007135066669434309,
777
+ 0.023647649213671684,
778
+ 0.006110261660069227,
779
+ -0.030060945078730583,
780
+ 0.0013739824062213302,
781
+ 0.0387442372739315,
782
+ -0.05637529119849205,
783
+ -0.032375019043684006,
784
+ 0.008787977509200573,
785
+ 0.0047658937983214855,
786
+ -0.017234353348612785,
787
+ 0.017531877383589745,
788
+ 0.024903861805796623,
789
+ 0.02227022312581539,
790
+ 0.04548811540007591,
791
+ 0.0193170215934515,
792
+ -0.0273501705378294,
793
+ 0.007068950217217207,
794
+ -0.016000179573893547,
795
+ 0.0016377595020458102,
796
+ -0.0322427861392498,
797
+ -0.016264645382761955,
798
+ -0.027879102155566216,
799
+ -0.017620032653212547,
800
+ 0.0003767260059248656,
801
+ 0.022677941247820854,
802
+ 0.018556682392954826,
803
+ 0.021829446777701378,
804
+ -0.01495333667844534,
805
+ -0.010435379110276699,
806
+ 0.037201520055532455,
807
+ -0.002469724742695689,
808
+ -0.007432590704411268,
809
+ -0.009427103213965893,
810
+ -0.021080126985907555,
811
+ 0.013575910590589046,
812
+ 0.02254570834338665,
813
+ 0.023912115022540092,
814
+ -0.027195898815989494,
815
+ 0.014137900434434414,
816
+ -0.013631007634103298,
817
+ -0.01206625159829855,
818
+ 0.01674949936568737,
819
+ 0.004832010250538588,
820
+ 0.006066184025257826,
821
+ -0.000549937307368964,
822
+ -0.03900870308279991,
823
+ 0.015592462383210659,
824
+ -0.08277779072523117,
825
+ 0.025542987510561943,
826
+ 0.003790676360949874,
827
+ -0.03032541088759899,
828
+ -0.007663998287171125,
829
+ 0.0016487789107486606,
830
+ -0.015394113026559353,
831
+ 0.01092574279755354,
832
+ -0.02120134048163891,
833
+ -0.016661344096064568,
834
+ -0.00996705424040556,
835
+ -0.015471248887479305,
836
+ -0.007785211782902479,
837
+ 0.02871657721698284,
838
+ -0.025895608589053154,
839
+ 0.0015261879889294505,
840
+ -0.010143364779651165,
841
+ 0.0176751296967268,
842
+ -0.051085975021123886,
843
+ -0.016914790496230125,
844
+ 0.010407830588519573,
845
+ 0.032330941408872604,
846
+ 0.02033080719411373,
847
+ 0.01528391893953085,
848
+ -0.0322427861392498,
849
+ 0.02803337387740612,
850
+ -0.007548294495791197,
851
+ -0.003710785647854209,
852
+ 0.027614636346697807,
853
+ -0.009465671144425869,
854
+ 0.004165336024016142,
855
+ -0.0045069376938045025,
856
+ 0.018732992932200432,
857
+ 0.0069256979040801525,
858
+ 0.024639395996928215,
859
+ -0.02867249958217144,
860
+ -0.013631007634103298,
861
+ 0.06338363140821457,
862
+ -0.017873479053378105,
863
+ -0.021377651020884514,
864
+ 0.042072098702192307,
865
+ -0.0018636573804542422,
866
+ 0.013135134242475033,
867
+ 0.0450253002345562,
868
+ 0.027306092903017998,
869
+ 0.007978050969541073,
870
+ 0.006556547712534666,
871
+ 0.030788226053118706,
872
+ -0.0193170215934515,
873
+ -0.003239705925807357,
874
+ 0.004107484128326178,
875
+ -0.03473317250609398,
876
+ 0.019834933802485466,
877
+ -0.021509883925318718,
878
+ -0.008903681300580502,
879
+ 0.0322207473218441,
880
+ 0.009068972431123257,
881
+ 0.02314075641334057,
882
+ 0.01670542173087597,
883
+ -0.008793487213551998,
884
+ 0.0027479648124426603,
885
+ 0.006110261660069227,
886
+ 0.014556637965142727,
887
+ -0.05024849995970726,
888
+ 0.02706366591155529,
889
+ -0.016936829313635826,
890
+ -0.028848810121417046,
891
+ -0.012473969720304012,
892
+ -0.0007011098205111921,
893
+ 0.004192884545773268,
894
+ 0.0006480789161287248,
895
+ 0.008991836570203304,
896
+ 0.023030562326312065,
897
+ -0.006567567121237516,
898
+ -0.011900960467755795,
899
+ -0.021961679682135582,
900
+ -0.016264645382761955,
901
+ -0.008132322691380978,
902
+ -0.021080126985907555,
903
+ 0.00009185709495795891,
904
+ 0.025983763858675957,
905
+ -0.011548339389264584,
906
+ 0.0011446409625932574,
907
+ -0.002163936151191592,
908
+ -0.024573279544711113,
909
+ 0.01963658444583416,
910
+ 0.0037934312131255865,
911
+ -0.01049047615379095,
912
+ 0.00034315124503336847,
913
+ 0.029708324000239372,
914
+ 0.01241887267678976,
915
+ 0.0034022422041743994,
916
+ 0.026556773111224174,
917
+ 0.030369488522410393,
918
+ 0.06735061854124069,
919
+ 0.009438122622668743,
920
+ 0.029091237112879753,
921
+ -0.02571929804980755,
922
+ -0.013730182312428951,
923
+ 0.00587885407730937,
924
+ -0.007256280165165663,
925
+ -0.0009001478902064264,
926
+ -0.0012775625800713897,
927
+ -0.041366856545209885,
928
+ -0.01833629421889782,
929
+ 0.012870668433606625,
930
+ 0.012308678589761257,
931
+ 0.00033402579720132053,
932
+ -0.024242697283625603,
933
+ -0.009939505718648434,
934
+ -0.034578900784254074,
935
+ 0.00667776120826602,
936
+ 0.018501585349440575,
937
+ 0.015548384748399258,
938
+ 0.01463377382606268,
939
+ 0.05337801203131676,
940
+ -0.004614376928657293,
941
+ -0.020198574289679527,
942
+ -0.00539950979873538,
943
+ -0.03768637403845787,
944
+ -0.013818337582051754,
945
+ 0.03832549974322319,
946
+ -0.01770818792283535,
947
+ -0.02380192093551159,
948
+ -0.022457553073763847,
949
+ 0.01079901959747076,
950
+ -0.027857063338160515,
951
+ 0.015217802487313747,
952
+ -0.0037548632826656103,
953
+ -0.0017658601282164454,
954
+ 0.0011301779886707664,
955
+ 0.025587065145373344,
956
+ -0.027967257425189018,
957
+ 0.013575910590589046,
958
+ -0.021785369142889977,
959
+ 0.028892887756228447,
960
+ -0.01434726919978857,
961
+ 0.003876076778396964,
962
+ 0.07616614550352097,
963
+ -0.0065069603733718395,
964
+ -0.00005965976379229687,
965
+ 0.03629792854189873,
966
+ 0.044606562703847885,
967
+ 0.00027806786238215864,
968
+ -0.012429892085492611,
969
+ -0.00884858425706625,
970
+ -0.04163132235407829,
971
+ 0.013763240538537502,
972
+ -0.0009394045337103307,
973
+ 0.05505296215415001,
974
+ 0.0016529111890122294,
975
+ -0.028275800868868828,
976
+ 0.011074504815042019,
977
+ -0.04544403776526451,
978
+ -0.03832549974322319,
979
+ 0.03418220207095146,
980
+ -0.0009821046842262149,
981
+ -0.026490656659007072,
982
+ -0.013289405964314938,
983
+ -0.01270537730306387,
984
+ -0.03182404860854149,
985
+ 0.0387442372739315,
986
+ 0.006644702982157469,
987
+ -0.02902512066066265,
988
+ 0.023691726848483086,
989
+ -0.017476780340075493,
990
+ -0.02831987850368023,
991
+ -0.012154406867921352,
992
+ 0.00208680029027164,
993
+ 0.03182404860854149,
994
+ 0.02642454020678997,
995
+ 0.021476825699210167,
996
+ -0.024330852553248405,
997
+ 0.014270133338868618,
998
+ -0.008435356430709362,
999
+ -0.013840376399457455,
1000
+ -0.005498684477061033,
1001
+ 0.01467785146087408,
1002
+ -0.006909168791025877,
1003
+ 0.022611824795603752,
1004
+ -0.01401668693870306,
1005
+ -0.03094249777495861,
1006
+ -0.01401668693870306,
1007
+ -0.00998909305781126,
1008
+ 0.023757843300700188,
1009
+ 0.030038906261324883,
1010
+ 0.019724739715456963,
1011
+ -0.0241765808314085,
1012
+ 0.016837654635310173,
1013
+ 0.03338880464434624,
1014
+ -0.04352666065096855,
1015
+ 0.026160074397921562,
1016
+ -0.001495884614996612,
1017
+ 0.05950480327010155,
1018
+ 0.02258978597819805,
1019
+ -0.003914644476026297,
1020
+ 0.017234353348612785,
1021
+ 0.0007506971596740186,
1022
+ -0.0015812850324437022,
1023
+ 0.00787887629121542,
1024
+ 0.013564891181886196,
1025
+ -0.0153169771656394,
1026
+ 0.03572491928935051,
1027
+ 0.0008333427249453962,
1028
+ 0.0306559931486845,
1029
+ 0.007785211782902479,
1030
+ -0.018556682392954826,
1031
+ -0.0019504352239891887,
1032
+ -0.04306384548544884,
1033
+ -0.006683270912617445,
1034
+ 0.012484989129006863,
1035
+ 0.004179110284894705,
1036
+ -0.00790091510862112,
1037
+ -0.029774440452456474,
1038
+ -0.0052507477812469006,
1039
+ -0.0449812225997448,
1040
+ -0.000467980484245345,
1041
+ 0.023625610396265984,
1042
+ 0.005129534285515547,
1043
+ 0.0008140587597154081,
1044
+ 0.0018099377630278468,
1045
+ 0.020804641768336296,
1046
+ -0.0008526266901753843,
1047
+ 0.017443722113966942,
1048
+ -0.024595318362116814,
1049
+ 0.029487935826182365,
1050
+ -0.007675017695873976,
1051
+ -0.023118717595934868,
1052
+ 0.025256482884287834,
1053
+ 0.013906492851674557,
1054
+ -0.025829492136836052,
1055
+ 0.0068595814518630505,
1056
+ 0.027438325807452202,
1057
+ 0.0020799131598323584,
1058
+ -0.025256482884287834,
1059
+ 0.008490453474223614,
1060
+ 0.04088200256228447,
1061
+ -0.014303191564977169,
1062
+ 0.02481570653617382,
1063
+ -0.03673870489001274,
1064
+ -0.0005871278117410839,
1065
+ -0.03252929076552391,
1066
+ -0.017542896792292595,
1067
+ -0.034005891531705856,
1068
+ -0.05342208966612816,
1069
+ -0.009933996014297009,
1070
+ 0.018512604758143425,
1071
+ 0.016231587156653404,
1072
+ -0.007322396617382765,
1073
+ 0.009575865231454372,
1074
+ -0.015217802487313747,
1075
+ -0.037465985864400864,
1076
+ 0.02644657902419567,
1077
+ -0.008126812987029552,
1078
+ 0.021168282255530357,
1079
+ -0.004112993832677603,
1080
+ -0.01839139126241207,
1081
+ -0.033278610557317734,
1082
+ 0.0152949383482337,
1083
+ 0.019548429176211357,
1084
+ 0.0043609305284917355,
1085
+ -0.010484966449439526,
1086
+ 0.002050987211987376,
1087
+ 0.0014710909454151988,
1088
+ 0.03177997097373009,
1089
+ -0.030082983896136284,
1090
+ -0.017322508618235588,
1091
+ -0.016991926357150078,
1092
+ -0.013950570486485958,
1093
+ 0.026512695476412773,
1094
+ -0.018171003088355064,
1095
+ -0.0034821329172700644,
1096
+ 0.001579907606355846,
1097
+ 0.017520857974886894,
1098
+ -0.01670542173087597,
1099
+ 0.019724739715456963,
1100
+ -0.0029614658560603857,
1101
+ 0.022446533665060997,
1102
+ 0.013796298764646053,
1103
+ 0.01029763650149107,
1104
+ -0.018788089975714684,
1105
+ -0.0034490746911615133,
1106
+ 0.009867879562079906,
1107
+ 0.02644657902419567,
1108
+ 0.009278341196477413,
1109
+ -0.028452111408114433,
1110
+ -0.0012865158496424556,
1111
+ -0.03473317250609398,
1112
+ 0.028209684416651726,
1113
+ -0.009074482135474682,
1114
+ -0.018920322880148888,
1115
+ -0.017763284966349602,
1116
+ 0.028275800868868828,
1117
+ 0.009873389266431332,
1118
+ 0.0016198529629036784,
1119
+ -0.028584344312548637,
1120
+ -0.005124024581164122,
1121
+ 0.019195808097720146,
1122
+ -0.014369308017194271,
1123
+ 0.03252929076552391,
1124
+ 0.0029945240821689367,
1125
+ 0.0003612299624364823,
1126
+ 0.007586862426251173,
1127
+ -0.00963647197932005,
1128
+ -0.018226100131869316,
1129
+ 0.030545799061655998,
1130
+ -0.03164773806929588,
1131
+ 0.018137944862246513,
1132
+ -0.05434771999716759,
1133
+ -0.0007803118205629289,
1134
+ 0.004867823328822851,
1135
+ -0.018182022497057915,
1136
+ 0.06730654090642929,
1137
+ 0.050689276307821274,
1138
+ 0.00004455112139112316,
1139
+ -0.04033103212714195,
1140
+ -0.00634717894718051,
1141
+ -0.00852902140468359,
1142
+ -0.00002802201015583705,
1143
+ 0.023008523508906364,
1144
+ 0.0005840286030434072,
1145
+ -0.004217678215354681,
1146
+ 0.025212405249476433,
1147
+ -0.017829401418566704,
1148
+ -0.020859738811850548,
1149
+ -0.004336136858910322,
1150
+ 0.005286560859531164,
1151
+ -0.016551150009036064,
1152
+ -0.007195673417299986,
1153
+ 0.01871095411479473,
1154
+ 0.0028981042560189962,
1155
+ 0.024088425561785698,
1156
+ -0.02057323418557644,
1157
+ -0.04667821153998375,
1158
+ 0.006077203433960676,
1159
+ 0.0020950648467987776,
1160
+ 0.012165426276624203,
1161
+ -0.04954325780272484,
1162
+ -0.016220567747950554,
1163
+ 0.017586974427103996,
1164
+ 0.004157071467489004,
1165
+ -0.035901229828596115,
1166
+ -0.0015454719541594386,
1167
+ -0.02353745512664318,
1168
+ 0.01174668874591589,
1169
+ -0.004250736441463232,
1170
+ 0.043680932372808456,
1171
+ 0.033344727009534836,
1172
+ -0.022655902430415154,
1173
+ 0.02801133506000042,
1174
+ 0.050689276307821274,
1175
+ 0.029465897008776665,
1176
+ 0.0002062695421045646,
1177
+ 0.029399780556559563,
1178
+ 0.024727551266551018,
1179
+ 0.013906492851674557,
1180
+ -0.03257336840033531,
1181
+ -0.015592462383210659,
1182
+ -0.01862279884517193,
1183
+ 0.015383093617856503,
1184
+ -0.00903040450066328,
1185
+ 0.018215080723166466,
1186
+ -0.013289405964314938,
1187
+ -0.03197832033038139,
1188
+ -0.0033609194215387106,
1189
+ 0.01528391893953085,
1190
+ -0.02063935063779354,
1191
+ 0.0005613010725937784,
1192
+ 0.02218206785619259,
1193
+ -0.012110329233109951,
1194
+ -0.011548339389264584,
1195
+ -0.050116267055273056,
1196
+ 0.0136971240863204,
1197
+ -0.027438325807452202,
1198
+ 0.0009283851250074804,
1199
+ -0.02122337929904461,
1200
+ -0.029245508834719658,
1201
+ 0.020749544724822044,
1202
+ 0.016231587156653404,
1203
+ 0.037554141134023666,
1204
+ -0.035526569932699203,
1205
+ 0.01532799657434225,
1206
+ 0.02163109742105007,
1207
+ -0.03762025758624077,
1208
+ -0.01402770634740591,
1209
+ -0.018545662984251976,
1210
+ -0.01637483946979046,
1211
+ 0.0036997662391513586,
1212
+ -0.009917466901242733,
1213
+ 0.005487665068358183,
1214
+ 0.014743967913091183,
1215
+ -0.009184676222503185,
1216
+ -0.007724605035036802,
1217
+ 0.018193041905760765,
1218
+ -0.002752097090706229,
1219
+ 0.018920322880148888,
1220
+ -0.0015730204759165645,
1221
+ -0.0003526210493873805,
1222
+ 0.014556637965142727,
1223
+ -0.03896462544798851,
1224
+ -0.004523466806858778,
1225
+ 0.022677941247820854,
1226
+ -0.02836395613849163,
1227
+ -0.0386120043694973,
1228
+ 0.008760428987443447,
1229
+ -0.0003984204668086022,
1230
+ 0.007735624443739653,
1231
+ 0.01465581264346838,
1232
+ -0.004002799745649099,
1233
+ 0.013939551077783108,
1234
+ 0.021366631612181664,
1235
+ -0.007619920652359724,
1236
+ -0.04597296938300133,
1237
+ 0.03568084165453911,
1238
+ -0.021080126985907555,
1239
+ -0.015691636130213737,
1240
+ -0.009735646657645702,
1241
+ 0.004181865137070417,
1242
+ 0.021311534568667412,
1243
+ -0.05518519505858421,
1244
+ -0.0005943592987023294,
1245
+ 0.01399464812129736,
1246
+ -0.03576899692416191,
1247
+ -0.03473317250609398,
1248
+ -0.004176355432718992,
1249
+ 0.024044347926974297,
1250
+ 0.015856927260756493,
1251
+ -0.0060386355035007,
1252
+ 0.011592417024075985,
1253
+ -0.01208829041570425,
1254
+ 0.0005337525508366525,
1255
+ -0.014270133338868618,
1256
+ -0.00007265921885846183,
1257
+ -0.02964220754802227,
1258
+ -0.04083792492747307,
1259
+ -0.03127307817339897,
1260
+ 0.01464479323476553,
1261
+ -0.011063485406339169,
1262
+ -0.004349911119788885,
1263
+ -0.016507072374224663,
1264
+ -0.04949918016791344,
1265
+ 0.006044145207852125,
1266
+ -0.012562124989926815,
1267
+ 0.009862369857728481,
1268
+ -0.015228821896016598,
1269
+ 0.004330627154558897,
1270
+ 0.01900847814977169,
1271
+ -0.0067328582517802715,
1272
+ 0.04127870127558708,
1273
+ -0.005856815259903669,
1274
+ 0.010237029753625393,
1275
+ 0.00293391733430326,
1276
+ -0.0051515731029212475,
1277
+ -0.031735893338918686,
1278
+ 0.023978231474757195,
1279
+ -0.021774349734187126,
1280
+ -0.020991971716284752,
1281
+ -0.022986484691500664,
1282
+ 0.040727730840444565,
1283
+ -0.015052511356770992,
1284
+ 0.044606562703847885,
1285
+ 0.009867879562079906,
1286
+ 0.040419187396764755,
1287
+ -0.01573571376502514,
1288
+ -0.0053774709813296795,
1289
+ -0.004562034737318754,
1290
+ -0.011548339389264584,
1291
+ -0.011878921650350094,
1292
+ -0.04467267915606499,
1293
+ -0.04676636680960655,
1294
+ 0.013586929999291897,
1295
+ 0.024727551266551018,
1296
+ 0.027548519894480705,
1297
+ -0.015471248887479305,
1298
+ -0.047824230045080185,
1299
+ -0.019085614010691643,
1300
+ -0.011956057511270046,
1301
+ 0.0024049857165664434,
1302
+ 0.0006980106118135154,
1303
+ 0.009873389266431332,
1304
+ 0.025697259232401848,
1305
+ 0.016980906948447227,
1306
+ 0.01611037366092205,
1307
+ 0.02508017234504223,
1308
+ -0.011316931806504726,
1309
+ 0.01012683566659689,
1310
+ -0.027129782363772392,
1311
+ -0.036518316715955734,
1312
+ 0.005526232998818159,
1313
+ -0.0009800385450944304,
1314
+ -0.0028003070037811995,
1315
+ -0.02027571015059948,
1316
+ -0.008154361508786678,
1317
+ -0.023383183404803276,
1318
+ 0.0026363932993263006,
1319
+ 0.0022314300294965506,
1320
+ -0.020198574289679527,
1321
+ -0.0002212490508100018,
1322
+ -0.001858147676102817,
1323
+ -0.012859649024903774,
1324
+ -0.03279375657439232,
1325
+ -0.003217667108401656,
1326
+ -0.011349990032613277,
1327
+ -0.014766006730496883,
1328
+ -0.02999482862651348,
1329
+ -0.01112960185855627,
1330
+ 0.005955989938229322,
1331
+ -0.04085996374487877,
1332
+ -0.006898149382323027,
1333
+ 0.015592462383210659,
1334
+ 0.009526277892291546,
1335
+ 0.0027397002559155226,
1336
+ -0.009305889718234539,
1337
+ -0.02377988211810589,
1338
+ 0.0005423614638857543,
1339
+ 0.0023967211600393057,
1340
+ -0.033917736262083054,
1341
+ 0.015129647217690945,
1342
+ -0.01466683205217123,
1343
+ -0.0027617390733212233,
1344
+ -0.010578631423413754,
1345
+ -0.007113027852028608,
1346
+ 0.04535588249564171,
1347
+ 0.025675220414996147,
1348
+ -0.0012383059365674853,
1349
+ -0.01144916471093893,
1350
+ 0.006909168791025877,
1351
+ 0.010754941962659359,
1352
+ -0.019195808097720146,
1353
+ 0.006776935886591673,
1354
+ 0.021476825699210167,
1355
+ -0.008887152187526226,
1356
+ 0.0008009732118807733,
1357
+ 0.018479546532034874,
1358
+ 0.006876110564917326,
1359
+ 0.021686194464564323,
1360
+ 0.0036887468304485083,
1361
+ -0.02638046257197857,
1362
+ -0.0014683360932394862,
1363
+ 0.002840252360329032,
1364
+ 0.04220433160662651,
1365
+ -0.010622709058225155,
1366
+ -0.005259012337774038,
1367
+ 0.0077962311916053295,
1368
+ 0.03744394704699516,
1369
+ 0.041036274284124374,
1370
+ 0.00851800199598074,
1371
+ -0.010495985858142376,
1372
+ -0.004628151189535856,
1373
+ 0.019151730462908745,
1374
+ 0.03960375115275383,
1375
+ 0.024881822988390923,
1376
+ -0.038171228021383286,
1377
+ -0.026270268484950066,
1378
+ 0.024992017075419426,
1379
+ -0.0014352778671309352,
1380
+ -0.0024435536470264196,
1381
+ 0.010011131875216961,
1382
+ -0.012903726659715176,
1383
+ 0.05223199352622032,
1384
+ 0.0450473390519619,
1385
+ -0.01306901779025793,
1386
+ -0.019052555784583092,
1387
+ 0.025983763858675957,
1388
+ -0.004369195085018873,
1389
+ -0.014931297861039639,
1390
+ -0.02807745151221752,
1391
+ -0.0028622911777347326,
1392
+ -0.014600715599954128,
1393
+ -0.00919018592685461,
1394
+ 0.014534599147737026,
1395
+ 0.036518316715955734,
1396
+ 0.030766187235713005,
1397
+ -0.01835833303630352,
1398
+ -0.002413250273093581,
1399
+ 0.002840252360329032,
1400
+ -0.0014889974845573306,
1401
+ -0.010909213684499264,
1402
+ -0.03030337207019329,
1403
+ 0.0354604534804821,
1404
+ -0.006716329138725996,
1405
+ -0.008832055144011974,
1406
+ 0.0003970430407207459,
1407
+ 0.016529111191630363,
1408
+ 0.019559448584914207,
1409
+ 0.004085445310920477,
1410
+ -0.010556592606008053,
1411
+ -0.026600850746035576,
1412
+ -0.01240785326808691,
1413
+ 0.024705512449145317,
1414
+ -0.011338970623910427,
1415
+ -0.012947804294526577,
1416
+ -0.012308678589761257,
1417
+ 0.027812985703349113,
1418
+ -0.013906492851674557,
1419
+ 0.023978231474757195,
1420
+ 0.009851350449025631,
1421
+ -0.0073774936608970165,
1422
+ 0.00029373608413152397,
1423
+ -0.002633638447150588,
1424
+ -0.00390362530015409,
1425
+ 0.0005175677943043411,
1426
+ -0.025917647406458855,
1427
+ -0.013796298764646053,
1428
+ -0.026821238920092583,
1429
+ 0.02574133686721325,
1430
+ -0.010104796849191189,
1431
+ -0.03413812443614006,
1432
+ 0.004735590424388647,
1433
+ 0.011168169789016247,
1434
+ -0.02895900420844555,
1435
+ 0.029157353565096855,
1436
+ 0.03257336840033531,
1437
+ -0.013752221129834652,
1438
+ 0.05509703978896141,
1439
+ -0.00586783466860652,
1440
+ -0.009834821335971355,
1441
+ -0.025851530954241753,
1442
+ -0.022137990221381187,
1443
+ 0.02995075099170208,
1444
+ -0.02185148559510708,
1445
+ -0.009592394344508648,
1446
+ 0.002703887177631259,
1447
+ -0.0032231768127530813,
1448
+ -0.011493242345750332,
1449
+ -0.0029421818908303976,
1450
+ 0.03607754036784172,
1451
+ -0.003005543490871787,
1452
+ 0.008815526030957699,
1453
+ -0.03345492109656334,
1454
+ -0.033366765826940536,
1455
+ 0.0059890481643378735,
1456
+ -0.025212405249476433,
1457
+ -0.029840556904673576,
1458
+ 0.0153169771656394,
1459
+ 0.03596734628081322,
1460
+ 0.0012169558322057128,
1461
+ 0.0023250950034707785,
1462
+ 0.04707491025328636,
1463
+ 0.015901004895567894,
1464
+ 0.06378033012151718,
1465
+ 0.047868307679891586,
1466
+ 0.0022631108295172453,
1467
+ -0.025278521701693535,
1468
+ -0.005691524129360914,
1469
+ 0.0193170215934515,
1470
+ -0.001180454040877521,
1471
+ -0.01734454743564129,
1472
+ 0.021818427368998528,
1473
+ -0.00011733947758330032,
1474
+ 0.0032011379953473806,
1475
+ -0.008865113370120525,
1476
+ 0.02061731182038784,
1477
+ -0.06289877742528915,
1478
+ -0.03486540541052818,
1479
+ 0.009146108292043209,
1480
+ 0.012352756224572659,
1481
+ -0.048793938010931015,
1482
+ -0.005674995016306639,
1483
+ 0.04606112465262413,
1484
+ 0.03768637403845787,
1485
+ 0.0004948402638547122,
1486
+ 0.003311332082375884,
1487
+ -0.00838025938719511,
1488
+ -0.029796479269862175,
1489
+ 0.006727348547428846,
1490
+ 0.012760474346578121,
1491
+ 0.01807182841002941,
1492
+ -0.0028347426559776068,
1493
+ 0.0034793780650943518,
1494
+ -0.020694447681307793,
1495
+ -0.01464479323476553,
1496
+ -0.020749544724822044,
1497
+ -0.004245226737111807,
1498
+ 0.0450914166867733,
1499
+ -0.032683562487363815,
1500
+ -0.030038906261324883,
1501
+ -0.010292126797139645,
1502
+ 0.0019339061109349132,
1503
+ -0.03252929076552391,
1504
+ 0.03676074370741844,
1505
+ -0.0066998000256717205,
1506
+ 0.03640812262892723,
1507
+ -0.01871095411479473,
1508
+ -0.006573076825588942,
1509
+ 0.00764746917411685,
1510
+ -0.00009831377974478528,
1511
+ 0.01015989389270544,
1512
+ 0.0001398948224959895,
1513
+ -0.017135178670287132,
1514
+ 0.012672319076955318,
1515
+ 0.01702498458325863,
1516
+ -0.03288191184401512,
1517
+ -0.04597296938300133,
1518
+ 0.0008257668814621866,
1519
+ 0.024617357179522514,
1520
+ 0.05443587526679039,
1521
+ -0.04057345911860466,
1522
+ -0.013179211877286434,
1523
+ -0.012363775633275509,
1524
+ -0.016881732270121574,
1525
+ -0.009493219666182995,
1526
+ -0.01773022674024105,
1527
+ -0.044275980442762375,
1528
+ -0.017642071470618248,
1529
+ 0.002068893751129508,
1530
+ 0.028496189042925835,
1531
+ -0.005735601764172316,
1532
+ -0.011515281163156033,
1533
+ 0.01580183021724224,
1534
+ 0.014843142591416836,
1535
+ 0.033939775079488754,
1536
+ 0.004231452476233244,
1537
+ 0.033036183565855026,
1538
+ -0.006942227017134428,
1539
+ 0.019735759124159813,
1540
+ -0.0014600715367123485,
1541
+ 0.033961813896894455,
1542
+ -0.006479411851614714,
1543
+ 0.007818269543349743,
1544
+ 0.004165336024016142,
1545
+ 0.00620943633839488,
1546
+ -0.035526569932699203,
1547
+ -0.02444104664027691,
1548
+ 0.025058133527636528,
1549
+ -0.0044408212415874004,
1550
+ -0.03288191184401512,
1551
+ 0.007057930808514357,
1552
+ 0.009917466901242733,
1553
+ -0.01532799657434225,
1554
+ 0.03918501362204552,
1555
+ -0.015515326522290707,
1556
+ 0.02382395975291729,
1557
+ 0.016209548339247704,
1558
+ 0.010771471075713634,
1559
+ 0.008749409578740597,
1560
+ -0.030435604974627495,
1561
+ -0.011537319980561733,
1562
+ 0.014303191564977169
1563
+ ],
1564
+ "confidence": 0.9,
1565
+ "hasPlaybook": true
1566
+ }
1567
+ }
1568
+ };
1569
+
1570
+ const CACHED_SKILL_AFFORDANCES = {
1571
+ "StatisticalAnalysis": {
1572
+ "description": "Perform statistical analysis including mean, median, standard deviation",
1573
+ "embedding": [
1574
+ 0.012799951247870922,
1575
+ 0.021285559982061386,
1576
+ 0.07013008743524551,
1577
+ -0.03398645669221878,
1578
+ -0.021340589970350266,
1579
+ -0.00136955629568547,
1580
+ -0.00970176886767149,
1581
+ -0.03587948530912399,
1582
+ 0.002905577886849642,
1583
+ 0.03940139710903168,
1584
+ 0.0011941485572606325,
1585
+ -0.015430380590260029,
1586
+ -0.04457420855760574,
1587
+ 0.0439358614385128,
1588
+ 0.06779681891202927,
1589
+ 0.03746434673666954,
1590
+ 0.007451046723872423,
1591
+ -0.010521714575588703,
1592
+ -0.0043363552540540695,
1593
+ 0.030970819294452667,
1594
+ 0.04714960604906082,
1595
+ 0.029187852516770363,
1596
+ -0.006746664177626371,
1597
+ -0.03636375069618225,
1598
+ 0.02755896747112274,
1599
+ 0.018699156120419502,
1600
+ 0.010741833597421646,
1601
+ 0.011831425130367279,
1602
+ -0.0035962031688541174,
1603
+ -0.032423608005046844,
1604
+ -0.03002430684864521,
1605
+ -0.025093628093600273,
1606
+ -0.004369372967630625,
1607
+ -0.014032620936632156,
1608
+ 0.008017854765057564,
1609
+ 0.0015986182261258364,
1610
+ 0.015969673171639442,
1611
+ 0.010851893573999405,
1612
+ 0.018952293321490288,
1613
+ -0.03992968425154686,
1614
+ 0.009965912438929081,
1615
+ 0.0030293953604996204,
1616
+ -0.005354408174753189,
1617
+ -0.005822162143886089,
1618
+ 0.021263547241687775,
1619
+ -0.01937052048742771,
1620
+ 0.050407376140356064,
1621
+ -0.08250080794095993,
1622
+ 0.07462052255868912,
1623
+ 0.0221550315618515,
1624
+ -0.040479984134435654,
1625
+ -0.006592580582946539,
1626
+ 0.031058868393301964,
1627
+ -0.029870223253965378,
1628
+ 0.0033540716394782066,
1629
+ 0.052432477474212646,
1630
+ 0.04475030303001404,
1631
+ -0.0031284489668905735,
1632
+ 0.00506550120189786,
1633
+ -0.04736972600221634,
1634
+ 0.030596617609262466,
1635
+ 0.006900747772306204,
1636
+ 0.015661505982279778,
1637
+ 0.003312799148261547,
1638
+ -0.021307572722434998,
1639
+ -0.0300022941082716,
1640
+ -0.012876993045210838,
1641
+ 0.0013392898254096508,
1642
+ 0.012447760440409184,
1643
+ -0.004493190441280603,
1644
+ 0.003365077544003725,
1645
+ 0.011380180716514587,
1646
+ 0.03125697374343872,
1647
+ 0.009189991280436516,
1648
+ -0.018941286951303482,
1649
+ -0.002342897467315197,
1650
+ -0.0287916362285614,
1651
+ -0.05692291632294655,
1652
+ -0.021098459139466286,
1653
+ 0.01669606752693653,
1654
+ 0.016387900337576866,
1655
+ 0.0032275028061121702,
1656
+ 0.0012883872259408236,
1657
+ 0.017466485500335693,
1658
+ -0.017169324681162834,
1659
+ -0.011402192525565624,
1660
+ -0.03053058125078678,
1661
+ -0.0026373073924332857,
1662
+ -0.031961359083652496,
1663
+ -0.05199223756790161,
1664
+ -0.07506076246500015,
1665
+ -0.006240389309823513,
1666
+ 0.018181875348091125,
1667
+ 0.035791438072919846,
1668
+ 0.030464544892311096,
1669
+ -0.04758984595537186,
1670
+ 0.021978937089443207,
1671
+ -0.010593253187835217,
1672
+ -0.02566593885421753,
1673
+ -0.011072013527154922,
1674
+ -0.012161605060100555,
1675
+ 0.019260460510849953,
1676
+ 0.008370045572519302,
1677
+ 0.01538635604083538,
1678
+ 0.01568351686000824,
1679
+ 0.03625369071960449,
1680
+ -0.00001606829755473882,
1681
+ -0.0002892508346121758,
1682
+ -0.03581345081329346,
1683
+ 0.04314343258738518,
1684
+ -0.03312799334526062,
1685
+ -0.016597013920545578,
1686
+ -0.04899860918521881,
1687
+ -0.009090937674045563,
1688
+ -0.007825249806046486,
1689
+ 0.016872163861989975,
1690
+ 0.040876198559999466,
1691
+ -0.004435408860445023,
1692
+ 0.008348033763468266,
1693
+ -0.02643635682761669,
1694
+ -0.009476146660745144,
1695
+ 0.044222015887498856,
1696
+ 0.023971019312739372,
1697
+ -0.03136703372001648,
1698
+ -0.013273208402097225,
1699
+ -0.01351534016430378,
1700
+ -0.02036105841398239,
1701
+ -0.00025227764854207635,
1702
+ -0.015034165233373642,
1703
+ -0.0018861494027078152,
1704
+ -0.0332820750772953,
1705
+ -0.027602991089224815,
1706
+ 0.021131476387381554,
1707
+ -0.04391384869813919,
1708
+ -0.019975848495960236,
1709
+ -0.004908666014671326,
1710
+ 0.011996515095233917,
1711
+ 0.056130483746528625,
1712
+ -0.035791438072919846,
1713
+ 0.0056680780835449696,
1714
+ 0.019502591341733932,
1715
+ 0.051684070378541946,
1716
+ 0.006311927922070026,
1717
+ 0.0454326756298542,
1718
+ -0.026700500398874283,
1719
+ -0.07026215642690659,
1720
+ -0.05912410840392113,
1721
+ 0.040259864181280136,
1722
+ 0.02304651588201523,
1723
+ 0.00670264009386301,
1724
+ 0.010510708205401897,
1725
+ 0.036275699734687805,
1726
+ -0.06682829558849335,
1727
+ -0.03436066210269928,
1728
+ 0.023662850260734558,
1729
+ 0.016332870349287987,
1730
+ 0.04811813309788704,
1731
+ -0.07704184204339981,
1732
+ -0.006933765485882759,
1733
+ -0.022386157885193825,
1734
+ 0.022485211491584778,
1735
+ 0.004473929759114981,
1736
+ -0.04684143885970116,
1737
+ 0.0016632783226668835,
1738
+ -0.012436754070222378,
1739
+ -0.028835659846663475,
1740
+ -0.016288846731185913,
1741
+ -0.008700225502252579,
1742
+ -0.026524405926465988,
1743
+ -0.02606215327978134,
1744
+ 0.0032467632554471493,
1745
+ -0.022331127896904945,
1746
+ 0.0749727189540863,
1747
+ -0.08148825913667679,
1748
+ 0.0227163378149271,
1749
+ -0.022485211491584778,
1750
+ 0.013867530971765518,
1751
+ -0.01852305978536606,
1752
+ 0.002084256848320365,
1753
+ 0.010901420377194881,
1754
+ -0.016817133873701096,
1755
+ -0.00967425387352705,
1756
+ -0.02069123648107052,
1757
+ 0.004718812648206949,
1758
+ -0.010873905383050442,
1759
+ -0.022044971585273743,
1760
+ 0.005164554808288813,
1761
+ 0.009723780676722527,
1762
+ 0.011016983538866043,
1763
+ 0.041888751089572906,
1764
+ 0.023860959336161613,
1765
+ 0.006664119195193052,
1766
+ 0.0027968939393758774,
1767
+ 0.0011191703379154205,
1768
+ -0.00110403704456985,
1769
+ -0.03845488280057907,
1770
+ 0.04877849295735359,
1771
+ -0.01940353773534298,
1772
+ -0.023266635835170746,
1773
+ 0.014351794496178627,
1774
+ -0.005194821394979954,
1775
+ -0.018501047044992447,
1776
+ -0.013009064830839634,
1777
+ -0.02965010330080986,
1778
+ -0.047325700521469116,
1779
+ -0.04219691827893257,
1780
+ 0.002400678815320134,
1781
+ 0.01215059868991375,
1782
+ -0.014759015291929245,
1783
+ -0.0202840156853199,
1784
+ 0.003967654891312122,
1785
+ -0.012238646857440472,
1786
+ 0.0478539876639843,
1787
+ -0.014549901708960533,
1788
+ -0.0000450557199656032,
1789
+ 0.03240159526467323,
1790
+ -0.049042634665966034,
1791
+ 0.03125697374343872,
1792
+ 0.007759213913232088,
1793
+ 0.0063504488207399845,
1794
+ 0.019095370545983315,
1795
+ 0.024719424545764923,
1796
+ 0.06572769582271576,
1797
+ 0.012722909450531006,
1798
+ -0.019942831248044968,
1799
+ 0.010466684587299824,
1800
+ 0.04455219581723213,
1801
+ -0.020328039303421974,
1802
+ 0.05432550236582756,
1803
+ -0.06427490711212158,
1804
+ 0.03451474383473396,
1805
+ -0.004069460090249777,
1806
+ -0.029341936111450195,
1807
+ 0.060224708169698715,
1808
+ -0.016332870349287987,
1809
+ 0.0005183127359487116,
1810
+ 0.006818202789872885,
1811
+ 0.009481649845838547,
1812
+ -0.029716137796640396,
1813
+ 0.03882908821105957,
1814
+ -0.0047353217378258705,
1815
+ -0.018930280581116676,
1816
+ 0.008237973786890507,
1817
+ 0.06242590397596359,
1818
+ -0.0165419839322567,
1819
+ 0.005368165206164122,
1820
+ -0.025379784405231476,
1821
+ -0.007863771170377731,
1822
+ -0.0012195998569950461,
1823
+ 0.0029716137796640396,
1824
+ 0.011545269750058651,
1825
+ -0.04316544160246849,
1826
+ 0.023002492263913155,
1827
+ -0.05555817484855652,
1828
+ -0.008546140976250172,
1829
+ -0.02175881713628769,
1830
+ -0.0034448709338903427,
1831
+ 0.03990767523646355,
1832
+ 0.03629771247506142,
1833
+ 0.004289579577744007,
1834
+ -0.05058347061276436,
1835
+ -0.048206180334091187,
1836
+ -0.0010840888135135174,
1837
+ 0.019414544105529785,
1838
+ -0.009509163908660412,
1839
+ -0.017059264704585075,
1840
+ 0.020295022055506706,
1841
+ 0.035153090953826904,
1842
+ -0.06295418739318848,
1843
+ -0.033788349479436874,
1844
+ 0.027933171018958092,
1845
+ 0.01640991121530533,
1846
+ -0.007368501741439104,
1847
+ 0.037002094089984894,
1848
+ 0.02357480302453041,
1849
+ 0.04342958703637123,
1850
+ 0.012238646857440472,
1851
+ 0.010323606431484222,
1852
+ 0.015012153424322605,
1853
+ -0.03123496286571026,
1854
+ -0.021131476387381554,
1855
+ -0.037134166806936264,
1856
+ 0.019557621330022812,
1857
+ 0.05819960683584213,
1858
+ -0.003808068111538887,
1859
+ 0.025005580857396126,
1860
+ 0.012293676845729351,
1861
+ 0.04886654019355774,
1862
+ -0.01977774128317833,
1863
+ 0.002147541381418705,
1864
+ 0.007599627133458853,
1865
+ -0.039731577038764954,
1866
+ 0.004421651363372803,
1867
+ -0.05106773599982262,
1868
+ -0.012612850405275822,
1869
+ -0.004468426574021578,
1870
+ 0.017378438264131546,
1871
+ 0.01095645036548376,
1872
+ -0.030552592128515244,
1873
+ -0.004809611942619085,
1874
+ 0.014659961685538292,
1875
+ 0.007269448135048151,
1876
+ -0.04089821130037308,
1877
+ -0.0021516685374081135,
1878
+ -0.017411455512046814,
1879
+ -0.03174123913049698,
1880
+ 0.02306852862238884,
1881
+ 0.0014858068898320198,
1882
+ -0.01645393669605255,
1883
+ -0.01246977224946022,
1884
+ -0.04006175696849823,
1885
+ -0.008777267299592495,
1886
+ 0.050055183470249176,
1887
+ 0.008518625982105732,
1888
+ -0.04369372874498367,
1889
+ -0.022760361433029175,
1890
+ 0.05802351236343384,
1891
+ -0.014164692722260952,
1892
+ 0.04083217680454254,
1893
+ -0.047061558812856674,
1894
+ -0.016685061156749725,
1895
+ -0.06392271816730499,
1896
+ 0.027625003829598427,
1897
+ -0.004685794934630394,
1898
+ -0.015221267007291317,
1899
+ -0.04017181694507599,
1900
+ -0.020085908472537994,
1901
+ 0.010466684587299824,
1902
+ 0.02916583977639675,
1903
+ 0.007280454039573669,
1904
+ 0.006399975623935461,
1905
+ -0.038014646619558334,
1906
+ 0.015034165233373642,
1907
+ 0.041624605655670166,
1908
+ 0.04014980420470238,
1909
+ 0.006311927922070026,
1910
+ -0.021043429151177406,
1911
+ 0.021120470017194748,
1912
+ -0.011204085312783718,
1913
+ 0.05987251549959183,
1914
+ -0.0428132526576519,
1915
+ -0.04530060291290283,
1916
+ -0.029980281367897987,
1917
+ 0.06079701706767082,
1918
+ 0.04021584242582321,
1919
+ -0.03334810957312584,
1920
+ -0.02097739279270172,
1921
+ 0.030288448557257652,
1922
+ -0.038146715611219406,
1923
+ 0.023486755788326263,
1924
+ -0.023530779406428337,
1925
+ 0.013317232951521873,
1926
+ 0.003436616389080882,
1927
+ 0.039379388093948364,
1928
+ 0.008320518769323826,
1929
+ -0.025027591735124588,
1930
+ 0.032797813415527344,
1931
+ -0.03422858938574791,
1932
+ -0.0007662911666557193,
1933
+ -0.0021241535432636738,
1934
+ -0.0028202817775309086,
1935
+ 0.0017554534133523703,
1936
+ 0.04466225579380989,
1937
+ -0.011919473297894001,
1938
+ 0.04798606038093567,
1939
+ 0.026480380445718765,
1940
+ -0.007968327961862087,
1941
+ -0.02041608840227127,
1942
+ -0.007027316372841597,
1943
+ -0.018908269703388214,
1944
+ 0.05436952784657478,
1945
+ -0.03174123913049698,
1946
+ -0.026216238737106323,
1947
+ -0.01755453459918499,
1948
+ -0.008293003775179386,
1949
+ -0.017862701788544655,
1950
+ 0.044486161321401596,
1951
+ 0.02566593885421753,
1952
+ 0.008727739565074444,
1953
+ 0.05582231655716896,
1954
+ 0.006851220969110727,
1955
+ 0.016442930325865746,
1956
+ 0.010202541016042233,
1957
+ -0.01413167454302311,
1958
+ 0.05062749609351158,
1959
+ 0.050187256187200546,
1960
+ 0.026612453162670135,
1961
+ 0.03896116092801094,
1962
+ -0.0022300861310213804,
1963
+ 0.0433635488152504,
1964
+ -0.018512053415179253,
1965
+ 0.024125102907419205,
1966
+ 0.014714991673827171,
1967
+ 0.0034091013949364424,
1968
+ -0.010064966045320034,
1969
+ 0.007495070341974497,
1970
+ 0.005684587173163891,
1971
+ 0.02333267219364643,
1972
+ 0.01246977224946022,
1973
+ 0.016519971191883087,
1974
+ -0.009448631666600704,
1975
+ -0.04021584242582321,
1976
+ 0.005544261075556278,
1977
+ -0.00786927342414856,
1978
+ 0.03361225500702858,
1979
+ 0.02788914553821087,
1980
+ 0.009090937674045563,
1981
+ 0.031807273626327515,
1982
+ 0.013713447377085686,
1983
+ -0.028329385444521904,
1984
+ -0.0006686131237074733,
1985
+ -0.024367233738303185,
1986
+ 0.012260658666491508,
1987
+ -0.04613705724477768,
1988
+ 0.022606277838349342,
1989
+ -0.034162554889917374,
1990
+ -0.007929806597530842,
1991
+ 0.06141335144639015,
1992
+ -0.004460172262042761,
1993
+ 0.021582720801234245,
1994
+ -0.036892034113407135,
1995
+ 0.020680231973528862,
1996
+ -0.01785169541835785,
1997
+ 0.007456549443304539,
1998
+ -0.028241338208317757,
1999
+ 0.024147113785147667,
2000
+ 0.0032137453090399504,
2001
+ -0.03642978519201279,
2002
+ -0.005926718935370445,
2003
+ -0.04899860918521881,
2004
+ 0.01086289994418621,
2005
+ 0.017653588205575943,
2006
+ 0.03370030224323273,
2007
+ -0.019194424152374268,
2008
+ -0.019711704924702644,
2009
+ -0.03460279107093811,
2010
+ -0.006840215064585209,
2011
+ 0.008012351579964161,
2012
+ 0.006554059684276581,
2013
+ -0.00476283673197031,
2014
+ -0.013251196593046188,
2015
+ 0.005602042656391859,
2016
+ -0.008573655970394611,
2017
+ -0.0545896477997303,
2018
+ -0.023860959336161613,
2019
+ 0.006620095111429691,
2020
+ -0.00551949767395854,
2021
+ -0.030464544892311096,
2022
+ 0.0012416117824614048,
2023
+ 0.01846802979707718,
2024
+ 0.02940797060728073,
2025
+ -0.00573961716145277,
2026
+ 0.04034791141748428,
2027
+ 0.005549764260649681,
2028
+ -0.003012886270880699,
2029
+ 0.009283541701734066,
2030
+ 0.046709366142749786,
2031
+ -0.015650499612092972,
2032
+ 0.06273406744003296,
2033
+ 0.04811813309788704,
2034
+ 0.023882970213890076,
2035
+ 0.040479984134435654,
2036
+ -0.03229153901338577,
2037
+ 0.04340757429599762,
2038
+ 0.022419175133109093,
2039
+ -0.02108745276927948,
2040
+ -0.027514943853020668,
2041
+ 0.005456213373690844,
2042
+ 0.0022493465803563595,
2043
+ 0.02667848952114582,
2044
+ 0.04338556155562401,
2045
+ 0.0029468503780663013,
2046
+ -0.026128189638257027,
2047
+ 0.031323011964559555,
2048
+ -0.0016137514030560851,
2049
+ -0.017950749024748802,
2050
+ 0.01637689396739006,
2051
+ -0.045212555676698685,
2052
+ -0.04851434752345085,
2053
+ -0.022044971585273743,
2054
+ -0.0004374875861685723,
2055
+ -0.01736743189394474,
2056
+ 0.0041932775638997555,
2057
+ 0.03418456390500069,
2058
+ -0.021098459139466286,
2059
+ 0.07660160213708878,
2060
+ 0.035527296364307404,
2061
+ -0.014461854472756386,
2062
+ 0.004174016881734133,
2063
+ -0.011688347905874252,
2064
+ -0.044970422983169556,
2065
+ -0.018831226974725723,
2066
+ 0.06876534968614578,
2067
+ -0.008447087369859219,
2068
+ -0.02157171629369259,
2069
+ 0.023376695811748505,
2070
+ -0.03370030224323273,
2071
+ 0.03310598060488701,
2072
+ 0.01835796982049942,
2073
+ 0.0029496019706130028,
2074
+ 0.010785858146846294,
2075
+ -0.02306852862238884,
2076
+ -0.002407557563856244,
2077
+ 0.05815558508038521,
2078
+ 0.004586740862578154,
2079
+ 0.05727510526776314,
2080
+ -0.008810284547507763,
2081
+ -0.018765190616250038,
2082
+ 0.016046714037656784,
2083
+ 0.026392333209514618,
2084
+ 0.002421315060928464,
2085
+ 0.044354088604450226,
2086
+ 0.0115892942994833,
2087
+ -0.016200797632336617,
2088
+ -0.030178390443325043,
2089
+ 0.0024901023134589195,
2090
+ -0.004391384776681662,
2091
+ -0.013548358343541622,
2092
+ 0.010285085998475552,
2093
+ -0.011138048954308033,
2094
+ 0.01197450328618288,
2095
+ 0.01886424422264099,
2096
+ -0.010108990594744682,
2097
+ 0.015232272446155548,
2098
+ -0.013361256569623947,
2099
+ -0.06295418739318848,
2100
+ 0.01611275039613247,
2101
+ -0.09473945200443268,
2102
+ 0.0027501184958964586,
2103
+ -0.05062749609351158,
2104
+ 0.02630428597331047,
2105
+ -0.00598725164309144,
2106
+ -0.015969673171639442,
2107
+ 0.03125697374343872,
2108
+ -0.012502790428698063,
2109
+ -0.03425060212612152,
2110
+ 0.020482122898101807,
2111
+ 0.004765588324517012,
2112
+ -0.025952095165848732,
2113
+ -0.05194821208715439,
2114
+ 0.01891927421092987,
2115
+ 0.02355279214680195,
2116
+ 0.004454669076949358,
2117
+ -0.03669392690062523,
2118
+ 0.01095645036548376,
2119
+ -0.007346489932388067,
2120
+ -0.0023346429225057364,
2121
+ 0.019007323309779167,
2122
+ 0.01071982178837061,
2123
+ -0.042505085468292236,
2124
+ 0.012954034842550755,
2125
+ -0.02742689475417137,
2126
+ 0.032049406319856644,
2127
+ 0.004870145116001368,
2128
+ 0.010444672778248787,
2129
+ 0.029606079682707787,
2130
+ -0.05771534517407417,
2131
+ -0.020008867606520653,
2132
+ -0.002382794162258506,
2133
+ -0.05692291632294655,
2134
+ 0.010037451051175594,
2135
+ 0.017356425523757935,
2136
+ 0.05097968503832817,
2137
+ 0.012579832226037979,
2138
+ -0.0032302543986588717,
2139
+ -0.008914841338992119,
2140
+ 0.02667848952114582,
2141
+ -0.03750837221741676,
2142
+ 0.013196166604757309,
2143
+ -0.029209863394498825,
2144
+ 0.014263746328651905,
2145
+ 0.039269328117370605,
2146
+ -0.01753252185881138,
2147
+ -0.04565279558300972,
2148
+ -0.05247649922966957,
2149
+ -0.005183815490454435,
2150
+ -0.02170378714799881,
2151
+ -0.04803008586168289,
2152
+ 0.016663050279021263,
2153
+ -0.02643635682761669,
2154
+ -0.010389642789959908,
2155
+ 0.028505481779575348,
2156
+ 0.0014926856383681297,
2157
+ 0.003136703511700034,
2158
+ -0.04600498452782631,
2159
+ 0.029848210513591766,
2160
+ 0.07893487066030502,
2161
+ 0.04714960604906082,
2162
+ -0.05001116171479225,
2163
+ -0.018126845359802246,
2164
+ 0.01208456326276064,
2165
+ -0.01774163544178009,
2166
+ 0.0027693789452314377,
2167
+ 0.002506611403077841,
2168
+ -0.004212537780404091,
2169
+ 0.005549764260649681,
2170
+ 0.01333924476057291,
2171
+ -0.05877191945910454,
2172
+ -0.0006517602014355361,
2173
+ 0.05432550236582756,
2174
+ -0.0043886336497962475,
2175
+ 0.014252740889787674,
2176
+ -0.009041409939527512,
2177
+ -0.0056295571848750114,
2178
+ -0.027713051065802574,
2179
+ 0.038498908281326294,
2180
+ 0.02394900657236576,
2181
+ 0.022044971585273743,
2182
+ -0.02138461358845234,
2183
+ 0.01561748143285513,
2184
+ -0.024851497262716293,
2185
+ -0.0016949204728007317,
2186
+ -0.017389444634318352,
2187
+ -0.022243080660700798,
2188
+ -0.014263746328651905,
2189
+ 0.043957874178886414,
2190
+ -0.0010125498520210385,
2191
+ 0.021417632699012756,
2192
+ 0.013416286557912827,
2193
+ 0.010505205020308495,
2194
+ -0.01871016062796116,
2195
+ 0.01873217336833477,
2196
+ -0.03138904646039009,
2197
+ -0.013790489174425602,
2198
+ 0.031168928369879723,
2199
+ -0.015012153424322605,
2200
+ 0.022892432287335396,
2201
+ -0.018479036167263985,
2202
+ 0.01303107663989067,
2203
+ 0.03711215406656265,
2204
+ -0.04195478558540344,
2205
+ 0.024081077426671982,
2206
+ 0.014935111626982689,
2207
+ -0.0456087701022625,
2208
+ -0.006735658273100853,
2209
+ -0.006058790720999241,
2210
+ -0.000703006808180362,
2211
+ -0.021428637206554413,
2212
+ -0.04140448570251465,
2213
+ 0.01253580767661333,
2214
+ 0.04987908899784088,
2215
+ -0.004980204626917839,
2216
+ -0.015155230648815632,
2217
+ 0.003040401265025139,
2218
+ 0.040259864181280136,
2219
+ -0.003874104004353285,
2220
+ -0.015518427826464176,
2221
+ -0.04006175696849823,
2222
+ -0.04028187692165375,
2223
+ -0.017081277444958687,
2224
+ -0.061457376927137375,
2225
+ -0.024763448163866997,
2226
+ -0.012502790428698063,
2227
+ -0.023002492263913155,
2228
+ 0.01289900578558445,
2229
+ -0.02379492297768593,
2230
+ 0.010565738193690777,
2231
+ -0.012832969427108765,
2232
+ -0.020680231973528862,
2233
+ 0.010031947866082191,
2234
+ 0.03372231498360634,
2235
+ 0.025599902495741844,
2236
+ -0.0029248385690152645,
2237
+ 0.022033967077732086,
2238
+ 0.03896116092801094,
2239
+ 0.03352420777082443,
2240
+ -0.022011954337358475,
2241
+ 0.0224301815032959,
2242
+ 0.031961359083652496,
2243
+ 0.025753986090421677,
2244
+ -0.003918128088116646,
2245
+ 0.04723765328526497,
2246
+ -0.012546814046800137,
2247
+ 0.01937052048742771,
2248
+ -0.02041608840227127,
2249
+ 0.026480380445718765,
2250
+ 0.01457191351801157,
2251
+ 0.015837600454688072,
2252
+ -0.013163148425519466,
2253
+ 0.03957749530673027,
2254
+ 0.03959950804710388,
2255
+ 0.02454333007335663,
2256
+ -0.015298308804631233,
2257
+ 0.03240159526467323,
2258
+ 0.008958865888416767,
2259
+ 0.008083890192210674,
2260
+ 0.026964643970131874,
2261
+ 0.02991424687206745,
2262
+ 0.01549641601741314,
2263
+ -0.03077271208167076,
2264
+ 0.008226968348026276,
2265
+ -0.01383451372385025,
2266
+ 0.03433864936232567,
2267
+ -0.021098459139466286,
2268
+ -0.03537321090698242,
2269
+ 0.014230729080736637,
2270
+ -0.0014940614346414804,
2271
+ 0.015419374220073223,
2272
+ 0.03559333086013794,
2273
+ -0.0338323749601841,
2274
+ 0.018765190616250038,
2275
+ 0.015914643183350563,
2276
+ -0.03867500275373459,
2277
+ -0.01160029973834753,
2278
+ -0.02207799069583416,
2279
+ 0.007137376349419355,
2280
+ -0.022782372310757637,
2281
+ -0.023838946595788002,
2282
+ 0.024873508140444756,
2283
+ -0.030090341344475746,
2284
+ 0.007093352265655994,
2285
+ 0.012480778619647026,
2286
+ -0.006999801378697157,
2287
+ 0.0009355080546811223,
2288
+ -0.0027762576937675476,
2289
+ -0.01377948373556137,
2290
+ 0.000771106278989464,
2291
+ -0.008017854765057564,
2292
+ 0.016949204728007317,
2293
+ -0.020306028425693512,
2294
+ -0.007896788418293,
2295
+ 0.0174774918705225,
2296
+ -0.028109265491366386,
2297
+ -0.001084776595234871,
2298
+ 0.030596617609262466,
2299
+ 0.021120470017194748,
2300
+ -0.026106178760528564,
2301
+ 0.0257980115711689,
2302
+ 0.013449303805828094,
2303
+ -0.03301793336868286,
2304
+ 0.030112354084849358,
2305
+ 0.003403598442673683,
2306
+ 0.005189318209886551,
2307
+ -0.014615938067436218,
2308
+ 0.004435408860445023,
2309
+ -0.03554930537939072,
2310
+ 0.01830293983221054,
2311
+ -0.00003619934796006419,
2312
+ 0.009894373826682568,
2313
+ 0.013108119368553162,
2314
+ 0.011523257941007614,
2315
+ -0.01611275039613247,
2316
+ -0.021054433658719063,
2317
+ -0.03526315093040466,
2318
+ 0.01650896668434143,
2319
+ -0.01878720335662365,
2320
+ 0.016850151121616364,
2321
+ 0.027691038325428963,
2322
+ 0.003879606956616044,
2323
+ -0.02469741366803646,
2324
+ 0.009844847023487091,
2325
+ 0.004894908517599106,
2326
+ -0.005626806057989597,
2327
+ 0.011523257941007614,
2328
+ 0.02480747364461422,
2329
+ -0.07369602471590042,
2330
+ -0.03808068111538887,
2331
+ -0.012436754070222378,
2332
+ 0.029363946989178658,
2333
+ 0.0257980115711689,
2334
+ 0.034404683858156204,
2335
+ 0.017818676307797432,
2336
+ 0.01837998256087303,
2337
+ 0.04052400961518288,
2338
+ -0.012326694093644619,
2339
+ -0.011996515095233917,
2340
+ 0.04043596237897873,
2341
+ -0.022243080660700798,
2342
+ -0.01755453459918499,
2343
+ -0.03176325187087059,
2344
+ 0.0010703313164412975,
2345
+ -0.043473608791828156,
2346
+ 0.0014266498619690537,
2347
+ 0.008815787732601166,
2348
+ 0.02063620649278164,
2349
+ 0.048690441995859146,
2350
+ 0.0024240664206445217,
2351
+ -0.015364344231784344,
2352
+ -0.02304651588201523,
2353
+ 0.03874104097485542,
2354
+ -0.012634862214326859,
2355
+ -0.02295846864581108,
2356
+ 0.034536756575107574,
2357
+ -0.006807196885347366,
2358
+ -0.018479036167263985,
2359
+ 0.01891927421092987,
2360
+ 0.028725599870085716,
2361
+ -0.01637689396739006,
2362
+ 0.023398708552122116,
2363
+ -0.003703511320054531,
2364
+ 0.014461854472756386,
2365
+ 0.01289900578558445,
2366
+ 0.019062353298068047,
2367
+ -0.007241933140903711,
2368
+ -0.02172579988837242,
2369
+ -0.032577693462371826,
2370
+ 0.0017719623865559697,
2371
+ -0.04776594042778015,
2372
+ -0.0030018803663551807,
2373
+ 0.008744249120354652,
2374
+ -0.03583546355366707,
2375
+ -0.012271665036678314,
2376
+ 0.00454271724447608,
2377
+ -0.007880279794335365,
2378
+ 0.014241734519600868,
2379
+ -0.03693605959415436,
2380
+ -0.005838670767843723,
2381
+ 0.008529632352292538,
2382
+ -0.013911555521190166,
2383
+ 0.009679757058620453,
2384
+ 0.03488894924521446,
2385
+ -0.00784175843000412,
2386
+ -0.0024969810619950294,
2387
+ 0.029474006965756416,
2388
+ -0.0009134961292147636,
2389
+ -0.018534066155552864,
2390
+ -0.022232074290513992,
2391
+ 0.01589263044297695,
2392
+ 0.003942891489714384,
2393
+ 0.012128586880862713,
2394
+ 0.019205430522561073,
2395
+ -0.04417799413204193,
2396
+ 0.03114691562950611,
2397
+ 0.004446414764970541,
2398
+ 0.007142879068851471,
2399
+ 0.026150202378630638,
2400
+ 0.008287500590085983,
2401
+ 0.001822864986024797,
2402
+ -0.010928935371339321,
2403
+ 0.0311249028891325,
2404
+ -0.0010565738193690777,
2405
+ 0.008694722317159176,
2406
+ -0.0013296596007421613,
2407
+ -0.006691634189337492,
2408
+ 0.05969642102718353,
2409
+ -0.005423195194453001,
2410
+ -0.01605772040784359,
2411
+ 0.012887999415397644,
2412
+ 0.012106575071811676,
2413
+ -0.003874104004353285,
2414
+ 0.041976798325777054,
2415
+ 0.04776594042778015,
2416
+ 0.021505679935216904,
2417
+ -0.01407664455473423,
2418
+ 0.016387900337576866,
2419
+ -0.017840689048171043,
2420
+ 0.00967425387352705,
2421
+ 0.020966386422514915,
2422
+ -0.030288448557257652,
2423
+ 0.018027789890766144,
2424
+ -0.017598558217287064,
2425
+ -0.004240052774548531,
2426
+ 0.021054433658719063,
2427
+ 0.006548556499183178,
2428
+ 0.026876596733927727,
2429
+ 0.05001116171479225,
2430
+ 0.0020677479915320873,
2431
+ 0.006273407023400068,
2432
+ 0.00923401489853859,
2433
+ 0.007098855450749397,
2434
+ -0.047457773238420486,
2435
+ 0.004639019258320332,
2436
+ -0.009366086684167385,
2437
+ -0.07717391103506088,
2438
+ -0.009278038516640663,
2439
+ -0.02320059947669506,
2440
+ 0.011644324287772179,
2441
+ -0.006587077397853136,
2442
+ -0.0038245772011578083,
2443
+ 0.01830293983221054,
2444
+ -0.023772910237312317,
2445
+ 0.010923432186245918,
2446
+ -0.04316544160246849,
2447
+ -0.00006741160905221477,
2448
+ 0.00033000734401866794,
2449
+ -0.02951803058385849,
2450
+ -0.01008697785437107,
2451
+ 0.013878537341952324,
2452
+ -0.020107921212911606,
2453
+ -0.003598954528570175,
2454
+ 0.002684082603082061,
2455
+ -0.029341936111450195,
2456
+ 0.020405082032084465,
2457
+ 0.006697137374430895,
2458
+ -0.02234213426709175,
2459
+ -0.00032261270098388195,
2460
+ 0.04274721443653107,
2461
+ 0.016718080267310143,
2462
+ -0.0067411609925329685,
2463
+ 0.018699156120419502,
2464
+ 0.053136859089136124,
2465
+ 0.06665220111608505,
2466
+ 0.007065837271511555,
2467
+ -0.006405478809028864,
2468
+ -0.00253275060094893,
2469
+ 0.000008512435670127161,
2470
+ 0.0167290847748518,
2471
+ 0.004559225868433714,
2472
+ -0.009283541701734066,
2473
+ -0.023993030190467834,
2474
+ -0.013009064830839634,
2475
+ -0.02480747364461422,
2476
+ 0.014869075268507004,
2477
+ 0.003645729972049594,
2478
+ -0.011721366085112095,
2479
+ -0.01526529062539339,
2480
+ 0.006388969719409943,
2481
+ -0.0013021447230130434,
2482
+ 0.013746465556323528,
2483
+ 0.008584662340581417,
2484
+ -0.014637949876487255,
2485
+ -0.006570568308234215,
2486
+ 0.034690842032432556,
2487
+ 0.0022438436280936003,
2488
+ -0.01680612750351429,
2489
+ -0.006686131004244089,
2490
+ -0.031961359083652496,
2491
+ -0.015430380590260029,
2492
+ 0.011083018966019154,
2493
+ -0.018368976190686226,
2494
+ -0.01686115749180317,
2495
+ -0.03099283203482628,
2496
+ -0.007390513550490141,
2497
+ -0.060356780886650085,
2498
+ -0.01494611706584692,
2499
+ -0.005087513010948896,
2500
+ -0.004473929759114981,
2501
+ 0.0034586284309625626,
2502
+ 0.0100484574213624,
2503
+ -0.045080482959747314,
2504
+ 0.00271022180095315,
2505
+ -0.03163117915391922,
2506
+ 0.039137255400419235,
2507
+ -0.007186903152614832,
2508
+ 0.02529173530638218,
2509
+ 0.05498586222529411,
2510
+ 0.01036763098090887,
2511
+ -0.0067411609925329685,
2512
+ 0.022914445027709007,
2513
+ 0.02788914553821087,
2514
+ -0.017037251964211464,
2515
+ -0.0021833106875419617,
2516
+ -0.018457023426890373,
2517
+ -0.016795121133327484,
2518
+ 0.009564193896949291,
2519
+ -0.022066984325647354,
2520
+ 0.05595438927412033,
2521
+ 0.012271665036678314,
2522
+ -0.020614195615053177,
2523
+ 0.006322933826595545,
2524
+ -0.0398196242749691,
2525
+ -0.04338556155562401,
2526
+ 0.045080482959747314,
2527
+ -0.011611306108534336,
2528
+ -0.02090035006403923,
2529
+ -0.016608020290732384,
2530
+ 0.006603586487472057,
2531
+ -0.04736972600221634,
2532
+ 0.048910561949014664,
2533
+ 0.007258442230522633,
2534
+ -0.02641434594988823,
2535
+ -0.017191337421536446,
2536
+ -0.008727739565074444,
2537
+ -0.0026827070396393538,
2538
+ -0.026084166020154953,
2539
+ 0.012711904011666775,
2540
+ 0.03605557978153229,
2541
+ 0.04338556155562401,
2542
+ -0.00675767008215189,
2543
+ -0.018203886225819588,
2544
+ 0.031102892011404037,
2545
+ 0.005761628970503807,
2546
+ -0.012656874023377895,
2547
+ 0.02419113740324974,
2548
+ 0.01109402533620596,
2549
+ -0.0041052293963730335,
2550
+ -0.0015958667499944568,
2551
+ -0.02716275118291378,
2552
+ -0.03499900922179222,
2553
+ 0.0031752244103699923,
2554
+ -0.006559562403708696,
2555
+ 0.019733717665076256,
2556
+ 0.0454326756298542,
2557
+ 0.02839542180299759,
2558
+ -0.009024901315569878,
2559
+ 0.01314113661646843,
2560
+ 0.043209467083215714,
2561
+ -0.027602991089224815,
2562
+ 0.023090539500117302,
2563
+ 0.023618826642632484,
2564
+ 0.03226952627301216,
2565
+ 0.02007490210235119,
2566
+ -0.01699322834610939,
2567
+ 0.026392333209514618,
2568
+ 0.0006617343751713634,
2569
+ 0.004229046870023012,
2570
+ -0.0024240664206445217,
2571
+ -0.00598725164309144,
2572
+ -0.016288846731185913,
2573
+ 0.0068457177840173244,
2574
+ 0.014153686352074146,
2575
+ 0.0029330928809940815,
2576
+ 0.012700897641479969,
2577
+ -0.02159372717142105,
2578
+ -0.007429034449160099,
2579
+ -0.014659961685538292,
2580
+ 0.012546814046800137,
2581
+ 0.015078188851475716,
2582
+ 0.026150202378630638,
2583
+ 0.020250998437404633,
2584
+ -0.013207172974944115,
2585
+ 0.008375548757612705,
2586
+ -0.07536893337965012,
2587
+ -0.0026207983028143644,
2588
+ 0.013240190222859383,
2589
+ 0.009800822474062443,
2590
+ 0.019623657688498497,
2591
+ -0.01059875637292862,
2592
+ 0.024983568117022514,
2593
+ -0.024345220997929573,
2594
+ 0.013075101189315319,
2595
+ -0.00830951239913702,
2596
+ 0.03297390788793564,
2597
+ -0.03766245394945145,
2598
+ -0.03396444767713547,
2599
+ 0.03149910643696785,
2600
+ 0.017543528228998184,
2601
+ -0.061457376927137375,
2602
+ 0.022518228739500046,
2603
+ 0.03136703372001648,
2604
+ -0.006069796625524759,
2605
+ 0.00476283673197031,
2606
+ 0.0013159021036699414,
2607
+ 0.012921017594635487,
2608
+ -0.020779285579919815,
2609
+ 0.04811813309788704,
2610
+ -0.04045797139406204,
2611
+ -0.02175881713628769,
2612
+ -0.016068726778030396,
2613
+ -0.006212874315679073,
2614
+ -0.026150202378630638,
2615
+ -0.022485211491584778,
2616
+ 0.0014238982694223523,
2617
+ 0.01755453459918499,
2618
+ 0.019447561353445053,
2619
+ 0.0006228695274330676,
2620
+ 0.0026978401001542807,
2621
+ -0.00022923387587070465,
2622
+ -0.020107921212911606,
2623
+ 0.0033210536930710077,
2624
+ -0.005684587173163891,
2625
+ 0.023134564980864525,
2626
+ 0.01549641601741314,
2627
+ -0.031939346343278885,
2628
+ -0.020383069291710854,
2629
+ 0.005368165206164122,
2630
+ 0.008876320905983448,
2631
+ -0.009465140290558338,
2632
+ -0.03277580067515373,
2633
+ -0.00772069301456213,
2634
+ -0.021989943459630013,
2635
+ 0.027250800281763077,
2636
+ -0.038873109966516495,
2637
+ -0.02020697481930256,
2638
+ -0.0062073711305856705,
2639
+ -0.01351534016430378,
2640
+ 0.025775998830795288,
2641
+ -0.019865788519382477,
2642
+ 0.004757333546876907,
2643
+ -0.0019040340557694435,
2644
+ 0.004438160452991724,
2645
+ -0.022892432287335396,
2646
+ 0.04512450844049454,
2647
+ 0.015331326052546501,
2648
+ 0.02157171629369259,
2649
+ -0.006873232778161764,
2650
+ 0.012513795867562294,
2651
+ -0.017136307433247566,
2652
+ 0.007847261615097523,
2653
+ 0.014120669104158878,
2654
+ 0.011798407882452011,
2655
+ -0.007737202104181051,
2656
+ -0.0011012855684384704,
2657
+ 0.0005977621185593307,
2658
+ -0.02237515151500702,
2659
+ 0.03880707547068596,
2660
+ -0.017939742654561996,
2661
+ 0.006515538319945335,
2662
+ -0.00429508276283741,
2663
+ 0.02742689475417137,
2664
+ -0.025511855259537697,
2665
+ -0.020559165626764297,
2666
+ -0.027008667588233948,
2667
+ -0.0269206203520298,
2668
+ 0.020052891224622726,
2669
+ 0.005552515387535095,
2670
+ 0.03623167797923088,
2671
+ 0.0010159892262890935,
2672
+ -0.0036759963259100914,
2673
+ 0.02191290073096752,
2674
+ 0.007120867259800434,
2675
+ -0.013427291996777058,
2676
+ 0.03301793336868286,
2677
+ -0.014803039841353893,
2678
+ 0.008193950168788433,
2679
+ -0.02480747364461422,
2680
+ 0.007401519920676947,
2681
+ 0.028703588992357254,
2682
+ -0.005943227559328079,
2683
+ 0.046709366142749786,
2684
+ 0.0448603630065918,
2685
+ -0.0046747890301048756,
2686
+ -0.029363946989178658,
2687
+ -0.007148382253944874,
2688
+ -0.016101744025945663,
2689
+ -0.0009609594126231968,
2690
+ 0.038146715611219406,
2691
+ 0.008826794102787971,
2692
+ -0.010554731823503971,
2693
+ 0.021769823506474495,
2694
+ -0.02175881713628769,
2695
+ -0.054897814989089966,
2696
+ 0.007340986747294664,
2697
+ 0.02678854949772358,
2698
+ -0.022914445027709007,
2699
+ -0.004083217587321997,
2700
+ 0.007649154402315617,
2701
+ -0.014252740889787674,
2702
+ 0.013999602757394314,
2703
+ -0.02293645590543747,
2704
+ -0.048822514712810516,
2705
+ 0.000041573359339963645,
2706
+ 0.018941286951303482,
2707
+ -0.013625400140881538,
2708
+ -0.039379388093948364,
2709
+ -0.011864443309605122,
2710
+ 0.001529830857180059,
2711
+ -0.010180529206991196,
2712
+ -0.03748635947704315,
2713
+ 0.001789847039617598,
2714
+ -0.024477293714880943,
2715
+ 0.018269922584295273,
2716
+ 0.006631101481616497,
2717
+ 0.03891713544726372,
2718
+ 0.025489842519164085,
2719
+ -0.026524405926465988,
2720
+ 0.033061955124139786,
2721
+ 0.035923510789871216,
2722
+ 0.040127791464328766,
2723
+ -0.015463397838175297,
2724
+ 0.014087650924921036,
2725
+ 0.025203688070178032,
2726
+ 0.007385010831058025,
2727
+ -0.05991654098033905,
2728
+ -0.02817530184984207,
2729
+ -0.016178786754608154,
2730
+ 0.024015042930841446,
2731
+ -0.022606277838349342,
2732
+ 0.027074703946709633,
2733
+ -0.014792033471167088,
2734
+ -0.01977774128317833,
2735
+ -0.0034806402400135994,
2736
+ 0.012711904011666775,
2737
+ 0.00868371594697237,
2738
+ 0.0005296626477502286,
2739
+ 0.036385759711265564,
2740
+ -0.02780109830200672,
2741
+ 0.0003021484590135515,
2742
+ -0.0054919826798141,
2743
+ -0.0061468384228646755,
2744
+ -0.017840689048171043,
2745
+ 0.029562054201960564,
2746
+ -0.03275378793478012,
2747
+ -0.026568429544568062,
2748
+ 0.027845121920108795,
2749
+ 0.02852749265730381,
2750
+ 0.04155857115983963,
2751
+ -0.014604931697249413,
2752
+ 0.013845519162714481,
2753
+ 0.021857870742678642,
2754
+ -0.018479036167263985,
2755
+ -0.02480747364461422,
2756
+ -0.023993030190467834,
2757
+ -0.01691618748009205,
2758
+ 0.021582720801234245,
2759
+ 0.007329980842769146,
2760
+ -0.007219920866191387,
2761
+ -0.004578486550599337,
2762
+ 0.013823507353663445,
2763
+ -0.014054632745683193,
2764
+ 0.007907794788479805,
2765
+ 0.011798407882452011,
2766
+ -0.003365077544003725,
2767
+ 0.029319923371076584,
2768
+ 0.0016591510502621531,
2769
+ 0.006009263452142477,
2770
+ -0.030442534014582634,
2771
+ -0.029870223253965378,
2772
+ 0.006025772541761398,
2773
+ -0.013933567330241203,
2774
+ -0.034052494913339615,
2775
+ -0.002319509629160166,
2776
+ -0.0002864993584807962,
2777
+ 0.002850548131391406,
2778
+ 0.02162674441933632,
2779
+ -0.02157171629369259,
2780
+ 0.021989943459630013,
2781
+ 0.01549641601741314,
2782
+ -0.013493328355252743,
2783
+ -0.034668829292058945,
2784
+ 0.04041394963860512,
2785
+ -0.022782372310757637,
2786
+ -0.01135816890746355,
2787
+ -0.018424006178975105,
2788
+ -0.013207172974944115,
2789
+ 0.018699156120419502,
2790
+ -0.023838946595788002,
2791
+ 0.014814045280218124,
2792
+ 0.009399104863405228,
2793
+ -0.025996118783950806,
2794
+ -0.0071153645403683186,
2795
+ -0.007159388158470392,
2796
+ 0.019865788519382477,
2797
+ 0.03834482654929161,
2798
+ 0.0019728215411305428,
2799
+ 0.015518427826464176,
2800
+ -0.011831425130367279,
2801
+ 0.00450144475325942,
2802
+ -0.020063895732164383,
2803
+ 0.003293538698926568,
2804
+ -0.027757074683904648,
2805
+ -0.02826334908604622,
2806
+ -0.025247711688280106,
2807
+ 0.006961280480027199,
2808
+ -0.007550100330263376,
2809
+ -0.01363640557974577,
2810
+ -0.0058992039412260056,
2811
+ -0.052784666419029236,
2812
+ 0.02306852862238884,
2813
+ -0.0017623321618884802,
2814
+ 0.014648955315351486,
2815
+ -0.030860761180520058,
2816
+ 0.022870421409606934,
2817
+ 0.03880707547068596,
2818
+ 0.02033904567360878,
2819
+ 0.03766245394945145,
2820
+ -0.01948058046400547,
2821
+ -0.0006658616475760937,
2822
+ -0.0075666094198822975,
2823
+ 0.008942356333136559,
2824
+ -0.0060037607327103615,
2825
+ 0.017862701788544655,
2826
+ -0.01383451372385025,
2827
+ 0.00961922388523817,
2828
+ -0.026634465903043747,
2829
+ 0.008755254559218884,
2830
+ -0.026348309591412544,
2831
+ 0.050407376140356064,
2832
+ -0.008023357018828392,
2833
+ 0.03209342807531357,
2834
+ -0.020592182874679565,
2835
+ 0.00970176886767149,
2836
+ 0.00034703221172094345,
2837
+ -0.02839542180299759,
2838
+ -0.0083645423874259,
2839
+ -0.04276922717690468,
2840
+ -0.013812501914799213,
2841
+ 0.02718476392328739,
2842
+ 0.027625003829598427,
2843
+ 0.023090539500117302,
2844
+ -0.012568825855851173,
2845
+ -0.018908269703388214,
2846
+ -0.010769348591566086,
2847
+ -0.009035907685756683,
2848
+ 0.008678212761878967,
2849
+ 0.01054372638463974,
2850
+ -0.001360613969154656,
2851
+ 0.018346963450312614,
2852
+ -0.0013647411251440644,
2853
+ 0.021527690812945366,
2854
+ 0.021615739911794662,
2855
+ -0.020063895732164383,
2856
+ 0.01899631693959236,
2857
+ -0.0069887954741716385,
2858
+ -0.017026247456669807,
2859
+ 0.0006194301531650126,
2860
+ 0.017092281952500343,
2861
+ -0.005921215750277042,
2862
+ -0.0036017061211168766,
2863
+ 0.013196166604757309,
2864
+ -0.031102892011404037,
2865
+ -0.012887999415397644,
2866
+ -0.015672512352466583,
2867
+ -0.04003974422812462,
2868
+ -0.004845381714403629,
2869
+ 0.0031009342055767775,
2870
+ -0.012744921259582043,
2871
+ -0.03953346982598305,
2872
+ -0.02780109830200672,
2873
+ -0.009046913124620914,
2874
+ 0.0008660328458063304,
2875
+ -0.008254483342170715,
2876
+ -0.0034338647965341806,
2877
+ 0.014968128874897957,
2878
+ -0.02887968346476555,
2879
+ 0.00031745366868562996,
2880
+ 0.012491784058511257,
2881
+ 0.018324952572584152,
2882
+ -0.003436616389080882,
2883
+ -0.005447958596050739,
2884
+ -0.02927589975297451,
2885
+ -0.004603249952197075,
2886
+ -0.031212951987981796,
2887
+ -0.04404592141509056,
2888
+ 0.0044876872561872005,
2889
+ -0.014043627306818962,
2890
+ -0.013735459186136723,
2891
+ -0.0193485077470541,
2892
+ -0.0036870024632662535,
2893
+ 0.019326496869325638,
2894
+ 0.020184962078928947,
2895
+ 0.01086289994418621,
2896
+ -0.011083018966019154,
2897
+ -0.00982283428311348,
2898
+ -0.005255354102700949,
2899
+ -0.010741833597421646,
2900
+ 0.0017843440873548388,
2901
+ 0.030310461297631264,
2902
+ -0.005260857287794352,
2903
+ -0.004650025628507137,
2904
+ -0.009410110302269459,
2905
+ 0.0027776334900408983,
2906
+ 0.012601844035089016,
2907
+ 0.0015697275521233678,
2908
+ -0.017455479130148888,
2909
+ -0.007170394062995911,
2910
+ 0.0011246732901781797,
2911
+ 0.03361225500702858,
2912
+ -0.02753695473074913,
2913
+ 0.014538896270096302,
2914
+ 0.029231876134872437,
2915
+ 0.018699156120419502,
2916
+ 0.058992039412260056,
2917
+ 0.035153090953826904,
2918
+ -0.03805866837501526,
2919
+ -0.004366621375083923,
2920
+ -0.014153686352074146,
2921
+ 0.032665740698575974,
2922
+ 0.01817086897790432,
2923
+ -0.024389246478676796,
2924
+ -0.01852305978536606,
2925
+ 0.021296566352248192,
2926
+ -0.005734113976359367,
2927
+ 0.010912426747381687,
2928
+ 0.020085908472537994,
2929
+ -0.03779452666640282,
2930
+ 0.03301793336868286,
2931
+ 0.04488237574696541,
2932
+ -0.042351000010967255,
2933
+ -0.0008777267066761851,
2934
+ 0.0307507012039423,
2935
+ 0.006675125099718571,
2936
+ -0.033678289502859116,
2937
+ -0.006581574212759733,
2938
+ 0.009971415624022484,
2939
+ -0.018159862607717514,
2940
+ -0.0015284550609067082,
2941
+ -0.001116418861784041,
2942
+ 0.03984163701534271,
2943
+ -0.019898807629942894,
2944
+ -0.0008791024447418749,
2945
+ -0.01755453459918499,
2946
+ -0.015771565958857536,
2947
+ -0.027074703946709633,
2948
+ -0.01190846785902977,
2949
+ -0.03229153901338577,
2950
+ 0.010725324973464012,
2951
+ -0.030662652105093002,
2952
+ -0.013724453747272491,
2953
+ 0.005280117504298687,
2954
+ -0.008964368142187595,
2955
+ 0.02282639779150486,
2956
+ 0.003307296195998788,
2957
+ -0.030442534014582634,
2958
+ -0.008199453353881836,
2959
+ 0.013966585509479046,
2960
+ 0.015881625935435295,
2961
+ -0.005783641245216131,
2962
+ -0.027316834777593613,
2963
+ -0.009910882450640202,
2964
+ 0.02529173530638218,
2965
+ 0.01526529062539339,
2966
+ 0.006999801378697157,
2967
+ 0.014737003482878208,
2968
+ -0.022496217861771584,
2969
+ -0.005811155773699284,
2970
+ -0.000015960817108862102,
2971
+ 0.021098459139466286,
2972
+ 0.009569697082042694,
2973
+ -0.03418456390500069,
2974
+ 0.0008453966584056616,
2975
+ -0.028373409062623978,
2976
+ 0.02063620649278164,
2977
+ 0.0091129494830966,
2978
+ -0.012216635048389435,
2979
+ 0.016211804002523422,
2980
+ -0.0012519299052655697,
2981
+ -0.01284397579729557,
2982
+ 0.026260262355208397,
2983
+ 0.025511855259537697,
2984
+ -0.024015042930841446,
2985
+ 0.06304223835468292,
2986
+ -0.015991685912013054,
2987
+ -0.02331065945327282,
2988
+ -0.03733227401971817,
2989
+ -0.025335758924484253,
2990
+ 0.04208685830235481,
2991
+ -0.01570552960038185,
2992
+ -0.001399134867824614,
2993
+ 0.02469741366803646,
2994
+ -0.029738150537014008,
2995
+ -0.008171938359737396,
2996
+ 0.005079258698970079,
2997
+ 0.031036855652928352,
2998
+ 0.010274079628288746,
2999
+ 0.004798606038093567,
3000
+ -0.020878339186310768,
3001
+ 0.006427490618079901,
3002
+ 0.0061633470468223095,
3003
+ -0.026260262355208397,
3004
+ -0.010186032392084599,
3005
+ 0.017202341929078102,
3006
+ 0.0053213899955153465,
3007
+ 0.006355952005833387,
3008
+ 0.017521515488624573,
3009
+ 0.05432550236582756,
3010
+ 0.022650301456451416,
3011
+ 0.05771534517407417,
3012
+ 0.022980481386184692,
3013
+ 0.009536678902804852,
3014
+ -0.019920818507671356,
3015
+ 0.04329751431941986,
3016
+ 0.022177044302225113,
3017
+ -0.023266635835170746,
3018
+ -0.017950749024748802,
3019
+ 0.020834315568208694,
3020
+ 0.020834315568208694,
3021
+ -0.025335758924484253,
3022
+ -0.025203688070178032,
3023
+ -0.0014761766651645303,
3024
+ -0.04437610134482384,
3025
+ -0.030332474038004875,
3026
+ -0.008876320905983448,
3027
+ 0.005937724839895964,
3028
+ -0.04833825305104256,
3029
+ 0.002845045179128647,
3030
+ 0.04838227480649948,
3031
+ 0.028461458161473274,
3032
+ 0.013196166604757309,
3033
+ -0.002290619071573019,
3034
+ 0.017961755394935608,
3035
+ -0.024961557239294052,
3036
+ 0.013944572769105434,
3037
+ -0.008727739565074444,
3038
+ 0.028747612610459328,
3039
+ -0.008248980157077312,
3040
+ 0.003989666700363159,
3041
+ -0.015287302434444427,
3042
+ -0.03572540357708931,
3043
+ 0.0021007659379392862,
3044
+ -0.01873217336833477,
3045
+ 0.03185129910707474,
3046
+ -0.044222015887498856,
3047
+ -0.035285163670778275,
3048
+ -0.023354683071374893,
3049
+ 0.0002491821942385286,
3050
+ -0.03226952627301216,
3051
+ 0.03444870933890343,
3052
+ 0.010191534645855427,
3053
+ 0.04833825305104256,
3054
+ -0.0004113483882974833,
3055
+ -0.009476146660745144,
3056
+ -0.01438481267541647,
3057
+ -0.0040144301019608974,
3058
+ 0.032555680721998215,
3059
+ 0.009041409939527512,
3060
+ -0.012502790428698063,
3061
+ -0.004881151020526886,
3062
+ 0.03669392690062523,
3063
+ -0.016497960314154625,
3064
+ -0.03356822952628136,
3065
+ -0.00467754015699029,
3066
+ 0.0041932775638997555,
3067
+ 0.03488894924521446,
3068
+ -0.021296566352248192,
3069
+ 0.005618551280349493,
3070
+ -0.012491784058511257,
3071
+ -0.02432321012020111,
3072
+ -0.018908269703388214,
3073
+ 0.018512053415179253,
3074
+ -0.020548159256577492,
3075
+ -0.007071340456604958,
3076
+ 0.015584464184939861,
3077
+ -0.010703313164412975,
3078
+ -0.02544581890106201,
3079
+ -0.004702304024249315,
3080
+ 0.0065980833023786545,
3081
+ 0.022177044302225113,
3082
+ 0.029363946989178658,
3083
+ 0.004740824922919273,
3084
+ 0.02228710427880287,
3085
+ -0.01538635604083538,
3086
+ 0.0034393679816275835,
3087
+ -0.0037007599603384733,
3088
+ 0.02531374804675579,
3089
+ 0.0032715266570448875,
3090
+ -0.014968128874897957,
3091
+ -0.000774545653257519,
3092
+ 0.005943227559328079,
3093
+ -0.011314144358038902,
3094
+ -0.015507422387599945,
3095
+ -0.019524604082107544,
3096
+ 0.0013846894726157188,
3097
+ -0.028373409062623978,
3098
+ 0.02628227323293686,
3099
+ 0.021802840754389763,
3100
+ -0.00912395492196083,
3101
+ 0.036407772451639175,
3102
+ -0.016387900337576866,
3103
+ 0.028571516275405884,
3104
+ 0.017114294692873955,
3105
+ -0.00573961716145277,
3106
+ 0.017301395535469055,
3107
+ -0.023464743047952652,
3108
+ -0.009019398130476475,
3109
+ 0.010780354961752892
3110
+ ],
3111
+ "confidence": 0.9
3112
+ }
3113
+ };
3114
+
3115
+ const DataScientist = new Role('DataScientist', ['analyze']);
3116
+
3117
+ // ============================================================
3118
+ // Skill: StatisticalAnalysis
3119
+ // Perform statistical analysis including mean, median, standard deviation
3120
+ // ============================================================
3121
+
3122
+ export async function calculateMean(args) {
3123
+ const numbers = args.numbers || [];
3124
+ if (numbers.length === 0) {
3125
+ return { error: "No numbers provided" };
3126
+ }
3127
+
3128
+ const sum = numbers.reduce((a, b) => a + b, 0);
3129
+ const mean = sum / numbers.length;
3130
+
3131
+ return {
3132
+ operation: "mean",
3133
+ numbers: numbers,
3134
+ result: mean
3135
+ };
3136
+ }
3137
+
3138
+ export async function calculateMedian(args) {
3139
+ const numbers = args.numbers || [];
3140
+ if (numbers.length === 0) {
3141
+ return { error: "No numbers provided" };
3142
+ }
3143
+
3144
+ const sorted = [...numbers].sort((a, b) => a - b);
3145
+ const mid = Math.floor(sorted.length / 2);
3146
+ const median = sorted.length % 2 === 0
3147
+ ? (sorted[mid - 1] + sorted[mid]) / 2
3148
+ : sorted[mid];
3149
+
3150
+ return {
3151
+ operation: "median",
3152
+ numbers: numbers,
3153
+ result: median
3154
+ };
3155
+ }
3156
+
3157
+ export async function calculateStdDev(args) {
3158
+ const numbers = args.numbers || [];
3159
+ if (numbers.length === 0) {
3160
+ return { error: "No numbers provided" };
3161
+ }
3162
+
3163
+ const mean = numbers.reduce((a, b) => a + b, 0) / numbers.length;
3164
+ const variance = numbers.reduce((sum, num) => sum + Math.pow(num - mean, 2), 0) / numbers.length;
3165
+ const stdDev = Math.sqrt(variance);
3166
+
3167
+ return {
3168
+ operation: "stddev",
3169
+ numbers: numbers,
3170
+ mean: mean,
3171
+ variance: variance,
3172
+ result: stdDev
3173
+ };
3174
+ }
3175
+
3176
+ // Register skill functions
3177
+ SkillRegistry.register('StatisticalAnalysis', 'calculateMean', calculateMean, { affordance: "Perform statistical analysis including mean, median, standard deviation" });
3178
+ SkillRegistry.register('StatisticalAnalysis', 'calculateMedian', calculateMedian, { affordance: "Perform statistical analysis including mean, median, standard deviation" });
3179
+ SkillRegistry.register('StatisticalAnalysis', 'calculateStdDev', calculateStdDev, { affordance: "Perform statistical analysis including mean, median, standard deviation" });
3180
+
3181
+
3182
+ const DataAnalyzer = new Agent({
3183
+ name: 'DataAnalyzer',
3184
+ role: DataScientist,
3185
+ skills: ['StatisticalAnalysis'],
3186
+ llm: { provider: "openai", model: "gpt-4o-mini", temperature: 0.1, max_tokens: 400 },
3187
+ handlers: {
3188
+ analyze: (() => {
3189
+ const handler = async function(args) {
3190
+ // This should not be called - playbook will be executed by LLM
3191
+ throw new Error('Playbook-only handler called directly');
3192
+ };
3193
+ handler.__playbookOnly__ = true;
3194
+ handler.__playbook__ = "Analyze this data: ${JSON.stringify(args)}\n\n Use the available statistical tools to compute mean, median, and standard deviation.\n Return a comprehensive analysis as JSON.";
3195
+ return handler;
3196
+ })(),
3197
+ }
3198
+ });
3199
+
3200
+
3201
+ // Main execution function
3202
+ (async () => {
3203
+ // Register agents with router
3204
+ const { agentRouter } = await import('file:///Users/antonioparraga/Git/M/src/runtime/router.js');
3205
+
3206
+ await agentRouter.register(DataAnalyzer, CACHED_AFFORDANCES['DataAnalyzer']);
3207
+
3208
+ // Register skills with skillSelector
3209
+ const StatisticalAnalysisFunctions = [{ name: 'calculateMean', fn: calculateMean, description: SkillRegistry.get('StatisticalAnalysis', 'calculateMean')?.metadata?.affordance || 'Function from StatisticalAnalysis' }, { name: 'calculateMedian', fn: calculateMedian, description: SkillRegistry.get('StatisticalAnalysis', 'calculateMedian')?.metadata?.affordance || 'Function from StatisticalAnalysis' }, { name: 'calculateStdDev', fn: calculateStdDev, description: SkillRegistry.get('StatisticalAnalysis', 'calculateStdDev')?.metadata?.affordance || 'Function from StatisticalAnalysis' }];
3210
+ await skillSelector.register('StatisticalAnalysis', StatisticalAnalysisFunctions, CACHED_SKILL_AFFORDANCES['StatisticalAnalysis']);
3211
+
3212
+ const _gracefulShutdown = async () => { await mcpRegistry.disconnectAll(); process.exit(0); };
3213
+ process.on('SIGINT', _gracefulShutdown);
3214
+ process.on('SIGTERM', _gracefulShutdown);
3215
+
3216
+ await mcpRegistry.disconnectAll();
3217
+ process.exit(0);
3218
+ })().catch(err => {
3219
+ console.error('Error:', err.message);
3220
+ process.exit(1);
3221
+ });
3222
+
3223
+ //# sourceMappingURL=index.ts.map