@promptbook/templates 0.102.0-9 → 0.103.0-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 (33) hide show
  1. package/esm/index.es.js +1178 -319
  2. package/esm/index.es.js.map +1 -1
  3. package/esm/typings/src/_packages/color.index.d.ts +2 -0
  4. package/esm/typings/src/_packages/components.index.d.ts +4 -0
  5. package/esm/typings/src/_packages/core.index.d.ts +6 -0
  6. package/esm/typings/src/_packages/utils.index.d.ts +2 -0
  7. package/esm/typings/src/book-components/Chat/Chat/ChatMessageItem.d.ts +9 -1
  8. package/esm/typings/src/book-components/Chat/Chat/ChatProps.d.ts +4 -0
  9. package/esm/typings/src/book-components/Chat/save/_common/ChatSaveFormatDefinition.d.ts +43 -5
  10. package/esm/typings/src/book-components/Chat/save/html/htmlSaveFormatDefinition.d.ts +9 -2
  11. package/esm/typings/src/book-components/Chat/save/index.d.ts +38 -8
  12. package/esm/typings/src/book-components/Chat/save/json/jsonSaveFormatDefinition.d.ts +6 -2
  13. package/esm/typings/src/book-components/Chat/save/markdown/mdSaveFormatDefinition.d.ts +5 -1
  14. package/esm/typings/src/book-components/Chat/save/pdf/pdfSaveFormatDefinition.d.ts +6 -2
  15. package/esm/typings/src/book-components/Chat/save/react/reactSaveFormatDefinition.d.ts +16 -0
  16. package/esm/typings/src/book-components/Chat/save/text/txtSaveFormatDefinition.d.ts +5 -1
  17. package/esm/typings/src/book-components/Chat/types/ChatMessage.d.ts +1 -1
  18. package/esm/typings/src/book-components/Chat/types/ChatParticipant.d.ts +1 -1
  19. package/esm/typings/src/book-components/Chat/utils/exportChatHistory.d.ts +1 -1
  20. package/esm/typings/src/book-components/icons/SaveIcon.d.ts +10 -0
  21. package/esm/typings/src/config.d.ts +26 -4
  22. package/esm/typings/src/llm-providers/anthropic-claude/AnthropicClaudeExecutionTools.d.ts +1 -1
  23. package/esm/typings/src/utils/color/Color.d.ts +8 -0
  24. package/esm/typings/src/utils/color/operators/darken.d.ts +2 -1
  25. package/esm/typings/src/utils/color/operators/grayscale.d.ts +2 -1
  26. package/esm/typings/src/utils/color/operators/lighten.d.ts +2 -1
  27. package/esm/typings/src/utils/color/operators/mixWithColor.d.ts +2 -1
  28. package/esm/typings/src/utils/color/operators/saturate.d.ts +13 -0
  29. package/esm/typings/src/utils/serialization/serializeToPromptbookJavascript.d.ts +22 -0
  30. package/esm/typings/src/version.d.ts +1 -1
  31. package/package.json +2 -2
  32. package/umd/index.umd.js +1178 -319
  33. package/umd/index.umd.js.map +1 -1
package/esm/index.es.js CHANGED
@@ -14,7 +14,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
14
14
  * @generated
15
15
  * @see https://github.com/webgptorg/promptbook
16
16
  */
17
- const PROMPTBOOK_ENGINE_VERSION = '0.102.0-9';
17
+ const PROMPTBOOK_ENGINE_VERSION = '0.103.0-0';
18
18
  /**
19
19
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
20
20
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -137,6 +137,895 @@ class ParseError extends Error {
137
137
  * TODO: Maybe split `ParseError` and `ApplyError`
138
138
  */
139
139
 
140
+ /**
141
+ * @private util of `@promptbook/color`
142
+ * @de
143
+ */
144
+ class TakeChain {
145
+ constructor(value) {
146
+ this.value = value;
147
+ }
148
+ then(callback) {
149
+ const newValue = callback(this.value);
150
+ return take(newValue);
151
+ }
152
+ }
153
+
154
+ /**
155
+ * A function that takes an initial value and returns a proxy object with chainable methods.
156
+ *
157
+ * @param {*} initialValue - The initial value.
158
+ * @returns {Proxy<WithTake<TValue>>} - A proxy object with a `take` method.
159
+ *
160
+ * @private util of `@promptbook/color`
161
+ * @deprecated [🤡] Use some better functional library instead of `TakeChain`
162
+ */
163
+ function take(initialValue) {
164
+ if (initialValue instanceof TakeChain) {
165
+ return initialValue;
166
+ }
167
+ return new Proxy(new TakeChain(initialValue), {
168
+ get(target, property, receiver) {
169
+ if (Reflect.has(target, property)) {
170
+ return Reflect.get(target, property, receiver);
171
+ }
172
+ else if (Reflect.has(initialValue, property)) {
173
+ return Reflect.get(initialValue, property, receiver);
174
+ }
175
+ else {
176
+ return undefined;
177
+ }
178
+ },
179
+ });
180
+ }
181
+
182
+ /**
183
+ * 🎨 List of all 140 color names which are supported by CSS
184
+ *
185
+ * @public exported from `@promptbook/color`
186
+ */
187
+ const CSS_COLORS = {
188
+ transparent: 'rgba(0,0,0,0)',
189
+ aliceblue: '#f0f8ff',
190
+ antiquewhite: '#faebd7',
191
+ aqua: '#00ffff',
192
+ aquamarine: '#7fffd4',
193
+ azure: '#f0ffff',
194
+ beige: '#f5f5dc',
195
+ bisque: '#ffe4c4',
196
+ black: '#000000',
197
+ blanchedalmond: '#ffebcd',
198
+ blue: '#0000ff',
199
+ blueviolet: '#8a2be2',
200
+ brown: '#a52a2a',
201
+ burlywood: '#deb887',
202
+ cadetblue: '#5f9ea0',
203
+ chartreuse: '#7fff00',
204
+ chocolate: '#d2691e',
205
+ coral: '#ff7f50',
206
+ cornflowerblue: '#6495ed',
207
+ cornsilk: '#fff8dc',
208
+ crimson: '#dc143c',
209
+ cyan: '#00ffff',
210
+ darkblue: '#00008b',
211
+ darkcyan: '#008b8b',
212
+ darkgoldenrod: '#b8860b',
213
+ darkgray: '#a9a9a9',
214
+ darkgrey: '#a9a9a9',
215
+ darkgreen: '#006400',
216
+ darkkhaki: '#bdb76b',
217
+ darkmagenta: '#8b008b',
218
+ darkolivegreen: '#556b2f',
219
+ darkorange: '#ff8c00',
220
+ darkorchid: '#9932cc',
221
+ darkred: '#8b0000',
222
+ darksalmon: '#e9967a',
223
+ darkseagreen: '#8fbc8f',
224
+ darkslateblue: '#483d8b',
225
+ darkslategray: '#2f4f4f',
226
+ darkslategrey: '#2f4f4f',
227
+ darkturquoise: '#00ced1',
228
+ darkviolet: '#9400d3',
229
+ deeppink: '#ff1493',
230
+ deepskyblue: '#00bfff',
231
+ dimgray: '#696969',
232
+ dimgrey: '#696969',
233
+ dodgerblue: '#1e90ff',
234
+ firebrick: '#b22222',
235
+ floralwhite: '#fffaf0',
236
+ forestgreen: '#228b22',
237
+ fuchsia: '#ff00ff',
238
+ gainsboro: '#dcdcdc',
239
+ ghostwhite: '#f8f8ff',
240
+ gold: '#ffd700',
241
+ goldenrod: '#daa520',
242
+ gray: '#808080',
243
+ grey: '#808080',
244
+ green: '#008000',
245
+ greenyellow: '#adff2f',
246
+ honeydew: '#f0fff0',
247
+ hotpink: '#ff69b4',
248
+ indianred: '#cd5c5c',
249
+ indigo: '#4b0082',
250
+ ivory: '#fffff0',
251
+ khaki: '#f0e68c',
252
+ lavender: '#e6e6fa',
253
+ lavenderblush: '#fff0f5',
254
+ lawngreen: '#7cfc00',
255
+ lemonchiffon: '#fffacd',
256
+ lightblue: '#add8e6',
257
+ lightcoral: '#f08080',
258
+ lightcyan: '#e0ffff',
259
+ lightgoldenrodyellow: '#fafad2',
260
+ lightgray: '#d3d3d3',
261
+ lightgrey: '#d3d3d3',
262
+ lightgreen: '#90ee90',
263
+ lightpink: '#ffb6c1',
264
+ lightsalmon: '#ffa07a',
265
+ lightseagreen: '#20b2aa',
266
+ lightskyblue: '#87cefa',
267
+ lightslategray: '#778899',
268
+ lightslategrey: '#778899',
269
+ lightsteelblue: '#b0c4de',
270
+ lightyellow: '#ffffe0',
271
+ lime: '#00ff00',
272
+ limegreen: '#32cd32',
273
+ linen: '#faf0e6',
274
+ magenta: '#ff00ff',
275
+ maroon: '#800000',
276
+ mediumaquamarine: '#66cdaa',
277
+ mediumblue: '#0000cd',
278
+ mediumorchid: '#ba55d3',
279
+ mediumpurple: '#9370db',
280
+ mediumseagreen: '#3cb371',
281
+ mediumslateblue: '#7b68ee',
282
+ mediumspringgreen: '#00fa9a',
283
+ mediumturquoise: '#48d1cc',
284
+ mediumvioletred: '#c71585',
285
+ midnightblue: '#191970',
286
+ mintcream: '#f5fffa',
287
+ mistyrose: '#ffe4e1',
288
+ moccasin: '#ffe4b5',
289
+ navajowhite: '#ffdead',
290
+ navy: '#000080',
291
+ oldlace: '#fdf5e6',
292
+ olive: '#808000',
293
+ olivedrab: '#6b8e23',
294
+ orange: '#ffa500',
295
+ orangered: '#ff4500',
296
+ orchid: '#da70d6',
297
+ palegoldenrod: '#eee8aa',
298
+ palegreen: '#98fb98',
299
+ paleturquoise: '#afeeee',
300
+ palevioletred: '#db7093',
301
+ papayawhip: '#ffefd5',
302
+ peachpuff: '#ffdab9',
303
+ peru: '#cd853f',
304
+ pink: '#ffc0cb',
305
+ plum: '#dda0dd',
306
+ powderblue: '#b0e0e6',
307
+ purple: '#800080',
308
+ rebeccapurple: '#663399',
309
+ red: '#ff0000',
310
+ rosybrown: '#bc8f8f',
311
+ royalblue: '#4169e1',
312
+ saddlebrown: '#8b4513',
313
+ salmon: '#fa8072',
314
+ sandybrown: '#f4a460',
315
+ seagreen: '#2e8b57',
316
+ seashell: '#fff5ee',
317
+ sienna: '#a0522d',
318
+ silver: '#c0c0c0',
319
+ skyblue: '#87ceeb',
320
+ slateblue: '#6a5acd',
321
+ slategray: '#708090',
322
+ slategrey: '#708090',
323
+ snow: '#fffafa',
324
+ springgreen: '#00ff7f',
325
+ steelblue: '#4682b4',
326
+ tan: '#d2b48c',
327
+ teal: '#008080',
328
+ thistle: '#d8bfd8',
329
+ tomato: '#ff6347',
330
+ turquoise: '#40e0d0',
331
+ violet: '#ee82ee',
332
+ wheat: '#f5deb3',
333
+ white: '#ffffff',
334
+ whitesmoke: '#f5f5f5',
335
+ yellow: '#ffff00',
336
+ yellowgreen: '#9acd32',
337
+ };
338
+ /**
339
+ * Note: [💞] Ignore a discrepancy between file name and entity name
340
+ */
341
+
342
+ /**
343
+ * Validates that a channel value is a valid number within the range of 0 to 255.
344
+ * Throws an error if the value is not valid.
345
+ *
346
+ * @param channelName - The name of the channel being validated.
347
+ * @param value - The value of the channel to validate.
348
+ * @throws Will throw an error if the value is not a valid channel number.
349
+ *
350
+ * @private util of `@promptbook/color`
351
+ */
352
+ function checkChannelValue(channelName, value) {
353
+ if (typeof value !== 'number') {
354
+ throw new Error(`${channelName} channel value is not number but ${typeof value}`);
355
+ }
356
+ if (isNaN(value)) {
357
+ throw new Error(`${channelName} channel value is NaN`);
358
+ }
359
+ if (Math.round(value) !== value) {
360
+ throw new Error(`${channelName} channel is not whole number, it is ${value}`);
361
+ }
362
+ if (value < 0) {
363
+ throw new Error(`${channelName} channel is lower than 0, it is ${value}`);
364
+ }
365
+ if (value > 255) {
366
+ throw new Error(`${channelName} channel is greater than 255, it is ${value}`);
367
+ }
368
+ }
369
+ /**
370
+ * TODO: [🧠][🚓] Is/which combination it better to use asserts/check, validate or is utility function?
371
+ */
372
+
373
+ /**
374
+ * Color object represents an RGB color with alpha channel
375
+ *
376
+ * Note: There is no fromObject/toObject because the most logical way to serialize color is as a hex string (#009edd)
377
+ *
378
+ * @public exported from `@promptbook/color`
379
+ */
380
+ class Color {
381
+ /**
382
+ * Creates a new Color instance from miscellaneous formats
383
+ * - It can receive Color instance and just return the same instance
384
+ * - It can receive color in string format for example `#009edd`, `rgb(0,158,221)`, `rgb(0%,62%,86.7%)`, `hsl(197.1,100%,43.3%)`
385
+ *
386
+ * Note: This is not including fromImage because detecting color from an image is heavy task which requires async stuff and we cannot safely determine with overloading if return value will be a promise
387
+ *
388
+ * @param color
389
+ * @returns Color object
390
+ */
391
+ static from(color) {
392
+ if (color instanceof Color) {
393
+ return take(color);
394
+ }
395
+ else if (Color.isColor(color)) {
396
+ return take(color);
397
+ }
398
+ else if (typeof color === 'string') {
399
+ return Color.fromString(color);
400
+ }
401
+ else {
402
+ console.error({ color });
403
+ throw new Error(`Can not create color from given object`);
404
+ }
405
+ }
406
+ /**
407
+ * Creates a new Color instance from miscellaneous string formats
408
+ *
409
+ * @param color as a string for example `#009edd`, `rgb(0,158,221)`, `rgb(0%,62%,86.7%)`, `hsl(197.1,100%,43.3%)`, `red`, `darkgrey`,...
410
+ * @returns Color object
411
+ */
412
+ static fromString(color) {
413
+ if (CSS_COLORS[color]) {
414
+ return Color.fromString(CSS_COLORS[color]);
415
+ // -----
416
+ }
417
+ else if (Color.isHexColorString(color)) {
418
+ return Color.fromHex(color);
419
+ // -----
420
+ }
421
+ else if (/^hsl\(\s*(\d+)\s*,\s*(\d+(?:\.\d+)?%)\s*,\s*(\d+(?:\.\d+)?%)\)$/.test(color)) {
422
+ return Color.fromHsl(color);
423
+ // -----
424
+ }
425
+ else if (/^rgb\((\s*[0-9-.%]+\s*,?){3}\)$/.test(color)) {
426
+ // TODO: [0] Should be fromRgbString and fromRgbaString one or two functions
427
+ return Color.fromRgbString(color);
428
+ // -----
429
+ }
430
+ else if (/^rgba\((\s*[0-9-.%]+\s*,?){4}\)$/.test(color)) {
431
+ return Color.fromRgbaString(color);
432
+ // -----
433
+ }
434
+ else {
435
+ throw new Error(`Can not create a new Color instance from string "${color}".`);
436
+ }
437
+ }
438
+ /**
439
+ * Gets common color
440
+ *
441
+ * @param key as a css string like `midnightblue`
442
+ * @returns Color object
443
+ */
444
+ static get(key) {
445
+ if (!CSS_COLORS[key]) {
446
+ throw new Error(`"${key}" is not a common css color.`);
447
+ }
448
+ return Color.fromString(CSS_COLORS[key]);
449
+ }
450
+ /**
451
+ * Creates a new Color instance from average color of given image
452
+ *
453
+ * @param image as a source for example `data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAA1JREFUGFdjYJh39z8ABJgCe/ZvAS4AAAAASUVORK5CYII=`
454
+ * @returns Color object
455
+ */
456
+ static async fromImage(image) {
457
+ return Color.fromHex(`#009edd`);
458
+ }
459
+ /**
460
+ * Creates a new Color instance from color in hex format
461
+ *
462
+ * @param color in hex for example `#009edd`, `009edd`, `#555`,...
463
+ * @returns Color object
464
+ */
465
+ static fromHex(hex) {
466
+ const hexOriginal = hex;
467
+ if (hex.startsWith('#')) {
468
+ hex = hex.substring(1);
469
+ }
470
+ if (hex.length === 3) {
471
+ return Color.fromHex3(hex);
472
+ }
473
+ if (hex.length === 6) {
474
+ return Color.fromHex6(hex);
475
+ }
476
+ if (hex.length === 8) {
477
+ return Color.fromHex8(hex);
478
+ }
479
+ throw new Error(`Can not parse color from hex string "${hexOriginal}"`);
480
+ }
481
+ /**
482
+ * Creates a new Color instance from color in hex format with 3 color digits (without alpha channel)
483
+ *
484
+ * @param color in hex for example `09d`
485
+ * @returns Color object
486
+ */
487
+ static fromHex3(hex) {
488
+ const r = parseInt(hex.substr(0, 1), 16) * 16;
489
+ const g = parseInt(hex.substr(1, 1), 16) * 16;
490
+ const b = parseInt(hex.substr(2, 1), 16) * 16;
491
+ return take(new Color(r, g, b));
492
+ }
493
+ /**
494
+ * Creates a new Color instance from color in hex format with 6 color digits (without alpha channel)
495
+ *
496
+ * @param color in hex for example `009edd`
497
+ * @returns Color object
498
+ */
499
+ static fromHex6(hex) {
500
+ const r = parseInt(hex.substr(0, 2), 16);
501
+ const g = parseInt(hex.substr(2, 2), 16);
502
+ const b = parseInt(hex.substr(4, 2), 16);
503
+ return take(new Color(r, g, b));
504
+ }
505
+ /**
506
+ * Creates a new Color instance from color in hex format with 8 color digits (with alpha channel)
507
+ *
508
+ * @param color in hex for example `009edd`
509
+ * @returns Color object
510
+ */
511
+ static fromHex8(hex) {
512
+ const r = parseInt(hex.substr(0, 2), 16);
513
+ const g = parseInt(hex.substr(2, 2), 16);
514
+ const b = parseInt(hex.substr(4, 2), 16);
515
+ const a = parseInt(hex.substr(6, 2), 16);
516
+ return take(new Color(r, g, b, a));
517
+ }
518
+ /**
519
+ * Creates a new Color instance from color in hsl format
520
+ *
521
+ * @param color as a hsl for example `hsl(197.1,100%,43.3%)`
522
+ * @returns Color object
523
+ */
524
+ static fromHsl(hsl) {
525
+ const match = hsl.match(/^hsl\(\s*([0-9.]+)\s*,\s*([0-9.]+)%\s*,\s*([0-9.]+)%\s*\)$/);
526
+ if (!match) {
527
+ throw new Error(`Invalid hsl string format: "${hsl}"`);
528
+ }
529
+ const h = parseFloat(match[1]);
530
+ const s = parseFloat(match[2]) / 100;
531
+ const l = parseFloat(match[3]) / 100;
532
+ // HSL to RGB conversion
533
+ const c = (1 - Math.abs(2 * l - 1)) * s;
534
+ const x = c * (1 - Math.abs(((h / 60) % 2) - 1));
535
+ const m = l - c / 2;
536
+ let r1 = 0, g1 = 0, b1 = 0;
537
+ if (h >= 0 && h < 60) {
538
+ r1 = c;
539
+ g1 = x;
540
+ b1 = 0;
541
+ }
542
+ else if (h >= 60 && h < 120) {
543
+ r1 = x;
544
+ g1 = c;
545
+ b1 = 0;
546
+ }
547
+ else if (h >= 120 && h < 180) {
548
+ r1 = 0;
549
+ g1 = c;
550
+ b1 = x;
551
+ }
552
+ else if (h >= 180 && h < 240) {
553
+ r1 = 0;
554
+ g1 = x;
555
+ b1 = c;
556
+ }
557
+ else if (h >= 240 && h < 300) {
558
+ r1 = x;
559
+ g1 = 0;
560
+ b1 = c;
561
+ }
562
+ else if (h >= 300 && h < 360) {
563
+ r1 = c;
564
+ g1 = 0;
565
+ b1 = x;
566
+ }
567
+ const r = Math.round((r1 + m) * 255);
568
+ const g = Math.round((g1 + m) * 255);
569
+ const b = Math.round((b1 + m) * 255);
570
+ return take(new Color(r, g, b));
571
+ }
572
+ /**
573
+ * Creates a new Color instance from color in rgb format
574
+ *
575
+ * @param color as a rgb for example `rgb(0,158,221)`, `rgb(0%,62%,86.7%)`
576
+ * @returns Color object
577
+ */
578
+ static fromRgbString(rgb) {
579
+ const match = rgb.match(/^rgb\(\s*([0-9.%-]+)\s*,\s*([0-9.%-]+)\s*,\s*([0-9.%-]+)\s*\)$/);
580
+ if (!match) {
581
+ throw new Error(`Invalid rgb string format: "${rgb}"`);
582
+ }
583
+ const parseChannel = (value) => {
584
+ if (value.endsWith('%')) {
585
+ // Percentage value
586
+ const percent = parseFloat(value);
587
+ return Math.round((percent / 100) * 255);
588
+ }
589
+ else {
590
+ // Numeric value
591
+ return Math.round(parseFloat(value));
592
+ }
593
+ };
594
+ const r = parseChannel(match[1]);
595
+ const g = parseChannel(match[2]);
596
+ const b = parseChannel(match[3]);
597
+ return take(new Color(r, g, b));
598
+ }
599
+ /**
600
+ * Creates a new Color instance from color in rbga format
601
+ *
602
+ * @param color as a rgba for example `rgba(0,158,221,0.5)`, `rgb(0%,62%,86.7%,50%)`
603
+ * @returns Color object
604
+ */
605
+ static fromRgbaString(rgba) {
606
+ const match = rgba.match(/^rgba\(\s*([0-9.%-]+)\s*,\s*([0-9.%-]+)\s*,\s*([0-9.%-]+)\s*,\s*([0-9.%-]+)\s*\)$/);
607
+ if (!match) {
608
+ throw new Error(`Invalid rgba string format: "${rgba}"`);
609
+ }
610
+ const parseChannel = (value) => {
611
+ if (value.endsWith('%')) {
612
+ const percent = parseFloat(value);
613
+ return Math.round((percent / 100) * 255);
614
+ }
615
+ else {
616
+ return Math.round(parseFloat(value));
617
+ }
618
+ };
619
+ const parseAlpha = (value) => {
620
+ if (value.endsWith('%')) {
621
+ const percent = parseFloat(value);
622
+ return Math.round((percent / 100) * 255);
623
+ }
624
+ else {
625
+ const alphaFloat = parseFloat(value);
626
+ // If alpha is between 0 and 1, treat as float
627
+ if (alphaFloat <= 1) {
628
+ return Math.round(alphaFloat * 255);
629
+ }
630
+ // Otherwise, treat as 0-255
631
+ return Math.round(alphaFloat);
632
+ }
633
+ };
634
+ const r = parseChannel(match[1]);
635
+ const g = parseChannel(match[2]);
636
+ const b = parseChannel(match[3]);
637
+ const a = parseAlpha(match[4]);
638
+ return take(new Color(r, g, b, a));
639
+ }
640
+ /**
641
+ * Creates a new Color for color channels values
642
+ *
643
+ * @param red number from 0 to 255
644
+ * @param green number from 0 to 255
645
+ * @param blue number from 0 to 255
646
+ * @param alpha number from 0 (transparent) to 255 (opaque = default)
647
+ * @returns Color object
648
+ */
649
+ static fromValues(red, green, blue, alpha = 255) {
650
+ return take(new Color(red, green, blue, alpha));
651
+ }
652
+ /**
653
+ * Checks if the given value is a valid Color object.
654
+ *
655
+ * @param {unknown} value - The value to check.
656
+ * @return {value is WithTake<Color>} Returns true if the value is a valid Color object, false otherwise.
657
+ */
658
+ static isColor(value) {
659
+ if (typeof value !== 'object') {
660
+ return false;
661
+ }
662
+ if (value === null) {
663
+ return false;
664
+ }
665
+ if (typeof value.red !== 'number' ||
666
+ typeof value.green !== 'number' ||
667
+ typeof value.blue !== 'number' ||
668
+ typeof value.alpha !== 'number') {
669
+ return false;
670
+ }
671
+ if (typeof value.then !== 'function') {
672
+ return false;
673
+ }
674
+ return true;
675
+ }
676
+ /**
677
+ * Checks if the given value is a valid hex color string
678
+ *
679
+ * @param value - value to check
680
+ * @returns true if the value is a valid hex color string (e.g., `#009edd`, `#fff`, etc.)
681
+ */
682
+ static isHexColorString(value) {
683
+ return typeof value === 'string' && /^#(?:[0-9a-fA-F]{3}){1,2}$/.test(value);
684
+ }
685
+ /**
686
+ * Creates new Color object
687
+ *
688
+ * Note: Consider using one of static methods like `from` or `fromString`
689
+ *
690
+ * @param red number from 0 to 255
691
+ * @param green number from 0 to 255
692
+ * @param blue number from 0 to 255
693
+ * @param alpha number from 0 (transparent) to 255 (opaque)
694
+ */
695
+ constructor(red, green, blue, alpha = 255) {
696
+ this.red = red;
697
+ this.green = green;
698
+ this.blue = blue;
699
+ this.alpha = alpha;
700
+ checkChannelValue('Red', red);
701
+ checkChannelValue('Green', green);
702
+ checkChannelValue('Blue', blue);
703
+ checkChannelValue('Alpha', alpha);
704
+ }
705
+ /**
706
+ * Shortcut for `red` property
707
+ * Number from 0 to 255
708
+ * @alias red
709
+ */
710
+ get r() {
711
+ return this.red;
712
+ }
713
+ /**
714
+ * Shortcut for `green` property
715
+ * Number from 0 to 255
716
+ * @alias green
717
+ */
718
+ get g() {
719
+ return this.green;
720
+ }
721
+ /**
722
+ * Shortcut for `blue` property
723
+ * Number from 0 to 255
724
+ * @alias blue
725
+ */
726
+ get b() {
727
+ return this.blue;
728
+ }
729
+ /**
730
+ * Shortcut for `alpha` property
731
+ * Number from 0 (transparent) to 255 (opaque)
732
+ * @alias alpha
733
+ */
734
+ get a() {
735
+ return this.alpha;
736
+ }
737
+ /**
738
+ * Shortcut for `alpha` property
739
+ * Number from 0 (transparent) to 255 (opaque)
740
+ * @alias alpha
741
+ */
742
+ get opacity() {
743
+ return this.alpha;
744
+ }
745
+ /**
746
+ * Shortcut for 1-`alpha` property
747
+ */
748
+ get transparency() {
749
+ return 255 - this.alpha;
750
+ }
751
+ clone() {
752
+ return take(new Color(this.red, this.green, this.blue, this.alpha));
753
+ }
754
+ toString() {
755
+ return this.toHex();
756
+ }
757
+ toHex() {
758
+ if (this.alpha === 255) {
759
+ return `#${this.red.toString(16).padStart(2, '0')}${this.green.toString(16).padStart(2, '0')}${this.blue
760
+ .toString(16)
761
+ .padStart(2, '0')}`;
762
+ }
763
+ else {
764
+ return `#${this.red.toString(16).padStart(2, '0')}${this.green.toString(16).padStart(2, '0')}${this.blue
765
+ .toString(16)
766
+ .padStart(2, '0')}${this.alpha.toString(16).padStart(2, '0')}`;
767
+ }
768
+ }
769
+ toRgb() {
770
+ if (this.alpha === 255) {
771
+ return `rgb(${this.red}, ${this.green}, ${this.blue})`;
772
+ }
773
+ else {
774
+ return `rgba(${this.red}, ${this.green}, ${this.blue}, ${Math.round((this.alpha / 255) * 100)}%)`;
775
+ }
776
+ }
777
+ toHsl() {
778
+ throw new Error(`Getting HSL is not implemented`);
779
+ }
780
+ }
781
+ /**
782
+ * TODO: [🥻] Split Color class and color type
783
+ * TODO: For each method a corresponding static method should be created
784
+ * Like clone can be done by color.clone() OR Color.clone(color)
785
+ * TODO: Probably as an independent LIB OR add to LIB xyzt (ask @roseckyj)
786
+ * TODO: !! Transfer back to Collboard (whole directory)
787
+ * TODO: Maybe [🏌️‍♂️] change ACRY toString => (toHex) toRgb when there will be toRgb and toRgba united
788
+ * TODO: Convert getters to methods - getters only for values
789
+ * TODO: Write tests
790
+ * TODO: Getters for alpha, opacity, transparency, r, b, g, h, s, l, a,...
791
+ * TODO: [0] Should be fromRgbString and fromRgbaString one or two functions + one or two regex
792
+ * TODO: Use rgb, rgba, hsl for testing and parsing with the same regex
793
+ * TODO: Regex for rgb, rgba, hsl does not support all options like deg, rad, turn,...
794
+ * TODO: Convolution matrix
795
+ * TODO: Maybe connect with textures
796
+ */
797
+
798
+ /**
799
+ * Converts HSL values to RGB values
800
+ *
801
+ * @param hue [0-1]
802
+ * @param saturation [0-1]
803
+ * @param lightness [0-1]
804
+ * @returns [red, green, blue] [0-255]
805
+ *
806
+ * @private util of `@promptbook/color`
807
+ */
808
+ function hslToRgb(hue, saturation, lightness) {
809
+ let red;
810
+ let green;
811
+ let blue;
812
+ if (saturation === 0) {
813
+ // achromatic
814
+ red = lightness;
815
+ green = lightness;
816
+ blue = lightness;
817
+ }
818
+ else {
819
+ // TODO: Extract to separate function
820
+ const hue2rgb = (p, q, t) => {
821
+ if (t < 0)
822
+ t += 1;
823
+ if (t > 1)
824
+ t -= 1;
825
+ if (t < 1 / 6)
826
+ return p + (q - p) * 6 * t;
827
+ if (t < 1 / 2)
828
+ return q;
829
+ if (t < 2 / 3)
830
+ return p + (q - p) * (2 / 3 - t) * 6;
831
+ return p;
832
+ };
833
+ const q = lightness < 0.5 ? lightness * (1 + saturation) : lightness + saturation - lightness * saturation;
834
+ const p = 2 * lightness - q;
835
+ red = hue2rgb(p, q, hue + 1 / 3);
836
+ green = hue2rgb(p, q, hue);
837
+ blue = hue2rgb(p, q, hue - 1 / 3);
838
+ }
839
+ return [Math.round(red * 255), Math.round(green * 255), Math.round(blue * 255)];
840
+ }
841
+ /**
842
+ * TODO: Properly name all used internal variables
843
+ */
844
+
845
+ /**
846
+ * Converts RGB values to HSL values
847
+ *
848
+ * @param red [0-255]
849
+ * @param green [0-255]
850
+ * @param blue [0-255]
851
+ * @returns [hue, saturation, lightness] [0-1]
852
+ *
853
+ * @private util of `@promptbook/color`
854
+ */
855
+ function rgbToHsl(red, green, blue) {
856
+ red /= 255;
857
+ green /= 255;
858
+ blue /= 255;
859
+ const max = Math.max(red, green, blue);
860
+ const min = Math.min(red, green, blue);
861
+ let hue;
862
+ let saturation;
863
+ const lightness = (max + min) / 2;
864
+ if (max === min) {
865
+ // achromatic
866
+ hue = 0;
867
+ saturation = 0;
868
+ }
869
+ else {
870
+ const d = max - min;
871
+ saturation = lightness > 0.5 ? d / (2 - max - min) : d / (max + min);
872
+ switch (max) {
873
+ case red:
874
+ hue = (green - blue) / d + (green < blue ? 6 : 0);
875
+ break;
876
+ case green:
877
+ hue = (blue - red) / d + 2;
878
+ break;
879
+ case blue:
880
+ hue = (red - green) / d + 4;
881
+ break;
882
+ default:
883
+ hue = 0;
884
+ }
885
+ hue /= 6;
886
+ }
887
+ return [hue, saturation, lightness];
888
+ }
889
+ /**
890
+ * TODO: Properly name all used internal variables
891
+ */
892
+
893
+ /**
894
+ * Makes color transformer which lighten the given color
895
+ *
896
+ * @param amount from 0 to 1
897
+ *
898
+ * @public exported from `@promptbook/color`
899
+ */
900
+ function lighten(amount) {
901
+ return ({ red, green, blue, alpha }) => {
902
+ const [h, s, lInitial] = rgbToHsl(red, green, blue);
903
+ let l = lInitial + amount;
904
+ l = Math.max(0, Math.min(l, 1)); // Replace lodash clamp with Math.max and Math.min
905
+ const [r, g, b] = hslToRgb(h, s, l);
906
+ return Color.fromValues(r, g, b, alpha);
907
+ };
908
+ }
909
+ /**
910
+ * TODO: Maybe implement by mix+hsl
911
+ */
912
+
913
+ /**
914
+ * Calculates distance between two colors
915
+ *
916
+ * @param color1 first color
917
+ * @param color2 second color
918
+ *
919
+ * Note: This function is inefficient. Use colorDistanceSquared instead if possible.
920
+ *
921
+ * @public exported from `@promptbook/color`
922
+ */
923
+ /**
924
+ * Calculates distance between two colors without square root
925
+ *
926
+ * @param color1 first color
927
+ * @param color2 second color
928
+ *
929
+ * @public exported from `@promptbook/color`
930
+ */
931
+ function colorDistanceSquared(color1, color2) {
932
+ const rmean = (color1.red + color2.red) / 2;
933
+ const r = color1.red - color2.red;
934
+ const g = color1.green - color2.green;
935
+ const b = color1.blue - color2.blue;
936
+ const weightR = 2 + rmean / 256;
937
+ const weightG = 4.0;
938
+ const weightB = 2 + (255 - rmean) / 256;
939
+ const distance = weightR * r * r + weightG * g * g + weightB * b * b;
940
+ return distance;
941
+ }
942
+
943
+ /**
944
+ * Makes color transformer which finds the nearest color from the given list
945
+ *
946
+ * @param colors array of colors to choose from
947
+ *
948
+ * @public exported from `@promptbook/color`
949
+ */
950
+ function nearest(...colors) {
951
+ return (color) => {
952
+ const distances = colors.map((c) => colorDistanceSquared(c, color));
953
+ const minDistance = Math.min(...distances);
954
+ const minIndex = distances.indexOf(minDistance);
955
+ const nearestColor = colors[minIndex];
956
+ return nearestColor;
957
+ };
958
+ }
959
+
960
+ /**
961
+ * Color transformer which returns the negative color
962
+ *
963
+ * @public exported from `@promptbook/color`
964
+ */
965
+ function negative(color) {
966
+ const r = 255 - color.red;
967
+ const g = 255 - color.green;
968
+ const b = 255 - color.blue;
969
+ return Color.fromValues(r, g, b, color.alpha);
970
+ }
971
+
972
+ /**
973
+ * Makes color transformer which finds the furthest color from the given list
974
+ *
975
+ * @param colors array of colors to choose from
976
+ *
977
+ * @public exported from `@promptbook/color`
978
+ */
979
+ function furthest(...colors) {
980
+ return (color) => {
981
+ const furthestColor = negative(nearest(...colors.map(negative))(color));
982
+ return furthestColor;
983
+ };
984
+ }
985
+ /**
986
+ * Makes color transformer which finds the best text color (black or white) for the given background color
987
+ *
988
+ * @public exported from `@promptbook/color`
989
+ */
990
+ furthest(Color.get('white'), Color.from('black'));
991
+
992
+ /**
993
+ * Makes color transformer which returns a grayscale version of the color
994
+ *
995
+ * @param amount from 0 to 1
996
+ *
997
+ * @public exported from `@promptbook/color`
998
+ */
999
+ function grayscale(amount) {
1000
+ return ({ red, green, blue, alpha }) => {
1001
+ const average = (red + green + blue) / 3;
1002
+ red = Math.round(average * amount + red * (1 - amount));
1003
+ green = Math.round(average * amount + green * (1 - amount));
1004
+ blue = Math.round(average * amount + blue * (1 - amount));
1005
+ return Color.fromValues(red, green, blue, alpha);
1006
+ };
1007
+ }
1008
+
1009
+ /**
1010
+ * Makes color transformer which saturate the given color
1011
+ *
1012
+ * @param amount from -1 to 1
1013
+ *
1014
+ * @public exported from `@promptbook/color`
1015
+ */
1016
+ function saturate(amount) {
1017
+ return ({ red, green, blue, alpha }) => {
1018
+ const [h, sInitial, l] = rgbToHsl(red, green, blue);
1019
+ let s = sInitial + amount;
1020
+ s = Math.max(0, Math.min(s, 1));
1021
+ const [r, g, b] = hslToRgb(h, s, l);
1022
+ return Color.fromValues(r, g, b, alpha);
1023
+ };
1024
+ }
1025
+ /**
1026
+ * TODO: Maybe implement by mix+hsl
1027
+ */
1028
+
140
1029
  /**
141
1030
  * Returns the same value that is passed as argument.
142
1031
  * No side effects.
@@ -177,6 +1066,32 @@ const ADMIN_EMAIL = 'pavol@ptbk.io';
177
1066
  * @public exported from `@promptbook/core`
178
1067
  */
179
1068
  const ADMIN_GITHUB_NAME = 'hejny';
1069
+ // <- TODO: [🐊] Pick the best claim
1070
+ /**
1071
+ * Color of the Promptbook
1072
+ *
1073
+ * TODO: [🗽] Unite branding and make single place for it
1074
+ *
1075
+ * @public exported from `@promptbook/core`
1076
+ */
1077
+ const PROMPTBOOK_COLOR = Color.fromHex('#79EAFD');
1078
+ // <- TODO: [🧠] Using `Color` here increases the package size approx 3kb, maybe remove it
1079
+ /**
1080
+ * Dark color of the Promptbook
1081
+ *
1082
+ * TODO: [🗽] Unite branding and make single place for it
1083
+ *
1084
+ * @public exported from `@promptbook/core`
1085
+ */
1086
+ PROMPTBOOK_COLOR.then(lighten(0.1)).then(saturate(0.9)).then(grayscale(0.9));
1087
+ /**
1088
+ * Color of the user (in chat)
1089
+ *
1090
+ * TODO: [🗽] Unite branding and make single place for it
1091
+ *
1092
+ * @public exported from `@promptbook/core`
1093
+ */
1094
+ Color.fromHex('#1D4ED8');
180
1095
  // <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
181
1096
  /**
182
1097
  * The maximum number of iterations for a loops
@@ -1529,29 +2444,29 @@ function getTemplatesPipelineCollection() {
1529
2444
  {
1530
2445
  "modelVariant": "CHAT",
1531
2446
  "models": [
2447
+ {
2448
+ "modelName": "gpt-4.1",
2449
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and virtual assistant. Goals: precise assistance, reliable prompt/pipeline design, strong tool/function calling, and implementation-ready guidance. Ask targeted clarifying questions when specs are ambiguous. Keep answers concise, structured, and reproducible.",
2450
+ "temperature": 0.2
2451
+ },
1532
2452
  {
1533
2453
  "modelName": "chatgpt-4o-latest",
1534
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2454
+ "systemMessage": "You are a developer of the Promptbook Project operating a multimodal virtual assistant. Provide concise, technically accurate help on prompt design, integration, and tooling. Use structured outputs when helpful and confirm assumptions before proceeding.",
1535
2455
  "temperature": 0.3
1536
2456
  },
1537
2457
  {
1538
- "modelName": "gpt-4.1",
1539
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
1540
- "temperature": 0.25
2458
+ "modelName": "o4-mini",
2459
+ "systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Provide brief, stepwise solutions, emphasize determinism and token efficiency, and output implementation-ready prompts/code.",
2460
+ "temperature": 0.2
1541
2461
  },
1542
2462
  {
1543
2463
  "modelName": "gpt-4",
1544
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
1545
- "temperature": 0.3
2464
+ "systemMessage": "You are a developer of the Promptbook Project. Provide high-quality, reliable assistance on prompt engineering, SDK integration, and workflow design. Be concise, cite assumptions, and return structured, ready-to-use outputs.",
2465
+ "temperature": 0.2
1546
2466
  },
1547
2467
  {
1548
2468
  "modelName": "gpt-3.5-turbo-16k",
1549
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
1550
- "temperature": 0.4
1551
- },
1552
- {
1553
- "modelName": "o4-mini",
1554
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2469
+ "systemMessage": "You are a developer of the Promptbook Project on a budget tier. Prioritize clarity, brevity, and correctness. Ask for missing details, avoid speculation, and return minimal, ready-to-use prompts/code.",
1555
2470
  "temperature": 0.2
1556
2471
  }
1557
2472
  ]
@@ -1565,14 +2480,14 @@ function getTemplatesPipelineCollection() {
1565
2480
  "preparations": [
1566
2481
  {
1567
2482
  "id": 1,
1568
- "promptbookVersion": "0.102.0-8",
2483
+ "promptbookVersion": "0.102.0",
1569
2484
  "usage": {
1570
2485
  "price": {
1571
- "value": 0.0355725
2486
+ "value": 0.033065000000000004
1572
2487
  },
1573
2488
  "input": {
1574
2489
  "tokensCount": {
1575
- "value": 6154
2490
+ "value": 6316
1576
2491
  },
1577
2492
  "charactersCount": {
1578
2493
  "value": 2377
@@ -1595,19 +2510,19 @@ function getTemplatesPipelineCollection() {
1595
2510
  },
1596
2511
  "output": {
1597
2512
  "tokensCount": {
1598
- "value": 2788
2513
+ "value": 2517
1599
2514
  },
1600
2515
  "charactersCount": {
1601
- "value": 3604
2516
+ "value": 1743
1602
2517
  },
1603
2518
  "wordsCount": {
1604
- "value": 466
2519
+ "value": 223
1605
2520
  },
1606
2521
  "sentencesCount": {
1607
- "value": 48
2522
+ "value": 24
1608
2523
  },
1609
2524
  "linesCount": {
1610
- "value": 79
2525
+ "value": 47
1611
2526
  },
1612
2527
  "paragraphsCount": {
1613
2528
  "value": 1
@@ -1644,22 +2559,24 @@ function getTemplatesPipelineCollection() {
1644
2559
  ],
1645
2560
  "knowledgePieces": [
1646
2561
  {
1647
- "name": "promptbook-english-driven-software-development",
1648
- "title": "Promptbook: English-Driven Software Development",
1649
- "content": "---\nPromptbook is a tool that enables programming in plain English, making software development accessible to a wider audience.",
2562
+ "name": "promptbook-english-to-code-translator",
2563
+ "title": "Promptbook: English to Code Translator",
2564
+ "content": "---\nPromptbook is a tool that allows users to write programming specifications in plain English, which are then translated into working code. This approach shifts the focus from traditional coding elements like loops and variables to more human-centric concepts such as stories, personas, and knowledge.",
1650
2565
  "keywords": [
1651
2566
  "Promptbook",
1652
- "tool",
1653
- "programming",
2567
+ "programming specifications",
1654
2568
  "plain English",
1655
- "software development",
1656
- "accessible"
2569
+ "working code",
2570
+ "human-centric concepts",
2571
+ "stories",
2572
+ "personas",
2573
+ "knowledge"
1657
2574
  ],
1658
2575
  "index": [
1659
2576
  {
1660
2577
  "modelName": "text-embedding-3-large",
1661
2578
  "position": [
1662
- -0.010369726, -0.010677097, -0.02188805, -0.010499146, -0.011712451, -0.014050089, 0.021904226, 0.032969583, -0.032273952, 0.059047583, 0.01748779, 0.0073121935, -0.02269692, -0.0046671857, -0.03584916, 0.014721452, -0.007712585, 0.0054477463, -0.010191775, 0.009439524, -0.031869516, -0.016420081, -0.056750387, -0.03185334, 0.007910758, 0.00049290573, 0.001686496, 0.016873049, -0.0017279506, 0.0034336573, 0.0011566855, -0.02219542, -0.026110355, -0.01485896, 0.027258953, 0.017293662, -0.014834694, 0.011607299, -0.03246808, -0.0035731876, -0.025123533, 0.0103859035, 0.008986557, -0.010790339, 0.0020525102, -0.0041616415, -0.004270839, -0.016937759, -0.006280883, -0.0020221774, 0.044811454, 0.0020929538, 0.04827342, -0.01743926, 0.0053506815, 0.03649626, -0.01586196, -0.037013937, 0.012367638, -0.041867163, -0.034490258, -0.007619565, -0.0018300706, -0.041867163, 0.019509967, 0.008881403, -0.0100300005, 0.005273839, 0.009827782, 0.042190712, 0.047852807, -0.01774663, -0.0047763833, 0.047626324, 0.026417727, 0.023117533, 0.007324327, -0.016395815, -0.0014236129, 0.009649831, 0.028666388, -0.029070823, -0.03290487, -0.025511792, 0.0130875325, -0.03178863, 0.030979758, -0.0634802, 0.021435082, -0.017892227, 0.021240951, -0.003223351, -0.013880226, 0.021580677, -0.020998292, 0.0006592299, -0.0010302995, 0.012561766, -0.014050089, 0.03756397, 0.01630684, 0.013702274, 0.00959321, -0.047820453, 0.021435082, -0.007785383, 0.023166066, 0.015077355, -0.005775339, 0.01824813, 0.020448258, 0.014689097, -0.004841093, 0.027889872, -0.014260395, 0.03127095, 0.0046105646, -0.026239775, 0.0071059316, 0.019412903, -0.025317661, -0.008938025, -0.03329313, 0.013548589, 0.019202597, 0.0055973874, 0.017762806, -0.0031384195, 0.01667892, 0.04584681, -0.006596343, 0.04733513, 0.0063739032, 0.0058400487, 0.05962997, 0.01993058, 0.0053304597, 0.049697034, -0.020723274, -0.0086872745, -0.039537612, -0.008133198, -0.00032102066, 0.010021912, -0.011461702, -0.0060665323, 0.018798161, 0.028100178, -0.018604033, -0.010652831, -0.02395876, -0.04820871, 0.02119242, -0.0031950404, 0.027242774, -0.005730851, -0.023457259, 0.036755096, 0.01831284, 0.03986116, 0.010086621, -0.03436084, -0.0038320264, -0.0018068156, -0.0068996698, 0.0013882249, -0.008420347, 0.014082444, -0.03280781, 0.039537612, 0.008638742, 0.03516971, 0.007785383, 0.005508411, -0.029556146, 0.042126, -0.0095285, -0.0019291573, 0.028261952, -0.020658566, -0.016727451, -0.015716363, 0.034069646, -0.028698742, 0.02400729, 0.038502257, 0.039019935, 0.024864694, 0.008218129, -0.05396787, 0.0011132087, -0.013750806, -0.022357194, -0.0185555, 0.017164242, -0.009439524, -0.028666388, -0.016120799, -0.015643565, -0.005965424, -0.0050756657, -0.029006114, -0.0017795162, -0.030138534, -0.019170243, 0.045458548, -0.029119356, -0.018426081, 0.022454258, 0.009577032, 0.059791744, 0.0037329397, -0.016258307, -0.011105799, -0.02821342, -0.046946872, -0.027566323, -0.03135184, -0.007918847, -0.045361485, 0.01949379, 0.014155243, 0.031545967, -0.034004938, -0.036463905, -0.0027865604, -0.016824517, 0.030753275, 0.030429726, 0.030656211, -0.005811738, 0.035687387, -0.009924847, 0.009479968, -0.004909847, -0.0132573955, 0.018604033, -0.008193864, -0.028553145, 0.04364668, -0.0019301684, -0.005629742, -0.012052177, -0.026886871, 0.047367483, 0.022729274, 0.028698742, 0.024314662, -0.018587856, -0.0006359748, 0.008234306, 0.01949379, -0.009981468, 0.03335784, -0.037887517, 0.035946228, 0.0447791, 0.001788616, 0.014187597, 0.014575855, 0.0048815366, 0.014915581, -0.0039290907, 0.019526146, 0.0013063266, -0.037661035, 0.023376372, -0.061959516, 0.004788516, 0.032581322, 0.043614324, -0.040799454, 0.018151065, 0.029863518, 0.0050675767, -0.0040301997, -0.0046833633, 0.021839516, -0.0024488568, -0.034037292, -0.021758629, 0.017342195, 0.04358197, 0.03028413, 0.012650742, -0.0113889035, 0.016225953, 0.0125941215, 0.013694186, 0.0037329397, -0.021321839, -0.003326482, 0.053644326, 0.062994875, 0.05662097, 0.03140037, -0.0091806855, -0.023166066, -0.014074355, 0.011016822, -0.0024549235, 0.0007042233, 0.0032678389, -0.024557324, 0.009803517, 0.017390726, 0.04005529, 0.028795807, -0.044487905, 0.008816694, 0.025657387, -0.050764743, -0.021483613, -0.022421904, 0.026644211, 0.04526442, -0.004477101, -0.022049824, -0.011089621, -0.019170243, -0.020108532, 0.00081746525, -0.09661155, 0.007918847, 0.07648684, 0.0024751453, 0.00833946, 0.008028044, 0.015667832, -0.0033224376, -0.049632322, -0.043614324, 0.0067621614, 0.023344018, 0.007453746, -0.08858755, -0.02125713, -0.0036520525, 0.018506968, 0.020351194, -0.01561121, -0.013556678, 0.028229598, -0.01216542, 0.033001937, -0.03804929, 0.009973379, 0.011121976, 0.001138486, -0.023311662, 0.001025244, 0.011469791, 0.041964225, -0.004772339, 0.034004938, 0.015045, 0.010547678, -0.026870694, -0.03487852, -0.0009008801, 0.0095285, -0.044099648, 0.015942847, 0.026110355, 0.026207421, -0.043290775, -0.00032455949, -0.014389815, -0.008282839, 0.012319105, 0.008549767, 0.04995587, -0.00934246, 0.013378726, -0.010248396, 0.010927847, -0.015020735, 0.0141228875, -0.0070290887, 0.002060599, -0.0053992136, 0.029944403, 0.025980936, -0.00036247532, 0.015570766, 0.0019766784, -0.0014549567, -0.017503968, 0.01009471, -0.011259484, -0.024039647, 0.017358372, -0.057171002, -0.04164068, 0.02232484, 0.005730851, -0.010369726, -0.020998292, 0.026757453, 0.018911405, 0.003292105, -0.023813162, -0.012780162, 0.023311662, 0.0063091936, -0.037078645, -0.0009377848, 0.009536589, 0.027954582, 0.0067985607, -0.010038089, -0.040605325, 0.006106976, 0.046332132, 0.007971424, 0.012068355, -0.023554323, 0.04183481, -0.026482437, -0.0021900183, 0.028116355, -0.014042, -0.011752895, 0.016889226, 0.0058562257, 0.027226597, -0.027064823, 0.008574032, -0.027469259, -0.00019349711, 0.03148126, 0.017293662, -0.0023517923, -0.01698629, 0.018523145, -0.002790605, -0.025916226, 0.030138534, 0.01078225, 0.0064103026, -0.022486614, -0.028682565, -0.0038906694, -0.013775073, -0.04031413, 0.0030211331, -0.005957335, -0.0062363953, 0.06487145, -0.029912049, 0.027113356, 0.0021677744, -0.018814338, 0.035105, 0.026239775, -0.01787605, -0.029960582, 0.025851516, 0.0051403753, -0.047076292, -0.004521589, 0.008881403, 0.03837284, 0.0067419396, -0.0044043027, -0.020173242, -0.007518456, 0.009512323, 0.001424624, 0.005937113, 0.0042020846, 0.023004292, -0.025673565, 0.0069684237, -0.04452026, -0.016250217, 0.017018646, -0.008897581, 0.0054032584, 0.0033810807, 0.017892227, -0.08134007, -0.012432347, -0.022470437, -0.008485056, -0.004796605, 0.028536968, 0.003019111, 0.034522615, 0.020027645, -0.0195585, -0.0090270005, -0.0058076936, -0.0029301352, 0.004363859, 0.013079444, -0.05228542, -0.018539323, 0.031319484, 0.016775984, -0.008929935, -0.0012426281, -0.019461436, 0.038793452, -0.034166712, 0.021467436, -0.028973758, 0.0053142826, 0.010571944, -0.011291839, 0.018199597, -0.020610033, 0.005892625, -0.0010616431, 0.012545589, -0.010418259, 0.010369726, 0.00896229, 0.014211863, 0.035590325, 0.025625033, -0.0043031937, 0.005010956, -0.0012021845, 0.004375992, -0.010652831, 0.040217064, 0.008679186, -0.033519614, -0.032872517, 0.016581856, 0.013500057, -0.0088409595, -0.0010166498, -0.033196066, -0.009957202, 0.023716098, 0.040022936, -0.009763073, -0.018215775, -0.036140356, 0.008533589, -0.016420081, 0.012124976, 0.014341283, 0.008412259, -0.00013573866, -0.022292484, -0.027986936, -0.003805738, -0.03368139, 0.03335784, 0.017714275, 0.034328483, 0.02437937, -0.025010291, -0.05354726, -0.02771192, -0.044908516, -0.0003680363, 0.0029362016, 0.028682565, 0.02313371, 0.012488968, 0.0058562257, 0.0017582834, 0.04267603, -0.008743895, -0.042093646, -0.017148064, 0.02413671, 0.013071355, 0.047432195, -0.006923936, -0.014907492, 0.033843163, 0.00032455949, -0.016339194, -0.011364637, -0.00058997027, -0.021338016, -0.0038805585, -0.032128356, -0.011866137, 0.0030919095, 0.0518001, -0.016169332, -0.026094178, -0.018765807, 0.010685186, 0.016873049, -0.0024144799, 0.022308663, 0.0028674477, 0.020885048, 0.0032617722, 0.022276307, -0.020108532, 0.0023052823, -0.03442555, 0.010361637, 0.004909847, 0.024427904, -0.0047480725, -0.021338016, -0.01862021, 0.013766984, -0.003350748, 0.036334485, 0.0113889035, -0.06613329, 0.008412259, 0.022664566, 0.0042061293, 0.008557855, -0.03659332, -0.020351194, -0.0047561615, 0.008036133, 0.037078645, -0.016533323, -0.033454902, 0.023052823, -0.046008583, 0.013346371, 0.035363838, -0.014729541, -0.042352486, -0.00053688814, 0.008238351, -0.01742308, -0.0006041255, -0.029879695, -0.015328106, 0.0053587705, 0.038469903, -0.015959024, 0.03128713, 0.0072636614, -0.0066044317, 0.012780162, 0.0058724033, 0.0072515286, 0.08185774, 0.002063632, -0.017536324, 0.039731745, 0.048111647, 0.046235066, -0.026886871, -0.014575855, -0.023052823, 0.020076178, 0.028811984, 0.013847872, 0.013734629, 0.0055771656, -0.041349486, -0.0148023395, 0.008978468, -0.016225953, -0.005585254, 0.022211598, 0.0022587723, 0.013063267, -0.008849049, -0.01341917, -0.023376372, -0.007279839, 0.048952874, -0.0029422683, 0.0023194375, -0.032646034, -0.014624387, -0.0029119356, -0.003933135, 0.029539969, -0.0033143489, -0.026919227, -0.0041313088, -0.011227129, -0.027032468, -0.017196598, -0.024314662, -0.03047826, -0.00833946, -0.008646831, -0.05247955, -0.022713097, -0.0035630767, -0.034102, -0.001162752, 0.0009034078, 0.036205065, 0.024945581, -0.04238484, 0.020658566, -0.021143887, 0.018345194, -0.006883492, -0.011906581, -0.023166066, -0.030882694, -0.015012645, -0.010588122, 0.035687387, -0.0015186553, -0.004691452, -0.018426081, -0.0016379638, 0.0054315687, 0.04953526, -0.012230129, 0.015635476, -0.0041232198, 0.020480614, 0.030106178, -0.008574032, -0.016873049, 0.03562268, 0.004311282, -0.0013862026, -0.00996529, 0.0066003874, 0.026530968, -0.018442258, 0.009204952, -0.017520146, 0.011631565, -0.01591858, 0.0040463773, -0.016088445, 0.008695363, -0.0022506835, 0.008214084, -0.013006645, -0.013904492, 0.026951581, 0.002060599, -0.011308016, 0.045296777, -0.00011576966, -0.0063739032, 0.00376125, 0.019962937, 0.01792458, 0.02031884, 0.0042223064, -0.01761721, -0.018733453, -0.015400903, 0.006280883, 0.0026793852, -0.025625033, -0.013580943, 0.035655033, -0.0003407369, -0.01792458, -0.036075648, 0.001047488, -0.0018290596, 0.0090108225, -0.024961758, -0.0040160445, 0.0105315, -0.025625033, -0.008307105, -0.013386815, 0.009771162, -0.0009160464, -0.011469791, 0.010199863, 0.024104355, 0.017730452, -0.009253484, -0.008800516, 0.017778985, -0.016128888, 0.005961379, -0.025285307, -0.01674363, 0.012480879, -0.02363521, -0.0072434396, 0.026919227, 0.0060948427, -0.002278994, -0.025366195, 0.024622032, 0.004339593, 0.037402194, -0.005755117, 0.001264872, 0.01041017, 0.02847226, -0.0055528996, 0.029442905, -0.002871492, -0.01862021, -0.001971623, 0.012197775, 0.026061824, -0.0027521835, -0.0074335244, 0.03442555, -0.01435746, 0.003508478, -0.024735276, -0.023101356, 0.05202658, -0.009714541, 0.013435347, -0.0041414197, 0.02971792, 0.0021981068, -0.0010636654, 0.01210071, 0.0407671, 0.022939581, -0.0024347017, 0.008011867, -0.016031822, 0.027000114, 0.0065720766, 0.0030332662, 0.03130331, 0.02119242, 0.009293928, 0.009204952, 0.001628864, 0.0033689477, 0.013030912, -0.054388486, 0.013273573, -0.0165495, 0.028860517, -0.00355701, 0.018134888, 0.017196598, -0.026870694, -0.043549616, -0.022939581, -0.0060220445, -0.0023801029, -0.002382125, 0.004574165, 0.0144626135, 0.038761098, -0.017633388, -0.008149375, 0.016347283, 0.0050433106, -0.0100300005, 0.007664053, -0.02149979, 0.009269661, 0.010822694, -0.024735276, 0.01667892, -0.0058764475, -0.015036912, -0.022777807, 0.021855693, -0.015061178, -0.025673565, -0.014033912, 0.038178712, -0.017503968, -0.0042546615, -0.0026166977, -0.016258307, 0.012068355, -0.011550678, 0.0060948427, 0.025172066, -0.02276163, -0.036108002, -0.007518456, 0.009585122, 0.010337371, 0.00055255997, -0.01611271, -0.02847226, -0.002622764, 0.0026854516, 0.0009266628, 0.0112352185, 0.005900714, 0.0038118046, -0.0057712947, 0.0068066493, 0.025075, -0.004096932, -0.014543501, 0.0115345, -0.009293928, 0.0047238064, -0.02200129, -0.017131887, 0.01116242, 0.0026834295, -0.029410549, 0.0022527056, -0.025657387, 0.014098621, 0.0024104356, 0.030834163, 0.030688565, 0.035363838, -0.007352637, -0.0070573995, 0.041964225, 0.009326283, -0.039052293, 0.005241484, -0.030963581, -0.01109771, 0.014373638, 0.03523442, -0.019946758, 0.018943759, -0.0019736453, 0.04833813, 0.022599855, -0.010329283, 0.017455436, 0.017649565, 0.007142331, 0.011672009, -0.01655759, 0.0024468347, 0.017374549, 0.030979758, 0.012666919, 0.013338283, 0.013839782, -0.011809517, -0.0007749995, 0.0011020867, -0.0070129116, -0.0053264154, -0.015845783, -0.0016703185, -0.039149355, -0.012335283, -0.006321327, -0.007712585, 0.0054962784, -0.009447613, -0.0042748833, 0.0033224376, -0.007554855, -0.01655759, -0.0027016292, -0.011947025, 0.012796339, -0.000098454766, 0.00871963, 0.00467123, -0.015813427, -0.009868226, 0.008541678, -0.009754984, -0.012391903, 0.021580677, -0.010110888, -0.03140037, -0.01661421, 0.019784985, -0.032629855, -0.022066, -0.015263395, 0.011202863, 0.04164068, 0.033001937, -0.01667892, -0.024023468, 0.010741807, 0.009892493, -0.0027319617, 0.022713097, -0.045426194, -0.03135184, 0.04105829, 0.005965424, -0.030251775, 0.012513234, -0.0004089854, -0.0037996715, 0.029135533, 0.0068106935, 0.0066003874, -0.016411992, -0.03555797, 0.025770629, 0.034102, 0.0397641, -0.023101356, -0.0071018874, -0.033843163, -0.031626854, -0.023748452, -0.030979758, 0.031869516, 0.009706452, 0.040022936, 0.021046823, 0.0061352863, -0.038081646, 0.055909164, -0.002541877, -0.025592677, 0.00026844407, -0.04358197, -0.0009944058, 0.012472791, -0.0077732503, -0.0067945165, 0.031238597, 0.04170539, -0.029378194, 0.023085179, 0.024185242, -0.0076842746, 0.005116109, 0.0125941215, -0.0079228915, 0.008824782, 0.04639684, 0.0021010423, -0.0021718186, 0.019251129, -0.008921847, -0.00069562905, 0.0069118026, -0.0088409595, -0.0080765765, -0.06917465, 0.011696274, 0.020173242, 0.009795427, -0.010216041, 0.005548855, 0.012658831, 0.004812782, -0.013524323, -0.009504234, 0.00990867, 0.0057389396, -0.001264872, -0.0014266463, 0.0027845383, 0.0144626135, -0.007380948, -0.01718042, -0.022891048, 0.018054001, -0.0033325485, 0.02627213, 0.007053355, -0.022146888, -0.026498614, -0.0014539456, -0.017261308, 0.00871963, -0.004042333, -0.005678274, 0.004501367, 0.011760985, -0.029912049, -0.005492234, 0.015263395, 0.008173642, -0.005455835, -0.01116242, -0.003759228, -0.022454258, 0.017018646, 0.0010035055, -0.0052091293, -0.0042101736, -0.006438613, -0.002096998, 0.023877872, -0.026854517, -0.018587856, -0.02363521, 0.017714275, 0.0054275244, -0.010207952, -0.03636684, 0.011364637, -0.015837694, -0.0041859075, 0.00084880897, 0.013969202, -0.0034498349, 0.06377139, -0.008032089, 0.009698363, 0.0021333972, -0.031093001, 0.0026268086, 0.011922758, -0.007118065, 0.025527969, -0.008549767, 0.0005611543, 0.017018646, -0.0057591614, -0.043064293, -0.008011867, 0.014325106, -0.012440436, 0.0020686875, -0.004107042, -0.022454258, -0.028197242, 0.010450613, -0.0069360686, 0.008044222, -0.0035367885, 0.00914833, -0.0055407663, -0.035266776, 0.013030912, 0.009941025, 0.00783796, 0.0012952046, 0.017520146, -0.008104887, 0.011243307, 0.012157331, -0.02389405, 0.0027299395, 0.0063860365, -0.0014519234, 0.018474614, 0.00717873, -0.0057591614, -0.026126534, -0.013775073, 0.0051322863, -0.0023861695, 0.022518968, -0.010790339, -0.014025823, 0.002072732, -0.012553678, -0.02069092, -0.01761721, 0.011121976, 0.017018646, 0.014543501, -0.005322371, 0.007453746, 0.032937225, -0.014009645, 0.0067136292, 0.00026288308, -0.04018471, 0.0028795807, -0.00827475, -0.009302016, -0.010935936, -0.028003113, 0.023473436, 0.0021819295, -0.0032091956, 0.032322485, 0.0070048226, -0.012213952, -0.024347017, -0.0070048226, -0.022729274, -0.0075225, -0.0012031955, 0.0056701857, 0.018862871, -0.04332313, -0.0016511079, -0.012990468, 0.01742308, 0.010741807, -0.051055938, -0.0049947784, -0.008024001, -0.009374815, -0.0127639845, 0.012658831, 0.00170874, 0.009787339, 0.021208597, 0.012683097, 0.008800516, 0.019720275, -0.026433904, -0.009957202, -0.009641742, 0.009310105, -0.034134354, 0.004594387, -0.01623404, 0.029750274, 0.00190388, 0.02803547, 0.01798929, 0.02714571, 0.0023962804, -0.01529575, -0.004127264, -0.02025413, -0.020448258, -0.0034599456, -0.012909581, 0.0063617704, 0.004009978, -0.004820871, -0.008242396, -0.000717873, -0.016145065, 0.00649119, -0.0031303307, 0.02852079, 0.013152243, -0.022777807, 0.017374549, -0.0033851252, 0.027631033, 0.011752895, -0.021370372, -0.035460904, 0.012181597, 0.0325975, 0.008654919, -0.005184863, -0.000243546, -0.015667832, -0.018490791, -0.02382934, 0.0058036493, 0.0006420413, 0.038275775, -0.013411081, 0.05396787, 0.0013386814, -0.008108932, 0.013710363, 0.009132153, -0.006588254, -0.007134242, 0.033325486, 0.026919227, -0.00076185534, -0.010628565, 0.0007911769, -0.010321193, 0.013184597, 0.026029468, -0.039958227, -0.008646831, -0.00608271, 0.010296928, -0.004958379, 0.0077894274, -0.004193996, 0.0023032601, 0.008646831, 0.009641742, -0.025673565, -0.01798929, 0.008258573, -0.006321327, 0.011817605, 0.028795807, 0.023052823, -0.019461436, -0.008052311, -0.032532793, -0.014470702, 0.018054001, 0.0255765, -0.0034437682, -0.027631033, 0.001664252, -0.013864049, 0.027792808, 0.004489234, 0.0023639256, -0.00084729237, 0.0065478105, 0.005241484, 0.001093998, -0.026255952, -0.008290928, 0.017245129, -0.027938403, -0.011817605, 0.0066367863, -0.00094637903, -0.0005606487, 0.0027825162, 0.007850093, -0.027792808, 0.009787339, 0.004865359, -0.01829666, 0.011227129, 0.003542855, -0.004812782, 0.01034546, 0.036884516, 0.007134242, -0.0048491815, -0.017908404, 0.018409904, 0.031319484, 0.0014721452, 0.034166712, -0.017698098, 0.014381726, 0.012699274, -0.015942847, -0.003360859, 0.012796339, 0.014640565, 0.009835871, -0.03127095, -0.013920669, -0.018393727, -0.012861049, 0.00818173, 0.020173242, -0.010652831, 0.007384992, 0.024460258, 0.020092355, 0.013305928, 0.010685186, -0.0073324153, -0.0077004516, 0.00048936694, -0.0002780494, 0.007858181, 0.012213952, 0.0065356777, -0.010871226, -0.029960582, 0.048985228, -0.0082626175, -0.03999058, -0.010652831, -0.009730718, 0.016646566, -0.00015216885, -0.00071382866, -0.020399727, 0.008808605, 0.0023073044, 0.009787339, -0.00030737097, -0.03779045, -0.038502257, -0.030559147, 0.009633654, -0.0020828429, -0.026304485, -0.017714275, -0.024427904, 0.005002867, 0.018814338, 0.02219542, -0.014939847, 0.0015762873, 0.008363726, -0.015708275, 0.00093930145, -0.014050089, 0.036205065, -0.03122242, 0.0033709698, -0.018862871, 0.019542323, -0.010232218, -0.014931759, -0.020836517, -0.019574678, 0.007987601, 0.0010818649, -0.017164242, 0.010822694, 0.012739718, 0.025997113, -0.004719762, 0.0022567501, 0.009334371, -0.005848137, 0.007591254, -0.021095356, 0.01197129, 0.021548323, -0.025544146, 0.0005879481, 0.022793984, -0.012230129, -0.015004557, -0.028132534, 0.0030110222, -0.01379125, -0.009124065, -0.03217689, -0.012739718, 0.0107094515, 0.0026773629, -0.0022931492, -0.02062621, -0.00859021, 0.016598033, -0.013613299, 0.015085444, -0.0016733519, 0.00012739719, -0.007757073, 0.00558121, -0.009633654, -0.020140888, 0.0028654255, -0.026417727, 0.00078662706, -0.010135153, 0.018393727, 0.01366992, 0.010749895, -0.0052131736, 0.0022345062, -0.010127065, -0.032823984, -0.0031727965, 0.022227775, -0.0042546615, 0.016792161, 0.0044366573, 0.014033912, -0.0042789276, 0.018959936, -0.015028823, -0.027048646, -0.0024973892, 0.03178863, -0.0039149355, 0.008533589, 0.002404369, 0.017326016, 0.024492614, -0.012796339, -0.007890536, 0.0035246552, 0.017309839, -0.008768162, 0.009018912, 0.029006114, -0.010539589, 0.0062121293, -0.021386549, 0.019315839, 0.0129338475, -0.020351194, -0.007862226, -0.014486879, -0.0022506835, 0.028375193, 0.01818342, -0.022502791, -0.0016571744, -0.010442524, 0.0018553479, 0.013265484, -0.016015645, -0.018442258, -0.011113888, -0.028245775, -0.0028957583, -0.007995689, 0.013079444, -0.023376372, -0.00065063563, 0.031513613, 0.032306306, 0.0064992784, 0.010207952, -0.004218262, -0.0021394638, -0.02182334, 0.0052374396, 0.012941936, 0.0020889093, -0.010701363, -0.024282306, -0.0041656857, 0.0063132383, -0.0036985625, 0.017034823, -0.014317016, 0.007914803, -0.02570592, -0.029685566, -0.003281994, -0.011874226, 0.017277485, -0.0007224229, -0.018280484, 0.00093930145, -0.0056135645, -0.010393992, -0.048920516, 0.0011667964, -0.04888816, 0.009407169, -0.01661421, -0.0107256295, 0.009310105, 0.0031768407, -0.022664566, 0.00416973, -0.017309839, 0.020432081, 0.025252953, -0.0061231535, 0.0060463105, -0.010434436, -0.0108954925, -0.019946758, -0.013346371, 0.0031465082, -0.002359881, -0.00517273, 0.021321839, -0.021839516, 0.012844872, -0.022179242, 0.004792561, 0.0144626135, 0.010175597, -0.0054639233, 0.015983291, -0.0022082177, 0.009382904, -0.002074754, -0.016476702, -0.008222174, 0.0031404416, -0.0038623589, -0.006058444, 0.004727851, -0.026255952, 0.012108799, 0.010960202, -0.011809517, -0.008032089, -0.015061178, -0.016646566, -0.00075225, 0.025220597, 0.0007325338, -0.02564121, -0.016711274, 0.022227775, 0.042643677, -0.00015532851, 0.014405992, -0.010871226, 0.018733453, -0.008824782, -0.007566988, -0.0061595524, 0.016541412, 0.021240951, -0.006495234, 0.016120799, -0.013718452, 0.0026389416, 0.014308928, 0.03555797, -0.0050190445, 0.00012101468, -0.0013275595, 0.0061959517, -0.0117286295, -0.0026166977, 0.010660919, 0.025608856, -0.0091806855, -0.03623742, -0.02834284, -0.013071355, -0.0013578922, -0.00758721, 0.015311928, 0.0011688186, 0.016711274, 0.03562268, 0.024961758, 0.005912847, 0.0062849275, -0.009479968, -0.00046130925, 0.011736718, 0.005443702, -0.015724452, -0.0038987582, 0.037272774, 0.010563855, -0.010224129, -0.013435347, 0.0055326778, 0.021418903, -0.00959321, 0.016379638, -0.00296249, 0.0034114134, -0.010539589, 0.006450746, 0.01811871, -0.028359016, 0.023538146, 0.030187065, -0.00890567, -0.011987468, 0.045555614, 0.004934113, 0.015878137, -0.0027602722, -0.032888696, 0.010021912, 0.0043234155, 0.021079179, 0.025188243, -0.0018947803, 0.024185242, -0.004096932, 0.011202863, 0.012950025, -0.021208597, 0.002016111, -0.020561501, 0.017973114, 0.002517611, 0.0051929518, 0.011178597, -0.011024912, 0.0007770217, -0.002357859, 0.0078217825, 0.008307105, 0.0020423993, -0.017164242, -0.0115587665, 0.013961113, 0.01586196, 0.02690305, 0.017018646, 0.005310238, -0.005480101, 0.005961379, -0.0027521835, -0.020885048, 0.018604033, 0.0037167622, 0.000877625, -0.009213041, 0.004489234, -0.00055053784, 0.002325504, -0.010644742, 0.008889493, -0.01993058, 0.022535145, -0.000028120905, 0.0025681653, 0.00025732207, 0.028164888, 0.0051120645, -0.0016268417, -0.015522234, 0.009188774, -0.021904226, -0.005795561, 0.003075732, 0.0061474196, -0.0063658147, -0.0120845325, -0.011752895, -0.005346637, 0.0018553479, -0.0074375686, 0.0072474843, 0.027857516, -0.002094976, -0.0018300706, -0.0014883226, -0.003943246, -0.028375193, -0.027986936, -0.0060018227, -0.00011659117, 0.0016268417, 0.022017468, 0.0064345687, -0.000118676544, -0.0057025403, -0.017956937, -0.001514611, 0.0031202198, 0.0010424325, -0.024751453, -0.008760073, 0.017148064, 0.0008796472, -0.0007830882, -0.014114799, 0.01636346, 0.0046631414, -0.01811871, -0.01116242, 0.01988205, -0.018054001, -0.008938025, 0.0044973227, -0.0038765143, -0.009002734, 0.0068147383, -0.001766372, 0.038858164, -0.011000645, -0.0020444214, -0.00090391334, -0.008978468, -0.010499146, -0.00611102, -0.0010227163, -0.0039290907, -0.0019969002, 0.008347549, -0.016598033, 0.0043234155, 0.010733718, 0.014284662, 0.005071621, -0.00018161681, 0.006895625, 0.0049300687, -0.00658421, -0.0073000607, 0.020027645, -0.011437436, -0.0074011697, 0.021774808, -0.0066731856, -0.022793984, -0.019073177, 0.0107256295, 0.010984468, -0.009552767, 0.0016581855, -0.01667892, 0.002426613, -0.020157065, 0.012359548, -0.013597121, -0.019801162, -0.002622764, 0.017568678, 0.0023841471, 0.009989557, 0.013063267, 0.03078563, -0.00081948744, -0.026983935, 0.02614271, -0.0023437038, -0.00661252, 0.0033770364, 0.007995689, 0.00915642, -0.011267573, 0.013686097, -0.019089356, -0.023230774, 0.0076276534, 0.014907492, -0.020043824, 0.007647875, -0.046364486, -0.026045647, 0.019509967, 0.032969583, 0.000032828786, 0.02395876, 0.011631565, -0.034619678, 0.0057632057, -0.0088571375, 0.028084, 0.0055245887, 0.013556678, 0.010944025, 0.030559147, 0.01178525, -0.0071301977, 0.019154064, -0.011817605, -0.013508146, 0.0077408953, 0.03280781, -0.0024448126, -0.0014650676, 0.012707363, 0.025948582, 0.022680743, -0.0025459214, -0.0033426594, -0.017455436, -0.00576725, 0.008493145, -0.0047359397, 0.008663008, 0.0007942102, 0.0014782117, 0.0077044964, -0.0129176695, 0.017342195, -0.000026414693, -0.0053709033, 0.004784472, -0.013961113, 0.026320662, -0.002564121, 0.01624213, -0.0014337238, 0.011146242, -0.018021645, 0.0127639845, -0.0030494437, 0.0142765725, 0.015036912, -0.0047035846, 0.0078217825, -0.020173242, 0.009358637, 0.01661421, -0.01498838, -0.00094739016, -0.013273573, -0.0025782762, 0.024864694, 0.015781073, 0.0027966714, -0.00079016585, 0.0034902783, -0.00023634199, -0.024913227, 0.016581856, 0.01988205, 0.0149560245, -0.018280484, -0.011566855, -0.010822694, 0.0056095202, -0.0031667298, 0.016808338, -0.0036560968, 0.02036737, 0.0120845325, -0.0041980403, 0.011502146, 0.009852049, 0.017568678, 0.0057834275, -0.03135184, -0.012772073, -0.009852049, 0.043096647, 0.023619033, 0.019089356, 0.0040605324, -0.008056355, 0.0039938004, -0.0056014317, 0.010466791, 0.012044089, 0.000078548954, -0.005152508, -0.0014954002, 0.014001557, -0.008889493, 0.0030676431, 0.012772073, -0.00044513182, -0.023796985, 0.022308663, -0.024557324, -0.0074092583, -0.0070048226, 0.0072677056, 0.0058360044, 0.00089986896, -0.008751984, -0.0096902745, -0.0057793832, -0.008024001, 0.0058764475, 0.0064062583, 0.022777807, -0.0071746856, -0.0025600768, 0.013443436, 0.000487092, 0.0029483347, 0.008970379, 0.021726275, -0.011380815, 0.008970379, -0.0025540101, -0.029442905, 0.018668743, -0.0048006494, 0.023861695, 0.010903581, -0.014721452, -0.0012284728, -0.0034902783, 0.026466258, 0.016889226, -0.0021010423, 0.011938936, 0.0026348974, 0.011210952, -0.006709585, 0.009164508, -0.008468879, -0.012432347, -0.013726541, -0.001754239, -0.013726541, -0.0019564568, -0.010329283, 0.0004906308, 0.014058177, 0.0044851894, -0.0012739719, -0.008205996, 0.011647742, 0.0027764498, -0.014284662, -0.0025540101, 0.0022729274, 0.0071746856, -0.0063981693, 0.011121976, -0.01993058, 0.012044089, -0.0037309173, -0.016484791, -0.010167508, 0.007910758, 0.0028694698, -0.010102798, -0.00040569936, 0.028828163, -0.0025014335, 0.015408993, -0.0036823852, -0.010466791, -0.01698629, -0.0008513367, -0.02771192, -0.013750806, 0.009075533, -0.013912581, 0.0022830383, 0.0090270005, 0.027841339, 0.024298485, -0.018571679, -0.00661252, 0.016444348, -0.0010616431, 0.014300839, 0.038114, 0.0071059316, -0.0070048226, -0.016808338, 0.008044222, 0.003496345, -0.011574944, -0.012246307, 0.023667565, 0.0134272585, 0.014753806, -0.003736984, 0.015643565, -0.000216373, -0.0017400837, 0.01417142, -0.018652566, 0.02237337, -0.010612387, -0.0022425947, 0.014648654, 0.012505146, 0.009293928, -0.005504367, -0.0046752742, -0.016468612, -0.010952113, 0.015045, -0.0073121935, 0.014300839, 0.02670892, -0.019089356, -0.010021912, -0.0051808185, -0.004481145, -0.005747028, 0.01742308, 0.0042263507, -0.0020090332, 0.022599855, -0.005148464, 0.007769206, 0.00021599383, -0.01586196, -0.006632742, 0.011146242, 0.0017582834, 0.00019311794, 0.00052829384, 0.016824517, -0.00927775, -0.0072677056, -0.009876315, -0.017795162, -0.00042389895, 0.005916891, 0.004250617, -0.00014875643, 0.00071180647, 0.006013956, 0.013718452, 0.011105799, 0.01091167, -0.00749419, -0.008189819, -0.016169332, -0.0042910604, -0.014260395, 0.029944403, 0.0065033226, -0.007668097, 0.008792427, -0.00576725, 0.019315839, -0.0031242643, 0.0018765806, -0.014001557, -0.014769984, 0.021354195, 0.0035812764, 0.009358637, 0.0057793832, -0.0039371797, 0.0081615085, -0.002982712, 0.006875403, -0.0010110887, -0.0049058027, 0.009884403, 0.012367638, 0.03798458, -0.0070290887, 0.0151258875, 0.00742948, -0.021111533, 0.00051767746, 0.0014832672, -0.0012163398, -0.013847872, 0.0041090646, -0.007890536, -0.0030332662, -0.0063536814, 0.023117533, -0.019526146, 0.020076178, -0.00033770365, -0.005993734, -0.007939069, 0.028310485, -0.0039978446, 0.0063981693, -0.0014145131, -0.0015924647, -0.012699274, -0.0027481392, 0.0018037823, 0.0091968635, -0.005310238, 0.023457259, 0.006859226, 0.0033123267, 0.029087001, 0.010248396, -0.010604299, 0.01968792, 0.014583944, 0.009310105, -0.008816694, 0.0137993395, 0.0070048226, 0.009407169, -0.009204952, 0.0036540746, 0.020949759, -0.018345194, -0.006418391, 0.028164888, -0.0018472591, 0.006559944, 0.0033750143, 0.0069441576, 0.012950025, 0.0100138225, 0.023489613, 0.0038360707, -0.0009827783, -0.025835339, -0.023311662, 0.027695743, 0.0006086754, -0.011817605, -0.013993468, 0.017471613, 0.0061474196, -0.020642387, -0.0175525, 0.0011233196, -0.00045322053, 0.007417347, 0.026789807, -0.025447082, -0.006632742, -0.004715718, 0.016500968, -0.0054517905, 0.009463791, 0.00040392994, -0.011777162, 0.0064750123, -0.024023468, 0.008816694, -0.00066226313, -0.019380549, 0.00914833, -0.0061029317, -0.01097638, -0.026644211, -0.014203775, 0.0073647704, 0.01587005, -0.020496791, 0.021370372, -0.00608271, 0.0013043045, -0.021321839, -0.011736718, -0.0030009113, 0.021111533, 0.0026975847, 0.00692798, -0.0024529013, -0.010491056, -0.012586033, -0.0035266776, 0.026676565, 0.007449702, -0.0075508105, 0.005912847, 0.009657919, -0.006709585, -0.010757985, 0.019218775, -0.009512323, -0.026886871, -0.0004678813, -0.022664566, 0.008630654, -0.004796605, -0.06137713, -0.0019635344, 0.01785987, 0.008129153, 0.012157331, -0.000427185, -0.01899229, -0.0051201535, 0.030656211, 0.0037390061, -0.006495234, -0.005755117, -0.016937759, -0.008468879, 0.008808605, 0.019040823, -0.028326662, -0.00078409933, -0.006596343, -0.0029645122, 0.01868492, -0.016007558, 0.0077651613, 0.0185555, 0.0028532925, 0.0117286295, -0.004295105, -0.008052311, -0.0112352185, 0.004691452, 0.0041535525, -0.015222952, -0.013144153, 0.0146162985, -0.0014215908, -0.0058157826, -0.00426275, -0.005051399, -0.004078732, 0.0063375044, -0.0005808705, 0.003292105, 0.00029650176, -0.045911517, -0.023780808, -0.008307105, -0.019202597, -0.013872137, 0.016355371, -0.014470702, -0.022713097, 0.0124080805, -0.00019488735, 0.0005143914, -0.028989937, -0.0071261534, -0.014025823, -0.012294839, -0.0047035846, -0.00934246, 0.0027501613, 0.012052177, -0.020060001, 0.0006531633, 0.020399727, -0.006050355, 0.009318193, 0.025398549, -0.010749895, -0.000008191399, -0.0036055425, 0.014195686, 0.008371815, -0.009536589, -0.015198686, -0.011704363, 0.010256484, 0.0065235444, -0.013702274, 0.0024913226, 0.010604299, -0.008242396, -0.014405992, -0.008404169, -0.014527323, -0.02025413, -0.006588254, -0.006661053, -0.0122543955, -0.0007360726, 0.004816827, -0.023764629, -0.02834284, -0.0038097824, 0.0013498034, -0.014656742, -0.009075533, -0.0023275262, -0.0018270373, -0.0055448106, -0.031368017, 0.023360195, -0.0009468846, -0.013548589, 0.0053264154, 0.014397903, 0.015578855, 0.013766984, 0.0215645, -0.00025289858, -0.018539323, 0.011194775, 0.007668097, -0.0067378953, -0.009512323, 0.024460258, -0.0020990202, 0.018199597, 0.011882314, -0.01787605, -0.011340371, 0.011866137, 0.0024751453, -0.00811702, 0.0015601099, 0.011938936, -0.016452435, -0.022211598, 0.013564766, 0.00271174, 0.006301105, 0.0105315, -0.003508478, -0.004582254, 0.011396992, 0.020043824, -0.011453614, 0.005585254, 0.0066165645, -0.01868492, 0.003931113, 0.011947025, -0.020480614, 0.019704098, -0.010838871, -0.019979114, -0.013928758, 0.004086821, 0.009496145, -0.013451525, 0.011858049, 0.006030133, 0.010523411, -0.0027258953, -0.03436084, -0.0100300005, 0.003089887, 0.011882314, -0.003089887, -0.006179774, 0.0004405819, -0.0024084134, 0.013564766, -0.010264573, 0.0317401, -0.006758117, 0.0056135645, 0.017956937, -0.0037066513, -0.006822827, -0.012780162, -0.00022825328, -0.020464435, -0.00009693813, 0.018264307, 0.011502146, -0.007862226, 0.0052253064, -0.00074668904, -0.012278662, 0.0018240041, 0.009924847, 0.016598033, -0.01781134, 0.012019823, 0.0001372553, 0.0024367238, 0.026951581, -0.00070169556, -0.009827782, 0.023036646, -0.016581856, 0.013305928, 0.0060907984, 0.009431436, 0.0038684255, -0.016088445, -0.0047561615, -0.005342593, 0.018393727, -0.0059775566, -0.0073890365, 0.002598498, -0.0038765143, 0.014494969, 0.01542517, -0.002768361, 0.0022324838, -0.012828694, -0.028391372, 0.0011303972, -0.0049381573, 0.012270573, 0.009237307, -0.0025701877, -0.0025256996, -0.0019190464, -0.013621387, -0.01874963, -0.0103859035, -0.0058036493, 0.0049300687, 0.0037693388, -0.008270706, -0.0069077583, -0.019704098, 0.003508478, 0.0027380283, -0.011041089, -0.007348593, -0.0048572705, -0.01698629, 0.027760452, -0.018134888, -0.006422436, 0.00658421, -0.016533323, 0.00371474, -0.013079444, -0.019137887, 0.0013568811, 0.0031303307, 0.009479968, -0.0034882561, 0.024897048, -0.015546501, -0.015045, -0.0021819295, -0.0014418125, -0.0012941936, -0.0038219155, -0.013451525, 0.008679186, -0.014244218, -0.00092565175, -0.0038198933, 0.0009787339, -0.017455436, 0.0017704164, -0.013726541, 0.016711274, 0.02640155, 0.0075225, 0.007073577, 0.0053789923, -0.025236774, 0.012836782, 0.0031869516, -0.003122242, 0.0020444214, 0.0066286977, 0.006915847, 0.0030959537, 0.013661831, 0.020561501, 0.008468879, -0.02238955, 0.0039776233, -0.019655565, -0.0050150002, -0.023069, 0.0025782762, -0.003486234, -0.0048046936, 0.0029260907, 0.022405727, 0.015667832, -0.010102798, -0.0064305244, -0.002369992, 0.0011819628, 0.001515622, -0.029054645, -0.013637565, 0.010644742, -0.0063981693, 0.011283751, -0.0060786656, 0.016856872, 0.0063658147, -0.008954202, 0.00815342, 0.001492367, 0.0006966401, 0.0070290887, -0.0007709552, 0.010863137, 0.007352637, -0.004363859, -0.0045135003, 0.01617742, 0.003747095, -0.0017340172, -0.016193597, -0.023020469, 0.01241617, 0.017083356, 0.0061919075, 0.0067945165, 0.004145464, -0.0071949074, -0.0018128821, -0.005706585, 0.0070088673, 0.016048001, 0.04270839, 0.0065437662, -0.03436084, -0.016355371, -0.0056095202, 0.014001557, -0.010127065, 0.015829606, 0.010038089, -0.0050635324, -0.0040079555, 0.005391125, 0.0036864295, 0.0037005849, 0.03643155, -0.0018715252, -0.009560855, 0.011396992, -0.011550678, 0.01774663, 0.0113889035, -0.027566323, -0.022146888, 0.00040468827, 0.0037996715, -0.0007259617, -0.0029988892, 0.0027724053, -0.008679186, 0.0048572705, 0.0068309153, 0.015667832, 0.007635742, 0.0080927545, -0.006657008, 0.037078645, 0.012189685, -0.025835339, 0.012521323, 0.014074355, 0.01587005, -0.0052374396, 0.003975601, -0.008258573, -0.00977925, 0.013443436, 0.022988113, 0.0012062289, -0.025091179, -0.009115976, 0.01097638, 0.022923404, -0.024249952, 0.025673565, -0.003979645, 0.005536722, 0.0009787339, -0.0030049558, 0.015878137, 0.015473702, 0.029814985, 0.011752895, 0.005387081, -0.013111799, 0.016048001, 0.017956937, -0.011421259, -0.019057, 0.0005373937, -0.0063536814, -0.017083356, -0.018474614, -0.0066367863, 0.013726541, 0.008824782, -0.00024051273, 0.0064588347, -0.0021394638, -0.020593856, -0.023004292, -0.009132153, 0.010321193, -0.007655964, -0.017374549, -0.00063496374, 0.005698496, 0.0014408014, -0.012529411, -0.0006288972, 0.0020110556, 0.032759275, -0.004218262, 0.0071261534, -0.01141317, 0.019704098, -0.018199597, -0.009900581, 0.013572855, -0.008129153, 0.0059290244, -0.04390552, -0.0026611856, 0.017584855, 0.029766452, 0.014567766, 0.0070290887, -0.014559678, 0.002541877, 0.0022992159, 0.0056418753, -0.0062161735, -0.011396992, 0.003601498, 0.041349486, -0.00742948, -0.00611102, -0.009067444, 0.014931759, 0.018701097, 0.02112771, 0.013540501, -0.0022203508, -0.00959321, -0.025980936, 0.014867049, 0.011631565, -0.012027912, -0.0033103046, -0.003099998, -0.031206243, 0.0051686857, 0.009213041, -0.0072313068, 0.0048249154, -0.00009232504, 0.0013983357, 0.0077247177, 0.0037875385, 0.0028654255, -0.015489879, -0.020221775, 0.01341917, -0.0035974537, -0.011566855, 0.015352371, -0.0013831694, -0.00016809351, -0.00024266129, -0.000097254095, 0.0012507167, -0.00407671, 0.003724851, -0.015465613, 0.019251129, 0.0029180022, 0.008630654, 0.0054073026, -0.0026975847, 0.008165552, -0.00717873, 0.0134272585, -0.014705274, 0.0024003247, 0.017455436, -0.010814605, 0.0030919095, -0.0027137622, 0.0011091643, -0.005504367, -0.013483879, 0.017795162, -0.00407671, -0.005047355, 0.013613299, -0.0065558995, 0.00070573995, 0.025754452, 0.0036864295, -0.017099533, -0.0069360686, -0.022810161, 0.012812517, 0.009706452, 0.021030646, -0.039893515, 0.015101621, -0.005366859, -0.013564766, -0.010984468, 0.013540501, 0.01981734, 0.0043921694, 0.023020469, 0.0107256295, 0.011121976, -0.001208251, 0.033875518, 0.0012729607, 0.019218775, -0.021596855, -0.003340637, 0.01981734, 0.02182334, 0.018911405, -0.00025062362, 0.0009696341, 0.007109976, 0.037143357, 0.008387992, -0.012804428, -0.008824782, 0.014009645, -0.005706585, -0.019590855, -0.0066286977, -0.0060948427, 0.016630387, 0.030640032, -0.026175065, -0.0026510747, -0.020124711, -0.013589033, -0.0095204115, 0.023441082, -0.006446702, 0.0012628498, -0.010523411, -0.01335446, 0.0095204115, -0.01210071, -0.011324194, -0.010539589, 0.009868226, -0.019946758, 0.013289751, 0.0076761856, 0.00617573, -0.02382934, -0.0002472112, -0.0033689477, -0.008185774, -0.033519614, -0.009682186, 0.009706452, -0.00859021, 0.008493145, -0.0027360062, -0.03248426, 0.021580677, 0.010677097, -0.005560988, 0.011696274, -0.0015045, 0.0057348954, 0.016727451, -0.0063860365, 0.002382125, 0.005730851, 0.00683496, -0.0036358752, 0.021613033, 0.013621387, -0.016476702, 0.023020469, -0.013540501, 0.024524968, -0.027178066, -0.012545589, -0.009633654, 0.009059355, -0.01091167, -0.0036763186, -0.005823871, 0.011591122, -0.008565944, -0.00457821, -0.00044664845, 0.0067176735, 0.019299662, -0.006232351, -0.0015065222, 0.027307484, -0.008323283, -0.012958113, 0.00984396, -0.001526744, -0.0058643147, -0.0021495747, -0.009229218, -0.03804929, 0.014268484, -0.0008750973, 0.012027912, -0.010466791, -0.012497057, 0.011291839, -0.002289105, 0.028811984, 0.00060008117, 0.0022021513, -0.0050190445, 0.0046752742, 0.0074618347, 0.0005672208, -0.021726275, 0.0107094515, -0.007647875, -0.011882314, -0.024654388, 0.004557988, -0.0017410947, 0.015158243, -0.005002867, 0.00075477775, 0.011510234, -0.031998936, 0.013216952, -0.009172597, 0.009763073, 0.0012476835, 0.031772453, 0.005504367, 0.014042, -0.005387081, 0.00045322053, 0.007498234, -0.00003390307, 0.005152508, 0.01899229, 0.004408347, -0.017309839, -0.007154464, -0.009035089, -0.02162921, 0.007842004, -0.004772339, 0.0056014317, -0.0085255, -0.013726541, -0.0025904092, 0.007360726, 0.007397125, -0.01442217, -0.0025216553, 0.02263221, 0.008784339, 0.05222071, 0.00016430192, 0.022114532, -0.0054073026, -0.0056944517, -0.00959321, -0.017973114, -0.02069092, -0.0044851894, -0.009544678, 0.0072070407, -0.028164888, 0.00859021, -0.0027137622, -0.016153153, 0.015959024, -0.0014943891, -0.0014418125, 0.0036702522, 0.01536046, -0.010644742, 0.0012133064, 0.009334371, 0.00031849297, 0.012521323, 0.009827782, -0.0032516613, -0.010183685, 0.016970113, -0.002382125, -0.0008523478, -0.005455835, -0.025463259, 0.0042991494, 0.02771192, 0.035363838, -0.00019577205, 0.01574063, -0.0035064558, -0.024314662, -0.008072533, 0.005892625, -0.0014802339, -0.009018912, -0.004841093, -0.004295105, 0.0061676414, -0.006685319, -0.004739984, 0.004014022, -0.015764896, 0.0067176735, -0.0071746856, 0.0013305928, -0.013160331, 0.021790985, -0.0035367885, 0.0033527703, 0.0037309173, 0.019526146, 0.0070088673, -0.0060099117, 0.0154979685, 0.00492198, -0.021532146, 0.02276163, -0.0013144154, 0.005443702, 0.0020221774, -0.007829871, -0.019429082, -0.019979114, -0.00683496, -0.013694186, -0.018717274, -0.023602856, 0.016185509, -0.012027912, -0.00073455594, 0.0033669255, -0.012213952, -0.007328371, -0.013402992, -0.0060463105, -0.011033, -0.017973114, -0.00072090625, -0.01711571, 0.012286751, -0.0032152622, 0.0026652298, 0.013734629, -0.004384081, 0.014163331, 0.0057591614, -0.0071018874, -0.008832871, 0.0051686857, -0.008517412, 0.00959321, -0.021758629, 0.033196066, 0.013451525, -0.013775073, 0.00376125, -0.0017127843, 0.010790339, -0.0011283751, -0.019332016, -0.019590855, 0.016598033, -0.0047116736, -0.011380815, 0.011267573, -0.005787472, -0.0016682964, 0.008889493, 0.011453614, 0.005455835, -0.00072545616, -0.015684009, 0.00070776214, -0.0007896603, -0.01517442, 0.007097843, 0.00045271497, 0.012448524, 0.0037652946, 0.019898226, 0.01962321, -0.014575855, -0.014527323, 0.020771807, -0.006106976, -0.011259484, 0.0023153932, -0.0017006512, 0.014624387, -0.006948202, 0.018911405, -0.012464702, 0.036269777, 0.022146888, 0.002109131, -0.005055444, -0.029734097, -0.007498234, 0.010021912, 0.0305915, 0.01742308, -0.010741807, 0.017326016, -0.018264307, 0.0027380283, -0.008396081, -0.0053264154, -0.011364637, -0.016395815, 0.001663241, 0.0046590967, -0.014511146, -0.011906581, -0.0017249174, 0.004913891, 0.010264573, -0.0035185888, 0.0022992159, 0.013119888, 0.0030939316, 0.006151464, -0.0023639256, 0.0067864275, -0.0042101736, 0.015489879, 0.006851137, 0.015376638, 0.018830517, -0.013039, 0.009269661, 0.006244484, 0.0047602057, 0.013629477, -0.017730452, 0.024719097, -0.010822694, 0.00016859904, -0.0019059023, -0.02188805, 0.0009903614, -0.0045175445, 0.008133198, -0.007575077, -0.002814871, -0.010070444, -0.013993468, 0.010442524, 0.0011334305, 0.00046080368, 0.0019382571, 0.00004717361, 0.016209774, -0.006276839, -0.031109178, 0.0028816028
2579
+ -0.009948436, -0.002005733, -0.029007792, -0.015270967, -0.013157609, -0.0033070135, 0.015349239, 0.0109738065, -0.030933296, 0.04743314, 0.041985374, 0.004191493, -0.020523053, 0.010034536, -0.032843146, 0.006500532, -0.009001339, 0.014589996, -0.008743039, 0.019802945, -0.025266366, -0.0059487107, -0.04029469, -0.028882556, 0.014543032, 0.0045632874, 0.0014754368, -0.0034576883, -0.014370833, -0.006414432, 0.0102145625, -0.014096879, -0.02913303, -0.033469327, 0.01187394, 0.012390538, 0.00040530483, 0.0033304954, -0.043801297, -0.0047511416, -0.012288785, 0.004923341, 0.024014007, -0.0154118575, -0.015756257, -0.015388376, -0.025125476, -0.009604037, -0.018472312, 0.00006237341, 0.04411439, -0.0016760101, 0.050438806, -0.0021701055, 0.011146005, 0.030714134, -0.009016993, -0.041014794, 0.021086615, -0.041421812, -0.032686602, -0.020585671, -0.0012024614, -0.045992926, 0.017814824, 0.001129081, -0.01682859, -0.0014969618, -0.004841155, 0.029430464, 0.0354731, -0.017861787, 0.0093770465, 0.06643771, 0.0110129425, 0.04812194, 0.041954067, -0.0013903155, 0.008296886, 0.0036964193, 0.01742346, -0.025829928, -0.026643964, -0.0067549176, 0.010926843, -0.047026124, 0.021180542, -0.056230973, 0.056074426, -0.011466923, 0.00656315, -0.012116585, -0.012069621, 0.00888393, -0.038165677, 0.0006271585, 0.0007333156, 0.015325758, -0.008492568, 0.038196985, 0.0065983725, 0.0057452023, -0.002038999, -0.048560265, 0.035598338, -0.016421573, 0.020883106, 0.014300387, -0.017533042, 0.03960589, 0.01905153, 0.016812935, -0.0027728037, 0.023027772, -0.007752892, 0.016953826, 0.00933791, -0.03456514, 0.027943287, 0.009901472, -0.024640186, 0.002310996, -0.028193759, 0.006457482, 0.01235923, 0.011279069, 0.01571712, 0.021180542, 0.020069072, 0.030103607, 0.006762745, 0.0452102, 0.012069621, 0.0018570153, 0.04474057, 0.035504412, -0.006073947, 0.037570804, -0.00053225306, -0.0005195338, -0.025704693, -0.010339798, -0.014331697, -0.012883656, 0.0101754265, -0.011020769, 0.016593773, 0.04464664, -0.023168663, -0.00683319, -0.040200762, -0.0368507, 0.015811047, -0.018722784, 0.02764585, -0.018159222, -0.04114003, 0.030166226, 0.021634523, 0.037789967, 0.005612139, -0.04154705, -0.008038587, 0.0016368739, 0.0073419614, -0.00871173, -0.011404305, 0.017533042, -0.013713344, 0.026049092, -0.0046102507, 0.040326, 0.012179202, -0.0024636274, -0.023246937, 0.02471846, -0.010238045, -0.009220501, 0.009580555, -0.020194307, -0.011740876, -0.015427512, 0.040419925, -0.027802397, 0.04314381, 0.04176621, 0.048779428, 0.026518727, 0.006762745, -0.057608567, -0.01030849, 0.00736153, 0.013149782, -0.009361392, 0.016546808, -0.009533592, -0.029853135, -0.030745443, -0.03991898, -0.00080376083, -0.020773524, -0.02291819, -0.0062265783, -0.014456932, -0.01919242, 0.04968739, -0.03713248, -0.019834254, 0.025516838, 0.015552748, 0.06171005, -0.0152944485, -0.010981633, -0.010965979, -0.031042878, -0.04812194, -0.032561366, -0.022886882, 0.005592571, -0.046493873, 0.021791067, -0.0009515002, 0.032968383, -0.042204536, -0.016390264, 0.0058195614, -0.0128132105, 0.042486317, 0.036287136, 0.030432353, 0.003471386, 0.051659856, -0.005604312, 0.0057491157, -0.0008003364, 0.00683319, 0.011067733, -0.01244533, -0.025720347, 0.042955954, -0.0016221978, -0.00034146383, -0.016218064, -0.036036663, 0.04182883, 0.016765973, 0.013470699, 0.027301451, -0.022589447, -0.0006247125, 0.016124137, 0.041171342, 0.0007347832, 0.02593951, -0.024734113, 0.034439906, 0.047088742, 0.0060269833, 0.0016897079, 0.023184318, 0.003365718, 0.014957877, -0.002289471, 0.005612139, -0.021149233, -0.03804044, 0.044083077, -0.058923546, 0.0049898727, 0.021415358, 0.04928037, -0.030025335, 0.02767716, 0.01787744, -0.00048553417, -0.007725497, -0.0068918946, 0.016672045, 0.013963816, -0.019693363, -0.023012118, 0.0020076898, 0.03706986, 0.026596999, -0.00879783, -0.015842356, 0.011083388, 0.0014147756, 0.026236946, 0.0037179443, -0.01540403, -0.0047159186, 0.046118163, 0.04211061, 0.05936187, 0.039104946, -0.013447218, 0.005518212, -0.0005655189, 0.009588382, -0.0021681485, 0.006895808, -0.011169488, -0.024796732, 0.017642625, 0.016859898, 0.013282845, 0.025798619, -0.029680936, -0.011826976, 0.022135466, -0.04095218, -0.025235057, -0.020585671, 0.034189433, 0.022589447, -0.0008654005, -0.026362183, -0.0005625837, -0.018691476, -0.040106833, -0.023700917, -0.08628762, 0.011521714, 0.075078994, 0.008195132, 0.028976483, 0.016985135, 0.022338975, -0.0023677435, -0.049186446, -0.034439906, 0.016640736, 0.012367057, 0.008109032, -0.07676968, -0.03195084, 0.0076785334, -0.0048137596, 0.011725222, 0.0024851523, -0.0066727316, 0.028287686, -0.019098492, 0.036631536, -0.025235057, 0.009870164, 0.0019636615, -0.007596347, -0.039386727, 0.0009656871, 0.016765973, 0.020679597, -0.0051894677, 0.03094895, 0.03237351, 0.02388877, -0.028037213, -0.012304438, -0.008930894, 0.0007083662, -0.040357307, 0.009964091, 0.0299001, 0.0131341275, -0.02896083, 0.00034488825, -0.002434275, -0.0052403444, 0.013141954, -0.012241821, 0.05535432, 0.0052912217, 0.01776786, -0.012914964, 0.01967771, -0.025845584, 0.013713344, -0.008406468, 0.025642075, 0.010558962, 0.026174327, 0.03240482, 0.010386762, 0.01147475, 0.003271791, -0.008829139, -0.0137759615, 0.0003348596, -0.029712245, -0.018456658, 0.008155996, -0.053287927, -0.032248273, 0.020851796, 0.00736153, -0.010183253, -0.0199908, 0.023685262, 0.025861237, 0.020069072, -0.026769198, -0.02503155, 0.029931407, 0.014785677, -0.03428336, 0.0071658483, 0.017705241, 0.02471846, 0.027379725, 0.003731642, -0.023246937, 0.00919702, 0.03901102, 0.009189193, 0.011897421, -0.026988361, 0.053632323, -0.024765423, -0.003991898, 0.026581345, -0.011310378, -0.012836692, 0.0019372447, -0.001949964, 0.025532493, -0.030933296, 0.0018325552, -0.010104981, 0.0035144358, 0.047589686, 0.006907549, 0.000515131, -0.018409695, 0.014503896, 0.012312266, -0.010746816, 0.025955165, 0.00683319, 0.021603214, -0.028459884, 0.0048959455, -0.00091334234, -0.02229201, -0.034095507, 0.0034557313, -0.010566789, -0.016124137, 0.053193998, -0.012147894, 0.011271241, -0.0073106526, -0.02249552, 0.027724123, 0.036349755, -0.011482578, -0.029618317, -0.012163548, 0.030917643, -0.065874144, -0.022996463, -0.00027786742, 0.024358405, -0.0023168663, 0.008445604, -0.019771636, -0.014136015, 0.022573791, -0.007940746, 0.010879879, 0.005933056, 0.021728449, -0.029461773, -0.0062461463, -0.035097394, 0.008672594, 0.02892952, -0.008664767, 0.004230629, 0.010183253, 0.008852621, -0.06311895, -0.0053381855, -0.025782965, -0.007557211, -0.010699852, 0.041359194, 0.009400529, 0.027301451, -0.000039411432, -0.009470974, -0.015967593, -0.011028597, -0.00035687373, 0.0004280528, 0.00066776236, -0.048528958, -0.00731848, 0.023841808, -0.012312266, -0.012758419, -0.0060269833, -0.00015128609, 0.04336297, -0.02531333, 0.028538158, -0.023246937, 0.016859898, 0.008476913, -0.0040388615, 0.0057921656, -0.01574843, -0.012382711, 0.0057060663, 0.018268805, -0.0051072813, 0.016139792, 0.0036083627, 0.023215627, 0.025610765, 0.03209173, 0.006751004, 0.0009828092, -0.011858285, 0.0073302207, -0.017673934, 0.039418038, 0.03004099, -0.024702804, -0.025438566, 0.0064457413, 0.009220501, 0.012320093, -0.015568403, -0.021791067, -0.030761097, 0.016546808, 0.04411439, -0.0051346766, -0.008641285, -0.037257716, -0.0002888745, 0.0071462803, 0.02420186, 0.019098492, 0.005205122, -0.0010948367, -0.022526829, -0.041734904, -0.010065845, -0.018472312, 0.032874454, 0.009290947, 0.02030389, 0.02670658, -0.02736407, -0.04777754, -0.047683615, -0.034345977, 0.010699852, 0.0048881182, 0.015059631, 0.023027772, 0.0141751515, 0.017204298, 0.017016444, 0.045116276, -0.00003916683, -0.03459645, -0.015920628, 0.020069072, 0.017204298, 0.03365718, 0.0025340726, -0.015701465, 0.02263641, -0.004379347, -0.015247486, -0.0098545095, 0.003344193, -0.02197892, 0.00089181744, -0.030463662, -0.008429949, -0.008602149, 0.051158912, -0.014057743, -0.03653761, -0.0074163205, 0.0039586322, 0.021258814, 0.01696948, 0.01922373, 0.019755982, 0.024295788, -0.0044380515, 0.005905661, -0.023998352, 0.005717807, -0.04755838, 0.013689863, -0.0020507397, 0.03334409, 0.00095834903, -0.016515499, -0.0044145696, 0.022855572, -0.0090952655, 0.041922756, 0.01787744, -0.061334338, -0.00794466, 0.014480415, 0.00094514055, 0.00053225306, -0.051941637, -0.0058978335, -0.022354629, -0.0077411514, 0.034752995, -0.009611865, -0.033375397, 0.025203748, -0.037821278, 0.019489855, 0.023074737, -0.005592571, -0.036600225, -0.0018941947, 0.017079063, -0.016922517, 0.0013208486, -0.029915754, -0.013650726, 0.012468811, 0.022589447, -0.013682035, 0.025109822, 0.012891483, -0.022276357, -0.010425898, 0.021321433, -0.007482852, 0.088917576, -0.0005611161, -0.008351677, 0.03299969, 0.043519516, 0.044615332, -0.037946515, -0.009345738, -0.023043428, 0.011607814, 0.03340671, 0.0091344025, 0.018472312, 0.008414295, -0.028209412, -0.0013384599, -0.001776786, -0.011928731, 0.0070601804, 0.03995029, 0.0073497887, 0.0110129425, -0.004923341, -0.015114422, -0.027489306, -0.015497957, 0.034815613, 0.0039351503, 0.005216863, -0.030651515, -0.023012118, -0.0099093, 0.0025321157, 0.03584881, -0.012061794, -0.032811835, 0.0060543786, -0.018300112, -0.03556703, -0.0008096313, -0.02075787, -0.023137353, -0.013423735, 0.0025966906, -0.05347578, -0.012719283, -0.0012063751, -0.052129492, -0.008077723, -0.008860448, 0.031872567, 0.03775866, -0.050845824, 0.007251948, -0.028726012, 0.015787566, 0.008109032, -0.0013423736, -0.023215627, -0.05500992, -0.012969755, -0.013822925, 0.021650176, 0.0021798895, -0.019662054, -0.017955715, -0.02392008, 0.003948848, 0.052693054, -0.007885955, 0.023466099, 0.006637509, 0.023669608, 0.030401044, -0.009220501, -0.022354629, 0.034001578, -0.0003368164, -0.018315768, -0.0025536406, 0.012437502, 0.034439906, -0.00083996187, 0.0006212881, -0.028350303, 0.014503896, -0.0117330495, 0.0090561295, -0.020773524, -0.003594665, 0.0015184868, 0.0128132105, -0.002383398, -0.013658553, 0.030917643, 0.000370816, -0.009901472, 0.049656082, -0.015505784, -0.0052207764, 0.0006990714, 0.019239383, 0.0124531565, 0.012367057, -0.0002147602, -0.015599712, -0.0112164505, -0.017079063, 0.0053147036, 0.023685262, -0.032467436, -0.030197535, 0.030338425, -0.008461258, -0.016124137, -0.022072848, 0.0032326546, -0.01773655, 0.0036827216, -0.01804964, -0.0013609633, 0.010120636, -0.012742765, 0.012367057, -0.027270142, 0.006594459, -0.008116859, -0.0100971535, 0.016311992, 0.034064196, 0.02548553, -0.011232105, -0.012492293, 0.0026103882, -0.020585671, 0.015756257, -0.022104157, -0.017219953, 0.0264248, -0.025720347, -0.00897003, 0.039386727, 0.00063351815, 0.009533592, -0.03869793, 0.032248273, -0.0010292835, 0.032310892, -0.007251948, 0.01549013, 0.006731436, 0.022839919, -0.013619417, 0.025704693, -0.012515775, -0.0045084967, 0.007690274, 0.028663393, 0.022229394, 0.0033911564, 0.005369494, 0.02750496, -0.017861787, -0.008547358, -0.042329773, -0.010206736, 0.048967283, -0.020523053, 0.027254488, 0.0021975008, 0.012711456, -0.00021806233, -0.009408356, 0.007694188, 0.04079563, 0.02531333, 0.010660716, 0.02075787, -0.025892546, 0.02830334, 0.0047472278, -0.0009304645, 0.035441794, 0.022307666, 0.021947613, 0.009807546, 0.0072793434, -0.000004544239, 0.013815098, -0.046775654, -0.00041851334, -0.009877991, 0.03869793, -0.0028236809, 0.011059905, 0.017861787, -0.03271791, -0.03969982, -0.018613202, 0.007314566, 0.00079397677, -0.003040887, 0.003209173, 0.01415167, 0.038290914, -0.025469875, -0.0019714888, 0.026174327, 0.0015409901, 0.0025790792, 0.010872052, -0.030901987, 0.00042585138, 0.000522469, -0.0037199012, 0.0052873082, -0.00147348, -0.023246937, -0.0199908, 0.010410244, -0.013987298, -0.018597549, -0.02457757, 0.026550036, -0.018206187, -0.0048724636, -0.00736153, -0.011834804, 0.015388376, -0.015967593, 0.009604037, 0.012296611, -0.015576229, -0.018550586, -0.0021270555, -0.0002139041, 0.0037570805, 0.021227505, -0.009870164, -0.028052868, 0.00021182498, 0.027551923, -0.0075024203, -0.005381235, 0.019114148, 0.007056267, -0.007314566, 0.0105354795, 0.019035874, -0.0033715884, -0.02232332, 0.0036631536, -0.005741289, 0.0067862268, -0.03331278, -0.011795667, -0.00013232947, 0.003228741, -0.019630745, -0.009478801, -0.027129252, 0.017783515, -0.002017474, 0.04743314, 0.0139716435, 0.018519277, -0.00086393283, -0.011146005, 0.03863531, 0.015169213, -0.040388614, 0.008805658, -0.027207525, -0.008226441, 0.011967867, 0.015200522, -0.02864774, 0.011005115, 0.014965704, 0.041327886, 0.019286348, -0.0021622782, 0.016343301, 0.011920904, 0.002925435, 0.016609427, -0.008124687, -0.016750317, 0.018503621, 0.022198085, 0.031011568, 0.013298499, 0.02044478, -0.024984585, 0.013877716, 0.0056786705, -0.009071784, 0.021164887, -0.016045865, 0.012257475, -0.02910172, 0.0020429126, 0.0013355247, 0.0024107934, 0.017533042, -0.0015752342, -0.013689863, -0.0047511416, -0.015795393, -0.019082839, -0.0015184868, -0.012437502, 0.0048528956, 0.00209966, 0.007169762, 0.0047433143, -0.0124140205, -0.0101754265, 0.015842356, 0.004680696, -0.011357341, 0.02667527, -0.012781901, -0.022213738, -0.017470425, 0.017032098, -0.019270692, -0.03243613, -0.015106594, 0.0062344056, 0.0358175, 0.014049916, -0.014316042, -0.019552473, 0.013517663, 0.016045865, -0.0017415633, 0.020429125, -0.042423703, -0.029618317, 0.038478766, -0.0036201037, -0.026894435, 0.026471764, 0.003220914, -0.014793505, 0.027567578, -0.0029606577, 0.01463696, -0.011341687, -0.008617803, 0.022041539, 0.0351287, 0.041390505, -0.022965156, -0.0123357475, -0.03644368, -0.026409145, -0.027379725, -0.028835593, 0.03397027, 0.0022601187, 0.041922756, 0.01842535, -0.00015862414, -0.04467795, 0.054289814, 0.0041288747, -0.018519277, 0.003262007, -0.029258264, -0.013556799, 0.003911669, -0.019098492, -0.009705791, 0.029806172, 0.027771087, -0.015130077, 0.03365718, 0.016938172, -0.000922148, 0.005385149, 0.009948436, -0.002475368, 0.011372996, 0.039480656, -0.0065279272, 0.0063831233, 0.0053538396, -0.00397233, 0.009228329, 0.010707679, -0.0063400734, -0.006461396, -0.08472217, 0.0005459508, 0.019286348, -0.00196464, 0.006660991, -0.00008738392, 0.0057334616, 0.0027845446, -0.014785677, -0.015685812, 0.002467541, 0.0019626832, -0.006782313, 0.0032952728, 0.020366507, 0.016077174, -0.008680422, -0.013713344, -0.013337635, 0.010050191, -0.0017004703, 0.019348964, 0.015208349, -0.016484192, -0.029915754, 0.006508359, -0.016765973, -0.004046689, 0.0044380515, -0.008891758, 0.0012102887, 0.009431837, -0.02030389, -0.013502008, 0.022824265, 0.002226853, -0.009799718, -0.004203234, -0.008962203, -0.0073693567, 0.012155721, -0.014425624, -0.0106137525, -0.0090952655, -0.009627519, -0.016124137, 0.030667169, -0.03484692, -0.018550586, -0.017439116, 0.028506849, -0.00096275186, -0.012828864, -0.025751656, 0.022385938, -0.023043428, -0.009721446, 0.00075728656, 0.02716056, 0.0019215902, 0.052286036, -0.0037159876, 0.013290673, 0.008132514, -0.028772974, 0.0065788045, 0.003804044, 0.00424237, 0.012429675, -0.018284459, 0.012226166, 0.0029039101, -0.013306327, -0.0500631, 0.00043881527, 0.0075924336, -0.0030604552, 0.0015517526, 0.0121322395, -0.027348416, -0.02816245, 0.024248824, -0.002686704, 0.013032373, -0.009807546, 0.0053968895, -0.017032098, -0.041171342, 0.032937072, 0.011905249, 0.018754093, -0.010950324, 0.027457997, -0.009103093, 0.009517937, 0.00902482, -0.015858011, 0.0014744584, -0.0024381888, -0.010285008, 0.017032098, -0.00046352003, 0.007807683, -0.020413471, -0.015858011, 0.0030389302, -0.004222802, 0.029289573, -0.011780013, -0.013815098, 0.007138453, -0.02044478, -0.01825315, -0.006187442, 0.018268805, 0.017298225, 0.011866112, -0.0007108122, 0.009541419, 0.032185655, -0.006105256, 0.006895808, 0.0011007072, -0.030761097, -0.001133973, -0.005803907, -0.006152219, 0.0003686146, -0.025689038, 0.025876893, 0.0042188885, -0.0072676027, 0.02298081, 0.008516049, -0.012570566, -0.023998352, -0.002958701, -0.03844746, -0.026925744, -0.0012699715, -0.005279481, 0.018988911, -0.044709258, 0.0113338595, -0.012868001, 0.013094991, 0.010128463, -0.03954327, -0.011834804, -0.013337635, -0.010159772, -0.0019939921, -0.0013942291, -0.0038705757, 0.008320368, 0.021055305, 0.0130402, -0.0070210444, 0.016139792, -0.027442342, -0.012797556, -0.0138542345, 0.005768684, -0.030134916, 0.012210512, -0.022135466, 0.031387277, -0.0027728037, 0.018785402, 0.021869339, 0.020037763, -0.007893783, -0.015474475, 0.011623468, -0.021556249, -0.030463662, 0.006199183, -0.008821312, 0.0037492532, 0.0048450683, -0.0037277283, 0.0018188575, 0.008148168, -0.009400529, 0.016719008, 0.016171101, 0.015928457, 0.00942401, -0.018143568, 0.0050250953, 0.002980226, 0.031481203, 0.009557074, -0.028052868, -0.01867582, 0.0014695664, 0.035316557, -0.004336297, 0.0013159566, 0.0047902777, 0.0011046209, -0.021540595, -0.020930069, 0.011537368, -0.014002952, 0.04780885, -0.012868001, 0.054790758, 0.0034772563, -0.018801058, 0.011482578, 0.00727543, -0.008891758, 0.0062578875, 0.03832222, 0.028866902, 0.0023716572, 0.0059487107, 0.016006729, -0.0016427443, 0.017360844, 0.014824813, -0.0354731, -0.009150056, -0.005760857, 0.006700127, -0.017501734, -0.015560575, -0.010433726, -0.00095198944, -0.0019294174, -0.00017378943, -0.03528525, -0.0015732775, 0.020663943, -0.00093927013, 0.008852621, 0.025375947, 0.021744104, -0.019255038, -0.014206461, -0.047182668, -0.0017347145, 0.015764084, 0.021258814, -0.015638847, -0.02500024, 0.0025125477, -0.004680696, 0.022245048, 0.0020566103, 0.0002634359, 0.003680765, 0.00683319, 0.00919702, -0.0044576195, -0.026236946, -0.0051816404, 0.02246421, -0.027974596, -0.021321433, 0.009924955, -0.010684198, 0.0073106526, 0.010746816, -0.0026103882, -0.021994576, 0.01682859, 0.0040055956, -0.0231217, 0.010942497, 0.011717395, 0.013220227, -0.016499845, 0.037946515, 0.011341687, -0.002674963, -0.011748704, 0.015004841, 0.01679728, 0.017063407, 0.022714682, -0.012374884, 0.009831027, 0.021274468, -0.0076472242, -0.009447492, 0.0022816437, 0.017580006, 0.005561262, -0.012609702, -0.010183253, -0.0056904117, -0.006852758, -0.0030252326, 0.017439116, -0.0026397405, -0.0041954066, 0.010566789, 0.02468715, 0.011639123, 0.0051581585, 0.00014052361, -0.008273404, -0.004492842, -0.00029034208, 0.012547083, 0.016155446, 0.013415908, -0.0055964845, -0.027176216, 0.036631536, -0.021947613, -0.04370737, -0.020288235, -0.012515775, 0.026596999, -0.009964091, -0.0028784715, -0.026299564, 0.0034459473, 0.005694325, 0.008813485, -0.006152219, -0.034345977, -0.044270933, -0.025235057, 0.014621305, -0.0021192282, -0.022432901, -0.009298774, -0.015310103, 0.008852621, 0.02357568, 0.018456658, -0.021258814, 0.008101205, 0.002267946, -0.021509286, 0.002258162, -0.009948436, 0.029383501, -0.038009133, 0.01084857, -0.00736153, 0.027896322, -0.012367057, -0.017345188, -0.01950551, -0.022401592, 0.007169762, 0.0071541076, -0.020413471, 0.0071462803, -0.0017464554, 0.04680696, -0.00031871587, 0.0012142024, 0.0199908, -0.0059721926, 0.0061913556, -0.012460983, 0.020804834, 0.021744104, -0.015482303, 0.006942772, 0.011341687, -0.014073397, -0.015818875, -0.020601325, 0.0071971575, -0.003040887, -0.010770298, -0.027395379, -0.021556249, 0.019458545, -0.011372996, -0.0050759725, -0.022667719, 0.005302963, 0.016578117, -0.02013169, 0.01218703, 0.0030271893, -0.006073947, -0.0090561295, -0.0019010436, -0.0013590065, -0.018331422, 0.0041523566, -0.017673934, -0.0094553195, -0.025704693, 0.024280133, 0.0062148375, 0.007475025, -0.0068175355, 0.007201071, 0.0024401455, -0.043300353, -0.0073263072, 0.029211301, -0.0014226029, 0.017204298, 0.008633458, 0.0062578875, 0.0018648426, 0.014206461, -0.014002952, -0.022699028, -0.0015654502, 0.034690376, -0.0013834666, 0.0070601804, 0.004136702, -0.011239933, 0.023763534, -0.0026456108, -0.013016718, -0.004097566, 0.028726012, -0.000013384293, 0.0035261766, 0.021243159, -0.0034205087, 0.0061169965, -0.029633973, 0.025689038, 0.010402417, -0.020460434, -0.014096879, -0.0033481068, -0.013235882, 0.026346527, 0.015967593, -0.02881994, -0.013642899, -0.0072871707, 0.0031602527, 0.00012658133, -0.029962717, -0.01352549, 0.0037746918, -0.021086615, 0.0053147036, -0.0056708436, 0.013024546, -0.017486079, -0.0013423736, 0.027567578, 0.032592673, 0.0003842691, 0.009877991, 0.0028569466, -0.014136015, -0.002123142, 0.016812935, 0.008868275, 0.0049820454, -0.016296336, -0.027270142, 0.004398915, 0.006351814, -0.0006203097, 0.021853685, -0.00078223593, 0.0073928386, -0.023027772, -0.021916304, 0.0010537436, -0.0052090357, 0.024452332, 0.011326033, -0.023826152, 0.008602149, -0.008226441, 0.002301212, -0.032216966, 0.007400666, -0.0462434, 0.006531841, -0.01856624, -0.015263139, 0.020977033, -0.00010169311, -0.026831817, 0.007819423, -0.012460983, 0.023497408, 0.026957054, -0.015153558, -0.0009759604, -0.00794466, -0.016374609, -0.010629407, -0.006743177, 0.0002152494, 0.013102818, -0.0132515365, 0.01577191, -0.01682859, -0.0012014831, -0.031309005, 0.00091432076, 0.01745477, 0.0032346116, -0.0008732277, 0.015623193, 0.006113083, 0.021039652, -0.0033246248, -0.009345738, -0.009306601, 0.0079368325, -0.007228466, -0.0033167975, 0.0011721308, -0.02907041, 0.003240482, 0.019145457, -0.012468811, 0.0011848501, -0.008836967, -0.013862061, -0.0023951388, 0.008923066, 0.0029743554, -0.019740328, -0.020053416, 0.0098153725, 0.045147583, -0.00007081216, 0.022229394, -0.0153727215, 0.028037213, -0.007882042, -0.0054477667, 0.00043343403, 0.013783789, 0.0032854886, -0.0065983725, 0.010339798, -0.0045280647, -0.005741289, 0.023841808, 0.041860137, 0.0019675752, 0.0019401798, -0.00008010702, -0.0041132206, -0.010003227, 0.018159222, 0.007662879, 0.02166583, 0.002582993, -0.032279585, -0.026800508, -0.01682859, 0.0013893371, -0.01210093, 0.01574843, 0.00504075, 0.0194742, 0.023356518, 0.03195084, 0.012507947, 0.017188644, -0.012727111, -0.0041014794, 0.010198908, -0.022417247, -0.0100971535, -0.009251811, 0.03960589, 0.008406468, 0.0024225342, -0.01335329, 0.008328195, 0.031700365, -0.010238045, 0.01549013, -0.0016221978, -0.008273404, -0.009838855, 0.008500394, 0.019067183, -0.016922517, 0.01124776, 0.02280861, -0.013728999, -0.025923856, 0.042830717, 0.003177864, 0.015458821, -0.0135333175, -0.032874454, 0.015779737, 0.01549013, 0.023544371, 0.021023996, -0.010731162, 0.027551923, -0.004602424, 0.013384599, 0.016022382, -0.0138933705, 0.010965979, -0.010911188, 0.013948161, -0.0046533006, 0.007921178, 0.010566789, -0.007979883, 0.0011672388, 0.0042149746, 0.012946273, 0.012147894, 0.00087860896, -0.013635071, -0.007475025, 0.0026906175, 0.01597542, 0.03591143, 0.0028862988, -0.00067265437, 0.012288785, 0.0060778605, 0.0059017474, -0.020413471, 0.01107556, -0.008218613, 0.0022972983, -0.0031485118, -0.00097057916, -0.00049213844, 0.007874215, -0.01178784, 0.014402142, -0.017705241, 0.016092828, 0.0014607607, 0.008069896, 0.0029117374, 0.020804834, -0.0067979675, 0.0033304954, -0.0037981735, 0.009588382, -0.013259363, -0.0005268718, 0.0015468606, -0.0039155823, -0.003690549, -0.0047511416, -0.012985409, -0.0063400734, 0.0020350853, -0.01588932, 0.007913351, 0.017360844, -0.0062070102, -0.009212675, -0.0025673383, -0.009486629, -0.03112115, -0.040670395, -0.013744653, -0.007490679, 0.0008678465, 0.018628858, 0.0035790105, -0.005600398, -0.0036181468, -0.00723238, 0.0027532356, 0.0046963505, 0.0063831233, -0.015067458, -0.012226166, 0.00933791, 0.0023286073, -0.011850459, -0.018691476, -0.0002609899, -0.002046826, -0.011232105, -0.011513886, 0.0146917505, -0.015873665, -0.0007338048, 0.008531704, -0.0023990525, -0.005436026, 0.013815098, -0.0063635553, 0.034408595, -0.006324419, -0.0028882558, -0.005185554, 0.0015693639, -0.0050446633, -0.006660991, 0.0035770538, -0.015388376, 0.015654502, 0.0152944485, -0.021321433, -0.0041562705, 0.007662879, 0.0142534245, 0.007709842, 0.002267946, 0.0022601187, 0.01870713, -0.003678808, -0.0065357545, -0.0051581585, -0.0060387244, -0.0050211814, 0.018769749, -0.0031485118, -0.014832641, -0.0138933705, 0.007733324, -0.004046689, -0.005874352, -0.0023638299, -0.02360699, -0.005737375, -0.01696948, 0.006073947, -0.00062079885, -0.018331422, 0.0026475678, 0.014363006, -0.0034205087, 0.016327646, 0.010472862, 0.02531333, -0.0039782003, -0.028710358, 0.013682035, -0.0042149746, -0.0057021524, 0.0013413952, 0.007968142, 0.0044889287, -0.013376772, 0.023732224, -0.018315768, -0.009001339, 0.0028491195, 0.01477785, -0.016218064, 0.003939064, -0.05776511, -0.018472312, 0.017658278, 0.028913865, 0.008163823, 0.017517388, 0.01714168, -0.027692815, -0.002446016, -0.012226166, 0.019427238, 0.019881219, 0.0070875757, 0.003584881, 0.024014007, 0.020836143, -0.009392701, 0.006719695, -0.010191081, -0.022683375, 0.014276906, 0.025438566, -0.007251948, -0.0063909506, -0.0006589567, 0.032905765, 0.011952212, -0.010566789, 0.0039097117, -0.013408081, -0.0012787771, 0.011983521, -0.0074789384, -0.0007636462, -0.0012406193, -0.0022816437, 0.009580555, -0.0044380515, 0.019317655, -0.000024429584, -0.010159772, 0.0041445293, -0.015427512, 0.02343479, -0.0006286261, 0.010003227, 0.003469429, 0.007408493, -0.01383858, 0.005475162, -0.010042363, 0.009361392, 0.008382986, 0.009611865, 0.007161935, -0.022276357, -0.00042438376, 0.014034261, -0.0232939, -0.006073947, -0.0045398055, -0.002256205, 0.014073397, 0.021352742, -0.006480964, 0.0045672012, 0.01822184, -0.010879879, -0.012437502, 0.020914415, 0.0039527616, 0.023168663, -0.010778124, -0.012061794, -0.017392151, 0.010660716, -0.008077723, 0.021290123, 0.013862061, 0.016531155, 0.0050016134, -0.008038587, 0.0044771875, 0.003710117, 0.02075787, 0.0098232, -0.027598888, -0.018127913, -0.0045398055, 0.02440537, 0.012797556, 0.016468536, -0.0031211164, -0.0053342716, -0.000731848, -0.00032654314, 0.0061209104, 0.015779737, -0.0073263072, -0.0056356206, 0.0074867657, 0.022072848, -0.0050759725, 0.009478801, 0.0052207764, 0.0071971575, -0.02388877, 0.018143568, -0.026612654, -0.013478527, 0.0035477015, -0.00388623, 0.0038118714, 0.0041523566, -0.014136015, -0.012868001, -0.011748704, -0.003218957, -0.008578667, 0.000044945544, 0.011498231, -0.006660991, -0.0034733426, 0.008750867, -0.010300662, 0.022479866, -0.000016892798, 0.017580006, 0.0053264443, 0.021321433, -0.0011662605, -0.03362587, 0.015247486, -0.000028541948, 0.02844423, 0.009204848, -0.017407807, 0.0027669333, 0.0043910877, 0.029023448, 0.012523602, 0.0036494557, 0.01196004, -0.002684747, 0.011975694, -0.0058782655, 0.002101617, -0.00976841, -0.018801058, -0.011819149, 0.008210787, -0.01030849, 0.008163823, -0.010167599, 0.0026925744, 0.015685812, 0.005694325, 0.008836967, -0.0074358885, 0.006062206, 0.00069271174, -0.011599986, -0.0018971299, 0.00024827063, 0.002258162, 0.0026612654, 0.015740601, -0.01856624, 0.00042511759, 0.0032737479, -0.020116035, -0.00040310342, 0.013188918, 0.00790161, -0.011208624, -0.0023481753, 0.02280861, -0.0121322395, 0.0031817777, -0.0073302207, -0.0058586975, 0.0006085688, -0.0030487143, -0.015584057, -0.015482303, 0.012257475, 0.0007108122, 0.003385286, 0.010519826, 0.014543032, 0.010073672, -0.031966493, 0.004668955, 0.006794054, -0.010402417, 0.0041523566, 0.036349755, -0.0006252017, -0.022354629, -0.016139792, 0.006070033, 0.010144117, -0.0065827183, -0.015811047, 0.028679049, 0.0075024203, 0.011138178, -0.0064340006, 0.010856397, -0.0019617048, 0.0023481753, 0.015709292, -0.014402142, 0.009580555, -0.02656569, -0.00056160527, 0.0260804, 0.013110646, 0.007357616, 0.0045437193, -0.012069621, -0.008030759, -0.022511175, 0.032905765, -0.006637509, 0.020992687, 0.027426688, -0.0034459473, -0.0052677398, -0.008062068, -0.006633595, -0.005162072, 0.014957877, 0.01870713, 0.014707405, 0.013791616, -0.0022542484, 0.005142504, 0.0026064746, -0.010394589, -0.0042580245, 0.008516049, -0.0011329945, -0.0024949363, -0.008304713, 0.010112808, -0.0053342716, -0.002925435, -0.017517388, 0.001249425, -0.0039018847, -0.00038720432, -0.0043950016, 0.0017396066, -0.006062206, 0.0056082252, 0.014527378, 0.013290673, 0.008868275, 0.007158021, -0.007169762, -0.017392151, -0.0005293179, -0.017642625, 0.022448556, -0.0006413454, -0.007670706, 0.001358028, -0.009635346, 0.020648288, 0.0031915617, 0.010598098, -0.011631295, -0.007138453, 0.023184318, 0.008523877, 0.010832915, 0.008382986, -0.007608088, 0.009635346, -0.010817261, 0.010668543, -0.0042580245, -0.005655189, 0.007999451, 0.01620241, 0.030103607, -0.009697964, 0.011584331, 0.010034536, -0.018894983, -0.00019555898, 0.008664767, 0.006394864, -0.008633458, 0.008821312, -0.008688249, 0.008555185, -0.01463696, 0.020961378, -0.018801058, 0.02388877, 0.003449861, -0.011662604, -0.019114148, 0.027317107, -0.0030917642, 0.0040819114, -0.004672869, -0.005173813, -0.013909025, 0.0058900067, 0.014848296, 0.0116156405, -0.0013883587, 0.017673934, -0.0052442583, -0.0018335335, 0.02440537, 0.0074867657, -0.0027669333, 0.016781626, 0.0020977033, 0.0006022091, -0.018096605, 0.0029410897, 0.00051610934, 0.015106594, -0.003741426, 0.011232105, 0.014417796, -0.004817673, -0.017392151, 0.042580247, 0.0037042466, 0.004023207, 0.010331972, -0.008328195, 0.0071501937, 0.0009113856, 0.03425205, 0.0041288747, -0.0033167975, -0.023873115, -0.027113598, 0.029399155, 0.012476638, -0.008508222, -0.0074985065, 0.025235057, -0.00223468, -0.013220227, -0.009885818, 0.007580693, -0.002496893, 0.006762745, 0.014214288, -0.022965156, -0.002487109, -0.005365581, 0.0054164575, -0.00006218995, 0.018033987, -0.0019030004, -0.021650176, 0.0034048543, -0.02360699, 0.0073654433, -0.008011191, -0.017893096, 0.006242233, -0.0009969961, -0.0059956745, -0.027708469, -0.014057743, 0.007643311, 0.01147475, -0.030432353, 0.021337086, -0.015826702, 0.004575028, -0.008821312, -0.008202959, -0.012218339, 0.028804284, 0.01566233, 0.0066962135, 0.0003490465, -0.008516049, -0.0055730026, 0.0012367057, 0.018096605, -0.00049116, -0.004273679, -0.0025849496, 0.0138933705, -0.006003502, -0.005760857, 0.01842535, -0.013376772, -0.01950551, 0.0057217204, -0.025141131, 0.01665639, -0.002080092, -0.043018572, -0.006081774, 0.007878128, -0.0074124066, 0.009784064, 0.007619829, -0.017799169, 0.000072952425, 0.024593223, 0.0013169349, -0.0001152685, -0.017313879, -0.010151945, 0.000089646484, 0.013228054, 0.01902022, -0.0196464, 0.013728999, 0.000052314168, 0.00020350853, 0.02750496, -0.0226051, 0.009729273, 0.020648288, 0.0019754025, -0.004293247, 0.0058391294, -0.0044967555, 0.00019690428, 0.007494593, 0.00022503347, -0.028506849, -0.005193381, 0.019239383, -0.01258622, -0.0127349375, -0.006461396, 0.0049898727, 0.0016173058, 0.0018902811, -0.0028178103, -0.008054242, 0.011083388, -0.042329773, -0.01343939, -0.0035340039, -0.016546808, -0.017329535, 0.02733276, -0.0039586322, -0.023982698, 0.005236431, -0.005760857, -0.004093652, -0.03459645, -0.0066218544, -0.018237496, -0.020100381, 0.0041249613, -0.009744927, 0.0050837994, 0.01130255, -0.007897696, -0.0030330599, 0.023466099, -0.0026495245, 0.012124412, 0.008860448, -0.009439665, -0.000009852858, -0.0071032303, 0.012265302, 0.009157884, -0.0077215834, -0.014339524, -0.0117330495, 0.010167599, 0.014120361, -0.010511998, 0.011756531, 0.002342305, 0.0068018814, -0.008531704, -0.013674208, -0.011435614, -0.022260701, 0.0011780013, -0.0013413952, -0.018112259, -0.009549246, 0.0005053469, -0.017846132, -0.028099831, -0.010402417, -0.0023188232, -0.022886882, -0.0050094407, 0.013721171, -0.0015135946, -0.0043676062, -0.035066083, 0.02357568, -0.012077449, -0.012844519, 0.0026162586, 0.0064066052, 0.02687878, 0.009564901, 0.017533042, -0.0030056643, -0.016061518, 0.010050191, -0.0013325895, -0.007204985, -0.013384599, 0.018315768, 0.0044263103, 0.02437406, 0.022620756, -0.013243709, -0.011897421, -0.0032463523, -0.0012181159, -0.014644787, 0.0013198702, 0.012406193, -0.012140066, -0.032248273, 0.010676371, -0.0021857598, 0.016265027, -0.00086931407, -0.002301212, -0.020037763, 0.00683319, 0.029352192, -0.013728999, 0.0045828554, -0.009658827, -0.0023814412, -0.005236431, 0.011576504, -0.006300937, 0.019411582, -0.0035516152, -0.02388877, -0.007752892, -0.013282845, 0.015396203, -0.02047609, 0.007052353, 0.011576504, 0.008821312, -0.0027630196, -0.030181881, -0.0054477667, 0.0018139655, 0.017705241, -0.011200796, -0.0031406845, -0.007228466, -0.018519277, 0.014026434, -0.025094166, 0.020209963, -0.0058156475, -0.00104983, 0.0131732635, -0.016311992, -0.0031641664, -0.011380823, -0.00048651258, -0.019865563, 0.006688386, 0.012210512, 0.019787291, -0.008469086, -0.000041612846, -0.0071267122, -0.008860448, -0.0015801264, 0.008672594, 0.01486395, -0.0052677398, -0.0019264822, -0.002246421, -0.008304713, 0.032780528, -0.003878403, -0.008429949, 0.024217514, -0.02030389, -0.000003588764, 0.003970373, 0.015826702, 0.005193381, -0.015106594, 0.0014451062, -0.01984991, 0.019380273, -0.0074358885, 0.0005968279, -0.00092361565, -0.0037062033, 0.016499845, 0.015529267, -0.0030565416, 0.0049194274, -0.008343849, -0.022025885, 0.003553572, -0.0040075528, -0.00094514055, 0.01440997, -0.019912526, 0.00083311304, 0.0008135449, -0.015670156, -0.015466648, -0.013063682, 0.004848982, 0.004461533, -0.0025849496, -0.0034752996, -0.0009573707, -0.01887933, -0.000095455776, 0.0014989186, -0.011459095, -0.008649113, -0.003847094, -0.010331972, 0.014433451, -0.014214288, 0.006633595, 0.004293247, -0.012922792, 0.001396186, -0.010026708, -0.006993649, 0.0016378523, 0.010785952, 0.0071227984, -0.00043318942, 0.018159222, -0.014605651, -0.020663943, 0.0030350166, -0.0059839333, 0.011396478, 0.0018716914, -0.030714134, 0.02229201, -0.009212675, -0.0055573485, 0.00397233, 0.00593697, -0.013674208, 0.002894126, -0.0083751585, 0.022213738, 0.018926293, 0.01870713, 0.010926843, 0.008469086, -0.021446668, 0.008116859, -0.002759106, -0.014355179, 0.0016603556, -0.0057099797, 0.0066531636, -0.012844519, 0.0130558545, 0.022792956, -0.00468461, -0.030901987, 0.0071658483, -0.017642625, 0.0051777265, -0.010715507, 0.00294696, -0.0038392667, -0.016280683, -0.004661128, 0.015497957, 0.02892952, -0.01210093, 0.00027101857, -0.0149735315, 0.0005342099, 0.0011995262, -0.017580006, -0.018456658, 0.003021319, -0.008602149, 0.025235057, -0.00902482, 0.016327646, -0.0031524254, -0.0043245563, 0.013016718, 0.011099042, 0.008453432, 0.021712795, -0.012930619, 0.011091215, -0.0014186893, -0.0052716536, -0.0031641664, 0.008179477, 0.00731848, -0.003911669, -0.00781551, -0.0070875757, 0.008727385, 0.01116166, 0.014026434, 0.012202685, 0.0002442347, -0.0014509767, 0.0061600464, 0.0023853548, 0.0036181468, 0.002089876, 0.030714134, 0.0146526145, -0.04154705, -0.009009166, -0.0033598475, 0.020695252, -0.014903086, 0.015623193, 0.0008409403, -0.009048303, 0.00043465703, 0.003854921, 0.0014509767, 0.009784064, 0.038009133, 0.0047080917, -0.0056160525, 0.015317931, -0.015270967, 0.020288235, 0.011639123, -0.0226051, -0.019114148, -0.021086615, -0.004985959, -0.0058586975, -0.0039038416, 0.00086833566, -0.01076247, -0.00055867, -0.002508634, 0.014981358, -0.0009040475, -0.0014206461, -0.009087439, 0.041359194, 0.016405918, -0.024937622, 0.0032541796, 0.01124776, 0.018660167, -0.003428336, 0.0004133767, -0.0075219884, -0.016186755, 0.007580693, 0.027238835, -0.01164695, -0.026690926, -0.008547358, 0.012022657, 0.012171376, -0.021164887, 0.017079063, 0.0053147036, 0.00052882865, 0.007095403, -0.009486629, 0.017955715, 0.020585671, 0.02653438, 0.013415908, 0.01250012, -0.009470974, 0.015427512, 0.023106046, -0.017172989, -0.022135466, 0.00063743175, -0.016546808, -0.021681486, -0.014707405, -0.010809434, 0.008242096, 0.0142534245, 0.0142534245, 0.0060348106, -0.0028999965, -0.016938172, -0.014903086, -0.0035144358, 0.009126575, -0.0011848501, -0.015904974, -0.0067040403, -0.005154245, 0.004755055, -0.0073419614, 0.005999588, 0.0032933159, 0.036224518, 0.0019920354, 0.012484466, -0.0130402, 0.030260153, -0.017266916, 0.0031328571, 0.0049155136, -0.0006706976, 0.020288235, -0.042079303, -0.0057530296, 0.008508222, 0.030604552, 0.0041327886, 0.004140616, -0.014770023, -0.0026123452, 0.0023599162, 0.008453432, 0.002571252, -0.0076785334, 0.0040506027, 0.035066083, -0.005788252, 0.0022092417, -0.016781626, 0.019568129, 0.016625082, 0.017157335, 0.009917127, -0.00064770505, -0.013048028, -0.010425898, 0.016405918, 0.005475162, -0.016562464, -0.008062068, 0.00361619, -0.020554362, 0.009251811, 0.016625082, -0.0059408834, 0.007745065, 0.0075063338, 0.0040075528, 0.007979883, 0.0039527616, -0.0013208486, -0.01916111, -0.010269353, 0.012022657, -0.011670431, -0.015075286, 0.016781626, 0.0027884583, -0.015787566, -0.0015732775, 0.008406468, -0.009721446, -0.010003227, 0.017063407, -0.011803495, 0.019098492, 0.008750867, 0.0072167255, -0.008155996, -0.0027649764, 0.0069466853, -0.011067733, 0.014057743, -0.007044526, 0.008516049, 0.011889595, -0.0015566446, 0.0024949363, 0.013564626, -0.0057452023, -0.00862563, -0.007878128, 0.010856397, -0.002665179, -0.006156133, 0.015537093, -0.0040623434, -0.0003676362, 0.026596999, -0.00041533352, -0.024624532, -0.006030897, -0.027379725, 0.009557074, 0.011811322, 0.017266916, -0.027802397, 0.02061698, -0.009314429, -0.002915651, -0.02197892, 0.006531841, 0.016421573, 0.0067157815, 0.012797556, 0.0004449303, 0.015904974, -0.012594047, 0.040764324, -0.0050211814, 0.026315218, -0.01808095, 0.0035653128, 0.016859898, 0.008680422, 0.019380273, -0.011341687, -0.003416595, 0.008132514, 0.02733276, 0.010754643, -0.01787744, -0.019270692, 0.014355179, -0.00023995417, -0.03299969, -0.008954375, -0.011310378, 0.021070959, 0.012625356, -0.025469875, 0.0043871743, -0.025501184, -0.00024129948, -0.0051151086, 0.021274468, 0.00031309004, -0.0013188918, -0.010723334, -0.012304438, 0.008586494, -0.015302276, -0.008320368, -0.0094944555, -0.0036024924, -0.027551923, 0.0031152458, 0.014143843, 0.0024734114, -0.02722318, 0.005361667, -0.002674963, 0.0016221978, -0.030354079, -0.016562464, 0.022714682, -0.010872052, 0.008007278, 0.0077489787, -0.03969982, 0.019442892, 0.0038099145, -0.011983521, 0.007158021, -0.005843043, 0.004293247, 0.0068879807, 0.0037453396, 0.0023716572, 0.0019450719, 0.011200796, -0.012946273, 0.027113598, 0.0057843383, -0.028099831, 0.01759566, -0.012523602, 0.014582169, -0.015670156, -0.011811322, 0.008555185, 0.01919242, -0.010519826, -0.00032458632, -0.009572729, 0.014190806, -0.0037199012, -0.014918741, -0.015427512, 0.013705516, 0.009517937, -0.0055769165, 0.002434275, 0.008555185, -0.0104963435, -0.010253699, 0.0057530296, 0.003614233, 0.011114697, -0.0057099797, -0.0196464, -0.037289023, 0.016452882, 0.00033926242, 0.009690137, -0.011537368, -0.012961928, 0.0074671977, -0.006551409, 0.032623984, -0.0063909506, 0.0028412922, -0.016108483, -0.0100971535, 0.014848296, 0.009987572, 0.0017082975, 0.0034087677, -0.020491743, -0.018519277, -0.02531333, 0.007490679, -0.0007064094, 0.009071784, -0.0034126814, 0.0011877854, 0.0056591025, -0.035942737, 0.019521164, -0.012163548, 0.008852621, -0.005999588, 0.018863674, 0.00388623, 0.008523877, -0.0040897387, 0.0052520856, 0.015983246, 0.0019949707, 0.009525765, 0.008750867, 0.00029596794, -0.016124137, -0.017517388, -0.010707679, -0.0054908167, 0.0015155515, -0.0018795186, -0.014190806, -0.01164695, -0.0054399394, -0.002091833, -0.003627931, -0.007819423, -0.013290673, -0.015396203, 0.01477785, 0.013932507, 0.048935972, 0.015474475, 0.012805383, 0.0062030964, -0.00049849803, -0.016030211, -0.019411582, -0.022902537, 0.0024792817, -0.00037399583, 0.001588932, -0.025047204, 0.017204298, -0.008907412, -0.018127913, 0.009752755, -0.005013354, -0.001143757, 0.0059526246, 0.010347626, -0.012672319, 0.011490405, 0.0049468228, 0.014582169, 0.014480415, 0.00656315, -0.0030761096, -0.02218243, 0.017486079, -0.018503621, -0.00486855, -0.010104981, -0.0061835283, -0.006676645, 0.032279585, 0.02503155, -0.0082577495, 0.015959766, -0.0054438533, -0.012507947, -0.014809159, 0.006281369, 0.009533592, -0.015364894, -0.01696948, -0.009791891, 0.011905249, -0.0010811391, -0.020209963, 0.011138178, -0.0018883243, 0.011357341, -0.0026064746, 0.0021074873, -0.010605926, 0.01762697, -0.009079611, 0.006794054, -0.005322531, 0.014104706, 0.0036846783, -0.00008671127, 0.013995125, -0.0012533385, -0.0076589654, 0.020710906, -0.0061404784, 0.0139716435, -0.0006932009, -0.015811047, -0.014182979, -0.019082839, -0.011005115, -0.012155721, -0.018159222, -0.015482303, 0.025955165, -0.009212675, -0.0011202754, -0.0005660081, -0.003878403, -0.014566515, -0.008641285, -0.0057725976, -0.010801607, -0.014605651, -0.010183253, -0.014621305, 0.0061013424, 0.0020037764, -0.0010155858, 0.0149735315, -0.0067979675, 0.0194742, 0.009917127, -0.014198634, -0.0119365575, 0.007208898, -0.013235882, 0.004712005, -0.020491743, 0.016906863, 0.011200796, -0.0073028253, 0.002749322, -0.008743039, 0.018957602, -0.008664767, -0.020523053, -0.012554911, 0.0039136256, 0.0119365575, -0.007553297, 0.012828864, 0.0012044183, -0.004234543, 0.0025771225, 0.0069153765, 0.014370833, 0.00365924, -0.009118748, 0.0052833944, -0.005811734, -0.009345738, 0.0060152425, 0.0023266503, -0.0026084315, -0.001138865, 0.015677985, 0.010652889, -0.0072989115, -0.01076247, 0.0097762365, -0.005150331, -0.01147475, 0.0029978373, -0.0068410174, 0.010011055, -0.0022522914, 0.026017783, -0.010919015, 0.036944624, 0.008954375, -0.00023114852, -0.008531704, -0.021462323, -0.019082839, 0.013995125, 0.0365063, 0.009831027, -0.007862474, 0.025094166, -0.019552473, -0.0040858253, -0.0041562705, -0.013275018, -0.012836692, -0.010919015, 0.0039899414, 0.0023970956, -0.0059408834, -0.006132651, -0.006175701, 0.010363281, 0.005686498, 0.002927392, 0.0051268493, 0.011944385, -0.004001682, -0.0062970235, 0.0076785334, 0.009674482, -0.0073263072, 0.013392427, 0.0075885197, 0.028397268, 0.014370833, -0.004817673, 0.00968231, 0.0023442616, 0.006105256, 0.008054242, -0.02830334, 0.019286348, -0.012922792, -0.008030759, -0.0059291427, -0.024921967, 0.001860929, -0.0035731401, 0.004441965, -0.015928457, -0.002665179, 0.002287514, -0.0046141646, 0.019098492, -0.0010733118, -0.0009475866, 0.0020840056, -0.0032698342, 0.008523877, -0.006304851, -0.03108984, 0.0029039101
1663
2580
  ]
1664
2581
  }
1665
2582
  ],
@@ -1673,22 +2590,21 @@ function getTemplatesPipelineCollection() {
1673
2590
  ]
1674
2591
  },
1675
2592
  {
1676
- "name": "natural-language-ai-application-creator",
1677
- "title": "Natural Language AI Application Creator",
1678
- "content": "The platform offers features like a chatbot, corrector, and spreadsheet processing, allowing users to create AI applications using natural language instead of traditional coding.",
2593
+ "name": "ai-powered-creative-programming-platform",
2594
+ "title": "AI-Powered Creative Programming Platform",
2595
+ "content": "The platform emphasizes AI-native applications, enabling users to work with human-understandable concepts instead of low-level programming constructs. This approach aims to make programming more accessible and creative for a wider audience.",
1679
2596
  "keywords": [
1680
- "Chatbot",
1681
- "corrector",
1682
- "spreadsheet processing",
1683
- "AI applications",
1684
- "natural language",
1685
- "coding"
2597
+ "AI-native applications",
2598
+ "human-understandable concepts",
2599
+ "low-level programming",
2600
+ "accessible programming",
2601
+ "creative programming"
1686
2602
  ],
1687
2603
  "index": [
1688
2604
  {
1689
2605
  "modelName": "text-embedding-3-large",
1690
2606
  "position": [
1691
- -0.032598548, -0.045205567, -0.0134633975, -0.038916096, 0.0094342055, 0.030885791, 0.0030955987, 0.02279933, 0.0040993867, 0.014024957, 0.050596543, 0.02643543, -0.04096579, 0.00852869, -0.040516544, 0.010459052, -0.029846907, -0.012979052, 0.010838105, -0.04113426, -0.015119999, -0.02390841, -0.036585625, 0.018531475, -0.0067176595, -0.0032184399, 0.013877547, -0.0022532588, -0.015119999, 0.038298383, 0.0040923674, -0.034339383, -0.0055980496, -0.01593426, 0.003966016, -0.05649292, 0.04124657, -0.023599552, 0.013884568, -0.015569246, 0.025817715, 0.01104869, 0.01858763, 0.025003452, -0.0039063506, -0.04152735, 0.009967688, -0.03007153, -0.027951641, 0.025382506, 0.016439665, -0.008163677, 0.033525124, 0.015470974, 0.025649246, 0.022701057, 0.014769024, 0.0006339484, 0.023318773, -0.042818937, -0.035883673, 0.004604791, -0.00824791, 0.006794874, -0.016327353, -0.0011441782, 0.010374818, -0.0034149857, 0.002042674, 0.04806952, -0.0232205, -0.021928912, -0.0018355987, -0.03007153, -0.033047795, 0.007156378, -0.014418049, -0.02698295, 0.008479553, -0.022813369, 0.021423507, -0.0073634535, 0.0134283, -0.040348075, 0.06042384, -0.026968911, 0.026828522, -0.05104579, -0.0020356544, 0.026112532, 0.0007418732, 0.0070581054, -0.023304734, -0.025901947, 0.023009915, -0.055201333, -0.013856489, 0.0045240666, -0.019289581, 0.02014596, 0.011568133, 0.02053905, -0.0028042896, -0.042060833, 0.012979052, -0.010971475, 0.02560713, -0.006026239, -0.02348724, 0.008984958, 0.00023888229, -0.013301949, -0.0041028964, -0.021606015, 0.023838215, 0.0057419497, -0.024512088, -0.027025068, -0.0040783286, -0.02351532, 0.034395542, -0.016271196, -0.019640556, -0.03835454, -0.010788969, -0.0050961557, 0.0027042616, 0.0013477437, 0.020047687, 0.015162116, -0.026112532, 0.048266068, 0.0006172771, 0.035771362, -0.01300713, 0.04995075, 0.0062824506, -0.005085626, 0.009609693, 0.02993114, -0.019387854, -0.027207574, -0.038944174, -0.02351532, -0.005945515, -0.0018391085, -0.023192422, 0.07182351, 0.0018408634, 0.0016241363, -0.05129849, -0.043577045, -0.0034869357, -0.030857714, 0.0100238435, -0.07036345, 0.0009520194, -0.004924178, -0.010564345, 0.029959219, -0.011118885, -0.015330584, 0.028653592, -0.010367799, 0.0075740386, -0.02866763, -0.014010918, 0.039084565, -0.03793337, 0.04236969, 0.002628802, 0.032795094, 0.03105426, -0.024820944, -0.033525124, 0.015344623, -0.018419163, -0.012178829, 0.021044455, -0.00517688, -0.0018022561, -0.0037413924, 0.02376802, 0.007932032, -0.011441782, -0.010810027, 0.040881556, 0.03818607, 0.038551085, -0.02573348, -0.016130807, -0.03734373, -0.012003342, -0.0049873535, 0.02126908, -0.030155763, -0.01761894, 0.022602784, -0.034732476, 0.0077705844, -0.005520835, 0.009630752, 0.0008712952, 0.016425626, 0.016678328, 0.05200044, -0.018896488, -0.012621057, -0.029481892, 0.0075740386, 0.037512198, 0.009553537, -0.0031377156, -0.0027007519, -0.008170696, -0.009960668, 0.011673425, -0.050540388, -0.027123341, 0.005369916, 0.0015943035, 0.030745402, 0.012536824, -0.032963563, -0.039056487, -0.04680601, -0.004713593, -0.016215041, 0.0016601112, 0.02223777, 0.01846128, 0.036304843, 0.021718327, -0.025845792, -0.0026042338, -0.031952754, 0.057672195, -0.04012345, -0.051270414, 0.022476433, 0.007946072, 0.014783063, -0.050175373, -0.052955095, 0.020721558, -0.03130696, 0.046384845, 0.014151308, -0.009967688, -0.004095877, 0.01005894, -0.012761448, -0.0015118244, 0.019500166, -0.024792867, 0.0031254315, 0.102260046, -0.039000332, 0.005296211, 0.026351197, 0.02194295, -0.017815486, 0.0013152785, 0.020426739, -0.010255487, -0.037512198, 0.0052470746, -0.04559866, 0.019219385, 0.0117155425, 0.043689355, 0.009855376, 0.02250451, 0.01496557, -0.022855485, 0.0039238995, -0.026533702, -0.0047065737, 0.029144956, -0.0011406684, -0.0044503617, -0.025719441, 0.08799643, 0.04812568, -0.017885681, -0.0023866293, -0.0140530355, -0.01721181, -0.0035290527, 0.00019720402, -0.017941836, 0.008928802, 0.0008739275, 0.021030417, 0.013933703, 0.0232205, -0.00021946899, 0.01580791, 0.006703621, 0.024526127, -0.032514315, -0.017155653, 0.00461532, -0.013498494, 0.018896488, 0.034198996, 0.06109771, 0.055341724, -0.048855707, 0.04040423, 0.057166792, 0.016299274, -0.026379274, 0.012178829, 0.015204233, 0.044700164, 0.018966684, -0.019317659, -0.015892144, 0.014839219, -0.015021726, 0.003453593, -0.07199197, 0.013954762, 0.01942997, 0.030998103, 0.012340277, 0.0065105846, 0.07064423, 0.003032423, -0.014502283, -0.008472534, -0.00062956125, 0.05034384, 0.014347854, -0.027600667, 0.0018268244, 0.021381391, 0.0151340375, 0.0040467405, -0.012810584, -0.018475318, -0.016313314, 0.020819832, -0.0114488015, -0.045907516, 0.00050759746, 0.02504557, 0.011259275, 0.011224178, 0.0007598607, -0.019528244, 0.016846795, 0.007651253, -0.0008984958, 0.011954205, -0.012712311, -0.03299164, -0.016888913, 0.03734373, 0.021507742, -0.024245346, 0.012101615, 0.016341392, -0.015765794, -0.030548856, 0.018110305, -0.010501169, 0.0052505843, -0.00811454, 0.014228523, 0.014726907, -0.0063701947, 0.0032482727, -0.02503153, 0.012993091, 0.023936488, -0.020216154, 0.017197771, 0.020819832, 0.025003452, -0.0136529235, -0.025747519, -0.0012915876, 0.02754451, -0.013393203, 0.017955877, -0.014474205, 0.008016267, 0.009448244, 0.023374928, -0.027474316, -0.0020163509, -0.029538048, 0.024792867, 0.012979052, -0.023571474, -0.0018724512, -0.01048713, 0.00115383, -0.009771141, -0.017506627, 0.015555208, -0.0062298044, -0.011090807, -0.0204127, -0.012487687, -0.030436544, 0.04697448, 0.008079442, -0.029116878, -0.054246683, -0.024989413, 0.015765794, 0.012143732, -0.011020612, 0.03554674, 0.038916096, -0.015442896, -0.009279776, -0.0030254037, 0.017141614, -0.0003503168, 0.0017417129, -0.009553537, -0.011673425, 0.03579944, 0.027025068, -0.035715207, -0.03175621, -0.028751865, 0.013484456, -0.0040537603, -0.023669748, -0.024287464, 0.0159483, 0.057419494, 0.014361893, -0.015442896, -0.01607465, -0.02517192, -0.030745402, 0.006777325, -0.036248688, -0.06559019, 0.01708546, -0.022055263, 0.022293925, 0.010051921, -0.061771583, 0.006138551, -0.0071809464, -0.032402, -0.019949414, -0.021620054, -0.020075765, -0.003790529, 0.020328466, 0.032261614, -0.021886796, -0.002839387, -0.016172923, 0.024638439, 0.0016680083, 0.013596768, -0.03453593, -0.01538674, -0.02684256, 0.020061726, -0.0053769355, -0.032963563, -0.024245346, 0.04220122, 0.014502283, -0.0063701947, 0.00035887185, 0.022181613, 0.0018777157, 0.011455821, 0.0047592195, 0.03832646, -0.052112754, -0.0074336487, -0.06867877, 0.013407242, 0.0036606682, 0.025157882, -0.017661057, 0.002460334, -0.010262506, 0.0011775208, -0.012621057, 0.012789525, -0.003439554, -0.011224178, -0.029004566, -0.005468189, -0.0061069634, 0.0012284121, 0.0006988788, -0.014642673, 0.008353203, -0.032795094, 0.006363175, -0.04225738, 0.01804011, -0.0034027016, -0.0052646236, 0.014797102, 0.029425737, -0.0037694704, -0.018671865, -0.027909525, 0.028372811, -0.005668245, -0.0026463508, -0.0028341224, 0.007847799, 0.0027428688, -0.021184845, 0.010002784, 0.0218166, -0.0014688299, 0.002305905, 0.009441225, 0.0075389408, 0.009364011, 0.012143732, 0.03885994, -0.027039107, -0.003692256, -0.00391337, -0.03568713, 0.034339383, -0.04141504, -0.0023585514, 0.010227408, -0.009258718, -0.029622283, -0.00307805, -0.02671621, 0.019359775, 0.023964567, -0.0010511698, 0.008893704, 0.008732256, -0.008437437, -0.018994762, -0.015850026, 0.011364567, -0.024863062, 0.009869414, 0.014811141, 0.0068755983, -0.005984122, -0.028232422, -0.029060721, -0.011554094, -0.026042338, 0.017983954, 0.017366238, 0.002321699, 0.033019718, -0.004906629, 0.017871642, -0.024189191, 0.020300388, -0.0069177155, -0.02629504, -0.018082228, 0.005383955, 0.003664178, 0.03638908, 0.033468965, 0.018377045, 0.018531475, 0.012824623, -0.0077144285, 0.018531475, -0.011399665, 0.0011994567, -0.005703342, -0.0025901948, 0.02656178, 0.03007153, 0.064242445, -0.006307019, -0.011139943, 0.02420323, 0.012319219, 0.006657994, 0.033440888, 0.023739943, -0.023164343, -0.02701103, -0.019654594, 0.015555208, 0.018966684, -0.009349971, -0.03970228, 0.0034886906, 0.011940166, 0.03358128, 0.016959107, -0.0097571025, 0.0120244, 0.020384623, -0.0040467405, 0.026828522, 0.0075740386, -0.013526573, -0.004309972, 0.03681025, 0.0022427295, -0.008346183, -0.006166629, -0.008612924, -0.008514651, -0.041611586, 0.022967799, -0.023445124, -0.00029898674, -0.021170806, -0.027460277, 0.0053909747, 0.0022988857, -0.010030863, -0.036332924, 0.012543843, 0.017703174, 0.0041836207, 0.0060051805, -0.0173522, 0.01985114, -0.008893704, -0.023669748, -0.0044503617, 0.030998103, -0.00075722835, -0.027053146, -0.03843877, 0.0046539274, -0.0021198883, 0.07244122, -0.0024726181, 0.0067632864, -0.03638908, 0.011673425, 0.016566016, 0.0024375208, 0.0016469498, 0.003902841, 0.016523898, 0.03369359, -0.00024195333, -0.023206461, 0.026505625, 0.017239887, -0.020188076, 0.014783063, 0.01482518, 0.021353314, 0.00021771411, -0.012740389, 0.011476879, -0.027783174, -0.002672674, 0.0010783704, -0.0015714901, 0.028457046, -0.0031973813, -0.029313425, -0.026547741, 0.0057735373, 0.0046925345, -0.007384512, 0.013105403, -0.0070019495, -0.016186962, 0.020258272, -0.023655709, -0.030043451, -0.009167464, 0.0031780777, -0.055341724, 0.006184178, 0.019907296, -0.0059525343, 0.0056261276, -0.011118885, -0.014867297, 0.02616869, -0.00992557, 0.015723675, 0.004123955, 0.02236412, 0.0087884115, -0.017492589, 0.0024673536, -0.030857714, 0.0026902226, -0.042903174, -0.0017425905, -0.023290694, -0.008472534, 0.00741259, 0.009392088, 0.0054050134, -0.04823799, -0.0014442618, 0.0144320885, 0.009497381, 0.016959107, 0.014642673, 0.0055138157, 0.0068475204, -0.007749526, 0.02754451, -0.027474316, 0.037961446, 0.012529804, 0.013877547, 0.0043871864, -0.011245236, -0.014102172, -0.020202115, 0.026631976, -0.0023094148, 0.013505515, -0.01552713, 0.008360222, -0.02351532, -0.0046820054, -0.0047486904, 0.01551309, -0.030520778, 0.012101615, -0.0041660722, -0.0010222144, 0.011582172, 0.014158328, -0.019837102, -0.02223777, -0.019233424, -0.0022760723, -0.038803786, 0.00073441496, -0.0069949296, -0.025354426, 0.012459609, 0.0068826177, -0.0032517824, 0.031222727, -0.023838215, -0.030043451, 0.019261504, -0.021928912, 0.008107521, -0.04166774, 0.012677213, -0.005548913, 0.0023041503, -0.025649246, -0.004306462, 0.03551866, -0.022729134, -0.0061596096, -0.0030973535, -0.0073353755, -0.000049410686, 0.040095374, -0.034929022, 0.04293125, 0.015569246, -0.0058016153, -0.018770138, 0.00489961, -0.007910974, 0.0075459606, -0.013891587, -0.02824646, 0.0065667406, -0.03203699, 0.039589968, -0.018629748, 0.016678328, -0.0067352084, -0.047788743, 0.020468857, 0.030520778, 0.03874763, -0.0005014554, -0.00909025, 0.027039107, 0.004401225, -0.007889916, 0.018826295, -0.03467632, 0.0039976044, -0.024526127, 0.02979075, -0.0068159327, -0.009188523, -0.009314874, -0.0029481892, -0.033805903, -0.005075097, 0.003523788, 0.0106696375, 0.026688132, 0.0077705844, 0.0120945955, -0.020328466, 0.020188076, -0.01413025, 0.0072371024, -0.024104957, 0.0064298604, -0.022967799, 0.016018495, 0.022055263, -0.0010099303, 0.004836434, 0.011168022, -0.016397547, 0.022027185, 0.036838327, 0.035995986, 0.0020391643, -0.018503398, -0.012466629, 0.0030306682, -0.027488355, -0.022771252, -0.0176049, 0.023796098, 0.007342395, 0.0045802225, 0.026828522, 0.005913927, -0.04781682, -0.015035765, -0.005510306, -0.0010406406, 0.0051909187, -0.022279887, -0.0072371024, 0.0071809464, 0.019738829, 0.017380277, -0.001167869, -0.01314752, 0.021437546, 0.016692366, -0.020777714, 0.00049180357, 0.0377649, -0.02053905, 0.00937103, 0.0046223393, 0.0073915315, -0.047002558, 0.0048680217, 0.005889359, 0.0011213648, -0.0495015, -0.0029008077, -0.02014596, 0.004920668, 0.033188187, -0.017394315, -0.013126462, -0.005001392, -0.0021321725, 0.013238774, 0.019050919, -0.015695598, -0.01580791, -0.013133481, -0.013512534, -0.021999108, 0.038382616, -0.0028850138, 0.023304734, 0.033918213, 0.0041204453, -0.00090200553, -0.01538674, 0.0044608912, -0.002949944, -0.0068896376, -0.003049972, 0.005527855, -0.050568465, 0.029116878, 0.0009985236, 0.00614908, -0.003678217, -0.00039221445, -0.016762562, 0.008051365, -0.03692256, -0.031671975, -0.026337156, 0.0014214483, -0.024245346, 0.011869972, -0.017717212, 0.03021192, 0.0071809464, -0.029903062, 0.025761558, 0.0032623117, -0.0068475204, -0.0034448188, -0.017548745, 0.0000065430772, 0.019472087, 0.024610361, -0.019093035, 0.020356545, 0.0069036763, 0.046412922, -0.00824791, -0.032935485, 0.03417092, -0.03186852, 0.013772255, 0.017071418, -0.006408802, -0.0019988022, 0.00502947, 0.03832646, 0.021479664, 0.04040423, -0.030155763, 0.0060508074, -0.002390139, -0.0055067963, 0.0039625065, 0.004169582, 0.004271365, -0.027642783, 0.010557326, -0.0106134815, -0.004316991, 0.014200444, -0.014923453, 0.007910974, 0.024385737, 0.012972033, 0.024273423, 0.050175373, -0.0016943313, -0.008163677, -0.012417492, -0.01005894, -0.0048048464, 0.0036115318, -0.00784078, 0.0037168243, 0.003471142, 0.0012968522, 0.000272883, 0.020356545, 0.012452589, 0.0041204453, -0.022644902, 0.015765794, -0.0074898046, 0.0039800555, 0.021507742, 0.014361893, -0.023290694, 0.022041224, -0.012249025, -0.040881556, 0.02250451, -0.031419273, -0.0052646236, 0.010136155, -0.029762672, -0.020496935, -0.0005251462, -0.019121112, -0.023880333, 0.020159999, 0.0061876876, -0.018854372, 0.028471084, -0.023164343, 0.006443899, -0.027193535, 0.013231754, -0.008304066, -0.002795515, 0.031643897, 0.012003342, 0.005278663, -0.00047206125, 0.014502283, -0.015976377, -0.017239887, 0.03846685, 0.0015012951, 0.031503506, -0.022027185, 0.014712868, -0.044980943, 0.032402, 0.041499272, 0.042004675, -0.0058367127, -0.004559164, -0.0075038434, 0.022743173, -0.019387854, -0.05385359, 0.038831864, 0.011785737, -0.029706515, 0.004503008, -0.013603787, -0.0009774651, 0.004955766, 0.0061561, -0.014558439, 0.039477658, 0.028597435, -0.0072371024, -0.0005865668, 0.034395542, 0.029987296, -0.0075599994, 0.019050919, -0.026309079, -0.007314317, -0.060929243, -0.01427064, -0.0068299714, -0.018910527, -0.023234539, 0.0028341224, 0.024161112, -0.022125458, -0.027319886, 0.000068714304, -0.0028727297, 0.004348579, 0.0055138157, -0.011926128, 0.029116878, -0.011954205, 0.0018864902, -0.01874206, -0.01663621, -0.008023286, -0.010564345, 0.034395542, 0.039758436, 0.017225849, -0.042903174, -0.016832756, -0.03228969, -0.007995209, 0.01398284, 0.0025480778, -0.0010529247, 0.0031833423, -0.01902284, -0.0150778815, 0.018770138, -0.0067597767, -0.00993259, -0.0061069634, -0.004573203, -0.03119465, -0.0027656823, -0.009974707, -0.008297047, 0.0031587742, 0.0029885513, -0.0071528684, 0.019612478, -0.035827518, -0.011645347, -0.029509969, 0.03568713, 0.0040748185, 0.023950528, -0.01777337, 0.022027185, -0.024245346, 0.0050821165, -0.036726013, -0.0027621726, -0.020047687, 0.008290027, -0.0133300265, 0.014783063, -0.025775596, -0.01861571, 0.005678774, 0.022027185, 0.013835431, 0.032177377, -0.022743173, -0.021872755, 0.00040625344, 0.011420723, -0.00024195333, 0.0008375139, 0.024863062, 0.01020635, -0.019626517, 0.024104957, -0.023403006, 0.0061525903, 0.020595208, -0.0033483007, 0.022841446, -0.02011788, -0.0045100274, 0.0027990248, -0.01007298, 0.0013503759, -0.0048504733, -0.010943398, 0.018250694, 0.004952256, -0.009048133, -0.0005400626, 0.023164343, -0.010430974, 0.01662217, 0.020791754, -0.025550973, 0.012410472, 0.00087041775, 0.0012213927, 0.0022953758, -0.011504957, 0.026674092, 0.006478997, 0.001007298, -0.005468189, -0.0059104175, -0.0067808353, -0.0043591084, 0.00004255571, -0.0075319214, 0.019233424, 0.024231307, 0.01902284, 0.016327353, -0.00045495122, 0.02112869, -0.011153982, 0.02110061, 0.025915988, -0.044615928, 0.0096237315, 0.005261114, 0.020791754, -0.014628634, 0.008072423, 0.006942284, -0.00993259, 0.013610806, 0.03843877, 0.03063309, 0.0014363648, -0.03147543, -0.002741114, -0.023894371, 0.02754451, -0.017127575, 0.0030762951, 0.024568243, -0.00923064, 0.008535709, 0.02152178, 0.0033219776, 0.0032500275, -0.04262239, -0.0032938996, -0.0028218383, -0.0036711975, -0.016860835, 0.019331697, 0.01708546, 0.0010564345, -0.019219385, 0.0074898046, 0.011533035, 0.027797213, -0.005261114, 0.017745292, -0.016116768, 0.01118206, -0.013105403, 0.027460277, -0.021872755, 0.016608132, -0.019809024, -0.0075599994, -0.01301415, 0.00021870124, -0.014024957, 0.023262616, 0.02684256, -0.0013091364, -0.010676657, 0.033749748, 0.043183953, 0.027951641, -0.00502947, -0.024820944, 0.025550973, -0.0050680777, -0.004871532, -0.010325681, 0.038803786, 0.02167621, -0.021774484, -0.014312756, -0.007889916, 0.008718217, -0.0026832032, 0.022336043, -0.009722005, -0.015723675, -0.0020953203, 0.033497047, 0.010234429, -0.027305847, 0.007581058, 0.005352367, -0.0027709468, 0.0033184676, -0.014017938, -0.009707966, 0.028021837, -0.005622618, 0.0405727, -0.00065763923, -0.002811309, 0.007061615, 0.0081987735, -0.038101837, 0.008837548, 0.017562784, -0.00084233977, -0.011280334, 0.0008168941, 0.011455821, 0.04236969, 0.01005894, 0.0075389408, -0.0068650693, -0.003846685, -0.03341281, 0.021746404, 0.012614038, -0.010592422, 0.025059609, 0.00032816152, -0.014516322, 0.024245346, -0.0145444, -0.018671865, -0.0034079663, -0.026281001, 0.019135151, -0.003230724, -0.0015749999, 0.015162116, 0.0020321447, -0.024680555, -0.020693481, 0.010543286, 0.025831753, -0.026323117, -0.006489526, 0.01568156, 0.003790529, 0.05480824, -0.016257158, -0.00037751737, -0.015246349, 0.0041836207, 0.04447554, 0.005622618, -0.0083883, -0.019149192, 0.0029148466, -0.00783376, -0.00064886484, -0.015499052, -0.008030306, -0.0057945955, 0.005064568, 0.005805125, -0.0150778815, 0.018756099, -0.017745292, -0.008023286, 0.0059771026, -0.010571364, -0.007202005, -0.013526573, 0.009104289, -0.0037133144, -0.00067518797, -0.025508856, -0.0007383635, 0.034339383, -0.0072371024, 0.003994094, -0.00092394144, -0.006756267, -0.013231754, -0.00076600275, 0.0048118657, -0.023318773, -0.0051803896, -0.0006593941, -0.02209738, 0.028035875, 0.019289581, -0.00054313365, -0.0024515598, 0.003622061, 0.014116211, -0.025901947, -0.0038642336, 0.004576713, 0.012087576, 0.019135151, -0.01718373, 0.01580791, -0.015470974, -0.00020784295, 0.0037413924, 0.00978518, -0.0051242337, 0.0029376599, -0.012712311, 0.014909414, -0.02616869, -0.04812568, 0.003550111, -0.019373816, 0.009237659, 0.014572478, 0.0069142054, -0.0005396239, -0.0052505843, 0.015456934, 0.020749636, -0.009020055, -0.017043341, -0.024287464, -0.019036878, 0.020454817, 0.0021304176, -0.00937103, -0.022013146, 0.011989303, 0.0026621446, 0.009237659, 0.01048713, 0.016959107, 0.014488244, -0.003471142, -0.009679887, 0.0018917547, -0.021746404, 0.028204344, -0.016973147, -0.015485013, 0.00922362, 0.016902952, 0.013870528, 0.00039353062, 0.00042116988, -0.025677323, 0.0017250417, -0.020482896, -0.020468857, 0.0022146516, -0.0015574511, 0.0015565737, 0.00081864896, -0.008079442, -0.027221613, 0.0034588578, -0.00951142, 0.0035764342, 0.009020055, -0.014067074, -0.041302726, 0.009132367, 0.01888245, 0.019977491, 0.010459052, 0.0025673814, -0.0038923116, -0.011175041, -0.003664178, -0.005471699, -0.02309415, 0.00092481886, 0.0056998325, -0.0051382724, -0.00030929662, -0.020875987, 0.007072144, 0.002293621, 0.010971475, -0.005187409, 0.005057548, 0.01146986, -0.007072144, 0.0068159327, -0.004215209, 0.010241448, -0.01679064, 0.001412674, -0.018208578, 0.00017022283, 0.02922919, -0.014740946, -0.015119999, 0.00048171307, -0.01636947, -0.0018671865, -0.013224734, 0.0113154305, -0.017997993, 0.03442362, 0.024961336, -0.014207464, -0.0008752437, 0.0097922, -0.015485013, -0.02504557, -0.021732366, 0.022757214, -0.025536934, -0.017197771, 0.017815486, -0.0039695264, -0.01733816, 0.028779943, -0.009841336, 0.01076791, -0.0017557519, 0.0028428966, -0.0070686345, 0.003550111, -0.020019608, -0.018208578, -0.025930027, -0.0020549581, -0.01175766, 0.00880245, -0.006447409, 0.018938607, 0.010065961, 0.032907408, -0.01761894, -0.036669858, -0.014923453, -0.0048188856, -0.018671865, -0.0075389408, -0.0061806682, -0.015344623, -0.010922339, 0.02601426, -0.01607465, 0.013898606, -0.0024006683, 0.0011143453, -0.015779832, 0.0347044, 0.023725903, 0.012234985, 0.019626517, 0.020749636, 0.02361359, -0.018756099, 0.013273871, 0.018601669, -0.00058130216, 0.033468965, -0.0063105286, 0.0035009747, 0.01622908, 0.0068545397, -0.000748454, 0.00009213091, 0.012936935, -0.029453814, 0.004271365, 0.028597435, 0.00461532, 0.0537132, 0.0015197214, -0.033637434, 0.024357658, 0.0070581054, 0.002978022, -0.030689245, 0.018082228, -0.019331697, 0.008121559, -0.00067211693, 0.0058507514, 0.037821054, -0.025747519, -0.017731253, 0.01763298, -0.013737158, 0.02922919, -0.0013328271, 0.004910139, 0.0037308633, 0.007917994, 0.010620501, -0.011413704, 0.011210138, -0.012740389, 0.0064368797, 0.016523898, 0.016931029, -0.0055734813, 0.0045942613, -0.009904512, 0.001888245, -0.0010195822, 0.0276849, 0.02237816, -0.0043275207, -0.019472087, 0.0013196657, 0.0013494985, -0.005805125, 0.007061615, -0.012515765, -0.008149637, 0.0071493587, 0.008486574, 0.008458495, 0.004271365, -0.017562784, 0.009125347, 0.008402339, -0.010423955, -0.0006971239, -0.006963342, 0.009272757, -0.0030289134, 0.013793314, -0.006675543, 0.0035430917, 0.029509969, -0.013231754, 0.0016232589, -0.006728189, 0.026407352, -0.019387854, 0.0026217825, 0.0190088, 0.021858716, 0.004696044, -0.0056542056, -0.0013310723, -0.02336089, -0.0031219218, 0.038157992, 0.0628947, -0.0065948186, 0.009897492, 0.0034062115, -0.010016824, 0.0022620333, -0.014895375, 0.028190304, -0.00027529593, -0.0034746516, -0.02152178, -0.01568156, -0.021620054, 0.011097826, 0.008886685, 0.013688021, -0.00391688, 0.0062438436, 0.03871955, 0.0036431195, -0.0049171583, 0.004639888, 0.0034886906, -0.0173522, 0.013870528, -0.0012529804, -0.009602673, -0.0056998325, 0.00077389966, 0.0190088, 0.013119441, -0.013337046, 0.0057840664, 0.0011362813, 0.013898606, -0.007939053, -0.013091364, 0.007286239, 0.010409916, 0.010269525, 0.023332812, -0.021620054, 0.025972143, 0.003007855, -0.0040537603, -0.012270083, 0.015035765, 0.0019268523, 0.0062999995, 0.0061245123, 0.0019040388, 0.015485013, -0.0007067757, -0.006268412, 0.00074318936, -0.008416378, 0.015007687, 0.014003899, 0.0019917826, -0.0035869635, -0.006040278, 0.034086682, -0.012143732, 0.0076442333, 0.0068650693, 0.0005633147, 0.011252255, -0.004446852, 0.02084791, 0.015358662, -0.0190088, -0.015274428, 0.026393313, -0.01832089, -0.012206907, 0.021002337, 0.0058963783, 0.00043104106, 0.01314752, -0.00006695943, 0.00031478063, 0.000071346614, -0.004966295, -0.026379274, 0.00937103, -0.008837548, 0.013056266, -0.004815376, 0.015878106, -0.007156378, -0.0137862945, -0.02684256, 0.013273871, -0.008135598, 0.020960221, 0.0075319214, -0.009307855, -0.0021514762, 0.0159483, 0.023150304, 0.0027200554, 0.016004456, 0.00040208563, -0.009630752, 0.010852144, 0.007100222, 0.013414261, -0.025059609, 0.010599442, -0.003832646, 0.0061174924, 0.029566126, 0.0321493, -0.0073634535, 0.024399776, 0.0040818383, 0.008858606, 0.0046258494, -0.004948746, 0.009525459, 0.012242004, -0.007398551, -0.010922339, -0.020468857, 0.02194295, -0.011996322, 0.009918551, -0.0032974093, -0.031222727, -0.0036466292, -0.0010757381, 0.01804011, 0.00016397108, -0.020988299, 0.015162116, 0.0028464065, 0.015583286, -0.0067352084, -0.00008363074, -0.00601571, 0.009293815, 0.0076723113, 0.0049698045, -0.01468479, -0.019093035, 0.04374551, -0.0053313086, -0.036613703, -0.018531475, 0.00056638574, 0.002993816, -0.019556321, -0.013526573, -0.000020002828, 0.008570807, -0.0021497214, -0.0062192753, 0.00587181, 0.009258718, 0.0024059329, -0.009862395, -0.005647186, -0.0052400553, 0.027151419, -0.019766906, -0.0081426175, 0.0011345263, 0.020581169, -0.012403453, 0.003762451, -0.019542282, -0.0037519217, -0.0018847352, -0.020525012, 0.012220946, -0.011750639, -0.033805903, -0.011708523, -0.012901838, 0.0035272979, -0.0130632855, 0.004955766, -0.004825905, -0.011533035, 0.0010467827, 0.00028736072, 0.029959219, -0.019486127, -0.014769024, 0.0042748745, -0.0013802088, 0.007314317, -0.01314752, -0.0046539274, -0.011132924, -0.04349281, 0.0048223953, 0.022209693, -0.0018777157, 0.015892144, -0.0003957242, 0.019682672, 0.009714985, -0.013505515, 0.009476323, -0.0013451113, 0.0022479943, 0.006766796, -0.003592228, 0.004362618, -0.02658986, -0.015148077, -0.003748412, -0.0133300265, 0.004225738, -0.014516322, 0.003272841, -0.023417046, 0.01300713, 0.0094342055, 0.010950417, -0.007819721, -0.0028779942, 0.016706405, 0.018601669, -0.009167464, 0.0041099163, -0.0062017264, 0.008655041, 0.014979609, 0.0032570472, -0.0116383275, 0.007044066, -0.009202562, 0.010234429, 0.024259385, 0.032345846, -0.008900723, -0.0008822632, -0.030436544, -0.0053593866, -0.004373147, -0.020679442, -0.00029964483, -0.0010266016, -0.0013266852, 0.008128579, 0.009771141, 0.025115764, -0.000026213438, -0.0040713088, 0.0040818383, -0.018559553, 0.009118328, 0.011617269, 0.010143175, 0.0011933147, 0.012796545, -0.009160445, -0.006672033, -0.009146406, 0.013182618, 0.029959219, 0.010810027, -0.0056015593, 0.012670194, -0.0081005, -0.023543397, 0.009174484, -0.0057103615, 0.0034062115, -0.013884568, 0.004320501, 0.008612924, -0.01844724, -0.013870528, 0.014333815, -0.010388857, 0.0044117547, 0.000034110373, -0.019289581, 0.0046890248, -0.01063454, 0.009609693, -0.003804568, 0.010992534, 0.02014596, -0.004741671, -0.0038291363, 0.030857714, -0.0024515598, -0.007107242, -0.002154986, -0.0128737595, 0.002153231, 0.022827407, -0.03021192, -0.012108634, 0.017871642, 0.007107242, 0.00587181, -0.019401893, -0.006264902, -0.018573591, 0.014600556, -0.00153727, 0.008212813, 0.0056717545, 0.028443007, 0.018236656, 0.014783063, 0.005482228, 0.007988188, -0.015428857, -0.01203142, 0.002463844, -0.013154539, 0.013484456, -0.015976377, 0.01916323, -0.008648022, 0.007777604, -0.008058384, -0.011322451, -0.011855932, 0.000923064, 0.007524902, 0.0027305847, -0.010339721, -0.016523898, 0.019837102, -0.009455264, 0.011701503, 0.015007687, -0.00017921656, 0.02880802, 0.0050435094, 0.039842673, 0.0068334816, 0.03147543, -0.03846685, 0.00052909466, 0.001007298, 0.010037882, 0.0002625731, 0.019837102, -0.005973593, -0.013301949, 0.019640556, 0.016144846, 0.004948746, -0.0027077715, -0.012649136, 0.002432256, 0.01048713, -0.029397657, -0.018826295, -0.021409469, 0.039112642, 0.006798384, -0.010381837, -0.015906183, -0.03400245, -0.014909414, -0.024905179, 0.015555208, -0.0072792196, -0.005296211, -0.009595654, 0.0131966565, 0.011919107, -0.00006624651, -0.0119050685, 0.015091921, -0.025410583, 0.0068650693, -0.017099498, 0.002237465, 0.02292568, -0.017267965, 0.0026270472, -0.011111866, -0.010690696, -0.016678328, 0.021620054, 0.015485013, -0.0023410027, 0.012810584, 0.002111114, -0.0048785512, 0.008219833, 0.0033325066, 0.015962338, -0.019668633, -0.015021726, -0.000103647275, -0.003804568, 0.002125153, 0.0052540945, 0.005998161, 0.010999554, -0.013315988, -0.01832089, 0.0042116987, 0.008998997, -0.000009898589, 0.018896488, -0.006949303, -0.014656712, 0.004671476, 0.01846128, 0.007286239, -0.005984122, -0.014951531, 0.012901838, 0.020019608, 0.002490167, 0.017253926, -0.0033623397, -0.016215041, -0.0114488015, -0.0014863787, -0.02125504, 0.048546847, 0.013828411, 0.0055138157, 0.0020093312, -0.00053830777, 0.035490584, 0.00041809885, 0.012052478, -0.0056857932, -0.0048294147, 0.008493593, -0.0038291363, 0.0020058216, 0.015864065, -0.012522785, 0.004966295, 0.018938607, -0.0061455704, -0.0037519217, -0.006057827, 0.025958104, 0.02799376, 0.016453704, -0.00019040388, 0.00782674, -0.011343509, 0.0151340375, 0.00082742336, -0.018068189, -0.022392198, -0.01062752, 0.0034746516, 0.022869525, -0.00979922, -0.014811141, 0.012270083, -0.04307164, 0.00978518, 0.0071809464, 0.0049733142, -0.007524902, -0.0038221166, -0.006784345, -0.012529804, 0.013084345, -0.0071949856, 0.016481781, 0.0014819915, 0.008268969, -0.017885681, -0.007903955, 0.0045100274, 0.003664178, -0.018896488, 0.018868411, 0.0032658214, -0.004436323, 0.0008427785, 0.019458048, -0.01930362, -0.02251855, 0.004278384, -0.014628634, 0.00042424092, 0.0059314757, -0.0031377156, -0.026968911, 0.030268075, -0.0067632864, 0.010079999, -0.0173522, 0.008991977, 0.02713738, -0.0014135514, -0.0006383356, 0.011806795, 0.013323007, -0.0060508074, -0.020890025, 0.007925013, -0.024933258, 0.018348968, -0.0027498885, 0.006742228, 0.009181503, 0.013898606, -0.0021163786, 0.009686908, -0.0018952645, -0.0017847074, 0.019612478, -0.018531475, 0.02361359, 0.019514205, 0.010136155, -0.0037729803, 0.0010581893, 0.016397547, 0.0035887184, 0.028330695, 0.003948468, 0.013042227, 0.027305847, -0.0011643593, 0.005713871, 0.020918105, 0.017562784, -0.017296044, -0.0027481336, 0.020510973, -0.0030868242, 0.016537938, -0.025129803, 0.0032851251, 0.0064123115, 0.008479553, 0.0095044, -0.029566126, 0.000108473185, -0.009076211, 0.013533592, -0.0058121444, -0.008591865, -0.011217158, 0.0029008077, 0.003004345, -0.00028341223, 0.036950637, 0.012831642, 0.00063658075, -0.0060472977, 0.0075178826, -0.014179386, 0.0105362665, 0.010894261, -0.013119441, -0.0035466014, -0.011687464, 0.017071418, 0.014326796, 0.020314427, 0.016692366, -0.004573203, 0.020988299, -0.0053664064, 0.0041625625, 0.010697715, -0.002839387, -0.00087875343, -0.01593426, 0.018138383, 0.007454707, -0.004436323, -0.0028130638, 0.0024796377, 0.0030534817, -0.01663621, 0.0031710584, -0.004429303, -0.014516322, -0.008479553, 0.0009941364, 0.0027376043, -0.0064930357, 0.0022866016, 0.028471084, -0.0012152506, -0.0051944284, -0.020749636, 0.007015988, -0.015723675, 0.01133649, 0.007510863, 0.016060611, 0.011694483, -0.0059033977, 0.01551309, -0.0181805, -0.009497381, 0.015485013, -0.018517436, -0.021577938, 0.01566752, 0.0075178826, -0.017857604, 0.020496935, -0.018868411, -0.0060192198, 0.023276655, -0.0232205, 0.014979609, -0.006591309, -0.022420276, -0.028779943, -0.0037133144, -0.01691699, 0.01552713, 0.002154986, -0.0018899998, 0.000548837, 0.00195844, -0.031250805, -0.004464401, -0.022406237, 0.011238216, 0.015906183, 0.003357075, 0.007384512, -0.028611474, -0.013645904, 0.033019718, 0.010122117, 0.018236656, -0.0044959886, 0.00811454, 0.011217158, 0.0053348187, 0.030268075, 0.011139943, -0.0020356544, -0.019809024, -0.0100238435, 0.024680555, -0.0036606682, 0.019949414, -0.006391253, 0.00559454, -0.012157771, -0.0050435094, -0.023374928, 0.014354873, 0.011076768, 0.0035325624, -0.0014942756, 0.0048890803, 0.0037519217, -0.0058542616, -0.023023954, -0.003966016, -0.017282004, 0.0068896376, -0.011722562, -0.0073915315, -0.013772255, -0.0055699716, -0.0067913644, -0.023248577, 0.0053348187, -0.0035571307, -0.0010643314, 0.013596768, -0.0022883564, 0.01888245, -0.0005466434, -0.0018127854, -0.0104801105, 0.019064957, -0.012277102, -0.008044344, -0.012136712, -0.023403006, -0.000009192527, -0.008612924, 0.000807681, 0.01763298, 0.020918105, -0.0069563226, -0.010269525, 0.0020356544, -0.028920332, -0.0085988855, 0.014214484, 0.008633982, -0.006643955, -0.011540055, 0.014277659, -0.0031289412, -0.025087686, 0.016116768, 0.0036852364, -0.013435319, -0.0014196935, 0.020061726, -0.0072090244, -0.009307855, 0.013358105, -0.003204401, 0.007756545, -0.010030863, -0.01566752, -0.009216601, -0.0048469636, -0.015007687, 0.02600022, -0.012319219, -0.0076231747, 0.010185292, -0.0020637324, 0.004559164, 0.031222727, -0.0022006126, -0.012894818, -0.0076231747, -0.0051803896, -0.0017013508, 0.027628744, 0.029846907, -0.009146406, -0.016032534, -0.0029622281, 0.021030417, -0.0048294147, -0.011876991, 0.0021479663, -0.004657437, 0.019907296, -0.007314317, -0.009834317, -0.004632869, -0.00447493, -0.002183064, -0.002935905, 0.0027253202, 0.0019057937, -0.0054611694, -0.0057524787, -0.00014894498, 0.007854818, -0.0054471307, 0.0048890803, -0.013961782, -0.005527855, 0.010381837, 0.03717526, -0.019149192, 0.022476433, 0.0015118244, 0.00087963085, -0.023852255, -0.004141504, 0.027572589, -0.008711197, 0.008746294, -0.0057524787, 0.0050821165, -0.0076021166, -0.016018495, -0.011413704, -0.014017938, 0.027165458, -0.013772255, 0.011161002, -0.0006708008, -0.021718327, 0.024399776, -0.0018408634, -0.012305181, 0.006303509, 0.0082759885, -0.011238216, -0.015597325, -0.027516432, -0.0059104175, 0.016172923, 0.010718773, -0.0017329386, 0.0052681332, 0.004429303, -0.0038782726, -0.011603231, -0.0139758205, 0.018826295, 0.017001225, 0.01663621, -0.0032658214, 0.0004733774, 0.012382395, 0.025635207, 0.018980723, 0.019247463, -0.022139497, 0.008493593, 0.00040844706, -0.00824791, 0.0058963783, -0.004980334, -0.0011301392, -0.0021356824, -0.0057419497, -0.007946072, -0.011806795, 0.008346183, 0.0015618383, 0.01777337, -0.028976489, 0.0027727017, 0.023318773, 0.016341392, 0.012347297, 0.009013035, -0.011062729, -0.013077325, 0.011420723, 0.01804011, 0.0036325902, 0.0016004456, -0.0011713788, 0.00010238596, -0.004853983, 0.006324568, -0.019809024, -0.0020935654, 0.0008375139, 0.0067457375, 0.0033219776, -0.01482518, -0.011090807, 0.005640167, 0.007230083, 0.013168578, -0.00004395412, 0.0067738155, -0.019556321, -0.009743064, 0.00028056058, -0.018433202, 0.011687464, -0.004039721, 0.001174011, -0.0025656265, -0.009820278, -0.005369916, 0.0013916155, 0.0045416155, 0.0023532868, 0.0060192198, 0.0059490246, -0.020609247, 0.0042994427, -0.0023550417, 0.016846795, -0.000094927746, -0.0031868522, -0.005468189, 0.013477436, -0.000678259, 0.0037168243, -0.004583732, -0.013989859, -0.017253926, 0.0159483, -0.0051733702, -0.018896488, 0.00978518, 0.0023918939, 0.012319219, 0.0145444, -0.0032605568, -0.007882897, -0.02253259, 0.009939609, -0.011238216, 0.0019882729, 0.005352367, 0.008423397, -0.001231922, 0.008479553, 0.010227408, -0.019654594, 0.00048434536, -0.008879665, -0.005917437, 0.015162116, 0.023838215, -0.0057945955, -0.021072533, 0.0028692198, 0.028485123, 0.01565348, 0.023824176, -0.0012433286, -0.008844567, 0.012403453, -0.014017938, 0.011076768, -0.004948746, 0.009616712, 0.0032061557, -0.011434763, -0.0051944284, 0.0017566294, 0.006377214, -0.011729581, 0.0015635932, 0.02403476, 0.0022550137, 0.011785737, 0.0052470746, -0.0017083704, 0.020890025, -0.02167621, -0.01861571, 0.01565348, -0.0020795262, 0.0047311415, -0.0042292476, -0.018348968, -0.005001392, 0.00066597486, -0.00093359326, 0.0053944844, 0.00011203777, -0.01286674, -0.009027074, -0.0012336768, -0.013617827, 0.00020444288, 0.023739943, 0.027937602, -0.022687018, -0.01861571, -0.0036010025, -0.014797102, 0.004029192, 0.007107242, 0.0045942613, -0.008725236, 0.020763675, 0.010234429, 0.018840333, 0.015485013, 0.018391086, 0.0030113647, -0.004696044, -0.0059033977, 0.014277659, 0.020216154, 0.008900723, -0.0024726181, -0.012979052, 0.0034728968, 0.0033518104, 0.010087019, 0.005412033, -0.013730139, -0.008290027, -0.026533702, -0.015316545, -0.0026638994, 0.024006683, -0.007370473, -0.012733369, 0.0057945955, 0.020019608, -0.011554094, 0.007398551, 0.010943398, -0.0050399997, -0.015274428, 0.006949303, -0.00080417126, 0.012614038, -0.00058261835, -0.0031587742, -0.016201, -0.0065140943, 0.0072932583, -0.0008835793, -0.017576823, -0.021662172, 0.008612924, 0.0073213363, -0.00993259, 0.0049733142, -0.023543397, -0.00601571, -0.00433454, 0.012705292, 0.024259385, 0.00049180357, 0.011034651, 0.024020722, 0.010494149, -0.024104957, -0.0009134122, 0.013681002, -0.029201113, -0.011518996, 0.0020689971, -0.033328578, -0.009216601, 0.012080556, 0.0062438436, 0.0024673536, 0.0024445402, 0.008486574, -0.012045459, 0.00095026457, 0.00050540385, 0.004643398, -0.015695598, 0.020637324, -0.025298271, -0.016032534, -0.00027222492, 0.00419766, -0.0020549581, 0.015906183, 0.035490584, 0.018812254, -0.0036992754, -0.00587181, -0.00880947, -0.00089147623, 0.0018812255, 0.01972479, 0.02097426, -0.009953648, 0.01957036, 0.006054317, -0.0019461558, -0.021914873, 0.0020725068, -0.0062333145, -0.006471977, -0.010606461, -0.020019608, 0.014572478, -0.022476433, 0.0063737044, -0.0024006683, -0.014895375, -0.0022778271, -0.017029302, 0.0058507514, 0.005843732, 0.014354873, 0.0011994567, 0.03961805, 0.00032114203, -0.012108634, -0.000024403724, 0.01105571, -0.024455931, 0.012515765, -0.029341502, -0.01384947, 0.015906183, 0.0013512534, -0.015906183, 0.013681002, -0.008325125, 0.008641002, 0.017225849, 0.0013249302, 0.002251504, -0.0017601391, -0.01844724, 0.020763675, 0.01203142, -0.012256044, -0.002390139, -0.01146986, -0.0042397766, 0.0020918103, -0.014179386, -0.017310083, -0.02979075, -0.021297157, -0.0032008912, 0.0005321657, -0.011027631, -0.0020093312, -0.0025129803, -0.0002965738, -0.0039519775, -0.010620501, 0.009771141, -0.003973036, 0.0034062115, 0.023599552, 0.005927966, 0.027207574, -0.0006260515, -0.0006835236, -0.006489526, 0.024820944, -0.0145444, 0.01399688, -0.0034448188, 0.020637324, -0.0036571585, -0.00881649, 0.015358662, -0.000011105065, -0.019893257, -0.01691699, -0.022125458, -0.0040467405, 0.0015469219, 0.028218383, -0.009034094, 0.009483342, -0.014046015, 0.017127575, 0.005464679, 0.0008068036, -0.0025357937, -0.00076424784, 0.023417046, -0.004429303, 0.020398661, -0.021212922, -0.0075599994, -0.008339164, 0.024357658, -0.0021760445, 0.0075319214, 0.015119999, 0.020805793, 0.0405727, 0.0031535095, 0.01888245, 0.011294372, -0.0022427295, -0.011497938, -0.0046188296, 0.002935905, 0.0276849, 0.012291141, -0.00048653895, -0.0062192753, -0.0043310304, -0.0032412533, -0.0018706962, 0.013512534, -0.021044455, 0.00978518, 0.003064011, 0.0036676878, 0.0096237315, -0.009469303, 0.0015556962, -0.0029569636, 0.013610806, 0.017927798, -0.0035413369, -0.0027481336, 0.0010853899, 0.016018495, -0.014895375, 0.0033904177, 0.008697158, 0.012101615, 0.006303509, -0.0032412533, -0.0039625065, 0.0041730916, -0.010992534, 0.0058542616, 0.007230083, -0.016580055, 0.0122841215, -0.034311306, -0.012473648, 0.023894371, 0.016945068, -0.00038212392, -0.017675096, 0.012059498, -0.009020055, 0.00391337, 0.00040515666, -0.01510596, -0.013210695, 0.0037027854, -0.008402339, 0.030492699, -0.004488969, -0.030941948, 0.009076211, -0.010423955, 0.015021726, -0.029116878, -0.0167766, -0.010437993, -0.009750083, -0.012817604, -0.012803565, 0.010037882, -0.030605013, -0.0058858492, -0.033384733, -0.008304066, 0.0007076532, 0.022729134, 0.019121112, 0.0045942613, 0.001524986, -0.0064228405, -0.0033026738, 0.007784623, -0.019514205, 0.0041836207, -0.030576933, -0.013989859, -0.024652477, 0.017955877, -0.0048785512, 0.008563788, 0.0025305292, -0.010044902, 0.0050821165, -0.0024059329, 0.007756545, 0.0069317543, -0.017871642, -0.0022848467, -0.025831753, 0.012382395, -0.021212922, -0.01510596, 0.0017382032, -0.004011643, -0.014937492, 0.015274428, 0.004994373, 0.02250451, 0.003049972, -0.013589748, -0.00782674, 0.034760553, -0.030380387, -0.0122841215, -0.0016838021, 0.0022708077, 0.0020584678, 0.0011608495, 0.020033648, -0.007510863, -0.0039976044, 0.005278663, -0.015793871, 0.0002777089, -0.015864065, 0.015260389, 0.0074055707, -0.011898049, -0.00811454, 0.006380724, -0.021297157, -0.005387465, 0.021830639, -0.002349777, -0.013358105, -0.018980723, -0.003930919, 0.015246349, 0.0033816432, 0.0076161553, -0.0018268244, -0.024610361, -0.021900835, 0.03928111, -0.0022462395, 0.0026551252, 0.015569246, -0.0017855848, 0.011575152, 0.020384623, 0.001789972, -0.019879218, -0.025298271, -0.015569246, -0.0064965454, 0.021620054, 0.017983954, -0.019373816, 0.007679331, 0.0020637324, -0.008472534, -0.020946182, -0.016748523, 0.010985514, 0.010388857, 0.021226963, -0.008170696, 0.013400222, -0.0033676042, -0.019205347, -0.004938217, 0.0020496934, 0.014305737, 0.0081987735, -0.010283565, -0.004699554, -0.005970083, 0.015204233, 0.009321894, -0.00010649895, 0.0033869077, 0.010501169, 0.0010941642, -0.020258272, 0.021072533, 0.0038431752, 0.006507075, 0.00937103, -0.003313203, 0.0022602784, 0.02517192, -0.015906183, 0.024315542, -0.008044344, -0.009834317, -0.009455264, -0.0013547632, 0.0097922, -0.0037133144, -0.012150751, 0.022392198, -0.010269525, 0.019921336, -0.011575152, -0.008823509, 0.0011608495, 0.010648578, -0.018713983, -0.0011898049, -0.011596211, 0.020763675, 0.012045459, 0.00029350276, -0.016341392, -0.016411586, 0.00054488855, -0.01705738, 0.008837548, -0.013210695, -0.012810584, 0.015793871, -0.0007769707, -0.017927798, -0.004587242, 0.007356434, 0.011069749, -0.009286796, -0.0077003893, 0.016341392, -0.016018495, -0.0043310304, 0.013772255, -0.0012170054, -0.019921336, 0.016172923, 0.0008138231, 0.015793871, 0.017787408, -0.009441225, -0.01370206, 0.004660947, -0.0025164902, 0.021226963, -0.011118885, 0.016692366, 0.004952256, -0.019696712, 0.007370473, 0.012185848, -0.01846128, -0.005159331, -0.017310083, 0.0019952923, 0.021563899, 0.02403476, 0.019317659, 0.027418159, 0.00433805, -0.021648131, 0.018924566, -0.018334929, 0.0042292476, -0.013175598, -0.0052365456, -0.006643955, 0.00839532, -0.002686713, -0.0014583007, -0.0037589413, 0.0040993867, 0.011146963, -0.018699942, 0.010592422, -0.024863062, -0.008261949, -0.0030727852, 0.015470974, 0.005468189, -0.011813816, -0.0195844, 0.018475318, 0.013737158, 0.0023725904, 0.011701503, -0.0040537603, 0.030885791, 0.019879218, 0.0018057659, -0.018994762, -0.035855595, 0.0059490246, 0.040348075, 0.0036466292, -0.0005633147, 0.00937103, 0.004253816, -0.007496824, -0.008479553, 0.00741259, 0.013245793, -0.0022550137, 0.011778718, 0.0031131473, -0.0032605568, 0.0054050134, 0.0114488015, 0.0014442618, 0.030885791, 0.018503398, 0.015765794, 0.023824176, 0.021142729, -0.013744177, -0.014354873, -0.006584289, -0.0026884677, -0.010129136, 0.02336089, 0.015091921, 0.011806795, 0.009778161, 0.014340835, -0.015190193, 0.0052927015, -0.0061701387, 0.014993648, 0.01258596, -0.029678438, 0.010788969, -0.005987632, -0.0074757654, 0.007398551, 0.0047311415, 0.0117155425, 0.0079530915, -0.013582729, -0.013491475, -0.013884568, -0.0016662533, -0.019289581, 0.019107074, -0.027572589, -0.000036495905, 0.0037449023, 0.009686908, -0.012993091, -0.005103175
2607
+ -0.051679775, -0.027872238, -0.020236406, -0.0315595, 0.011076312, 0.007730191, -0.007454372, 0.029048098, 0.009486723, 0.012085228, 0.009348813, 0.0019996879, 0.0047760243, 0.000035186204, -0.050721668, 0.03144337, -0.014495015, 0.001060633, -0.002424304, -0.043724574, 0.0048740124, -0.020192856, -0.018349223, 0.0010080097, 0.029106164, -0.00005191454, 0.015010362, 0.003445923, -0.065732025, 0.026217323, 0.010727908, -0.028046438, -0.0051752357, 0.0009281673, -0.008898793, -0.027306084, 0.035769373, 0.0010824082, 0.00077528734, 0.012963494, 0.029048098, 0.025752787, 0.021455817, 0.020120272, -0.008506839, -0.03754042, -0.005015551, -0.013645783, -0.043492306, 0.013667558, -0.000068160865, -0.0014825272, 0.046424694, 0.02668186, 0.020962246, 0.019786386, 0.03153047, -0.010372247, 0.013173987, -0.038905, -0.027988372, 0.011373905, -0.013166729, -0.0017220543, 0.021368716, -0.014117579, 0.026986713, 0.022530058, -0.012818326, 0.028830346, -0.018566975, -0.030775595, 0.012266688, 0.012963494, -0.010677099, 0.009689958, 0.023241382, 0.004667148, -0.002124895, 0.0041409144, -0.0050445846, -0.01479261, -0.0014652886, -0.009014927, 0.048544146, 0.00086828554, 0.047905408, -0.056528382, -0.0025622135, 0.01072065, -0.032198243, 0.03211114, -0.0011803965, -0.0021593727, 0.040356677, -0.009718991, -0.019423466, 0.014611149, -0.02862711, 0.009755284, 0.0041590603, 0.018349223, 0.007330979, -0.051824942, -0.00089686544, -0.042272896, 0.040037308, 0.015794268, -0.028685179, 0.012295721, -0.022442957, -0.025201147, -0.015068429, -0.013856277, -0.033446684, 0.01759435, -0.027088331, -0.024867263, 0.013682075, -0.005530897, 0.021252582, -0.025883438, -0.0012566097, -0.014756317, -0.008223762, -0.009682699, 0.0069208797, -0.019220231, 0.035769373, 0.07090001, 0.00057568145, 0.052115276, 0.013159471, 0.03097883, 0.0045800474, 0.037192017, 0.051708806, 0.026507659, 0.00097171764, 0.015082945, -0.015736202, -0.025404382, -0.036291976, -0.0073382375, -0.017129812, 0.011424714, -0.0044348794, 0.039224368, 0.0039449376, -0.011018244, -0.04857318, -0.0093778465, -0.0013981484, -0.027277049, -0.008245537, -0.020410607, -0.010430314, -0.026014088, -0.0048232037, 0.04125672, 0.031762738, -0.030688494, 0.010234337, 0.025157599, 0.013711109, 0.00015911763, 0.0068555544, 0.008717333, -0.05504767, 0.04215676, 0.009907709, 0.037598487, 0.013377222, 0.0051171687, -0.033620887, 0.031588536, 0.0030721158, -0.009319779, 0.01673786, 0.023299448, -0.013602233, -0.005752278, 0.031182066, 0.00800601, 0.004191723, 0.005033697, 0.06683531, 0.01682496, 0.050082926, -0.0045655305, -0.0022210688, -0.027233498, 0.012854618, -0.01759435, 0.018566975, -0.05019906, -0.0195396, -0.012803809, -0.026173774, 0.025201147, -0.019365398, -0.035391934, 0.00060380774, 0.005596223, 0.0027926676, 0.014574857, -0.008630232, -0.038063023, -0.0101109445, 0.003955825, 0.053334687, 0.042272896, -0.008521356, -0.022878462, -0.004805058, -0.015576516, 0.010016586, -0.028510977, -0.031762738, 0.010401281, 0.020831594, 0.010967435, 0.015605549, -0.040066343, -0.030514294, -0.03672748, -0.017623384, -0.0075342143, 0.0011731382, 0.011823926, -0.00646723, 0.034433827, 0.04273743, 0.0010633549, 0.007788258, -0.028757762, 0.053044353, -0.045756925, -0.04192449, 0.032720845, -0.008419738, -0.0005085413, -0.059867244, -0.03971794, 0.026391525, -0.0073128333, 0.0066523193, 0.027131882, 0.0001972242, 0.0045800474, 0.006303916, 0.0122521715, 0.013355447, 0.010335955, -0.044247176, 0.0010179899, 0.034520928, -0.0134280315, -0.0022555464, 0.034259625, -0.0031428852, 0.015765235, 0.004924821, 0.02193487, -0.027102849, -0.005803087, 0.004572789, -0.023734953, 0.01795727, 0.02234134, 0.031675637, 0.027756104, 0.025839888, 0.014553082, -0.013580457, 0.016447524, -0.0020831595, 0.044334278, 0.043114867, -0.018160505, -0.0028325887, -0.046976335, 0.074558236, 0.024881778, -0.004021151, -0.03672748, -0.028264191, -0.03614681, -0.015199079, 0.0020559405, -0.047295704, -0.001384539, -0.0059809177, 0.015126496, 0.019713802, 0.028685179, -0.0041227685, -0.015257147, 0.032198243, -0.017739518, -0.010568224, -0.025810853, 0.03071753, -0.030427193, 0.026028605, 0.038411427, 0.038063023, 0.040501844, -0.010967435, 0.024518859, 0.03745332, 0.0033279741, -0.024852745, -0.009987552, 0.017855652, 0.047876377, -0.0066414317, -0.02894648, -0.020802561, 0.027712554, 0.005781312, 0.0038360618, -0.08181663, 0.016970128, 0.041459955, 0.031153033, 0.001366393, -0.020642877, 0.013036078, -0.022588126, -0.032575678, -0.016084604, -0.013065112, 0.042766463, 0.022892978, -0.042998735, -0.013253829, 0.010604516, 0.007773741, 0.012702191, 0.0148651935, -0.015315214, 0.007889875, -0.0063801296, -0.023313966, -0.05951884, -0.012332014, 0.025360834, 0.0043768124, 0.023212347, 0.0008977728, -0.028714212, 0.018915378, -0.02071546, -0.01524263, -0.0017547171, 0.022515543, -0.02537535, -0.007218474, 0.037395254, 0.050373264, 0.004536497, 0.037308153, 0.013645783, -0.022573609, -0.032604713, 0.00026243634, -0.027756104, 0.0029196895, 0.013268347, 0.002908802, 0.021092897, 0.003745332, 0.007399934, -0.017623384, 0.015794268, -0.020599326, -0.006960801, 0.0069208797, 0.021688085, -0.004558272, 0.024678543, -0.034027357, 0.03277891, 0.021020312, -0.0010279702, 0.031094965, -0.02428659, 0.03048526, 0.0040138927, -0.009327038, -0.024634993, -0.025259215, -0.051360406, 0.043840706, 0.00429697, 0.03350475, -0.025694719, -0.0016249733, -0.033620887, -0.00027400441, 0.007363642, 0.050634567, -0.0038832414, -0.024881778, -0.010292404, -0.035159666, -0.02795934, 0.03359185, -0.015416832, -0.021992937, -0.062712535, -0.03635004, 0.014465982, -0.020991279, -0.010299663, 0.020933213, 0.016650759, -0.011250513, -0.011809409, 0.0041227685, 0.017623384, -0.0032553903, -0.015097462, -0.017115297, -0.01524263, 0.024576927, -0.0022718776, -0.033678953, -0.049879692, -0.0037380736, -0.003102964, 0.009334296, -0.011018244, -0.033940256, 0.005951884, 0.021426782, 0.036059707, -0.023270415, -0.012854618, -0.049095787, -0.046889234, 0.018784726, -0.025665686, -0.064280346, 0.009152836, -0.017042711, 0.0022174397, 0.022820394, -0.07484857, -0.014364365, 0.014168387, -0.032459542, -0.021992937, 0.0029668692, -0.025810853, 0.006866442, 0.015634583, 0.019423466, -0.037598487, 0.013907085, 0.014168387, 0.03356282, -0.022951046, 0.024475308, -0.0037162984, -0.019350883, -0.025070498, 0.004329633, 0.003387856, -0.010778717, -0.015315214, 0.044973016, 0.023299448, -0.005294999, -0.008441513, 0.0065652183, -0.03478223, -0.019844452, -0.013957894, 0.04337617, -0.02460596, 0.002279136, -0.041634154, -0.011199703, 0.011250513, 0.018566975, 0.015634583, -0.0006990742, -0.013827243, -0.010996468, -0.016868511, 0.020468675, -0.027204465, -0.02958522, -0.051999144, -0.016476557, 0.0025549552, 0.012317496, 0.023270415, -0.039282434, -0.0087318495, -0.038701765, 0.02270426, -0.03007879, 0.02736415, -0.01699916, 0.025999572, 0.016229771, 0.033707988, 0.013435289, 0.006187782, -0.012143295, 0.031327233, 0.018581491, 0.008361671, 0.009523015, -0.009218162, -0.0006387388, -0.008289088, 0.006681353, 0.019423466, -0.0007675753, -0.0014707324, 0.0007866286, -0.0045147217, 0.021557434, 0.0033388617, -0.015024878, -0.010524673, -0.010909368, 0.01031418, -0.060680185, 0.008739108, -0.023081698, 0.0127530005, 0.022573609, 0.0069208797, -0.02221069, -0.006870071, -0.011439231, 0.029991688, 0.035769373, 0.020149305, -0.008935085, 0.011700533, 0.015997503, -0.027102849, -0.034114458, 0.0057885703, 0.0044711716, 0.018784726, 0.004844979, 0.008267312, 0.008985893, -0.02501243, -0.021760669, 0.0027563756, -0.032140173, 0.0017102594, 0.035159666, -0.020657392, 0.037656553, -0.008717333, -0.00020210094, 0.0064708595, 0.021818737, 0.023865603, -0.019249264, -0.008376188, 0.0021466704, -0.007345496, 0.010343214, 0.02469306, 0.01913313, 0.026768962, 0.0022246982, -0.03266278, 0.0009381476, -0.010553706, 0.017129812, 0.0007353662, -0.0120199025, 0.04093735, 0.036524244, 0.01904603, -0.0061369734, -0.028743245, 0.0061369734, -0.0011558995, 0.015184563, 0.04134382, 0.015271664, -0.010880334, -0.011468264, 0.0023136134, -0.0006024468, 0.015445865, -0.0046453727, -0.041488986, 0.030427193, -0.008993152, 0.047411837, 0.00012293908, -0.025026947, 0.0056107393, 0.03794689, -0.013232054, 0.01352239, -0.004754249, -0.00007235713, 0.026885096, 0.026347974, -0.006369242, -0.0045619016, 0.0073926756, -0.0018463543, -0.018465357, -0.021383232, 0.03794689, -0.018566975, -0.026754444, -0.015358765, -0.013587716, 0.007291058, 0.00836893, 0.0013119549, -0.029556185, 0.017057229, 0.014037737, 0.004405846, 0.006645061, -0.021223547, -0.011932801, -0.023763986, -0.015111979, -0.019220231, 0.03469513, -0.0021013054, -0.018436324, -0.035856474, 0.010343214, 0.004543755, 0.052492715, 0.0027382297, 0.026768962, 0.0035783888, -0.0068773297, 0.01347884, -0.0094068805, 0.003681821, -0.0012375563, 0.018479874, 0.040647015, -0.0061442317, -0.005451055, 0.0315595, 0.016258806, -0.010735166, 0.017086262, -0.017274981, 0.0050264387, 0.0068773297, 0.006205928, -0.005621627, -0.023967221, 0.0019724688, -0.007701157, -0.016200738, 0.024388207, -0.019510567, -0.029280366, -0.013819984, -0.00065280194, 0.0215284, -0.002785409, 0.006427309, -0.0013037892, -0.02306718, 0.037714623, -0.007955201, -0.011780376, -0.012317496, 0.0023372034, -0.06056405, -0.017608866, -0.0027473026, -0.0057921996, -0.011192446, -0.010887593, -0.012586057, 0.019844452, 0.014618408, 0.038411427, -0.008071336, 0.032866012, 0.005255078, -0.03364992, 0.030688494, -0.039601803, -0.008419738, -0.035856474, -0.009689958, -0.017086262, 0.003908646, 0.016084604, 0.012869135, 0.0053966166, -0.06851925, -0.0052659656, 0.017289497, 0.025230182, 0.007232991, 0.030514294, 0.018392773, 0.008695558, 0.0030448968, 0.01112712, -0.018378256, 0.024228523, 0.014727284, 0.0069535426, 0.004558272, -0.015547482, -0.035391934, -0.0010479308, 0.013101404, -0.00035180536, 0.010981952, -0.013602233, 0.005051843, 0.0015170046, 0.0054692007, 0.013094145, 0.0062022987, -0.021789702, 0.017013678, 0.018523425, -0.0032245421, 0.015634583, 0.03298215, -0.0022446588, 0.0009762542, -0.0044929464, 0.0056978404, -0.031385303, -0.00020697768, -0.0033588223, -0.025186632, -0.0011912842, 0.01736208, -0.03031106, 0.025085013, -0.06323514, -0.01189651, 0.010691616, -0.021876803, 0.021499367, -0.02184777, 0.028685179, 0.017739518, 0.023763986, -0.025796337, 0.026028605, 0.048834484, -0.024475308, -0.019670252, -0.010742425, -0.008448772, -0.00049402454, 0.044247176, -0.030136857, 0.051592674, -0.014415173, -0.018697627, 0.00859394, -0.01699916, -0.012179587, -0.009675441, -0.01795727, -0.011301321, 0.013406256, -0.024083355, 0.016839476, -0.009472206, -0.014582116, -0.0014961368, -0.036930714, 0.024722094, 0.026115706, 0.03446286, 0.0273206, 0.004202611, 0.004844979, 0.022167139, -0.008223762, -0.008347155, -0.057196155, 0.011286804, -0.04491495, 0.030020723, 0.0040864768, -0.01112712, -0.0027745215, -0.01017627, -0.030514294, 0.020729978, -0.029164232, -0.008274571, 0.025709236, 0.017841136, -0.012404597, -0.017173363, 0.055425107, -0.003854208, -0.0016367681, -0.02627539, 0.029294884, -0.013878052, -0.004151802, 0.0052478197, -0.00655796, 0.0003102964, 0.009102028, -0.029367467, 0.024214007, 0.023778502, 0.03695975, 0.004217128, -0.012600574, -0.010909368, -0.019786386, -0.040269576, -0.006797487, -0.028510977, 0.010677099, -0.01958315, -0.007846326, 0.003451367, -0.0014716396, -0.018204056, -0.022776844, -0.012186846, -0.008964119, 0.0014525864, 0.00022931992, -0.033620887, 0.02836581, 0.007868101, 0.0007612242, -0.0010669841, -0.017754035, 0.024388207, 0.021470333, -0.016360423, 0.009682699, 0.04645373, -0.02655121, 0.010531931, -0.007330979, 0.020904178, -0.01329738, 0.009871418, 0.0043768124, -0.018102437, -0.03632101, 0.0034259625, -0.0056978404, 0.0018236719, 0.01836374, -0.007868101, -0.025622135, -0.0051171687, 0.030020723, 0.02221069, 0.009189128, -0.008615715, -0.0011958206, 0.0013246571, 0.0018781098, 0.0064708595, 0.022065522, 0.015808785, 0.019437982, 0.013856277, 0.015082945, -0.0048849, -0.0087899165, 0.007548731, -0.0061224564, 0.0099657765, 0.021383232, 0.008964119, -0.024068838, 0.019234747, 0.008797175, -0.016984645, 0.029991688, 0.00085921254, -0.029512635, 0.000890968, -0.020541258, -0.019684767, -0.022515543, 0.00336971, -0.012905426, 0.006231332, 0.015692651, 0.021020312, -0.0015351506, -0.029222298, 0.013290122, -0.023676885, -0.022805877, -0.010234337, -0.036930714, -0.018639559, 0.029004548, 0.012455407, -0.012883652, -0.0014099433, 0.035885505, 0.05019906, -0.012186846, -0.0175508, 0.031907905, -0.025665686, 0.029556185, 0.017333047, -0.009849642, -0.0025404384, 0.028148057, 0.038556594, -0.0018762952, 0.057776827, -0.014995844, -0.022501025, 0.0075995396, -0.022994597, 0.025680203, -0.010822267, 0.005832121, -0.017623384, 0.015474899, -0.024809195, -0.0037961407, -0.0028035552, -0.0012738483, 0.0070987106, 0.044769783, -0.007196699, 0.031327233, 0.029193265, -0.011845701, -0.002211996, -0.0060861646, -0.0021412265, -0.019728318, -0.020163821, 0.01234653, 0.009131061, 0.010887593, -0.012382822, -0.0014870637, 0.05667355, 0.012557024, -0.007875359, -0.017942753, -0.005872042, -0.011881993, 0.008216503, -0.014857935, 0.0056869527, 0.010067394, 0.037888825, -0.042853564, -0.019002479, 0.0142191965, -0.019713802, -0.023734953, 0.013188505, -0.0140740285, 0.014117579, -0.018073404, -0.014422432, -0.0234301, 0.010546449, 0.0058103455, -0.053654056, 0.039108235, -0.0005448333, 0.0106117735, -0.00782455, -0.009827867, 0.0005049121, -0.007904393, 0.007708416, 0.020062204, 0.00038288036, -0.0007607706, -0.012201362, -0.035304833, -0.007751966, 0.0126658995, 0.019742835, 0.03469513, 0.012317496, 0.029817488, -0.0548154, 0.010887593, 0.030252991, 0.036117774, -0.0056288857, -0.022007454, -0.002821701, 0.0051752357, -0.014538566, -0.03867273, 0.026507659, -0.008245537, -0.00080568186, 0.013130437, 0.014008703, -0.0077229324, 0.0047760243, 0.018857311, -0.0051316856, 0.018247606, 0.035653237, -0.01017627, -0.02107838, 0.0046381145, 0.018552458, -0.008049561, 0.011177929, -0.02274781, 0.0030594135, -0.06892572, -0.006111569, 0.0051099104, -0.008637491, 0.018799243, 0.0016766893, 0.018450841, -0.02392367, -0.043231003, -0.01605557, -0.008666524, 0.0016122711, 0.01994607, 0.0020813448, 0.032807946, 0.0073600127, -0.0175508, -0.017333047, -0.0035620574, 0.0049538547, -0.004355037, 0.028119024, 0.04265033, 0.003572945, -0.024925329, -0.009893193, -0.0254189, -0.010960177, 0.0147780925, 0.002003317, 0.0028198867, 0.013899826, -0.018552458, -0.016752375, 0.02573827, -0.0015478528, -0.0148651935, -0.0056833234, -0.014415173, -0.037685588, -0.0066559482, 0.01252799, -0.011809409, -0.014596633, -0.013565941, 0.013790951, 0.01596847, -0.022863945, -0.0071821823, -0.012143295, 0.023865603, -0.0054111336, -0.005487347, -0.009697216, 0.032546643, -0.011947319, 0.007846326, -0.027944822, -0.020120272, -0.0053893584, 0.044450413, -0.0070587895, 0.0031682895, -0.018349223, -0.023531718, 0.0020015026, 0.008448772, -0.0030340091, 0.027277049, -0.00026606556, -0.018929895, 0.030688494, 0.007860842, 0.00094268407, -0.0049502254, 0.0022718776, 0.004714328, -0.0046961815, 0.021630017, -0.02225424, -0.01949605, 0.024591442, -0.020613842, 0.020425124, 0.0039921175, -0.02148485, 0.011410197, -0.01695561, -0.02221069, -0.010343214, -0.001981542, 0.024402725, -0.0014054067, -0.013761917, 0.00040669696, 0.005088135, -0.030949797, -0.0028017405, 0.014015961, -0.013181246, 0.0044312505, -0.008717333, 0.0006977132, 0.021397749, -0.01194006, 0.009885934, 0.014284522, 0.009218162, 0.0036745626, -0.0006854647, 0.009559306, -0.018755693, -0.0067648245, -0.0054474254, 0.004779653, 0.007621315, 0.019960588, 0.027567385, 0.0006215001, 0.02456241, -0.009653666, 0.014335331, -0.0027563756, -0.063525476, 0.0022537317, 0.0037235569, -0.0077229324, -0.015707167, -0.028786795, 0.009385105, -0.017739518, 0.009515756, 0.036175843, 0.026057638, 0.009624632, -0.013986927, -0.0007648534, -0.0045873057, 0.015895886, -0.017565316, 0.011497298, 0.031036898, -0.023633335, 0.0022228835, 0.032517612, -0.020933213, -0.02116548, -0.011206962, 0.011410197, -0.009922226, -0.00818747, -0.009711733, 0.0056869527, 0.012397339, 0.007831808, 0.016084604, 0.021136448, 0.031820804, 0.035159666, -0.00033751538, 0.012317496, -0.015692651, 0.0053131455, -0.0066378023, 0.030543327, -0.015721684, 0.0234301, -0.03396929, 0.00046022763, -0.003854208, 0.00057250593, -0.0073890463, 0.042534195, 0.019220231, 0.013718367, -0.007272912, 0.037714623, 0.022326823, 0.017042711, -0.0008950509, -0.016897544, 0.022922013, -0.014640183, -0.0039267917, -0.0099657765, 0.03989214, 0.0113448715, -0.010735166, -0.0058684126, 0.009748025, 0.014059512, -0.0040247804, 0.0049284506, -0.011199703, -0.01637494, -0.026115706, 0.029207783, -0.0058611543, -0.015852336, 0.0071023395, -0.006623286, -0.00046022763, 0.009885934, -0.023676885, -0.00005594068, 0.029991688, -0.008622973, 0.024881778, -0.020338023, -0.03809206, -0.0048232037, 0.0041590603, 0.0049502254, -0.0031646604, 0.015808785, -0.0022573608, 0.0019343623, -0.00849958, 0.0040647015, 0.016723342, 0.014647442, 0.012375564, 0.016665276, -0.026072156, -0.04337617, 0.015765235, 0.02971587, -0.007069677, 0.00624222, -0.019394431, -0.0028017405, 0.034927398, -0.014342589, -0.020875145, 0.017536283, 0.0047288444, 0.012782034, 0.0058793, -0.017042711, 0.016200738, -0.011112603, -0.021673568, -0.0087899165, 0.0127530005, 0.023241382, -0.010597257, -0.016665276, 0.008586681, 0.026827028, 0.03835336, -0.015576516, 0.015707167, 0.00293965, -0.027378667, 0.028569045, 0.012215879, -0.042127725, -0.025273733, 0.0061260858, -0.021673568, 0.00683015, -0.004329633, -0.0049720006, -0.012673158, 0.016708827, -0.007505181, -0.016476557, 0.0092907455, -0.011185187, -0.0234301, 0.012317496, -0.010103686, -0.024272073, -0.0056397733, -0.009029443, -0.002148485, -0.0028380326, -0.02274781, 0.012760259, 0.037656553, -0.013827243, -0.008100369, -0.013333672, 0.0068156333, 0.00084560306, -0.021310648, -0.006249478, -0.019220231, -0.019278297, -0.012063453, -0.030398158, 0.014734542, 0.010865818, 0.01194006, -0.0054619424, -0.008847984, -0.003908646, -0.021281615, 0.0055163805, -0.010981952, 0.035972606, 0.012273947, -0.030136857, 0.013268347, -0.021455817, -0.00018440861, 0.041634154, 0.00217026, -0.014095804, -0.011250513, -0.022922013, 0.022791361, -0.023154281, -0.057312287, 0.0029977171, -0.004757878, 0.0031265537, -0.0030412676, -0.011722309, 0.0015877739, 0.011548107, 0.021644535, 0.037685588, -0.021281615, -0.018015336, -0.028249674, -0.030601393, 0.0070370142, -0.007577765, 0.0018263937, -0.024751129, -0.02659476, 0.019728318, 0.013123179, 0.016984645, 0.0097698, 0.016447524, -0.0069716885, -0.012905426, 0.0017529024, -0.005752278, 0.0055671893, 0.00031256463, -0.009581082, -0.011983611, 0.019844452, 0.009624632, -0.0024134165, 0.016200738, -0.030282024, -0.0016140856, -0.006169636, -0.032691814, -0.0037054108, -0.0066559482, 0.0027473026, -0.006133344, 0.008434256, -0.0038469494, -0.01515553, 0.0087899165, 0.008630232, 0.032517612, -0.013464323, -0.042621296, -0.0061406023, 0.0274077, 0.010735166, 0.003572945, -0.000080919766, 0.0008914217, -0.00014550814, -0.008869759, 0.0029922735, -0.0087899165, -0.015503932, 0.013551424, -0.020134788, -0.0008723684, -0.01329738, -0.0048086867, 0.0034187043, 0.027523834, -0.014233713, 0.015474899, -0.0040683304, -0.021963904, 0.012782034, 0.0074834055, 0.004848608, -0.018349223, 0.0036473437, -0.017579833, 0.010103686, 0.03948567, -0.0136603, -0.012803809, -0.0027509318, -0.024184972, -0.011134379, 0.0057377615, 0.0062676244, -0.014081287, 0.018828277, 0.016868511, 0.0027400441, -0.008114886, 0.011911026, -0.026449593, -0.026217323, -0.019104097, 0.03437576, -0.018305672, -0.018073404, 0.003148329, 0.020163821, -0.025665686, 0.011105345, -0.01791372, -0.02266071, 0.009675441, 0.0015369651, -0.0033715246, 0.004997405, -0.010640807, -0.033040214, -0.016970128, -0.02026544, 0.013769176, 0.015678134, -0.007269283, -0.023676885, 0.007399934, 0.027886754, -0.0027581903, -0.027698036, -0.0081729535, -0.013108661, -0.030630428, -0.015474899, 0.012491698, -0.0014689177, 0.0006546165, 0.0013192133, -0.008521356, 0.019815419, -0.011642466, 0.0017955456, -0.038208194, 0.027828688, 0.032459542, -0.03170467, -0.00041032615, 0.016723342, 0.0066378023, -0.019554118, 0.015358765, 0.020657392, 0.0029251333, 0.019234747, -0.014415173, 0.010335955, -0.019060547, 0.011780376, -0.0018372813, -0.0025894325, 0.0074761473, -0.053654056, -0.012586057, 0.032169208, -0.0024569668, 0.023139764, 0.0053204037, -0.031036898, 0.028380325, 0.006746678, -0.011221479, -0.015010362, 0.0108730765, -0.023038147, 0.019568633, 0.015837818, 0.015184563, 0.017129812, -0.01787017, -0.03681458, 0.034230594, -0.0070116096, 0.016534625, 0.007926168, -0.00217026, 0.002745488, 0.00868104, 0.019481532, -0.013740142, 0.010531931, 0.008927826, 0.024141423, 0.0158233, 0.018596008, -0.018102437, -0.005661548, -0.0215284, -0.0031918793, 0.0059409966, 0.035391934, 0.010270629, -0.002297282, -0.01998962, 0.005142573, 0.011366647, 0.0023063552, -0.007000722, 0.012644124, -0.004707069, -0.00741808, 0.0021738894, -0.009646407, -0.010263371, -0.003151958, -0.006645061, 0.0047760243, -0.013943377, 0.0063765002, 0.0029106166, 0.014270005, -0.007926168, -0.007730191, -0.008543131, 0.026057638, 0.019336365, 0.0056071104, 0.014734542, -0.010880334, 0.035566136, -0.017057229, -0.018886345, 0.009014927, 0.035275802, 0.0033352326, -0.008303604, 0.012869135, 0.0032263566, 0.004133656, 0.016258806, 0.049328055, -0.014335331, -0.0030448968, 0.010444831, -0.0063801296, 0.004169948, -0.0063982755, -0.003672748, -0.006249478, -0.0066341734, -0.03225631, -0.008470547, -0.019975103, 0.029643286, -0.0009953075, 0.020889662, -0.0047179568, 0.010183528, 0.041982558, 0.017158845, -0.0024442647, -0.016708827, -0.014574857, -0.013594974, 0.0072983163, 0.021571951, -0.0073019457, 0.0056071104, 0.021499367, 0.029817488, -0.01171505, -0.020439642, 0.012215879, 0.006684982, 0.0050591016, -0.0035675012, -0.012869135, 0.014538566, 0.016128154, 0.0033588223, 0.032953113, -0.011395681, 0.015228113, 0.0030412676, -0.0046054516, -0.008528614, -0.0018998849, 0.0033189012, 0.007577765, 0.009573824, -0.0063402085, 0.015692651, -0.0033207159, 0.0053167744, 0.0020196484, -0.0049683717, 0.019888002, -0.014712767, 0.0034604399, -0.0020105755, 0.01998962, 0.03202404, -0.0017129813, 0.016345907, 0.0061297147, 0.0011069053, -0.003333418, -0.008942343, 0.017158845, 0.036291976, -0.027233498, -0.013565941, 0.014378881, -0.026362492, -0.015532966, 0.024722094, -0.0009816979, -0.0067321616, 0.016723342, -0.007490664, -0.0119908685, -0.007490664, -0.014734542, -0.021992937, 0.014908744, -0.02261716, 0.013021561, -0.0025585843, 0.01750725, 0.000901402, -0.025709236, -0.009602857, 0.015329731, -0.0009798834, 0.008514098, -0.0017402002, -0.008434256, -0.008579423, 0.0018390958, 0.012506215, 0.0039195335, 0.008042302, 0.0087028155, -0.00936333, 0.020541258, 0.022689743, 0.008869759, -0.020555776, 0.00683015, -0.0073128333, 0.008964119, 0.013065112, 0.022268757, -0.008194728, 0.021281615, -0.0044748005, -0.012230396, 0.006100681, 0.0042280154, -0.00782455, 0.0027182691, -0.0052732243, -0.0158233, -0.0215284, 0.020700943, 0.0041735773, 0.00429697, 0.0019615814, -0.024983397, 0.0099657765, 0.0005765888, 0.00723662, -0.009334296, 0.00020652403, 0.012680417, -0.00012464025, 0.012622349, -0.02270426, 0.0087318495, -0.013217538, 0.0120199025, -0.0106117735, 0.0010261557, -0.0031229246, -0.0080568185, 0.052812085, 0.006078906, -0.0025712864, 0.0014934149, -0.010335955, 0.015750717, -0.012992527, -0.019655734, -0.00052441907, 0.011860218, -0.0032463174, -0.005414763, 0.0015260776, -0.003930421, 0.00055889646, -0.007251137, 0.007033385, 0.021818737, 0.012586057, -0.0064744884, 0.0035402824, 0.0079987515, 0.017899202, -0.0044675423, 0.0082310205, -0.011838443, 0.010931144, 0.015053912, -0.015329731, 0.010865818, -0.011025502, -0.01759435, 0.0039449376, 0.0009417768, -0.0053385496, -0.017812101, -0.000026495978, 0.0058829295, -0.0068410374, -0.0066740946, -0.0070406436, 0.002763634, -0.017812101, -0.003857837, -0.0010687987, -0.002311799, -0.0019670252, 0.0034568107, -0.009479464, -0.0063075456, -0.04953129, -0.0065942523, 0.014821643, -0.0055744476, 0.0057631657, -0.0034749566, 0.014502274, -0.010183528, 0.0013310083, 0.0014861564, -0.004870383, 0.016578175, -0.010292404, -0.00429697, 0.011627949, -0.048863515, -0.010060136, 0.003039453, -0.00005466479, -0.00077165815, -0.001160436, -0.000361332, -0.028743245, 0.01998962, -0.010437572, 0.029933622, 0.0030648573, 0.0015215412, -0.014683734, 0.02229779, -0.0014480499, -0.0011050907, 0.009486723, 0.027523834, -0.0040138927, -0.0013437105, 0.0051280563, 0.0033624517, -0.0010034732, -0.0018191353, 0.015547482, 0.022428442, -0.016505592, -0.0038832414, -0.025114048, -0.014204679, -0.008281829, -0.011410197, 0.0067684534, -0.0061986693, -0.003373339, 0.012005386, 0.009080253, 0.009370589, -0.000025163383, 0.0030993347, 0.014233713, -0.0067321616, 0.018813761, 0.018189538, 0.0075922813, -0.0021902209, 0.007693899, -0.011722309, -0.0004318745, -0.019263782, 0.011787633, 0.01795727, 0.027175432, -0.011540849, 0.006924509, 0.0005684231, -0.008289088, 0.0054111336, -0.0086447485, -0.01949605, -0.007839067, 0.010292404, 0.015489415, -0.01682496, -0.006989835, 0.012948977, -0.011214221, -0.0028017405, 0.010227079, -0.0033098282, 0.011395681, -0.017173363, 0.0094359135, -0.0025658428, 0.022573609, 0.0007144983, 0.010822267, -0.017652417, 0.018204056, 0.011141636, 0.015039395, 0.00069363037, -0.016926577, -0.0040501845, 0.02180422, -0.021020312, -0.0035892765, -0.007904393, -0.015895886, 0.00696443, -0.023822052, 0.011751342, 0.0068156333, 0.013224796, -0.008390705, 0.029019063, 0.018625041, 0.018218571, 0.0023644222, -0.002808999, 0.009268971, 0.004463913, 0.0078027747, -0.0054365383, 0.005690582, -0.0014244601, 0.024214007, -0.0076140566, 0.010662583, -0.017347565, 0.005001034, -0.0003989849, -0.007203957, -0.005418392, -0.005001034, -0.0041409144, 0.009421397, -0.0062676244, -0.011257771, 0.023807537, -0.002654758, 0.006459972, 0.017579833, 0.012426373, 0.027349634, -0.003342491, 0.026202807, -0.0033025697, 0.012549765, -0.02877228, -0.0008891534, -0.0053204037, 0.016302356, 0.0023172428, 0.012847359, -0.007766483, -0.0011595286, 0.009936743, 0.000057982103, 0.0016621725, -0.0052732243, -0.0017483659, -0.0026366122, -0.0078100334, -0.022283273, -0.00009793163, -0.014524049, 0.021644535, -0.008136661, 0.00210312, -0.0075922813, -0.0054692007, -0.004511093, -0.027741587, -0.00087735854, 0.015460382, 0.0031955086, -0.013819984, 0.00039104605, -0.0002975942, -0.013558682, -0.010981952, 0.012288463, -0.012506215, -0.0033678955, -0.00079933077, -0.0078100334, 0.019191196, -0.011867477, -0.01641849, -0.021238064, -0.007751966, -0.0017683265, 0.013348189, -0.005374842, 0.0053530666, 0.0073745297, 0.0027962967, -0.01637494, 0.0033588223, -0.020250922, -0.007316462, -0.003821545, -0.013558682, 0.00398123, 0.0077955164, 0.018378256, -0.0027872238, -0.0022192544, 0.010619032, 0.0027835947, 0.007875359, -0.00020096682, -0.005781312, -0.0064309384, 0.015634583, -0.0043985876, -0.02975942, 0.015184563, 0.010989211, 0.008129403, -0.015532966, -0.019481532, 0.0025313653, 0.0045147217, 0.012963494, 0.017536283, 0.009958519, -0.022239722, -0.023763986, -0.0056325146, -0.009980294, 0.037395254, 0.008390705, -0.0027473026, 0.021963904, -0.0040320386, 0.015736202, 0.0040864768, 0.0014952294, -0.0059736595, 0.0059918053, 0.012448148, -0.0030521553, 0.0042352737, 0.007160407, -0.008238278, -0.015010362, 0.021949388, -0.005890188, -0.015736202, -0.021659052, 0.020947728, 0.020004136, 0.006906363, -0.0010216192, 0.0034804004, -0.004511093, 0.0094649475, 0.0135441655, -0.017304014, -0.0059264796, -0.0030067903, -0.0006577921, 0.03225631, -0.010067394, -0.017115297, -0.0008406129, -0.010292404, -0.0016902988, 0.0031755478, 0.009443172, -0.015997503, 0.004786912, 0.006989835, -0.014052253, 0.015228113, -0.010488381, 0.0062748827, 0.016766893, -0.014676475, -0.018494392, -0.0001669431, 0.014661958, -0.015591033, -0.0064309384, 0.02822064, 0.016128154, 0.012513474, -0.0035711306, 0.0003504444, -0.0291352, -0.014436948, 0.029875554, -0.0023317595, -0.01194006, -0.007381788, -0.017420148, -0.009239937, 0.016549142, 0.002994088, 0.00083290087, 0.0014017776, -0.0011304951, 0.015271664, 0.0057232445, -0.0016295097, -0.00023703197, 0.010263371, -0.008027785, -0.02234134, 0.015808785, -0.016810443, 0.011794892, -0.0015251703, 0.009094769, 0.0029922735, 0.0076866406, 0.012673158, -0.0042316443, 0.024054322, -0.0008206523, 0.026202807, -0.011686016, 0.023865603, 0.01714433, 0.018479874, 0.0059664007, 0.020367056, 0.016273322, 0.0013437105, 0.022312308, 0.0036164955, 0.00800601, 0.014734542, -0.007708416, 0.0027073815, 0.026362492, 0.015053912, -0.0039521963, 0.002975942, 0.021339683, 0.00017737703, -0.008136661, -0.023444617, 0.0033860414, -0.0076866406, -0.008920568, 0.0035021757, -0.018581491, 0.009058477, -0.007933426, 0.030746562, -0.0054292795, -0.01031418, -0.0059264796, -0.0020595696, 0.0017746777, 0.0016540068, 0.0156491, 0.011301321, 0.00624222, -0.008622973, 0.001433533, -0.019249264, -0.0025186632, 0.0073781586, 0.00019144018, 0.0040647015, 0.0019888002, 0.010909368, 0.004844979, 0.011947319, 0.021397749, 0.010981952, 0.022805877, -0.015997503, -0.0010016585, -0.0023444616, -0.0069680596, 0.007563248, -0.010495639, -0.000063114014, -0.008615715, 0.00029419182, -0.0039267917, -0.0020976763, 0.007421709, -0.016549142, 0.0021738894, -0.0002948723, -0.023313966, -0.0005452869, -0.0013128623, -0.0066958694, 0.016883027, 0.0048159454, 0.015518449, -0.007381788, -0.005490976, -0.015866851, 0.00913832, 0.014843418, 0.01438614, 0.014211938, 0.00456916, -0.0014371623, -0.006097052, 0.014364365, -0.021702603, 0.014937777, 0.014299039, -0.017274981, -0.018900862, 0.016941095, -0.001614993, -0.024722094, 0.018262122, -0.0069680596, -0.0028942851, 0.008935085, -0.010350471, 0.028931964, -0.00800601, -0.031036898, -0.026739929, -0.009160095, -0.008557648, 0.024634993, 0.001284736, -0.0012520732, 0.0014979513, -0.0066015106, -0.012738484, 0.018291157, -0.01723143, 0.0045219804, 0.029875554, -0.007853583, 0.011540849, -0.015329731, -0.008862501, 0.025680203, 0.003875983, 0.012948977, -0.010858559, 0.009617373, 0.004997405, -0.008768141, 0.022109073, 0.0016013834, -0.008971376, -0.015721684, -0.0040647015, 0.023531718, -0.006158748, -0.00091591873, 0.015562, 0.016128154, -0.019655734, -0.008071336, -0.011954577, 0.025839888, 0.023865603, 0.015387798, -0.008027785, 0.007570506, 0.012789292, -0.0012384637, -0.017216913, -0.017071746, -0.0107642, 0.010800492, -0.032285344, -0.026478626, -0.0077229324, 0.0012647754, -0.013609491, -0.037482355, 0.015591033, 0.009218162, -0.000052793483, 0.0050409553, -0.0016195294, 0.0066958694, 0.0048159454, -0.012317496, -0.014625667, 0.007127744, -0.01868311, 0.003821545, -0.006518039, -0.00012634145, -0.000008562638, -0.014625667, 0.0026384266, 0.0014371623, 0.019220231, -0.011562624, -0.011823926, -0.017681452, -0.006118827, -0.00096536655, 0.0039594546, 0.009689958, -0.014509532, -0.00002113724, 0.0070805647, 0.0040501845, -0.02623184, -0.0039267917, 0.019917037, 0.004046555, -0.011294063, 0.02311073, -0.01958315, -0.023531718, -0.004594564, 0.0024442647, 0.0020704572, -0.018784726, 0.010285146, -0.012186846, -0.004942967, -0.011395681, 0.029875554, 0.0031356267, -0.00398123, 0.0048232037, -0.00018883169, 0.013464323, 0.02338655, -0.008695558, -0.0234301, -0.015300697, 0.013442548, 0.000065042026, 0.018668592, 0.024576927, -0.008158436, -0.014008703, -0.00041463584, 0.026435075, 0.0071821823, -0.0087028155, -0.0068809586, 0.009944001, 0.023081698, -0.0017157032, -0.0032771653, -0.011780376, -0.0019198456, 0.0032408736, -0.012586057, 0.007918909, -0.0027999259, -0.016766893, -0.0014108506, 0.010386763, 0.010227079, -0.007984235, -0.002469669, -0.023734953, 0.009022186, 0.003966713, 0.032401476, -0.012999786, 0.004805058, -0.00034386647, 0.0057776826, -0.02695768, 0.010502898, 0.004935709, 0.0056288857, -0.0016276952, -0.008209245, 0.013682075, 0.0059264796, -0.017565316, -0.02392367, -0.012694933, 0.021542918, -0.015053912, 0.01289091, 0.00090548483, -0.007940684, 0.011932801, 0.0038723538, 0.0067902287, 0.0012965308, 0.005505493, -0.010553706, -0.0012738483, -0.018204056, -0.010364989, 0.011729566, -0.00060562236, 0.0077955164, 0.0046707774, 0.018421806, -0.013907085, -0.006612398, 0.0075414726, 0.0040247804, 0.011867477, -0.0029795712, -0.003409631, 0.009508498, 0.012673158, 0.026841545, 0.0024914441, 0.021630017, -0.0058139744, 0.0033751538, 0.012215879, -0.0019107725, 0.0068882173, -0.0072838, -0.0014534936, -0.018900862, 0.00085921254, -0.0074035632, -0.003351564, 0.012731225, 0.008071336, 0.011018244, -0.018886345, 0.0035293947, 0.029367467, -0.0015823302, 0.017376598, 0.03396929, 0.004739732, -0.026507659, 0.0026602019, 0.005857525, 0.010466606, 0.015271664, -0.0029904589, 0.017260464, 0.0050772475, 0.013355447, -0.0026166516, -0.02030899, 0.014182905, 0.0014371623, -0.00060017855, -0.02704478, -0.017376598, 0.009878676, 0.013435289, 0.007421709, -0.021586467, -0.020889662, -0.021238064, -0.014270005, -0.0006364705, -0.018813761, -0.0052478197, -0.0021103784, 0.0003223181, 0.0038650956, -0.012992527, -0.0215284, 0.0057958285, -0.016970128, -0.01298527, 0.0036019785, -0.008506839, -0.015939437, -0.0071749236, 0.026449593, -0.0059083337, 0.010212562, -0.009893193, -0.004551014, 0.022588126, 0.013144954, 0.012498956, -0.012332014, -0.008695558, -0.022951046, 0.006572477, 0.005668807, 0.003930421, 0.0068591833, -0.017086262, 0.032053072, 0.008390705, -0.02347365, 0.0127239665, -0.018886345, 0.011831184, -0.039224368, 0.009218162, -0.007421709, 0.0003706318, -0.0076140566, -0.0021720747, 0.009356071, -0.027973855, -0.0023009114, -0.022021972, 0.00041508948, 0.026754444, 0.009261712, -0.0021448557, -0.033214416, 0.015518449, 0.030949797, 0.02311073, 0.010364989, -0.018378256, 0.007087823, 0.012208621, -0.010372247, -0.0065652183, 0.0028688808, 0.02193487, 0.00024338307, -0.0071023395, 0.0068555544, 0.0030539697, -0.005284112, 0.006597881, 0.014008703, 0.029527152, 0.010633549, 0.021905838, 0.0114319725, 0.007414451, 0.014328072, -0.013152212, -0.013849018, 0.0018073404, 0.0012021717, -0.015315214, 0.0058357497, -0.012462664, -0.010916626, 0.01334093, 0.0018254864, -0.0004461645, 0.005197011, -0.003703596, -0.014763576, -0.0032481318, 0.0037598487, -0.0014716396, 0.022834912, 0.021252582, -0.017274981, -0.024417242, -0.0024932588, -0.008847984, -0.0028815828, 0.008514098, 0.022907495, -0.013870793, -0.00064690446, 0.0021230807, 0.022820394, 0.012564282, 0.023197832, -0.0067503075, 0.0026710895, -0.0020142046, 0.0133989975, 0.018944412, 0.0030194924, 0.0071749236, -0.0073055746, 0.005712357, -0.00841248, 0.006572477, -0.001160436, 0.0035529844, -0.026536694, -0.007258395, -0.016215255, -0.009036702, 0.026827028, -0.0027781508, -0.022486508, 0.008913309, -0.0048849, -0.021586467, -0.013718367, 0.014625667, 0.0006977132, -0.011998127, 0.004188094, 0.0032408736, 0.0052224156, -0.007548731, -0.013602233, -0.012694933, -0.013631267, 0.004786912, -0.003139256, -0.017318532, -0.015474899, 0.012731225, 0.0044893175, -0.0064563425, 0.016026536, -0.024112388, 0.01248444, 0.0035874618, 0.010742425, 0.029265849, -0.0028325887, 0.013783692, 0.018073404, -0.001124144, -0.016607208, -0.008129403, 0.015329731, -0.014320814, -0.010321438, -0.0010352286, -0.008869759, 0.0022700632, 0.01795727, 0.017115297, 0.0059264796, 0.0028561784, 0.0016095492, -0.020642877, 0.0027037521, 0.0040828474, -0.00429697, -0.004877642, 0.018625041, -0.017333047, -0.019147648, -0.011860218, 0.014320814, -0.006826521, 0.014371622, 0.008506839, 0.02274781, -0.014146612, 0.0078100334, -0.011090828, -0.0101980455, 0.0074616303, -0.0038106574, 0.005530897, -0.022007454, 0.010096428, 0.008129403, -0.0041046226, -0.014335331, 0.0128401015, -0.00114229, 0.0047760243, 0.0017147958, -0.008898793, 0.0031773625, 0.0026620165, 0.018218571, 0.002627539, -0.010154495, 0.012201362, -0.01252799, 0.015170046, 0.023197832, 0.0023099843, -0.0061950404, 0.023342999, -0.0076721236, -0.0016975572, 0.009798833, 0.017536283, -0.020584809, 0.009414138, -0.030543327, -0.009145578, 0.02234134, -0.017405631, -0.013471582, -0.009697216, -0.018189538, 0.009319779, 0.024126906, -0.00076802896, 0.0037598487, -0.012448148, -0.018247606, -0.005178865, -0.0051498315, -0.015620067, 0.003148329, 0.0080568185, -0.0034967319, 0.008129403, -0.030194923, -0.026362492, -0.022239722, -0.010502898, -0.003923163, -0.0017719558, 0.0037072254, 0.0024732982, -0.013878052, 0.00556356, 0.002681977, -0.0041808356, 0.0003488566, -0.00090049463, 0.00028716025, 0.034491893, 0.0048232037, 0.01013272, 0.006550702, -0.0044348794, -0.006939026, -0.00083471544, -0.015068429, 0.0069281384, -0.0028942851, 0.029817488, -0.006024468, -0.012477182, -0.0075342143, 0.0033098282, -0.016041053, -0.004558272, -0.013536907, 0.009936743, -0.00077438005, 0.01669431, -0.0048413496, -0.004500205, 0.0013056039, 0.013123179, 0.0029269478, 0.00597003, 0.010481123, 0.0135731995, 0.022152623, 0.016142672, 0.01736208, -0.0018853681, 0.0021557433, 0.005138944, 0.024634993, -0.010125461, 0.01682496, 0.0057740533, 0.0050119217, 0.042940665, -0.003220913, 0.024838228, 0.015344247, -0.0011304951, -0.007505181, -0.01212152, -0.01596847, 0.025593102, 0.02193487, 0.009791575, -0.001666709, -0.009581082, 0.009878676, 0.015939437, 0.0026366122, -0.009864159, 0.016316872, 0.00958834, 0.0020468675, 0.0023081696, 0.0043659247, 0.006459972, 0.005363954, 0.0039739716, 0.028467426, -0.0040864768, -0.0032408736, 0.0028616223, 0.008826208, -0.009660924, 0.013732884, 0.0022555464, 0.0035257654, -0.010488381, -0.0020577551, -0.017695967, 0.01270945, -0.013094145, -0.014487757, -0.013261088, 0.009987552, 0.010836784, -0.03736622, -0.018871827, 0.016447524, 0.013065112, 0.0047288444, -0.029875554, -0.0058865584, -0.009777059, 0.0028325887, -0.0066051395, -0.0004885807, -0.015910402, 0.006797487, -0.008492323, 0.017928237, 0.01017627, -0.021368716, 0.012034419, -0.012455407, 0.011874734, -0.011729566, -0.019554118, -0.0032898677, -0.014284522, -0.018755693, 0.0050409553, 0.008114886, -0.018552458, -0.013892569, -0.020207372, -0.004649002, 0.01194006, 0.01438614, 0.0234301, -0.003572945, 0.0051897527, -0.01618622, -0.0315595, 0.0041082515, -0.0034949174, 0.013754659, -0.022573609, -0.015199079, -0.015126496, 0.029991688, 0.00045433018, 0.0092907455, 0.012295721, -0.021412266, 0.011773117, -0.015707167, 0.014669217, 0.00010297848, -0.016723342, -0.014306297, -0.011032761, 0.009399622, -0.015460382, -0.004191723, 0.008339896, 0.007258395, 0.0068591833, 0.00800601, 0.0030467114, 0.008260054, -0.008652007, -0.016244289, -0.0037925115, 0.030688494, -0.014153871, -0.017478216, -0.005621627, 0.015402314, 0.00036654895, -0.0062277033, 0.011373905, 0.008434256, 0.0087608835, 0.0019198456, 0.0013464324, 0.009152836, -0.016810443, 0.009885934, 0.017333047, -0.01528618, -0.0012230396, 0.006314804, -0.012114261, -0.010285146, 0.0055200094, -0.00028511885, -0.0072148447, -0.019147648, -0.0007825457, 0.030020723, 0.016389456, -0.0019670252, 0.0013555053, -0.024925329, -0.023415582, 0.042592265, 0.007047902, 0.010640807, 0.021760669, -0.01528618, 0.00027604584, 0.003984859, -0.0038396912, -0.035304833, -0.016926577, -0.016636241, -0.016810443, 0.015765235, 0.0017483659, -0.008506839, 0.023865603, 0.0094068805, 0.0082310205, 0.003930421, 0.00036201248, 0.011736825, 0.006550702, -0.0022192544, 0.0029160604, 0.019713802, -0.0060172095, 0.0020886033, 0.001621344, -0.0050119217, 0.0069317673, -0.015213597, 0.0034187043, -0.012876393, -0.0074471137, 0.026028605, -0.007399934, 0.005008293, 0.012644124, 0.006100681, -0.0070370142, -0.029164232, 0.012339272, -0.0009444987, 0.0066740946, 0.017725002, -0.013079628, 0.005527268, 0.015416832, -0.008289088, 0.014052253, -0.014923261, 0.000374261, -0.0017728631, -0.0009508498, -0.018145988, -0.011635208, -0.012288463, 0.015982985, -0.0018472616, 0.026260873, -0.023662368, 0.008637491, -0.015228113, 0.002084974, -0.005538156, -0.00705516, 0.0087608835, 0.016650759, 0.024838228, 0.013261088, -0.002732786, -0.027102849, -0.021339683, -0.010648066, 0.0011123491, -0.013261088, -0.00936333, 0.015068429, -0.0059083337, 0.0029106166, -0.0021684456, 0.0003422787, -0.0013328228, -0.009602857, -0.0046889232, -0.00017057228, -0.027248016, -0.019321848, 0.01094566, -0.0034114458, -0.018828277, 0.0013890754, 0.009080253, 0.017463699, 0.030049756, -0.010103686, 0.012455407, 0.016345907, 0.0030049756, 0.003821545, -0.017637901, 0.023778502, -0.0007852676, -0.013536907, 0.0040683304, -0.0034840298, 0.017666934, -0.022196172, -0.0045401263, -0.011635208, 0.01411032, 0.03016589, 0.014814384, 0.025883438, 0.015750717, -0.0012629607, 0.020062204, -0.009203645, 0.021600984, -0.010227079, -0.009864159, 0.010089169, -0.008390705, 0.0009599228, -0.01673786, -0.017710485, -0.0031047785, 0.013667558, -0.0043622954, 0.0028344034, -0.028191607, -0.02180422, 0.014908744, 0.012999786, 0.015431348, -0.006949913, -0.01791372, -0.0019470645, 0.016549142, 0.018871827, 0.007251137, 0.009298004, 0.019554118, 0.014908744, 0.007577765, -0.002402529, -0.022689743, -0.003745332, 0.016853994, 0.017013678, 0.00053984317, -0.0013945192, 0.0020341652, 0.020323507, 0.0055998517, 0.008049561, -0.008100369, -0.0074325968, 0.0074325968, -0.0043042284, -0.0051679774, -0.0028489202, 0.010096428, -0.018581491, 0.023705918, 0.021978421, 0.015387798, 0.017695967, 0.020367056, 0.0026474996, -0.012005386, 0.0027055668, -0.004423992, -0.0063583544, 0.014908744, 0.01370385, 0.013689334, 0.00615149, -0.0026620165, -0.015373281, -0.0097698, -0.009007668, 0.006666836, 0.023154281, -0.018610526, -0.002542253, -0.008557648, 0.008434256, 0.0072075864, 0.0019633959, 0.0028434764, 0.00086783187, 0.0050228094, -0.017841136, -0.007526956, 0.009864159, -0.0058538956, 0.009319779, -0.007947943, 0.006231332, -0.011794892, -0.00047860044, -0.0100238435, 0.008985893
1692
2608
  ]
1693
2609
  }
1694
2610
  ],
@@ -1702,53 +2618,25 @@ function getTemplatesPipelineCollection() {
1702
2618
  ]
1703
2619
  },
1704
2620
  {
1705
- "name": "accelerating-enterprise-ai-development",
1706
- "title": "Accelerating Enterprise AI Development",
1707
- "content": "Key benefits include rapid development, with the ability to build AI applications in minutes rather than weeks, and an enterprise-ready solution with built-in security, privacy, and scalability features.",
2621
+ "name": "promptbook-rapid-ai-development-platform",
2622
+ "title": "Promptbook: Rapid AI Development Platform",
2623
+ "content": "Promptbook offers rapid development capabilities, allowing users to build AI applications quickly. It also provides enterprise-ready features, including built-in security, privacy, encryption, testing, and scalability considerations.",
1708
2624
  "keywords": [
1709
- "Rapid development",
2625
+ "Promptbook",
2626
+ "rapid development",
1710
2627
  "AI applications",
1711
- "enterprise-ready solution",
2628
+ "enterprise-ready",
1712
2629
  "security",
1713
2630
  "privacy",
2631
+ "encryption",
2632
+ "testing",
1714
2633
  "scalability"
1715
2634
  ],
1716
2635
  "index": [
1717
2636
  {
1718
2637
  "modelName": "text-embedding-3-large",
1719
2638
  "position": [
1720
- -0.025765076, -0.014685495, -0.016114395, -0.031959467, 0.019615572, -0.022817504, 0.018852495, 0.034862153, 0.0121344235, 0.021635482, -0.0024968334, 0.0040398203, 0.0071893837, -0.02462794, -0.051350605, 0.014760306, -0.00761955, -0.049465355, -0.005023591, -0.04357021, 0.003987452, -0.032857206, -0.030882182, -0.033126526, 0.016009659, -0.0025772557, -0.0055173473, 0.0039425655, -0.065355316, 0.0071632, 0.008640727, 0.0022761396, -0.006291646, -0.015126883, -0.018164229, -0.027650325, 0.004664496, -0.029161518, -0.023909751, 0.009164407, 0.025795002, -0.014805193, -0.00039977388, 0.0332163, 0.028383479, -0.029670235, -0.012822689, -0.01660815, -0.048028976, -0.0020030777, -0.008842718, -0.03061286, 0.013308964, -0.024373582, -0.009680606, 0.024194036, 0.013151859, -0.008820274, 0.005296653, -0.03222879, -0.032049242, -0.0017431077, -0.0013120065, 0.004675718, -0.016682962, 0.0037330932, 0.020408574, 0.032857206, -0.037166346, 0.032707583, -0.055450276, 0.013952342, 0.0049001523, -0.014101965, 0.006624557, -0.02272773, 0.009927484, -0.007028539, 0.006231797, 0.018643022, 0.0099574085, 0.0016851288, -0.0059512537, -0.0064824154, 0.08785861, -0.020393612, -0.01035391, -0.046742216, 0.0075671817, 0.001882444, -0.03836333, -0.029056782, -0.006257981, 0.007802838, 0.0053116158, 0.015979733, -0.042941794, 0.004024858, -0.016129356, -0.0000104400015, -0.00063028676, 0.047520258, -0.0011633186, -0.03426366, -0.0036246164, -0.024433432, 0.036059137, 0.023999525, -0.006987393, -0.019720308, -0.014408693, -0.03875235, -0.017266491, -0.02989467, -0.03183977, -0.022383597, -0.0020853702, -0.027156569, 0.025645377, -0.013181784, 0.03282728, -0.0005456563, 0.004211887, -0.027560553, -0.042253528, 0.0055921585, 0.04240315, -0.003106547, -0.011580818, 0.0012418707, 0.0028503176, 0.05021347, 0.011311497, 0.021096839, -0.009194332, 0.017685436, 0.03779476, 0.038123935, 0.006953728, 0.020677894, -0.021411048, -0.02435862, -0.03405419, -0.016593188, 0.031570446, 0.003856532, 0.012643142, 0.04584448, 0.0036040433, -0.002377135, -0.05105136, 0.016189206, 0.0018188542, -0.0025978289, 0.060477607, -0.014236626, 0.01159578, 0.00074203644, -0.055180952, 0.031959467, 0.02037865, -0.017894907, 0.016937321, 0.023475844, 0.015426128, 0.042492926, -0.0043689907, -0.0203188, -0.06804853, 0.053954042, 0.010937439, 0.025750114, -0.0006854602, -0.03183977, 0.017999643, 0.024987036, 0.0073090824, -0.0018936658, -0.008528509, 0.028727612, 0.008064678, 0.00794498, -0.0067554773, 0.014812674, 0.014573278, 0.01211198, 0.07924033, 0.012538405, 0.043420587, 0.026303718, 0.013825162, 0.027590476, 0.03587959, -0.005749263, 0.012942387, -0.040098958, -0.03920122, 0.023401033, -0.028084232, -0.005098403, -0.009433729, -0.0050123697, 0.03432351, 0.044019077, 0.008109565, 0.008326518, 0.010249173, -0.0067966236, 0.019032042, -0.007847725, 0.023565618, 0.024029449, -0.017610624, -0.03671748, 0.005165733, 0.0070883883, 0.012964831, -0.026797475, -0.07062204, -0.015471015, -0.02598951, 0.032468185, 0.0031738773, -0.028248817, -0.03692695, -0.042163756, 0.0046121283, -0.014535872, 0.020169176, -0.0004710786, -0.010750411, -0.014049597, 0.024702752, -0.0010595177, 0.02676755, -0.031121578, 0.055569973, -0.051829398, -0.052098718, 0.025301244, -0.005386427, 0.001621539, -0.036238685, -0.040787224, 0.020139253, -0.021500822, 0.01719168, 0.033306073, -0.008019791, 0.02233871, -0.015590714, -0.014438617, 0.0049787043, -0.013914936, 0.0059924, 0.000083403116, 0.023041938, -0.004017377, 0.022578107, -0.003770499, 0.027276268, -0.007503592, 0.014116928, 0.042193677, -0.04207398, -0.014730382, -0.0041595185, 0.017805133, 0.019136779, 0.029490689, 0.029415876, -0.0014242237, 0.007484889, 0.012269083, -0.020094365, -0.008296594, -0.019720308, 0.025031924, 0.045904327, 0.009216775, 0.03210909, -0.032917053, 0.06320074, 0.016787698, -0.008072159, -0.060806777, -0.04096677, -0.047400557, -0.030792408, -0.009628238, -0.033904567, 0.011326459, -0.011640667, 0.035340946, 0.01765551, 0.040398203, -0.0014681754, -0.01713183, 0.0031215092, 0.013368812, -0.028772498, 0.011453639, -0.0014148722, -0.003979971, -0.015164289, 0.04554523, 0.009127001, 0.01744604, 0.0011483564, 0.043540284, 0.0005288237, 0.020214064, -0.006037287, 0.014498466, 0.0295655, 0.056377936, 0.0009847062, -0.0039575277, -0.018328814, -0.021455934, 0.019331288, 0.011730441, -0.091210164, 0.0031832287, 0.021141727, 0.024583055, 0.0003413274, -0.005640786, 0.01744604, -0.040787224, -0.015979733, -0.026258832, -0.020468423, 0.050841887, 0.029909633, -0.0026988243, -0.007305342, -0.0038415699, -0.007092129, 0.0038116453, 0.010840184, -0.027036872, -0.051350605, 0.021934727, 0.014700457, -0.026483266, -0.036986798, 0.037884537, 0.02025895, -0.0062542404, 0.0007481149, -0.039709937, 0.0095908325, -0.023475844, 0.010488571, -0.00917937, 0.006276684, 0.009845192, -0.037345894, 0.02812912, 0.025361095, -0.0019376175, -0.004657015, 0.02194969, -0.007795357, 0.0013559582, 0.015785223, 0.008805312, -0.022458408, 0.0315106, -0.023012014, 0.03426366, 0.017057018, 0.013451105, 0.0060933954, -0.026139133, -0.0010370743, -0.004357769, -0.009426247, 0.0124336695, 0.002891464, -0.011992281, -0.036448155, 0.04324104, 0.032587882, 0.02800942, 0.033515546, -0.031181429, 0.010802778, 0.026273794, 0.022682842, -0.022832466, -0.029864745, -0.05203887, 0.03288713, -0.005887664, 0.027006947, -0.01490993, 0.019331288, -0.035281096, -0.020139253, 0.05946017, 0.020977141, -0.015321393, -0.03381479, 0.012037168, 0.01790987, 0.0046794587, 0.042881943, 0.021635482, -0.017640548, -0.036687553, -0.039320916, 0.00899234, 0.0072716763, -0.014498466, 0.011341421, 0.007974904, -0.013458586, 0.006987393, -0.039470542, 0.009680606, 0.038542878, -0.016009659, -0.02709672, 0.004211887, -0.010047182, -0.014894967, -0.03908152, -0.009852673, -0.0063851606, 0.025765076, 0.022563145, -0.011565856, -0.027635364, 0.025839888, 0.051230907, 0.04024858, -0.028622875, -0.01485008, -0.029670235, -0.0057081166, 0.02970016, -0.0110571375, -0.031540524, 0.014610684, 0.023819977, 0.007301601, -0.005165733, -0.06188406, -0.05188925, 0.034532983, -0.026258832, -0.03842318, -0.0047467886, -0.016293941, 0.005255507, 0.019944742, 0.0011997892, -0.0089025665, -0.0021265165, 0.006714331, 0.02136616, 0.011969838, 0.011161874, -0.022159163, -0.07469179, -0.028862271, 0.020662932, 0.021800067, -0.0015803927, -0.009014784, 0.032528035, 0.020229027, -0.0043016607, 0.00008726059, 0.0015775872, -0.020094365, -0.04850777, 0.007380153, 0.03177992, 0.011094543, 0.014154334, -0.049734678, -0.011648148, 0.03797431, -0.006231797, 0.0020236508, 0.0035610269, -0.0064337878, -0.023475844, -0.02859295, 0.01321919, -0.03770499, -0.029685197, -0.0463532, -0.010316504, 0.001237195, 0.029056782, 0.023730204, -0.035999287, -0.027710175, -0.023041938, 0.002534239, -0.029191442, 0.002466909, 0.0066058543, 0.001478462, -0.009478616, 0.0406376, -0.015650563, 0.00917937, 0.0022368634, 0.014356324, 0.0068003642, 0.008610802, -0.0057155974, -0.0038527916, -0.016024621, -0.017401151, -0.00026487943, 0.018209117, -0.014857561, -0.016189206, -0.007967424, 0.001048296, 0.0046532745, -0.02325141, 0.026333643, -0.028847309, 0.0018665466, 0.009785342, -0.07098114, 0.0073277852, -0.029071745, 0.008842718, 0.0312712, 0.0058577396, -0.0060672117, -0.016234092, -0.015298949, 0.015456053, 0.009299068, 0.022233974, 0.021874879, 0.013234152, 0.033246223, -0.044707343, -0.023012014, -0.0056183427, -0.0071931244, -0.0110346945, 0.0010015388, -0.0051732142, -0.019869931, -0.0037405742, 0.013787757, -0.010054664, -0.00338709, 0.0010258525, -0.013024679, -0.0018609357, 0.023071863, 0.010264136, 0.0049600014, 0.004350288, 0.0312712, -0.002898945, -0.00096600334, 0.015785223, -0.0067517366, 0.00859584, 0.011386308, -0.016024621, 0.0045747226, 0.0042567737, 0.010077108, -0.027410928, 0.009538464, 0.015575752, 0.0132117085, -0.004825341, 0.015560789, 0.028188968, 0.031989392, -0.0019843746, -0.028308667, -0.024268847, 0.008102084, -0.017954757, 0.01686251, 0.017505888, -0.012875057, -0.012942387, -0.0069799116, -0.018149266, 0.03067271, 0.026617927, -0.0072529735, -0.015710412, -0.011640667, -0.008954935, 0.0626621, 0.014805193, -0.0124336695, 0.027051834, 0.025645377, 0.016338829, 0.03348562, -0.013114453, 0.011558374, 0.0060859146, 0.04701154, -0.0069799116, -0.01361569, 0.019286402, 0.019959705, -0.010720486, -0.07050235, -0.005913848, -0.0061382824, -0.023760129, -0.014296475, 0.0045223543, 0.004570982, 0.012261603, -0.0068415105, -0.010107032, 0.012239159, -0.018194154, 0.013974786, -0.016443565, -0.0125009995, -0.007256714, -0.018777683, -0.019854968, -0.032408334, 0.047759652, -0.025361095, 0.00074343913, -0.015545827, 0.01868791, 0.02051331, 0.07379405, 0.00044536212, 0.0018833792, -0.015141845, -0.0066133356, 0.030523086, 0.014618165, -0.0056220833, 0.020408574, 0.009007303, 0.03941069, 0.015156807, -0.02350577, 0.00025131984, 0.015321393, -0.02690221, 0.013294001, -0.0024556872, 0.017999643, -0.0026296237, 0.047580104, 0.0061457637, -0.0076756584, 0.011924951, 0.020199101, -0.0055061253, 0.018224077, -0.009680606, -0.029430838, -0.013323925, -0.026213946, 0.017954757, -0.012059611, 0.011042176, -0.014191739, -0.011311497, 0.010211768, -0.007907574, -0.025884774, -0.0054387953, -0.007372672, -0.0664326, -0.008161933, -0.024283808, 0.019047005, 0.009141964, -0.016757773, -0.031151503, -0.010398797, 0.029011894, -0.015381241, 0.019376175, -0.005932551, -0.013062086, -0.006474934, 0.00041847676, -0.06391893, -0.0066619627, -0.020049479, 0.008259188, -0.0010277228, 0.020348724, 0.008827755, 0.014072041, -0.0095908325, -0.033186376, -0.014932373, -0.004391434, 0.016697925, 0.0024968334, 0.0032860946, 0.016114395, 0.036388308, -0.00911952, -0.0017683565, 0.006011103, 0.021650445, 0.036567856, 0.017730322, 0.011289054, -0.0070060957, -0.005401389, 0.030852256, 0.019032042, 0.014969778, -0.014408693, -0.015845073, 0.021590594, -0.035101548, 0.013593247, -0.002951313, 0.025645377, -0.031480674, 0.026707701, 0.0025117956, -0.003953787, 0.0010062145, 0.02521147, -0.011872583, -0.025540642, -0.010750411, 0.016129356, -0.020438498, 0.017057018, -0.014079521, -0.009321511, -0.033695094, 0.0035703783, -0.008618283, 0.024179073, -0.028892197, -0.032617807, -0.0150221465, -0.0110721, 0.0009912523, -0.027410928, -0.000027338338, 0.023116749, 0.008842718, -0.00013840126, 0.032976903, 0.040727373, -0.018029569, -0.0056968946, -0.017715361, 0.02115669, 0.009605795, 0.039829634, -0.014707938, 0.042492926, -0.024268847, -0.01224664, 0.03537087, 0.030448275, -0.015650563, -0.005367724, -0.017401151, -0.0011390048, 0.017700398, -0.02624387, 0.055001404, -0.0092915865, -0.012186791, -0.0062504997, -0.01517925, 0.0033365923, 0.015261543, 0.007372672, 0.028174005, -0.0016299553, -0.0034244957, 0.008670651, 0.0035030479, 0.0050198506, -0.026498228, 0.011318978, -0.0304782, 0.037076574, -0.016593188, -0.012822689, 0.00742504, -0.025809962, -0.004357769, -0.010189325, 0.0029962, 0.014535872, 0.013690502, -0.010383834, 0.01146112, -0.017042058, 0.011580818, -0.0132117085, -0.012463594, -0.008251707, -0.0026857324, -0.01790987, -0.011079581, 0.025286283, -0.028548064, 0.0053752055, 0.008132009, -0.034084115, 0.019271439, 0.0016851288, 0.029146556, 0.0064898967, 0.008910048, -0.01621913, -0.040876996, -0.018523324, 0.013301482, -0.025809962, 0.030104142, 0.028742572, 0.02709672, -0.0062168348, -0.0009931225, 0.015007184, 0.003523621, -0.00899234, 0.019436024, 0.021066915, -0.012291527, -0.01660815, 0.024912225, 0.014476023, 0.019286402, -0.0014223534, -0.017221604, -0.0019095632, 0.00683777, -0.015725374, 0.014229145, 0.016757773, -0.031181429, 0.013017199, 0.0057717063, 0.00071865786, 0.011281572, 0.010069626, -0.011176836, -0.00014529793, -0.005932551, -0.004391434, -0.0018665466, 0.0026745107, -0.022174126, -0.0110721, -0.0045485385, -0.017401151, 0.023924714, 0.018014606, 0.021874879, 0.026677776, -0.013668058, 0.018463476, -0.027066795, 0.00087950256, -0.01406456, 0.013817682, 0.03399434, 0.017745284, 0.026094247, -0.045365684, -0.019585647, 0.0008388238, -0.008289113, -0.027440853, 0.0051358086, -0.004772973, -0.00938136, 0.014842599, -0.0041108914, -0.017894907, 0.010107032, 0.01680266, -0.021096839, 0.01367554, -0.0033702576, -0.047759652, 0.00062561105, 0.019899856, 0.0020479644, 0.0069387653, 0.0007532582, 0.019510835, -0.009067153, -0.031211352, 0.018987155, -0.0035572862, -0.021680368, -0.00014728511, -0.012119461, 0.0020891107, -0.009972371, 0.017805133, -0.033126526, 0.03863265, 0.03968001, 0.004376472, 0.003536713, 0.00057604845, 0.0132790385, -0.010787817, 0.004342807, -0.008386368, -0.00046710423, -0.008378887, 0.030104142, 0.044827044, 0.000014268246, 0.017610624, -0.025720188, 0.0021770142, -0.01068308, -0.041056544, 0.017206643, -0.016907396, -0.021216538, -0.030852256, -0.038123935, -0.033964414, -0.054821856, -0.0071407566, 0.011835177, -0.0046457932, -0.006400123, -0.012074574, 0.04147549, 0.026198983, -0.02319156, -0.019510835, 0.0044699865, -0.0020947217, -0.0138999745, -0.026947098, 0.030343538, 0.034951925, 0.019032042, 0.012007244, 0.00050871813, 0.046203576, 0.03875235, -0.00074156886, -0.016922358, -0.01608447, 0.0031402123, -0.021844953, -0.008438735, 0.013870049, 0.006396382, 0.008565915, -0.03863265, -0.008087122, -0.00042712683, -0.01224664, -0.031690147, 0.0055921585, -0.0047318265, -0.019690383, -0.020079402, 0.00957587, -0.0034731233, 0.014543353, -0.018074455, -0.05685673, 0.009762899, 0.0039238627, -0.008408811, -0.00089446484, -0.019002117, -0.0066731847, -0.013301482, -0.0006826548, 0.024657866, 0.023490807, 0.0152391, -0.03225871, 0.00001779695, -0.018418588, 0.024508243,
1721
- 5.296712e-7,
1722
- -0.0003794345, -0.008498585, 0.029909633, -0.039320916, 0.023909751, 0.0056482675, 0.005221842, 0.016338829, -0.004664496, 0.0011221723, 0.034173887, -0.006370198, -0.016204167, 0.023086825, -0.042881943, 0.007137016, 0.010585825, 0.024538167, 0.02156067, 0.0146555705, 0.0089025665, 0.005588418, 0.016159281, 0.007757951, -0.0017038316, -0.004720605, -0.011079581, 0.010787817, -0.023864863, 0.0295655, -0.013398738, -0.0044587646, -0.045754705, 0.007855206, 0.0099798525, -0.02194969, 0.00010666482, -0.013009718, 0.008962416, -0.02663289, -0.010413759, -0.009493577, 0.0312712, 0.0001906524, -0.0076419935, -0.0045822035, 0.026019435, -0.00742504, 0.000025789506, -0.0058390363, -0.0044138776, 0.009493577, -0.009433729, 0.036029212, 0.014408693, 0.0059961407, -0.0081694145, -0.020737745, -0.02820393, -0.031241277, 0.019884894, -0.004649534, 0.003289835, -0.00410341, -0.019720308, -0.01687747, 0.0019881153, -0.020303838, -0.02449328, -0.025869813, -0.03746559, -0.021096839, -0.0031289905, -0.011805252, -0.00088090525, -0.009545946, 0.02923633, 0.011191798, -0.00088090525, 0.0022387337, -0.0037892018, -0.046562668, 0.017236566, 0.0035741187, -0.003308538, -0.024508243, 0.025361095, -0.012530924, 0.0017215994, -0.023356145, -0.0037873315, 0.02721642, 0.04584448, -0.037226196, -0.0026127913, -0.015725374, -0.025720188, 0.006617076, 0.018942269, -0.018463476, 0.012747877, -0.009762899, 0.009037227, 0.01569545, -0.0032056721, -0.010466127, -0.01458824, 0.020064441, 0.022129238, -0.00494878, 0.006635779, -0.026468305, -0.01583011, 0.005659489, -0.01627898, -0.006276684, -0.0026090506, -0.011506007, 0.018014606, 0.0030990657, -0.0076906206, -0.016368754, -0.023984563, 0.007196865, -0.0078252815, 0.0007560636, -0.016967244, 0.010054664, -0.006142023, 0.013840125, 0.0026726404, 0.0014532132, 0.004982445, -0.004174481, -0.004630831, 0.0036264868, -0.03061286, -0.013047123, -0.022757655, -0.013690502, -0.0016308904, 0.0009940576, 0.0013606339, -0.019720308, -0.0153662795, 0.01627898, 0.017027095, 0.026498228, 0.015994696, 0.025839888, 0.0039313436, 0.0076569556, 0.002657678, -0.008341481, 0.015269024, -0.031540524, -0.0076232906, 0.0027979496, 0.0022144201, -0.0050198506, -0.005569715, -0.01882257, -0.015725374, 0.026752587, 0.028577987, 0.0078178, 0.0048515247, -0.025809962, -0.0075447382, -0.00410341, 0.025824925, -0.023849903, 0.01790987, 0.03354547, 0.004615869, -0.010780335, 0.009695569, -0.0027568033, -0.004589685, -0.019840006, 0.004619609, 0.009164407, -0.00813949, -0.009373879, -0.015800186, 0.012852614, -0.015231619, 0.02494215, 0.015485978, 0.02057316, 0.009044709, 0.0157553, 0.016907396, 0.003968749, 0.0010903775, -0.02904182, 0.04183458, -0.007713064, 0.03438336, 0.020034516, 0.010870109, 0.006336533, -0.005262988, 0.004032339, 0.020393612, 0.014199221, 0.019106854, -0.0030654008, 0.03522125, 0.04108647, 0.010653156, -0.021141727, -0.016323866, 0.0022293823, 0.0011885675, -0.0021994577, -0.015276506, 0.04422855, -0.012508481, -0.026677776, -0.008678133, 0.012052131, -0.034562908, -0.0113788275, 0.0053490214, -0.0061195795, -0.013451105, -0.009762899, 0.02422396, -0.0036956875, -0.021261424, 0.028682724, -0.005674451, -0.009343955, 0.012927425, -0.0143338805, -0.0006807845, -0.004780454, -0.0026445861, 0.027141608, -0.028937083, -0.027381005, -0.013226671, 0.010271617, -0.0030691412, 0.011842659, 0.0021134245, -0.011453639, -0.0047056424, -0.04114632, 0.010585825, 0.009343955, 0.002807301, 0.020797594, 0.004982445, -0.01915174, -0.023760129, 0.0075185546, 0.024598017, -0.023819977, 0.010121994, 0.010466127, 0.0052143605, 0.023326222, 0.0077355076, -0.0042941794, 0.0023546915, -0.018119343, -0.0002485144, 0.008872642, 0.005779187, 0.03210909, -0.0088801235, -0.014490985, 0.0007429716, 0.00065273023, -0.0032730026, 0.006201872, 0.0032767432, 0.028967008, -0.0074212993, 0.042612623, -0.035520494, 0.0156356, 0.008117046, -0.014259069, 0.012897501, 0.012321452, -0.0035067885, -0.026827399, 0.0011231074, -0.02156067, -0.0052143605, 0.0069350246, -0.0031813586, -0.0072342707, -0.0024781304, 0.00018457396, -0.01835874, -0.00009655357, -0.014184258, -0.0030055514, 0.013181784, -0.010331466, -0.017341303, 0.003478734, -0.0031869693, -0.0009762899, -0.0073577096, -0.021800067, 0.029610386, 0.022967126, -0.027156569, -0.02664785, 0.03953039, -0.005072219, 0.006325311, 0.005824074, 0.0020554457, -0.02084248, -0.014431136, -0.0076606963, -0.025450869, 0.017461002, 0.017221604, 0.007398856, -0.0070060957, 0.0019320067, -0.008670651, -0.0156356, -0.0071033505, -0.016982207, 0.026333643, 0.006108358, -0.027695213, 0.023939677, -0.023775091, -0.00027469842, 0.0067218123, -0.0066619627, 0.0006494572, 0.018837532, -0.021994578, 0.011902507, 0.009493577, -0.033306073, 0.0019787638, -0.0054612383, 0.008416292, 0.011693035, -0.011678073, -0.024059374, 0.0015990955, 0.018463476, 0.021964652, 0.00040164418, -0.012007244, -0.0015111921, 0.0009688088, 0.011760366, 0.010309023, -0.013353851, -0.010593306, -0.018179191, -0.024313733, 0.00047855973, -0.010211768, 0.019854968, 0.005932551, -0.023565618, 0.011969838, -0.009852673, -0.0032131535, 0.009134483, -0.00253985, -0.019136779, -0.0038079047, -0.013645615, 0.009037227, -0.018987155, -0.00214896, -0.018493399, -0.006785402, 0.008820274, 0.00086126727, 0.011131949, -0.052338116, -0.01237382, -0.0147229, 0.0066470006, -0.0033253706, -0.008416292, 0.004832822, 0.022712767, 0.02800942, -0.010054664, -0.022503296, 0.01660815, -0.005072219, 0.011610743, 0.009336473, -0.00996489, 0.010458645, -0.031420823, 0.013989748, -0.0008112371, -0.0024407248, -0.025510717, 0.012059611, -0.017610624, 0.006344014, -0.006115839, -0.0074287807, 0.02051331, -0.0037218714, 0.011453639, 0.0064711934, -0.0032225049, 0.0036975578, 0.036089063, -0.003229986, -0.006501118, -0.0044924296, -0.026288757, -0.015560789, 0.017341303, 0.027410928, -0.004664496, -0.014094484, 0.007107091, -0.0028895936, 0.0013849477, 0.0059961407, -0.02449328, -0.016054545, 0.024852376, 0.0033365923, -0.025376055, -0.0032150235, 0.0019563204, -0.01283017, -0.020468423, 0.006022325, 0.03764514, -0.043360736, -0.012740396, -0.0068489914, 0.002663289, -0.025391018, -0.000924857, -0.03587959, -0.009882597, 0.011693035, -0.0014447968, 0.0031252499, 0.0047617513, -0.024912225, -0.04207398, -0.024044411, -0.027635364, 0.02820393, -0.021336235, -0.016024621, 0.011087063, 0.008797831, 0.020603083, 0.0026464562, -0.026617927, -0.011012251, 0.019884894, -0.01374287, -0.01777521, 0.012149385, -0.016638074, -0.006598373, 0.00397249, -0.0024313733, 0.030882182, -0.01185762, -0.00009059203, -0.03354547, 0.011393789, 0.02643838, -0.022219012, 0.023939677, 0.010084588, 0.0019123686, -0.012074574, 0.017251529, 0.012052131, -0.0028353552, -0.0010174363, -0.0044886894, -0.016982207, 0.018164229, 0.008004829, -0.011782809, 0.008326518, -0.023012014, -0.044138778, 0.0040024146, 0.02181503, 0.0028447069, 0.023924714, -0.027725138, 0.0016561393, 0.033036754, 0.005360243, 0.007305342, -0.024538167, -0.006845251, 0.01439373, -0.0029382212, 0.008109565, 0.037944388, 0.007997348, -0.0038378292, -0.025061848, 0.015815148, -0.011678073, -0.009912522, 0.014386249, 0.032976903, 0.002077889, 0.035849664, 0.012456113, -0.018867457, -0.0015457923, -0.0027306192, 0.04473727, 0.005098403, 0.020962179, -0.014745344, 0.002519277, -0.030313615, -0.0001559352, -0.018523324, 0.0062841647, 0.009104558, -0.000070720234, -0.0045822035, 0.0055659744, -0.0007705583, -0.0000198718, -0.019301364, 0.009358917, -0.020647971, 0.00840133, -0.005902626, 0.0139448615, -0.019555723, -0.0049263365, -0.013959823, -0.011042176, -0.023236448, -0.0049525206, -0.0014447968, 0.0046345717, 0.0040024146, -0.004346547, 0.006961209, -0.004963742, 0.038572803, -0.0030504384, -0.025391018, 0.007967424, 0.030627823, 0.009605795, -0.01790987, 0.0115883, 0.0026408455, -0.020618046, 0.022159163, -0.008850199, 0.0035872108, 0.0138999745, 0.050961584, 0.065834105, -0.019076928, -0.003439458, 0.012860094, 0.0016234092, 0.014932373, -0.011558374, -0.01406456, -0.002369654, -0.017490925, -0.011423714, -0.025450869, -0.024897262, 0.012486037, -0.011049656, 0.020947216, -0.021874879, 0.003849051, 0.056826804, 0.0043203635, 0.00813949, -0.014962297, 0.014438617, -0.01621913, 0.014603202, 0.010877591, 0.0065946328, 0.021964652, 0.020408574, 0.012613216, -0.020722782, -0.022952164, 0.0068265484, 0.0027044353, 0.021650445, -0.0006148569, -0.0070360205, -0.007440002, 0.01230649, -0.0030448276, 0.018987155, -0.0022780097, 0.017610624, 0.00983771, 0.016069507, -0.001816984, -0.01074293, 0.010077108, -0.0051283273, 0.020393612, -0.000119113916, -0.0009734845, 0.0017954757, -0.005191917, 0.00017113128, 0.002897075, 0.004133335, -0.0043652505, -0.0042679952, 0.0020367426, 0.0077654324, -0.008895086, 0.003308538, 0.006153245, -0.0015794575, -0.0061644665, -0.013106973, -0.010929958, 0.020543234, 0.012299009, -0.003373998, -0.0071295346, 0.028967008, -0.0231766, -0.0018646764, 0.010166881, -0.0017403022, -0.002481871, 0.0075372574, -0.007787876, -0.019884894, -0.0064038634, -0.015471015, -0.016967244, 0.006362717, -0.008371405, -0.0047056424, -0.0062504997, -0.0064038634, -0.00038060345, 0.00032098804, -0.010638193, 0.007930018, 0.00068358995, 0.014072041, 0.010151919, -0.012688028, 0.002781117, 0.013017199, 0.020872405, 0.0037274824, 0.02084248, -0.000010505753, 0.010593306, -0.0027343598, -0.0025155363, 0.016757773, -0.0056669703, 0.026124172, -0.010009777, -0.006213094, 0.0073240446, 0.03273751, 0.007915055, 0.014535872, -0.0025940882, 0.0003434315, -0.018508362, 0.0049001523, 0.01843355, -0.00064384635, -0.01452091, -0.018343776, -0.020154215, 0.0053826864, 0.0121568665, 0.022772616, -0.007937498, -0.032677658, -0.02292224, -0.012194272, 0.0033908307, -0.004735567, 0.00004579281, -0.010608269, 0.00364706, 0.006362717, 0.012261603, -0.004499911, -0.004544798, 0.004825341, -0.0063776793, -0.015800186, -0.00983771, -0.014760306, 0.014610684, 0.0044774674, 0.0026745107, 0.011782809, 0.0018356869, 0.008079641, -0.010548419, -0.03243826, 0.01068308, 0.010668118, 0.0065123397, -0.0040024146, -0.008416292, -0.01354836, 0.008648207, -0.009643201, -0.0059063667, -0.0057717063, 0.003628357, -0.023879826, 0.024014488, 0.015381241, 0.032139014, -0.008064678, 0.021081878, -0.011161874, 0.008887605, -0.0010249174, -0.005719338, 0.00053116155, -0.013720427, -0.007391375, 0.0037087793, -0.0069462466, 0.014431136, 0.008625764, 0.006310349, 0.0016552041, -0.0088801235, 0.0013709205, -0.021246463, -0.0039163814, -0.011274091, -0.009284105, -0.008910048, 0.0048552654, -0.0006143893, -0.0078103193, -0.01653334, -0.011161874, -0.013077048, -0.0035423238, 0.019630535, -0.001765551, 0.00820682, -0.0050048884, 0.0060335463, 0.019047005, -0.009321511, 0.013593247, -0.018403625, 0.010338947, -0.007062204, 0.005105884, 0.020737745, -0.055659745, -0.011947394, 0.003158915, -0.016982207, 0.006168207, 0.01354836, -0.0002188236, -0.011895026, 0.025869813, -0.0033160192, 0.014880004, -0.017012132, 0.010443684, 0.010054664, 0.015171769, 0.007589625, -0.0017449779, 0.0248823, 0.020857442, -0.0010529717, 0.0004970288, -0.040428128, 0.00035301672, 0.0052704695, 0.009777862, 0.02845829, 0.01901708, -0.013922418, 0.0006246759, -0.023550656, -0.01204465, -0.012216716, -0.0028690204, 0.016503414, 0.007802838, -0.014603202, -0.003282354, 0.0070509827, 0.0048664873, -0.000029442412, 0.021126764, -0.0064225662, -0.0005236804, 0.0048216004, 0.011506007, -0.016668, -0.012957349, 0.0135782845, -0.011483563, 0.011760366, 0.0023135452, 0.0073689315, 0.0061794287, -0.00021309585, -0.0071332753, -0.00892501, -0.004728086, -0.005150771, -0.007847725, 0.014505947, -0.015261543, -0.0029962, 0.01393738, 0.041924357, 0.02148586, -0.029655274, -0.0029718864, 0.0054986444, 0.003998674, 0.009740456, -0.030208878, 0.0030635304, -0.010982326, 0.004058523, -0.005158252, 0.018702872, 0.0020236508, -0.010847665, 0.006351495, 0.038722426, 0.013077048, -0.0027175273, -0.013630653, -0.0044512833, 0.0024089299, 0.0021171651, -0.02618402, -0.0073090824, 0.0044512833, 0.013795238, 0.0009828359, 0.0028035606, -0.00041520374, 0.012890019, 0.026797475, -0.0037761098, 0.008827755, 0.009994814, 0.014775269, 0.0027175273, 0.010309023, 0.011775328, 0.004226849, -0.020094365, -0.014505947, 0.01934625, -0.002377135, 0.023760129, -0.020812556, 0.014490985, -0.020857442, 0.000053770756, -0.012568329, -0.012987274, -0.006362717, 0.021126764, -0.019436024, -0.015201694, -0.013466068, -0.02768025, 0.015860036, -0.0052592475, 0.0028091713, 0.010032221, 0.019705346, 0.00983771, -0.026393492, 0.03166022, -0.013802719, 0.015785223, -0.013705464, -0.013039642, 0.0051993984, -0.0033328517, 0.006976171, -0.0036825954, -0.010234212, -0.012067093, -0.0026745107, 0.020483386, 0.001517738, -0.018643022, -0.0060597304, -0.0017487186, -0.012104498, -0.0120895365, 0.00080983434, 0.002747452, -0.008326518, -0.0074212993, -0.009732975, -0.017864984, -0.0049525206, -0.004193184, -0.015785223, -0.004772973, 0.015276506, -0.006927544, -0.0049712234, -0.000354887, 0.0009323382, -0.0061120987, -0.016204167, 0.0020704078, -0.013466068, 0.014767787, -0.019735271, 0.01159578, 0.022413522, -0.007151978, -0.0014550834, -0.013840125, -0.010570863, 0.009725493, -0.005943773, -0.0008285372, 0.010929958, 0.018283928, 0.00011093141, -0.00794498, -0.009643201, 0.007802838, -0.010032221, -0.01946595, -0.011693035, 0.015104439, 0.004032339, 0.036029212, -0.01752085, -0.003901419, 0.0014906189, 0.006785402, 0.0035460645, 0.006703109, -0.014797712, -0.0015205435, 0.027964534, -0.00029644053, -0.00859584, 0.020064441, 0.003003681, 0.015014665, -0.005775447, -0.021470897, -0.0056707105, 0.02598951, 0.021216538, 0.010361391, 0.027635364, -0.010413759, -0.0024930928, -0.0009398193, -0.010107032, 0.0061008767, 0.029655274, 0.0056482675, 0.0075110733, 0.0026932135, 0.030971956, -0.0136007285, -0.0059624757, -0.0054275733, -0.0073951157, 0.023790052, 0.0065609673, -0.009703049, 0.008416292, -0.004167, -0.009553427, 0.010181843, -0.016264018, -0.006160726, -0.010406278, 0.035939436, 0.021530746, 0.015381241, -0.004305401, -0.0061457637, 0.019421062, 0.013750351, 0.017550774, -0.0089025665, -0.014363806, -0.000351614, 0.009987334, 0.02721642, -0.024912225, 0.0014644349, 0.011049656, -0.018373702, 0.014027154, -0.0012016596, 0.0020273912, 0.002573515, 0.019316325, -0.0014419914, -0.010660637, 0.016144319, 0.0056520076, 0.015283987, 0.0075971065, -0.0076681776, 0.0012082055, -0.0065871514, 0.019914817, 0.013024679, -0.0066769253, 0.04030843, 0.005853999, 0.005087181, -0.0069649494, 0.011498526, -0.020348724, -0.02507681, 0.006022325, -0.0044400617, -0.00048019624, -0.022413522, -0.0066806655, 0.020543234, -0.0041408157, 0.018717835, -0.00060597307, -0.01452091, -0.00892501, 0.015336355, 0.0106905615, -0.007496111, 0.019735271, -0.0045373165, -0.0019638014, -0.005457498, -0.002663289, -0.0065160803, -0.0033141489, -0.015515902, 0.0025005739, -0.0027661547, 0.02181503, -0.0023621726, -0.0070883883, 0.010914996, 0.008079641, -0.0013625042, 0.008132009, 0.035191324, 0.012695509, 0.019840006, -0.0031439527, 0.014737863, 0.008319037, -0.0013166822, 0.020094365, 0.010166881, 0.0063926415, -0.0008037559, 0.02181503, -0.0071594594, 0.0054986444, -0.0015373761, 0.0012484167, -0.0066208164, 0.016697925, -0.00723053, 0.0057567437, -0.011902507, 0.0021134245, -0.007974904, 0.014094484, -0.000032993034, -0.01217931, 0.012456113, 0.0001625981, 0.03028369, -0.023909751, 0.005491163, -0.007002355, 0.007604588, 0.025570566, -0.010443684, 0.035340946, 0.008760425, 0.0008486428, 0.007451224, 0.014543353, -0.007267936, 0.0146780135, 0.016204167, 0.0024407248, -0.0016982207, 0.021081878, 0.013376294, 0.007698102, 0.008820274, 0.008999822, 0.018493399, 0.006089655, -0.0031177688, -0.0027381005, -0.00036190057, 0.0077355076, -0.0044138776, -0.00018013203, 0.01934625, 0.0074325213, -0.0066282977, -0.0019039523, 0.0032917054, 0.0020498347, 0.014550834, -0.00351614, 0.009912522, -0.020633008, 0.013316445, 0.008954935, -0.016907396, 0.006400123, -0.0023659132, 0.0054275733, -0.0017730322, 0.0070996103, -0.0088801235, -0.0009912523, -0.01478275, 0.0077205454, 0.009171888, 0.0099574085, 0.013593247, -0.00015792238, 0.005640786, 0.0028016903, -0.009209294, -0.0240893, -0.00057932147, -0.02455313, 0.018523324, 0.0143338805, -0.011206761, 0.013653097, -0.015336355, -0.0000029332823, 0.0004937558, -0.021470897, 0.009613276, -0.014363806, -0.015426128, -0.01855325, -0.021321274, -0.017640548, 0.00989756, 0.015560789, 0.018164229, -0.008363924, 0.0041894433, -0.0022948424, 0.030448275, -0.013877531, -0.011610743, 0.017176718, -0.012411226, -0.014012191, 0.0028708908, -0.003968749, 0.01934625, 0.01452091, 0.024283808, -0.027740099, 0.0051358086, 0.0011988541, 0.0149997035, 0.033036754, 0.018538287, -0.0065273023, -0.03426366, 0.008296594, -0.00015172704, 0.0061195795, 0.0016888693, 0.019825043, 0.015052071, -0.0286528, 0.00031865019, -0.008782868, 0.0061794287, 0.013249114, 0.007047242, -0.011992281, 0.035281096, -0.022637956, -0.0072791576, -0.005719338, -0.009747936, -0.008356443, 0.016907396, -0.010241693, 0.00247439, -0.019091891, -0.002631494, -0.0015009055, -0.023296297, -0.0076681776, 0.004735567, 0.019690383, 0.00944121, -0.011610743, -0.010099551, -0.0036115246, -0.004316623, -0.020752706, 0.028548064, 0.0026801215, 0.009067153, -0.00043390662, 0.010047182, -0.0000071122054, -0.0046121283, 0.0071744216, 0.02904182, -0.0059624757, 0.01165563, -0.016234092, 0.004167, -0.013301482, -0.012897501, -0.0085359905, -0.0030897143, -0.0037162607, 0.012927425, 0.024074337, -0.0021265165, -0.0019245255, -0.007742989, -0.0075335167, -0.0031028064, -0.016578225, 0.0062504997, -0.013264077, -0.015800186, -0.009059671, -0.0039163814, 0.004436321, -0.005060997, -0.00038481157, -0.027410928, -0.007832763, -0.0012951739, 0.010107032, -0.012515962, -0.009396323, 0.00052601827, -0.0056520076, 0.00018363883, 0.012942387, -0.018478436, -0.0070247985, -0.010892552, -0.008296594, -0.016967244, 0.0022144201, 0.015216656, 0.0014597591, 0.0027212678, 0.011850139, 0.010084588, 0.00911952, 0.00046453258, -0.0058203335, -0.021979615, -0.015620639, 0.0037162607, 0.0000622455, 0.005977438, 0.009628238, 0.015283987, -0.022772616, -0.020408574, -0.0027193977, 0.0024725196, -0.00410341, 0.0024108002, 0.0041258535, -0.0063402737, -0.0053377994, -0.030762482, 0.0064824154, 0.018747758, 0.043510363, -0.0011595781, 0.0075447382, 0.0048178597, 0.0068415105, -0.013316445, 0.028084232, 0.0019525798, 0.00696869, -0.01406456, -0.02233871, 0.0059811785, -0.0015841332, -0.03920122, -0.0054799416, 0.002240604, 0.028099194, -0.014468541, 0.004918855, 0.0036021732, -0.007062204, 0.015770262, -0.012860094, 0.0012521573, -0.0032786133, -0.0032991865, -0.013338888, -0.01413189, -0.014109447, -0.00950854, -0.015164289, 0.008304075, 0.014042116, 0.011535931, -0.007638253, -0.008004829, -0.010249173, -0.01113943, 0.0024463355, 0.00044138776, 0.023296297, -0.014805193, -0.009695569, -0.007021058, 0.014498466, 0.011895026, 0.009516021, -0.0056669703, 0.028862271, 0.027261306, -0.013832644, 0.004544798, -0.004780454, 0.012104498, -0.02350577, 0.017116869, -0.0061382824, -0.001406456, 0.02292224, -0.0033515545, -0.0022593068, 0.0038714944, 0.009905041, 0.01660815, -0.009815267, 0.012231678, 0.0044886894, 0.004720605, -0.0143338805, 0.002702565, 0.0064076036, 0.03100188, 0.0031626555, -0.009785342, 0.0124336695, -0.019645497, 0.00775047, 0.014962297, 0.005060997, 0.000107483065, 0.0057679657, -0.0018730926, -0.041295942, -0.0060859146, 0.008117046, 0.016712885, 0.010413759, 0.0026520672, -0.019002117, -0.011760366, 0.0036190057, -0.016308904, 0.003308538, -0.015396204, -0.009807786, 0.0075971065, -0.02012429, -0.0055771964, 0.0015009055, 0.01361569, 0.00031233794, 0.0076158093, 0.026543116, -0.0074287807, -0.01765551, 0.001445732, 0.021590594, -0.002852188, 0.01270299, -0.022054426, 0.003342203, 0.0025155363, -0.0014476023, 0.0071893837, -0.017431077, -0.02690221, -0.027156569, 0.024463356, 0.015665526, 0.00113994, 0.020797594, 0.0077654324, 0.00050357485, 0.021470897, -0.008117046, 0.019106854, 0.007604588, 0.0121568665, -0.011146911, 0.002625883, -0.011707998, -0.00917937, 0.008588359, -0.0044886894, 0.0015214786, 0.003927603, -0.008004829, -0.0021863657, -0.012321452, 0.010832704, 0.01061575, 0.010241693, -0.007698102, 0.012029687, 0.018014606, 0.024074337, 0.005580937, -0.019256476, 0.01967542, 0.012471075, -0.0075447382, 0.00032613132, -0.01732634, 0.011184317, -0.002364043, 0.0016963505, -0.0157553, 0.008296594, 0.005105884, 0.00827415, 0.014827637, 0.019091891, 0.017760247, 0.00036049786, 0.011977319, 0.00703228, -0.0031645258, -0.018119343, -0.03183977, -0.0049412986, 0.0006101812, 0.005640786, 0.0039313436, -0.0017758376, 0.0052293227, 0.008371405, 0.0048552654, -0.01921159, 0.0061943913, -0.017057018, -0.0037368338, 0.011895026, -0.01413189, 0.016264018, 0.021650445, 0.011019732, -0.0031570448, -0.030852256, 0.011161874, -0.0005868026, 0.0036115246, 0.007058464, -0.004376472, -0.0150221465, 0.013563323, 0.004253033, 0.033336, 0.019406099, 0.014939854, 0.0034955668, -0.019555723, -0.006549746, -0.0095683895, 0.008251707, 0.024238922, 0.0013176174, -0.00872302, -0.0031046767, -0.0021339976, 0.015014665, 0.00042549032, -0.00079113146, -0.0072978605, -0.012994755, -0.013308964, -0.0028746314, 0.010331466, -0.013510955, 0.012560849, 0.017116869, 0.010436202, -0.010316504, -0.0076681776, -0.00032098804, -0.0024631682, -0.0034562906, 0.015590714, -0.0056894138, -0.005940032, -0.011580818, -0.015119402, -0.010727967, 0.02012429, 0.011244167, 0.0028091713, -0.005966216, -0.0005638916, 0.017685436, 0.005880183, 0.012575811, 0.022159163, -0.029131593, -0.004507392, -0.0032449483, 0.0068415105, -0.006695628, 0.01348103, 0.019495873, 0.032946978, -0.011348902, -0.003237467, -0.022802541, -0.0042343303, -0.0071407566, -0.0110571375, -0.010181843, -0.020363687, -0.006400123, 0.005966216, 0.0022200309, -0.014341362, 0.001621539, 0.013039642, 0.005165733, -0.0034880855, -0.0063140895, -0.0073502287, -0.006549746, 0.027710175, -0.014341362, -0.03647808, -0.012890019, 0.010256655, 0.005973697, 0.018702872, 0.0050909217, 0.010698043, -0.0018955361, -0.0046121283, -0.0047580106, -0.021141727, -0.0044924296, -0.0059063667, 0.013712945, -0.013226671, -0.007885131, 0.02084248, -0.008423774, -0.019810082, 0.020214064, -0.00820682, 0.002513666, -0.022667881, 0.019226553, -0.014371286, 0.003667633, -0.0041595185, -0.003920122, -0.020034516, -0.0048627467, -0.014476023, 0.0066470006, -0.0026202723, 0.01960061, -0.01862806, 0.035939436, -0.0017057019, -0.0018123082, 0.0007429716, 0.018867457, -0.00045027165, 0.009112039, -0.0045672413, -0.0054088705, -0.006291646, 0.002964405, -0.012284046, 0.015919885, -0.010376353, -0.0012446761, 0.016817622, 0.00007954565, -0.020767668, 0.007398856, -0.011775328, 0.00071024155, -0.00027914037, -0.015441091, 0.0019581907, 0.012725434, -0.011251648, 0.011169355, -0.0027437112, -0.0368671, -0.0073128226, -0.0368671, 0.0032991865, -0.008393849, 0.0009239219, -0.0035741187, -0.018643022, 0.0076681776, -0.0053228373, -0.01901708, -0.015201694, 0.027141608, -0.006231797, 0.004421359, 0.008558434, 0.0050460347, -0.010929958, 0.00006849927, -0.021351198, 0.008034754, -0.022952164, 0.010907515, 0.011453639, 0.01159578, -0.02344592, -0.0024332437, 0.010525976, 0.009695569, -0.0032842243, 0.0012596385, 0.014087003, 0.013630653, -0.023041938, 0.022712767, -0.00983771, 0.010653156, 0.011827696, 0.015134363, -0.017969718, -0.014498466, -0.004589685, -0.0007074361, 0.005853999, 0.010914996, 0.009403804, -0.013323925, -0.012807727, 0.006912581, 0.019061968, -0.009261662, 0.017251529, -0.0035909514, 0.0061831693, 0.015560789, -0.026707701, 0.012650622, 0.010608269, 0.0041408157, 0.012882538, -0.013226671, -0.009792823, 0.013121935, 0.005281691, 0.027066795, 0.021904804, -0.025645377, 0.0030298652, -0.0037143903, 0.007802838, 0.0021059434, 0.0077803945, -0.004541057, 0.0014476023, -0.018912343, 0.0028821125, -0.011483563, -0.0059811785, -0.0010239822, -0.0020610564, -0.018328814, -0.0012502869, 0.005614602, 0.0035516752, -0.013391256, 0.021336235, 0.01674281, 0.0030990657, -0.009037227, -0.012904981, -0.035789814, 0.0073390068, -0.0036246164, 0.0077055832, -0.0024781304, -0.01152845, 0.0042642546, -0.0017057019, 0.0053490214, 0.008446217, -0.0071295346, -0.0022667882, -0.016922358, 0.0061831693, -0.01967542, -0.00332163, 0.008558434, -0.008506066, 0.0092466995, 0.0015897441, -0.0010333337, 0.03339585, -0.0014990352, -0.023071863, 0.010907515, -0.0061495043, 0.0106905615, -0.0078252815, -0.0120895365, -0.021022027, -0.028742572, -0.0165483, -0.013204227, 0.012059611, -0.030852256, -0.023730204, -0.04485697, -0.017864984, 0.0023341184, 0.014288994, 0.019436024, -0.015037109, -0.0033534248, -0.005853999, -0.023341184, -0.01608447, -0.0024594276, 0.014685495, -0.022518257, -0.0051694736, 0.0008065613, -0.0026913432, 0.004507392, -0.00080515863, 0.015605676, -0.011902507, 0.0028409662, -0.018702872, -0.00056763215, -0.022129238, -0.012994755, -0.016697925, -0.020363687, 0.00076401234, -0.012897501, -0.02012429, 0.02091729, 0.003145823, 0.01777521, -0.007698102, 0.00042899713, 0.025450869, -0.015126883, -0.015007184, 0.0009449626, 0.0011109506, -0.003185099, -0.020154215, 0.0092466995, 0.007959942, 0.025735151, -0.014386249, 0.012119461, -0.0076831398, -0.0076606963, -0.0027137867, -0.030523086, -0.011049656, -0.010114513, -0.0063290517, 0.007529776, -0.0025884775, -0.0013681151, 0.018867457, -0.017864984, -0.008655689, 0.0010062145, 0.02129135, -0.027500702, -0.01583011, -0.0012671195, 0.033964414, 0.015171769, 0.023341184, -0.013840125, -0.0070696855, -0.0128675755, 0.045694858, 0.002364043, 0.0028671501, 0.016159281, -0.0012914332, 0.0021545708, 0.0175807, 0.0024856117, -0.019989628, -0.0018609357, -0.007698102, -0.0005484617, -0.0027362301, 0.013009718, -0.003138342, 0.0073277852, 0.010271617, 0.006766699, -0.0019581907, 0.024508243, 0.02416411, -0.0046682367, 0.0010146308, 0.010885071, 0.02260803, 0.0017982811, 0.0074287807, 0.019421062, -0.0060597304, 0.01367554, 0.002762414, -0.008491104, 0.008102084, 0.006635779, 0.012201753, 0.006321571, -0.0068003642, 0.0068115857, 0.0027661547, -0.005633305, -0.0110721, 0.018194154, -0.004903893, 0.019495873, 0.0039463057, 0.0012325193, 0.005745522, 0.01946595, -0.009373879, 0.052278265, -0.0010557771, 0.0021770142, -0.005296653, 0.0011932432, -0.0016280849, -0.000062713065, -0.004937558, 0.0025473312, -0.004930077, 0.01244115, -0.02194969, -0.017475963, -0.004421359, 0.0025454608, -0.0055584935, -0.0073090824, -0.019735271, 0.024463356, 0.021515783, -0.00067938183, -0.00029737566, -0.015351317, -0.019854968, 0.011797772, 0.023086825, -0.015874997, -0.025031924, 0.0071669403, 0.0024238923, -0.007967424, 0.00057932147, -0.0036358382, 0.008685614, -0.010151919, -0.012007244, -0.008453698, -0.012067093, -0.008057198, 0.028697686, -0.0038527916, -0.022997051, 0.033784866, 0.02441847, 0.019899856, 0.004956261, -0.018224077, -0.004683199, 0.013593247, 0.003764888, 0.0057343002, -0.014887486, 0.013129416, 0.010219249, -0.008835237, 0.0114012705, -0.006609595, 0.010413759, 0.0017122478, -0.0043839533, -0.0057717063, 0.034772377, 0.03863265, 0.0017047668, -0.002891464, -0.00064291124, -0.013473549, 0.009538464, -0.008304075, 0.0011838918, -0.03145075, 0.002481871, 0.0061008767, -0.0064188256, 0.02610921, 0.0070547233, -0.0046719774, -0.009830229, 0.017700398, 0.003680725, -0.002350951, -0.007380153, 0.0045485385, 0.006759218, 0.012254122, 0.011393789, 0.0036620223, -0.026079284, -0.002760544, 0.0022144201, -0.0023210263, 0.015313911, -0.0023303777, 0.022622993, 0.02859295, 0.004769232, -0.018957231, -0.014707938, -0.0030429573, 0.021530746, -0.007713064, -0.0025286283, -0.016518377, 0.0014634997, 0.0044699865, 0.008199339, 0.0050497754, 0.002663289, 0.019525798, 0.016234092, -0.011004769, -0.0075971065, -0.0002403319, 0.014079521, -0.01946595, 0.031091655, 0.021216538, -0.0010165011, 0.014288994, -0.0054986444, -0.0067629586, -0.0085135475, 0.013032161, 0.013017199, -0.005255507, 0.025720188, 0.026064321, 0.01588996, -0.0078252815, 0.011064619, -0.0055173473, 0.000088078836, -0.0050198506, 0.0018936658, 0.000729412, -0.0045934254, -0.003463772, 0.0041408157, 0.026139133, 0.013062086, -0.011715479, 0.0026614186, 0.0040959287, -0.029625349, -0.009351436, -0.0072828983, 0.004619609, -0.0031102875, 0.006160726, -0.027994458, 0.00093374087, 0.003431977, 0.012261603, 0.0032842243, -0.015396204
1723
- ]
1724
- }
1725
- ],
1726
- "sources": [
1727
- {
1728
- "name": "source-https-ptbk-io-aa226da0e61396b9c9ae"
1729
- }
1730
- ],
1731
- "preparationIds": [
1732
- 1
1733
- ]
1734
- },
1735
- {
1736
- "name": "natural-language-programming-future-unveiled",
1737
- "title": "Natural Language Programming: Future Unveiled",
1738
- "content": "The company's vision is centered on natural language programming, where users write specifications in plain English that are then translated into working code.",
1739
- "keywords": [
1740
- "Natural language programming",
1741
- "specifications",
1742
- "plain English",
1743
- "code translation",
1744
- "user-friendly programming",
1745
- "code generation"
1746
- ],
1747
- "index": [
1748
- {
1749
- "modelName": "text-embedding-3-large",
1750
- "position": [
1751
- -0.010388855, 0.02246194, -0.014707818, -0.02152811, -0.0125316605, 0.025797045, 0.023262365, 0.028365076, -0.022211805, 0.023879359, 0.043623187, 0.01634202, -0.02924888, -0.0028640223, -0.023229012, 0.04002127, -0.036952972, 0.018943401, 0.006249155, -0.017359227, 0.013607233, 0.017034054, -0.017926194, 0.0078124856, 0.023212338, 0.01604186, -0.012631714, -0.0054820804, -0.012089759, -0.015858429, 0.006249155, -0.005536276, -0.01171456, -0.00794589, 0.003962523, -0.0048484104, 0.0034101459, -0.047591962, -0.029932575, 0.02831505, 0.007762459, -0.010655664, 0.0020062746, 0.02988255, 0.0061240885, -0.0057238755, 0.02372928, -0.017192472, -0.019777179, -0.034751803, 0.0050776987, 0.0051527387, 0.0346851, 0.025430184, 0.007203829, -0.011389387, -0.008066787, -0.0006227268, 0.027698055, -0.0033080082, -0.05319494, 0.014616102, 0.0053028185, 0.0027931512, 0.022945529, -0.015149719, 0.012523323, -0.012715092, -0.00850452, 0.06276669, -0.009088164, -0.04068829, -0.0032037862, 0.03361787, 0.0041501224, 0.030799704, -0.0046941615, 0.0012913113, 0.003939594, -0.015825078, 0.010063683, -0.045757655, 0.014557738, -0.039154146, 0.024929916, -0.027014358, 0.024946593, -0.060865685, 0.022078402, 0.0027598003, -0.003685292, 0.022295183, -0.0068744873, -0.03178356, 0.027798109, 0.022878828, -0.02331239, -0.0067410828, -0.037653346, 0.021761566, -0.016842285, -0.0044148467, -0.019827206, -0.025430184, 0.0045899395, 0.002503414, 0.033817973, 0.024913242, -0.027347868, 0.042355847, -0.0042209937, -0.026113879, -0.011989706, 0.015691673, -0.0072913757, 0.0024784007, -0.009596768, -0.05292813, 0.022895502, 0.023495821, 0.0017936617, -0.045090634, -0.00013757312, -0.046458025, -0.010889121, 0.001115176, 0.000921323, -0.0034664257, -0.0009833352, 0.023662576, -0.018659918, 0.056863558, 0.025847072, 0.012056408, 0.04912611, 0.058897972, 0.0228288, -0.020194067, 0.023795981, 0.02813162, -0.032717388, 0.01473283, -0.010889121, -0.04345643, 0.0037728387, 0.008587898, 0.0055487826, 0.04912611, -0.010797406, -0.044290207, -0.043222975, -0.049893185, -0.004706668, -0.0010119962, -0.0065826653, 0.004502393, -0.016792258, 0.0031016485, -0.005523769, 0.046458025, -0.0064701056, -0.023445794, -0.03133332, 0.00634087, 0.0010359673, 0.0056238226, -0.006307519, 0.04068829, -0.040188026, 0.024529705, 0.0012996491, 0.03745324, 0.03220045, -0.045490846, -0.010522259, 0.001327789, 0.013548868, -0.008779666, 0.025413508, 0.00012018107, 0.003435159, -0.004250176, 0.034451645, -0.0076123793, 0.02864856, 0.0072496864, 0.040388133, 0.017109094, 0.037053026, -0.030049305, 0.014707818, 0.024479678, -0.009379986, 0.005173583, 0.02174489, -0.025613613, -0.021828268, -0.0037957674, -0.041788876, 0.037586644, -0.01637537, -0.048692547, 0.021794917, 0.013081953, 0.0040625758, 0.02786481, -0.028915368, 0.0044398597, 0.010355504, 0.010755717, 0.06169946, -0.006428417, -0.027031034, -0.0052736364, -0.017859492, -0.021978348, -0.03168351, -0.038553827, -0.0010776562, -0.033634543, 0.0027785602, 0.0030078487, 0.038520474, -0.02801489, 0.020961141, -0.003312177, -0.028982071, 0.017042391, 0.024896566, 0.015908455, -0.009254919, 0.07417276, 0.018860023, -0.013924068, -0.014574413, -0.035418827, 0.039854515, -0.043923344, -0.057130367, 0.017892843, 0.011356036, 0.0046274597, 0.0007071467, -0.04999324, 0.04659143, -0.0048442413, -0.0015737531, 0.016733894, 0.009521727, -0.012598363, 0.005215272, 0.012148123, 0.011397725, 0.014599427, -0.042422548, 0.02566364, 0.042355847, 0.012840158, -0.012306541, 0.018426461, -0.02629731, 0.00006657184, 0.04308957, 0.020610955, -0.043022867, -0.036852922, -0.000017310633, -0.022311859, -0.00017835, 0.004689993, 0.05039345, -0.003585239, -0.0107390415, -0.009963629, -0.015366501, -0.0031058174, -0.018776646, 0.03341776, 0.037986856, -0.008646262, -0.006420079, -0.009646794, 0.04338973, 0.010088695, -0.002532596, -0.019727152, 0.0013600979, -0.0061074127, -0.020460876, -0.022028375, -0.0077999793, 0.004268936, 0.028882017, 0.024296246, 0.011097565, 0.04218909, 0.024412977, -0.040054623, 0.0025221738, 0.0026493247, -0.00033663725, -0.042589303, -0.0053028185, -0.009688483, 0.031733535, 0.030232735, 0.013040264, 0.076907545, -0.004148038, 0.012314878, 0.026714198, -0.02092779, 0.0011360205, 0.0040229717, 0.01607521, 0.042355847, -0.0018228439, -0.0034601726, -0.019226886, 0.013340424, 0.0004885409, 0.00029182178, -0.078108184, -0.02189497, 0.04592441, 0.06286675, -0.009204892, 0.026914306, 0.041655473, -0.023562524, -0.0122148255, -0.04058824, 0.003160013, 0.021311328, 0.0040229717, -0.04255595, 0.013065278, -0.000982814, 0.022128427, -0.023362417, 0.018976754, -0.009846901, 0.014682804, 0.0012975647, 0.021094546, -0.036952972, -0.00047030207, -0.01999396, 0.0150663415, 0.004298118, 0.0009244497, 0.0011985537, 0.018259706, -0.017676061, -0.01884335, 0.036052495, 0.018793322, -0.041955635, 0.011814613, 0.05532941, 0.02469646, -0.027064385, 0.025797045, 0.01860989, 0.020127365, 0.0093132835, 0.0314167, 0.0042251623, 0.031766884, 0.005340338, 0.016325343, 0.04685824, -0.0087880045, -0.021911647, -0.016283656, 0.003883314, 0.002701436, 0.003933341, 0.02436295, 0.021928322, 0.02973247, 0.010764055, -0.004460704, 0.01361557, -0.0059781773, -0.017425928, -0.009888589, -0.03501861, 0.01369061, 0.025230076, -0.015124706, -0.01126432, -0.047058344, -0.028114943, 0.034518346, 0.037253134, -0.028715262, -0.009321622, 0.02011069, -0.0045190686, -0.026013827, -0.018526513, 0.012081421, -0.0065409765, -0.015133044, -0.04372324, -0.014357631, -0.031650156, 0.04432356, -0.0065576523, -0.023295715, -0.04315627, -0.032317176, 0.038186964, 0.03260066, -0.02789816, -0.0033893015, 0.038853984, -0.017826142, 0.011856302, 0.031850263, -0.002055259, -0.013557206, 0.0050485167, -0.02958239, -0.005286143, 0.0073163887, 0.01860989, -0.014132512, -0.06276669, 0.016733894, 0.0013528024, 0.014874573, -0.018459812, -0.0018655749, -0.012439946, 0.01790952, 0.020227417, -0.030249411, 0.030916432, -0.030899758, -0.019677125, -0.01921021, -0.031650156, -0.042622656, 0.012815145, -0.008829693, -0.004689993, 0.033701245, -0.030799704, 0.023962736, 0.0022095076, -0.01727585, -0.010772392, 0.0014017867, -0.05729712, -0.05452898, -0.006845305, 0.019977285, -0.037653346, 0.016233629, 0.001979177, 0.006019866, 0.016558802, 0.0015820909, 0.008275231, -0.017034054, -0.004994321, 0.016925663, 0.032700714, -0.038320366, -0.012865172, 0.047425207, -0.006157439, -0.0010516006, -0.0010531639, 0.031566776, -0.031249942, -0.009304945, 0.029865874, 0.043222975, -0.021394705, 0.010497246, -0.037586644, 0.014007445, -0.0071204514, 0.062733345, -0.018793322, 0.016133575, -0.014574413, -0.0016050198, 0.007666575, -0.015950145, -0.012064746, -0.0020021058, -0.027397895, -0.037720047, 0.0027598003, 0.016058534, 0.0024638094, -0.015925132, 0.033301033, 0.008754653, 0.039220847, -0.04248925, 0.01581674, -0.024713134, 0.021094546, 0.0033017548, 0.03054957, 0.0013079869, -0.030682975, -0.006028204, -0.0032663194, 0.0026826758, -0.0107890675, 0.024379624, -0.010588962, 0.012414932, 0.0032121239, 0.007595704, 0.013148655, 0.015883442, -0.006882825, 0.03126662, 0.01966045, 0.03054957, 0.015466554, -0.0012715091, 0.0027973203, -0.0027139424, 0.031500075, 0.0037770076, 0.012539999, -0.013265384, 0.010772392, 0.011847964, 0.032917496, 0.032984197, -0.005523769, -0.0010427417, 0.0052361162, -0.001969797, 0.022778774, -0.00024257685, -0.023495821, 0.0039083273, -0.013198682, -0.0009473785, 0.0019020527, -0.013824014, 0.0050860364, 0.025079997, -0.01100585, -0.003222546, -0.007378922, -0.00045128152, -0.008050112, -0.028932044, -0.019226886, 0.018659918, 0.012181475, 0.019093482, 0.005402872, 0.030249411, 0.005002659, 0.020260768, -0.011222632, -0.047391854, -0.027514623, -0.011180943, 0.001081825, 0.019426992, 0.0127984695, 0.007858343, 0.023445794, 0.021094546, -0.004406509, 0.024229545, -0.013965757, -0.0027243646, 0.0055487826, -0.0150663415, -0.001460151, -0.0075706905, 0.027131086, 0.0032433905, -0.03488521, 0.033651218, -0.020427523, -0.0034914392, 0.020660982, 0.021678189, -0.00086191646, 0.0025951294, 0.0019937681, -0.014616102, 0.01007202, 0.018459812, -0.040121324, -0.00913819, 0.008512858, 0.048225634, 0.0078124856, -0.0136405835, 0.015733363, 0.01126432, -0.023112284, 0.02883199, 0.0066952254, -0.032450583, -0.0019677125, 0.013182007, -0.010005318, 0.0034622569, -0.022261832, -0.015916793, -0.020544253, -0.017809466, 0.022111753, -0.020160716, -0.01424924, -0.0009379985, -0.02077771, 0.020877764, 0.0013486334, -0.0018916305, -0.030566247, 0.019910583, 0.006094906, -0.005461236, -0.008216867, -0.029549038, -0.005607147, 0.005502925, -0.0057697333, -0.0086796135, 0.033034224, 0.019076806, -0.0107390415, -0.032400556, -0.024012763, -0.014491036, 0.06750254, -0.015574945, -0.03992122, 0.006561821, 0.032300502, 0.045824356, -0.022628695, 0.0024950763, -0.01186464, 0.03721978, 0.025596939, 0.022111753, 0.017792791, 0.007670744, -0.005294481, 0.0005143359, 0.011631182, 0.012565012, 0.0029640754, 0.00025899181, 0.02327904, 0.0066035097, -0.027514623, -0.017125769, 0.004068829, -0.0107890675, 0.011856302, 0.015224759, -0.0073455707, -0.001346549, -0.016758908, -0.009054813, -0.022278508, -0.0032329683, -0.0031495907, -0.035118666, 0.06673547, 0.012840158, -0.007929214, 0.031566776, 0.010205424, -0.039454304, -0.008829693, -0.0054487293, -0.0044565354, -0.007729108, -0.024879891, -0.047892123, 0.015366501, 0.005923982, -0.012748443, 0.04315627, 0.019977285, 0.005611316, -0.011664533, 0.02533013, -0.000113667185, 0.02536348, -0.0050193346, -0.027431246, -0.024262896, 0.010697353, 0.035919093, 0.013632245, -0.018643243, -0.010797406, -0.005565458, 0.021461407, 0.035385475, 0.031099863, 0.0033997237, 0.013982432, 0.00712462, 0.028565183, 0.006595172, -0.06496786, 0.005002659, 0.021578135, 0.01984388, -0.00063888123, -0.012281528, -0.009871914, -0.030349465, 0.031700183, 0.0019968946, 0.026797576, -0.0055112625, 0.0085211955, -0.027798109, -0.029015422, 0.008458663, -0.0053361696, -0.026830928, -0.01432428, -0.0299159, -0.01760936, -0.0188767, 0.024896566, 0.0063325325, 0.015291461, -0.004535744, -0.0029703288, -0.0031349997, -0.020877764, 0.004494055, -0.008704627, 0.0102637885, 0.01700904, -0.015416527, -0.0023449964, -0.051093824, -0.019577073, 0.030532895, -0.0066160164, 0.0027702225, -0.014691141, -0.016592152, 0.012031395, 0.019643774, -0.019927258, 0.011456089, 0.023812657, -0.027164439, -0.003495608, -0.023946062, -0.0004916676, -0.015499905, 0.035985794, -0.017325876, 0.045123983, 0.01951037, -0.02883199, -0.0068953317, -0.009805212, -0.0049067745, 0.0068036164, -0.017075744, -0.009488377, -0.011764586, -0.017292524, 0.022662045, -0.0017352974, 0.00018799055, 0.028848667, -0.020727683, 0.0124816345, 0.004181389, 0.026847603, -0.012615038, 0.0029244712, 0.028998746, 0.006357546, -0.014340956, 0.017075744, -0.04852579, -0.005919813, -0.0029828355, 0.048025526, 0.031700183, -0.01566666, -0.040821698, 0.007745784, -0.044156805, 0.014107498, -0.03114989, 0.003958354, 0.04055489, -0.006432586, 0.004145954, 0.0021844944, 0.020994492, 0.014716155, 0.0023283209, -0.025079997, 0.04465707, -0.013790663, -0.004464873, 0.014449347, -0.015850091, 0.036586113, 0.025263429, -0.01641706, 0.01857654, 0.03353449, 0.014457684, -0.01201472, -0.021811593, -0.026113879, 0.0030391153, -0.04625792, -0.014557738, -0.008696289, 0.029649092, 0.0056530046, 0.0072496864, -0.003872892, -0.013307073, -0.059698395, 0.001842646, 0.033451114, -0.0053445073, 0.016892312, 0.010047006, -0.015975157, 0.009046475, -0.026364014, -0.00999698, -0.012990238, 0.012915198, 0.036019143, 0.020244094, -0.028565183, 0.023779305, 0.02849848, -0.018176328, 0.00054143363, -0.02472981, -0.0009463363, -0.03681957, 0.04472377, -0.016858961, -0.0033934703, -0.031349998, -0.0039708605, -0.01566666, 0.006878656, -0.009129853, -0.018326407, -0.018193003, -0.014265915, 0.023996087, 0.03290082, 0.00049427315, -0.02663082, -0.0012089759, -0.0022407742, 0.016842285, 0.02047755, 0.008762991, -0.033150952, 0.0019468681, 0.023245689, -0.0036165055, 0.018643243, -0.012398257, 0.0013819846, -0.0018634904, 0.015391514, 0.009880251, -0.029065449, -0.00095727964, 0.009730171, 0.007629055, -0.021461407, 0.009013124, 0.009179879, -0.028031565, -0.009346634, -0.035452176, -0.03581904, -0.00055289804, -0.025813721, -0.006094906, 0.007091269, 0.0094717005, -0.0007879188, 0.0053736893, -0.051727492, 0.0036165055, 0.021828268, -0.039487656, -0.0070037227, -0.0074039353, -0.040188026, 0.047158398, -0.01171456, -0.0051277257, 0.02864856, 0.05026005, 0.037386537, 0.00007360683, -0.017809466, 0.043623187, 0.010088695, -0.015925132, 0.025830396, -0.033701245, -0.004266851, 0.016183602, 0.033968054, 0.015800064, 0.033868, -0.02361255, 0.036085848, 0.0068327985, -0.016858961, -0.008712964, -0.0077874726, -0.007579028, -0.0034976923, -0.0031308308, -0.018109625, 0.0053736893, 0.02029412, -0.019326938, 0.0041313623, 0.013740636, 0.001686313, 0.016058534, 0.019793853, 0.0006764012, -0.008008423, -0.000045987985, 0.0037957674, -0.018309731, -0.011272659, -0.0023449964, 0.010922472, 0.007820823, 0.019076806, -0.019060131, 0.02988255, -0.011706222, -0.0031391685, -0.016016847, 0.028381752, 0.024079464, 0.00044997875, 0.0027097736, -0.02883199, 0.031716857, 0.008946422, -0.03018271, -0.034918558, 0.009113177, 0.0017175796, 0.008296076, 0.04812558, -0.04655808, -0.010747379, 0.02391271, 0.022411913, -0.037720047, 0.011172605, 0.02861521, -0.041388664, 0.014382645, 0.004790046, 0.02472981, -0.019560397, -0.018776646, -0.005277805, -0.0003207434, 0.024479678, -0.00050886424, -0.010522259, -0.017025717, -0.00043434545, -0.022261832, -0.031833585, 0.0061824527, 0.008796342, -0.006036542, 0.014966288, 0.021511434, -0.053962015, 0.015783388, 0.022261832, 0.015208083, -0.0032350528, -0.013607233, -0.01891005, -0.01123097, -0.013540531, -0.0330509, 0.020427523, 0.013198682, 0.0012933958, 0.014124174, -0.00073684996, -0.0376867, -0.003084973, 0.017159121, -0.018109625, 0.03715308, 0.06420079, 0.0035956611, -0.019093482, -0.0050318413, -0.002353334, 0.00951339, 0.019193536, 0.01917686, 0.01936029, -0.060932387, -0.0058364356, 0.011789599, 0.022228481, 0.0052111032, -0.001799915, 0.027964864, 0.011289334, -0.04275606, -0.01936029, 0.0036415188, -0.004677486, 0.0010859938, -0.00029885676, 0.019110158, 0.032283828, -0.002805658, 0.0055279383, -0.020360822, -0.0082043605, 0.009379986, -0.005748889, 0.03745324, 0.006657705, -0.023112284, -0.0010000106, -0.027214466, 0.006957865, 0.009229906, -0.024829865, -0.010338829, 0.013540531, -0.017175796, 0.00048020316, 0.03301755, 0.013632245, -0.016350357, -0.01447436, 0.018193003, -0.012723429, 0.015483229, 0.013332086, -0.0042147404, 0.003741572, 0.0041730516, 0.0017217485, 0.020677658, -0.021494757, -0.015825078, -0.015016315, 0.018593216, 0.025880422, 0.004798384, -0.02017739, 0.021094546, -0.024079464, -0.024329599, -0.035752337, -0.017876169, 0.004039647, 0.04435691, 0.0011172605, -0.001596682, 0.018309731, 0.0010985006, 0.0007311178, 0.03084973, -0.020544253, 0.01376565, -0.016667193, -0.0010135595, 0.033317707, -0.012506647, 0.00089630974, -0.0122148255, 0.009655132, 0.017259173, -0.013515517, 0.023512498, -0.043556485, -0.024796514, 0.04068829, -0.018409785, -0.0026722536, -0.0008884931, -0.017192472, -0.008913071, -0.023795981, -0.015875105, 0.006244986, 0.0057655643, 0.0053736893, 0.0027889824, -0.009555079, -0.00081553764, 0.007032905, 0.0060115284, 0.025063321, 0.00817101, -0.018393109, 0.026113879, 0.0046691485, -0.0091548655, 0.024679784, -0.014190876, 0.009029799, 0.0076915883, -0.0067577586, 0.00036112944, -0.015691673, -0.004331469, -0.0016873552, -0.03235053, 0.0030620443, 0.00951339, 0.02137803, -0.005215272, 0.0065784967, 0.0048150592, 0.021911647, -0.0030537064, 0.008262725, -0.008079294, -0.053661857, -0.008362778, 0.007262193, 0.0021949166, -0.017067404, -0.029148826, -0.0074081044, -0.0027327025, 0.0037582475, 0.023545848, 0.033434436, -0.00012591328, -0.04212239, 0.011130916, 0.0019197704, -0.019126832, 0.018409785, 0.012506647, 0.022511965, -0.025146699, 0.01652545, -0.004706668, -0.005627991, -0.009846901, -0.013307073, -0.00943835, 0.007441455, -0.0016811019, -0.0017029885, 0.042355847, 0.0040771673, -0.0072205043, 0.016858961, 0.025163375, -0.0074956506, 0.02391271, -0.0055571203, -0.000633149, 0.006570159, 0.009404999, -0.03902074, 0.025446858, -0.0003236095, 0.009088164, -0.0042168247, 0.027164439, 0.021361353, -0.0043940023, 0.015858429, 0.0015820909, 0.010880783, 0.0010333618, -0.014466022, 0.015933469, 0.024429651, 0.0079959165, -0.0039145807, -0.0069662025, 0.01854319, 0.01212311, 0.003760332, -0.030566247, 0.011356036, 0.025696991, 0.006666043, -0.021628162, -0.015950145, 0.023695927, 0.014566075, -0.0038583006, -0.020377498, 0.00283484, -0.0032183772, 0.011422738, -0.010455557, 0.0074247797, -0.006920345, 0.007808317, -0.011506116, 0.0055946405, 0.004685824, -0.02629731, 0.023078933, -0.023329066, 0.032617338, -0.0013642667, -0.020327471, 0.007187153, 0.010280464, -0.017392578, 0.0069245137, 0.027764758, 0.01824303, -0.008971435, -0.015950145, 0.008596236, 0.001133936, 0.032700714, 0.021211274, -0.0073205577, -0.021761566, -0.030916432, 0.017509306, 0.010905797, 0.00358107, -0.005607147, 0.008571222, 0.0017446773, 0.0091548655, -0.031349998, -0.00365611, 0.014941275, 0.008162672, 0.017826142, 0.005419547, 0.004389833, -0.0026951826, -0.004010465, -0.01604186, 0.011130916, 0.01600851, 0.02783146, -0.0021949166, -0.01212311, 0.024879891, -0.017325876, 0.05326164, -0.03129997, 0.02924888, 0.013507179, -0.036352657, 0.035118666, 0.016358694, -0.029448986, -0.0065784967, 0.015166394, -0.027097736, -0.010764055, -0.00094998407, -0.010455557, -0.010522259, 0.0149079235, -0.009338297, -0.019493695, 0.015616634, -0.0063742213, -0.03200034, 0.022061726, -0.02518005, 0.012990238, -0.0068327985, 0.021628162, -0.0026368182, -0.018559866, -0.022962205, -0.002670169, 0.034651753, 0.0010135595, 0.029715795, -0.011089227, 0.0275313, -0.008475338, -0.009713496, 0.0040417314, -0.011180943, 0.027064385, 0.025380157, -0.012223164, 0.019677125, 0.013890716, -0.0006175157, 0.008275231, -0.0076457304, -0.0061782836, -0.031916965, 0.01148944, 0.00634087, 0.021061195, 0.0063783904, -0.014674466, 0.018993428, -0.023345742, -0.00030432842, 0.025747018, 0.020227417, 0.00026133683, -0.0034539192, -0.013582219, 0.004785877, -0.020010635, -0.052294463, 0.000103114704, -0.009004786, 0.008191854, -0.017409254, 0.0016404552, -0.023012232, 0.0003230884, -0.0004043816, 0.023529172, -0.011147591, -0.032450583, -0.031049836, -0.017042391, 0.014524386, -0.014807871, -0.015691673, -0.010755717, 0.009279933, -0.017576009, -0.009505052, 0.025947124, 0.004431522, -0.0017582262, -0.005311156, -0.0036394345, 0.007991748, -0.02372928, 0.0082835695, -0.021911647, -0.008141828, -0.013015251, 0.012748443, -0.011247645, -0.020761035, -0.001738424, -0.014741168, -0.022361886, -0.011397725, -0.03051622, -0.0134321395, 0.005398703, -0.0052402853, 0.005711369, -0.039154146, 0.00962178, -0.011022525, 0.0060407105, 0.0003991705, 0.022662045, -0.016733894, -0.010205424, -0.010005318, 0.014340956, 0.0069787093, -0.007483144, -0.004373158, 0.0037811764, 0.0009369563, -0.007308051, -0.015283124, -0.026230609, 0.0017686484, 0.023178987, 0.010947485, 0.0016612996, 0.004685824, 0.005602978, 0.010722366, 0.023645902, -0.02267872, 0.002390854, -0.0021428056, 0.005815591, -0.0019562482, -0.045090634, -0.009813549, 0.012765118, -0.0037394876, -0.032884143, 0.023045583, 0.0134821655, 0.012514985, -0.004765033, 0.024763161, 0.015858429, -0.010997512, -0.026580794, 0.01854319, -0.008300245, 0.020460876, 0.0026764225, -0.013273722, -0.0128484955, 0.007925046, -0.017092418, -0.026614146, -0.010338829, 0.015041328, -0.0021553123, -0.024012763, 0.009346634, -0.023445794, 0.0032433905, 0.011981368, -0.010980836, -0.0044231843, 0.029065449, -0.00417722, 0.005778071, 0.009096501, 0.007912539, 0.015908455, -0.004610784, 0.02107787, 0.014841221, 0.003651941, -0.009696821, -0.012856834, 0.02689763, 0.013824014, 0.009129853, -0.0024763162, 0.016758908, -0.02879864, -0.0064784433, 0.008246049, -0.013240371, 0.006132426, 0.004298118, 0.018409785, -0.012256514, 0.004431522, 0.003349697, -0.0072580245, -0.027914837, 0.022712072, 0.032984197, 0.0025826227, 0.004706668, 0.022561992, 0.00895476, -0.031716857, 0.003160013, 0.020577604, 0.0075998725, 0.027114412, -0.022511965, -0.011506116, 0.0017707328, 0.014382645, 0.021995025, -0.0015393598, -0.014999639, -0.022845477, -0.00022277466, -0.0057697333, 0.012923536, 0.018293057, 0.02502997, -0.035152018, -0.021127896, -0.009404999, -0.005944826, -0.007554015, 0.009530066, 0.007991748, 0.019260237, -0.0038395408, 0.0033330214, 0.019326938, -0.03003263, -0.04278941, 0.01384069, -0.005277805, 0.0361859, -0.001119345, -0.0076165483, 0.009229906, 0.007595704, 0.010822419, 0.00006657184, 0.0058614486, 0.014224227, 0.008562884, 0.0028786133, 0.021778243, -0.024412977, 0.010163736, 0.0036019145, 0.0067994474, 0.023896035, 0.020260768, 0.008350272, 0.00031058173, -0.012323217, 0.02264537, 0.0050776987, -0.011222632, -0.0012162714, 0.013340424, 0.009213231, 0.0010891205, 0.00999698, 0.005644667, -0.0055571203, -0.00013965757, 0.00032960228, -0.005611316, -0.0075581837, -0.0011266405, -0.0027952357, -0.009571754, 0.003979198, -0.018659918, -0.0161169, 0.010063683, 0.013457153, 0.01227319, 0.012431608, 0.008854707, 0.038253665, -0.0009817719, 0.015975157, 0.0001905961, 0.027631354, -0.0024846538, -0.011989706, -0.0054070405, -0.0030933109, 0.0029911732, 0.0101553975, 0.03715308, 0.0041730516, -0.0069662025, 0.0018384772, 0.0028702756, -0.015091355, 0.0022136767, -0.011964693, 0.0064784433, 0.0025284272, 0.0012454536, -0.016066873, 0.011747911, 0.015274785, -0.015850091, 0.026780901, -0.012640052, -0.009463363, 0.016692206, 0.019860556, -0.0131153045, 0.0063450392, 0.010488909, -0.005040179, 0.0042272466, 0.0064409235, -0.024179518, -0.009063151, 0.022228481, 0.005923982, 0.020711008, -0.005081868, -0.00011132219, 0.011356036, -0.0028035734, -0.0062574926, -0.022228481, 0.019043455, -0.0017259173, -0.004827566, 0.02014404, -0.00090256304, 0.01827638, 0.0011870892, 0.012031395, -0.012631714, 0.008637925, -0.00074518775, 0.015574945, -0.017792791, -0.014224227, 0.015483229, 0.0037915986, -0.01126432, 0.006370052, -0.002518005, 0.014632777, -0.009555079, -0.014632777, 0.00723718, 0.008946422, 0.024513029, 0.0061240885, -0.024629757, -0.0067285765, 0.011347698, 0.006912007, 0.0051360633, -0.0065284697, 0.013732299, -0.011839626, -0.009221568, 0.014140849, -0.006136595, -0.0018384772, 0.022478614, 0.00072955445, 0.01570001, 0.007962566, -0.011289334, -0.006203297, 0.010864108, -0.011247645, -0.02062763, 0.014466022, -0.01626698, -0.0013257046, 0.005102712, 0.008279401, -0.0045232377, -0.011439414, -0.017475955, -0.0021448901, -0.014024121, 0.018993428, 0.002701436, 0.0014997554, 0.006991216, -0.014257578, -0.0051277257, -0.00017326917, 0.02267872, 0.016283656, -0.021511434, 0.0051610763, 0.008979773, 0.00039760716, 0.0020073168, -0.0006597256, 0.0036832076, -0.02436295, 0.012748443, 0.02629731, -0.02017739, 0.014340956, -0.023962736, -0.0055279383, -0.004927619, 0.0061866217, -0.014899586, -0.0050151655, -0.0008613953, -0.0016644263, -0.024629757, 0.015283124, -0.002480485, 0.0057739024, -0.0037624165, -0.0069078384, -0.015441541, 0.016592152, 0.003745741, 0.0063950657, -0.014849559, 0.014224227, -0.00058989687, -0.0078875255, -0.014174201, 0.0032058705, -0.005853111, 0.009930278, 0.00507353, -0.0015153887, 0.0023408276, 0.005840604, 0.015566607, -0.013240371, -0.029932575, 0.02186162, -0.006774434, 0.019226886, -0.011197618, -0.010805744, 0.00012754175, 0.0017050729, -0.0029328088, -0.014124174, 0.02659747, -0.021211274, 0.009096501, -0.017259173, 0.0079667345, 0.011431076, -0.004752526, -0.010113709, -0.0033225992, -0.0029974265, 0.0026972669, -0.011706222, -0.0003712911, -0.0151163675, -0.0102221, 0.0033955548, -0.012606701, 0.004114687, -0.017709414, -0.0023887698, 0.020010635, 0.0013215358, -0.0036394345, 0.003230884, -0.009196554, 0.00019085665, 0.0116895465, -0.022061726, -0.009780198, -0.0011745826, -0.01589178, 0.016842285, -0.022311859, 0.0034560035, 0.016091887, -0.010980836, 0.01029714, -0.01376565, -0.04058824, 0.019276913, -0.010505584, -0.00051511754, -0.014682804, 0.0020114859, 0.0070579182, 0.0027056048, -0.0059990217, -0.005490418, 0.01727585, 0.003372626, -0.0053361696, -0.024479678, 0.0036290123, -0.049359567, -0.0188767, -0.0028119113, 0.009204892, 0.012581687, 0.024196194, 0.016225291, -0.022128427, 0.010488909, -0.0012537914, -0.0007019356, -0.00073476555, -0.012740104, -0.0063992348, 0.0026180581, 0.0021448901, -0.018960077, 0.015141381, 0.002791067, -0.005023503, -0.002357503, 0.009746848, 0.007554015, -0.010097033, 0.016250303, 0.010455557, 0.019193536, -0.011889652, 0.009821887, -0.029082123, -0.013123642, 0.011747911, -0.003745741, -0.008871382, 0.007491482, 0.004681655, 0.0010646284, 0.012806807, 0.02267872, -0.00003546807, 0.0012277359, -0.006028204, -0.0076332237, -0.0037061365, -0.011030863, 0.025413508, 0.008291908, 0.011497778, -0.022311859, -0.009304945, -0.0150663415, -0.009963629, -0.014307605, 0.024162842, -0.0071121133, -0.016567139, -0.008308583, -0.008304414, 0.00211675, 0.0007879188, -0.00880468, -0.0076332237, 0.015508243, 0.004935957, -0.02454638, -0.011872977, 0.012448283, -0.018359758, -0.008421143, 0.026997684, -0.016392047, 0.00977186, -0.003760332, -0.028148295, 0.0010656706, 0.00958843, -0.014132512, 0.013665597, -0.010997512, 0.017142445, -0.0032037862, -0.016150251, -0.0032287994, -0.00447738, 0.0057613957, 0.010922472, -0.021344678, -0.020660982, 0.0057238755, 0.004250176, 0.011831288, -0.01424924, 0.015341488, 0.005961502, -0.00034002448, -0.024513029, 0.00936331, 0.028781965, 0.00992194, -0.025580263, -0.013715623, 0.024979943, 0.017017378, 0.013782325, -0.011314347, 0.0012590025, -0.018776646, 0.0025617783, -0.02928223, 0.0074331174, 0.0060823997, 0.0069036693, 0.004460704, -0.008871382, -0.017259173, -0.013373775, 0.000087351116, 0.007370584, -0.013682272, -0.01540819, 0.01070569, -0.02331239, 0.008687951, -0.0030828887, 0.0045649265, 0.014174201, 0.0002446613, 0.03975446, -0.0026493247, 0.016875636, 0.007128789, -0.016125238, -0.020277444, -0.0024033608, 0.009338297, -0.011839626, -0.01637537, -0.01607521, 0.005898969, 0.0010073063, -0.010647326, 0.000081553764, 0.012298203, -0.006061555, -0.011289334, 0.0019572903, 0.006324195, -0.016158588, 0.017000703, 0.010363841, -0.0057739024, -0.017359227, -0.0141158365, -0.03081638, -0.011280996, -0.0017550995, -0.007383091, 0.0018145061, -0.0058947997, 0.0021699034, -0.0149079235, -0.006420079, -0.00032282784, -0.01346549, -0.009338297, 0.008258556, 0.009796874, 0.00007712433, 0.008629587, -0.015391514, 0.007816655, 0.00007530044, 0.0022595343, -0.009046475, 0.015283124, 0.0013402958, -0.007554015, -0.011172605, -0.015941806, 0.0065117944, 0.0014205467, -0.014290929, -0.028882017, 0.0013913645, -0.0040896735, -0.004133447, -0.01369061, 0.0035685634, 0.013648922, 0.021594811, 0.013940743, -0.024463002, -0.012281528, 0.010655664, -0.0104222065, 0.000441641, 0.0014445178, -0.0038583006, -0.017375901, 0.0006456557, 0.009896927, 0.0039124964, 0.014666129, -0.0021886632, 0.019577073, 0.011497778, 0.022028375, 0.029482337, 0.027247816, -0.012765118, -0.00021912689, 0.007866682, -0.028515156, 0.02958239, -0.0157417, -0.004373158, 0.005490418, 0.012298203, 0.011772924, 0.022912178, 0.017809466, -0.02783146, -0.00046404873, 0.022712072, -0.0018874615, 0.0032058705, 0.015074679, 0.006870318, -0.00943835, 0.0083919605, -0.020260768, -0.021244625, 0.00028009678, 0.030582922, 0.01406581, 0.01488291, -0.008254387, 0.001195427, 0.006674381, -0.0039145807, -0.012881847, 0.002749378, 0.0019677125, 0.0013309157, -0.009396661, 0.014649453, -0.007383091, -0.0060782307, 0.006069893, -0.004250176, -0.004890099, -0.003547719, -0.0039124964, 0.005611316, -0.006036542, -0.009296608, 0.0037499098, 0.0049109436, -0.013515517, 0.01902678, 0.014849559, -0.013974094, 0.007016229, -0.006094906, 0.019777179, -0.0025159207, -0.01186464, 0.0058614486, 0.011439414, 0.016241966, 0.016016847, -0.0034497501, -0.0010734872, -0.010572286, 0.025346806, 0.0019228971, 0.00943835, -0.018676594, -0.004965139, -0.02406279, -0.014365969, 0.0050860364, -0.0017926195, -0.008604573, 0.014090823, 0.0031266618, 0.015441541, -0.0020521325, 0.012865172, 0.018459812, -0.014182538, -0.008241881, 0.013999107, -0.012656727, 0.020961141, -0.0017332128, -0.010597299, 0.009896927, 0.014074148, 0.0038332874, -0.0041355314, 0.019527046, 0.0075706905, -0.013332086, -0.017442605, 0.03346779, 0.015533256, -0.0054112095, -0.010572286, -0.0012715091, 0.0031975328, -0.01581674, 0.013015251, -0.0068327985, -0.023295715, 0.010939147, -0.0004049027, -0.0013027758, 0.03715308, 0.013307073, -0.028181646, 0.01473283, 0.0059865154, -0.012631714, -0.008662938, 0.0011495693, -0.0030537064, -0.006136595, 0.002782729, 0.012106434, 0.012665065, 0.013207019, -0.0034643414, 0.04025473, 0.0071496335, -0.028298374, 0.013448815, 0.009346634, 0.00072590663, -0.0077166012, 0.017225822, 0.011989706, -0.0028285868, -0.007449793, -0.012890184, 0.009029799, 0.012915198, 0.015149719, -0.009813549, 0.021127896, -0.02081106, -0.006536808, -0.003458088, 0.009004786, 0.011406062, 0.011956355, 0.01133936, -0.011781262, 0.004581602, 0.0030391153, -0.009163204, -0.0038770607, -0.013582219, -0.007591535, 0.004902606, 0.0016508774, 0.004181389, 0.0014090823, 0.021944998, -0.023245689, 0.00649095, 0.020043988, -0.008446156, -0.024312923, -0.021611487, -0.0155916205, 0.009029799, -0.0021657345, 0.02958239, 0.008483676, -0.0016258642, -0.03018271, -0.0012131447, 0.0044273534, -0.003353866, 0.0051235566, 0.0042543444, 0.0027639691, -0.0054487293, -0.0064242478, -0.0038228652, 0.020310795, 0.00712462, -0.020577604, -0.005840604, 0.012514985, 0.008341934, -0.013673934, 0.027631354, 0.008729639, 0.024262896, -0.008129321, 0.0061532706, 0.017626036, -0.007016229, -0.047425207, -0.01227319, -0.00034497504, -0.001960417, -0.008621249, 0.0028515155, -0.005711369, -0.005711369, 0.012189812, -0.008829693, -0.008854707, -0.025146699, 0.00943835, -0.00943835, -0.020160716, 0.00086608535, -0.014641115, -0.0044273534, 0.023962736, -0.015983496, 0.016575476, 0.015474891, 0.02246194, 0.019627098, -0.007166309, -0.00039343827, 0.0029473999, -0.010497246, -0.003670701, -0.00039656495, 0.017392578, -0.011239307, -0.012023057, 0.0036415188, 0.025863746, 0.0077999793, -0.01705073, -0.018176328, 0.020060662, 0.004614953, 0.020961141, -0.02011069, 0.019426992, 0.010880783, 0.009079826, -0.020544253, -0.0086546, -0.021344678, 0.023379093, -0.013173669, -0.034318242, -0.009430012, 0.0049484633, -0.001648793, -0.02174489, -0.019827206, 0.0036957143, -0.0082043605, 0.018626567, 0.0054445607, 0.01794287, -0.0102637885, -0.023379093, -0.017259173, 0.009905265, -0.011214294, 0.012698416, 0.008729639, -0.01495795, -0.0000074176796, 0.005432054, 0.0081251515, 0.024746487, 0.01063065, -0.027881486, -0.0034914392, 0.016833948, -0.014132512, -0.0026868447, 0.013565543, -0.00003709654, 0.018593216, 0.0030078487, -0.0155916205, -0.00068838673, -0.037720047, 0.022028375, -0.0026680848, -0.014199214, -0.019560397, 0.017692737, -0.0087880045, -0.013982432, -0.01884335, -0.0039604385, -0.002626396, 0.0034309903, -0.005890631, 0.0081543345, 0.005923982, -0.01827638, 0.032400556, -0.0029515687, -0.027214466, -0.011381049, -0.0014684888, 0.004066745, 0.028781965, -0.0048150592, 0.0055529512, -0.006144933, -0.00086295867, -0.007824993, 0.007733277, 0.0063992348, -0.017826142, -0.004977646, 0.0055279383, 0.030349465, 0.0067994474, -0.012715092, -0.002920302, -0.015508243, 0.013098628, -0.010413868, -0.002593045, -0.013557206, -0.027014358, 0.025446858, 0.0061824527, 0.009346634, -0.0018124216, -0.027281167, -0.009880251, 0.0021970011, 0.005703031, -0.014974626, -0.012723429, -0.00038301607, 0.0055863024, 0.0032329683, 0.02883199, -0.0036790387, 0.0011057961, -0.0096301185, -0.01570835, -0.012931873, -0.013648922, 0.01148944, 0.008029267, -0.0000880025, -0.015466554, -0.010672339, -0.0028952889, -0.04905941, -0.0010146018, 0.0105305975, 0.017676061, -0.0065159635, 0.017242499, 0.008938084, -0.011923004, 0.015641646, -0.0153831765, 0.002286632, -0.0029182178, -0.0010479528, -0.004469042, -0.002693098, 0.00080615765, -0.012514985, 0.0026826758, -0.007979241, 0.016183602, 0.015266447, 0.016967352, 0.009721834, -0.0029265555, -0.017209146, 0.003633181, 0.015483229, 0.00070975226, 0.035852388, 0.009730171, -0.0061157504, 0.022561992, 0.0032204618, 0.013940743, -0.016183602, -0.0020198235, -0.004118856, -0.005736382, -0.0061616083, 0.0069078384, 0.014932937, -0.008087632, 0.005315325, -0.0045607574, -0.0051193875, -0.005277805, -0.0010135595, -0.0010333618, -0.008266894, 0.010797406, 0.018359758, 0.0022595343, 0.004081336, 0.0043064556, -0.016050197, -0.015099692, 0.0010714028, -0.0074247797, 0.0029974265, 0.0038395408, -0.013849027, 0.008533702, -0.019593747, 0.026864279, -0.024463002, -0.020327471, 0.022278508, 0.007595704, 0.011973031, -0.014541062, -0.0037311497, -0.008813018, 0.0102637885, -0.00061178353, -0.023112284, -0.0031204086, -0.016617166, -0.019643774, 0.011764586, -0.024196194, 0.0010594173, -0.0022511964, -0.0007029778, 0.010864108, -0.006549314, -0.0019354037, 0.013782325, 0.0037957674, -0.0147995325, 0.02309561, 0.024346273, -0.015758377, 0.006065724, 0.0030870575, -0.012406594, 0.00041402213, -0.0050443476, -0.0067702653, 0.0097885365, -0.013932405, 0.0054820804, -0.0016519197, 0.00028713178, -0.020210743, 0.00020596886, -0.010939147, 0.002570116, 0.03235053, 0.0155916205, 0.012748443, 0.008041774, -0.00069880893, 0.003745741, -0.007037074, 0.002574285, -0.017626036, -0.0029473999, 0.014024121, 0.006128257, 0.012640052, 0.011981368, 0.0016654686, -0.01954372, 0.019193536, -0.03992122, -0.0093132835, -0.0048192283, -0.004293949, -0.020977817, -0.019577073, -0.029849198, 0.017826142, 0.025847072, 0.012373243, -0.002607636, -0.012548336, 0.011381049, 0.0006196002, -0.0134821655, 0.0019875148, 0.028548507, -0.001997937, -0.0020385836, -0.0086546, 0.01794287, 0.018159652, 0.003958354, -0.018426461, 0.016917326, 0.010922472, 0.0017686484, 0.0008238754, 0.021644838, 0.009813549, -0.001346549, -0.014007445, 0.0144326715, 0.0073747532, -0.0017373818, -0.008537872, -0.0034497501, -0.012081421, -0.0017363395, 0.010672339, 0.013540531, 0.0024304586, 0.0074206106, -0.021928322, -0.0010239817, 0.0030245243, 0.007520664, 0.01996061, 0.025780369, -0.024863215, -0.0042168247, 0.0015602043, -0.0044231843, -0.005928151, 0.0188767, 0.01148944, -0.01700904, 0.025246752, -0.013532192, 0.016350357, 0.0009239286, 0.024312923, 0.014415995, -0.017125769, 0.010839094, 0.001294438, 0.03992122, 0.0086546, 0.0050568543, -0.006457599, -0.01936029, -0.0036790387, 0.0059698396, -0.0033225992, -0.0016717219, -0.002738956, -0.012514985, 0.0028932043, -0.009296608, 0.011739573, -0.011856302, -0.012523323, -0.017709414, -0.000010870035, -0.010438882, 0.011072552, 0.002140721, 0.009538403, -0.008087632, -0.0023324897, -0.00999698, 0.010747379, -0.003274657, -0.0026972669, -0.016517112, -0.01037218, 0.006432586, -0.008300245, -0.004206402, -0.023028906, 0.007516495, 0.008137658, 0.015825078, 0.0035372968, -0.020460876, 0.00008455015, 0.008454493, -0.017926194, 0.015399852, 0.010313815, -0.008304414, -0.006836967, 0.0017592685, -0.021361353, -0.008629587, -0.0004049027, -0.006032373, -0.008821355, -0.0037728387, 0.0003822344, 0.012931873, -0.000101486236, 0.028598534, 0.0026680848, 0.0136405835, -0.009179879, -0.0084711695, -0.011539467, -0.006870318, -0.004435691, 0.003991705, 0.022912178, -0.0408884, 0.010430544, 0.013899054, 0.004748357, 0.0018916305, 0.022578668, 0.020077338, 0.017242499, -0.0010416996, 0.0009098586, -0.009871914, 0.018042924, -0.00013496757, -0.013223696, 0.019777179, -0.015658323, 0.009955292, -0.005498756, -0.01156448, 0.013048602, 0.0034018082, -0.015541594, 0.0076790815, -0.0114144, -0.013307073, 0.02249529, -0.010772392, 0.004539913, 0.011097565, -0.019927258, 0.00951339, -0.023495821, -0.004931788, -0.00072278, 0.01055561, 0.014165862, 0.010455557, -0.0028306711, -0.0030828887, -0.00030589176, 0.034068108, -0.004510731, -0.008621249, -0.013507179, -0.0062991814, -0.005248623, 0.008187685, -0.019743828, 0.0077874726, -0.021928322, 0.0016185687, 0.014140849, -0.0026055516, -0.009129853, -0.008712964, 0.007412273, 0.0057697333, -0.012148123, -0.004581602, 0.023946062, -0.0049859835, -0.003945847, -0.006611848, -0.025430184, -0.018826673, -0.009555079, -0.027464598, -0.0030349465, 0.015533256, 0.001894757, -0.0043940023, -0.012615038, -0.005794747, -0.02264537, -0.013523854, 0.003570648, -0.003260066, -0.0005367436, -0.002920302, -0.01219815, 0.0010828673, 0.015574945, 0.0014518133, 0.01313198, 0.017359227, 0.0020583856, -0.010163736, -0.0009838563, 0.01951037, 0.0017373818, -0.012306541, 0.005915644, 0.0054862495, -0.036019143, -0.007958396, -0.015016315, 0.006666043, -0.0029411465, 0.0018780816, -0.04255595, 0.015358163, 0.010397193, -0.009580092, -0.019443668, 0.0034976923, 0.031850263, 0.005507094, 0.024813188, 0.021094546, 0.015341488, -0.013665597, 0.02943231, 0.00943835, 0.025446858, 0.0044565354, 0.018142976, 0.014916262, 0.019043455, 0.033934705, -0.00962178, 0.007353909, 0.004068829, 0.029832523, -0.0045315754, 0.006028204, -0.02264537, 0.021194598, 0.024079464, -0.0064242478, 0.0134821655, -0.008462831, 0.01667553, 0.01705073, 0.0026618314, -0.016475424, 0.006853643, 0.0023887698, 0.0061949594, 0.010638988, -0.006886994, 0.008904733, -0.0070412424, 0.0070871003, 0.026397364, -0.035118666, -0.017209146, 0.010088695, 0.0012610869, 0.0029077956, -0.0013204935, 0.016033523, 0.00656599, -0.011397725, -0.007641562, -0.0008337765, -0.007478975, -0.024296246, -0.0021761567, -0.0043147933, 0.0016883974, -0.008587898, -0.027848136, -0.027347868, 0.025747018, -0.010247113, -0.023162311, -0.0016185687, 0.0054695737, 0.007791641, 0.029815847, 0.0083919605, -0.014849559, 0.0037999363, 0.0014684888, -0.0155916205, 0.03256731, 0.032617338, -0.026864279, 0.025680317, -0.01634202, 0.0023846007, 0.0005239764, -0.01857654, -0.020394173, 0.0006597256, 0.000044392084, -0.0036977988, 0.00144556, -0.0057322136, -0.0091548655, -0.02424622, -0.0043064556, 0.0042439224, 0.011130916, 0.011306009, -0.0072747, 0.0032037862, 0.0020771457, 0.0017134107, 0.014449347, 0.0039187497, 0.0034976923, -0.000044359516, -0.018259706, -0.025713667, 0.007066256, 0.011406062, 0.0072413487, 0.0007728066, -0.0026326494, 0.00794589, -0.007729108, 0.028048242, -0.0040750825, -0.026847603, -0.009855238, -0.0058030845, 0.007416442, -0.027164439, -0.013782325, 0.011956355, 0.010080358, -0.0067577586, -0.019610424, 0.006553483, 0.017242499, -0.004902606, 0.008929746, 0.008846369, -0.009163204, -0.018293057, 0.0042585135, 0.018593216, -0.0136405835, 0.011422738, -0.01085577, 0.006636861, 0.02312896, -0.021294652, 0.013573881, -0.0043773265, -0.000817101, -0.017792791, 0.0068661496, -0.0060407105, -0.009805212, -0.012548336, 0.010989174, -0.004685824, 0.0075581837, -0.02059428, 0.0002092258, -0.021844944, 0.021811593, -0.0012016804, 0.0075290017, -0.0028890355, -0.004129278, -0.019043455, -0.027397895, -0.0052319476, 0.052427866, 0.009863576, -0.0022470276, 0.0024096142, -0.0031829418, -0.008425311, -0.00440234, -0.0021699034, -0.017859492, 0.008596236, 0.0004742104, -0.024479678, 0.011956355, 0.009029799, 0.0045315754, 0.0074247797, 0.006532639, -0.015524918, -0.0097885365, -0.0050318413, 0.020094013, 0.025013294, -0.0021824099, 0.011914666, 0.00936331, -0.00043382435, 0.011272659, 0.00020870467, 0.0013090291, 0.003812443, 0.017067404, -0.010522259, -0.013423801, 0.008712964, 0.04469042, 0.011422738, 0.0026097205, 0.015800064, -0.0047733705, -0.005736382, 0.0016039775, 0.0064034034, 0.0059364885, -0.0027285335, -0.01824303, -0.00046326706, -0.005490418, 0.0275313, -0.0105305975, 0.018443136, -0.020310795, -0.00936331, 0.020861087, -0.0068744873, -0.008746316, 0.0015768798, -0.0014299267, 0.0012079336, 0.0075873663, 0.022561992, -0.0048442413, 0.005081868, -0.012373243, -0.01369061, -0.01346549, 0.017075744, -0.003533128, -0.011155929, 0.017792791, -0.012765118, -0.009938615, -0.013540531, -0.021761566, -0.010764055, -0.009113177, -0.0114144, 0.017892843, -0.013523854, 0.0057280445, -0.011289334, -0.017776115, -0.014374306, -0.016583815, -0.017292524, 0.001913517, 0.015291461, -0.015283124, -0.008070957, 0.002980751, 0.015299799, -0.0034560035, -0.0007769755, -0.00813349, 0.003585239, 0.014899586, -0.010814081, 0.007816655, 0.02246194, 0.00028139955, 0.0075373393, 0.00015893864, 0.0050318413, -0.0014778689, 0.004689993, 0.009455025, 0.0020208657, -0.0058739553, -0.016258642, -0.0060407105, -0.015149719, 0.012139786, 0.02111122, 0.0077166012, 0.037953507, 0.019393642, 0.0060115284, 0.025096672, -0.0000066767257, 0.021211274, -0.0018051261, -0.010997512, 0.011764586, -0.010388855, 0.0012506647, 0.012940211, -0.0077207703, 0.00077489106, 0.017475955, -0.0010573328, 0.01495795, -0.013965757, -0.012189812, 0.009813549, 0.0040167184, -0.0018541105, -0.020844413, -0.0055487826, 0.011597831, -0.005252792, 0.012890184, 0.000514857, 0.026997684, -0.0019343614, -0.008604573, -0.018476486, -0.013982432, -0.025696991, 0.007203829, 0.03039949, 0.024379624, -0.0065868343, -0.0019260237, -0.009980305, 0.0018739126, 0.0029348934, -0.011781262, -0.019760503, 0.029832523, 0.01924356, -0.0031329151, -0.017826142, 0.0040000426, 0.019410316, 0.0056863558, 0.014265915, 0.023362417, -0.012881847, 0.0053695207, -0.0002767096, -0.0024763162, -0.0005534192, -0.0022699565, -0.0064742747, -0.014024121, 0.019493695, 0.02029412, 0.010413868, 0.009146528, -0.006461768, -0.009546741, -0.017325876, 0.0173092, -0.007804148, 0.022361886, -0.043356378, -0.0093132835, 0.0093132835, -0.017175796, 0.008025099, -0.0034893546, -0.013732299, 0.003831203, -0.0006977667, -0.016258642, -0.008854707, 0.0021146657, -0.03308425, 0.0039041585, -0.03233385, 0.010013656, -0.000108456086, -0.005598809, -0.02424622, 0.008596236
2639
+ 0.0023182528, -0.023037398, -0.025802497, -0.033181187, 0.025710836, -0.02740656, 0.013015824, 0.027635712, -0.0055645704, 0.042316705, 0.013428298, 0.0025607718, -0.038711384, -0.0078981, -0.048396867, 0.022487434, 0.00008694641, -0.0288273, -0.014054646, -0.017400263, -0.0021807617, -0.035411596, -0.026428845, -0.035289384, -0.0070196847, -0.0044226306, -0.013527596, -0.0052781305, -0.0157962, 0.01707945, 0.017064173, 0.009471609, -0.008654301, -0.003952869, -0.016498933, -0.0217847, -0.0021158352, -0.024794228, -0.025191424, -0.019829273, 0.0028395732, 0.009005668, 0.026810765, 0.02227356, -0.013619257, -0.045708153, -0.021280568, -0.020638943, -0.011029841, 0.029591141, 0.013054016, -0.0021139258, 0.050352298, -0.014352543, 0.023908176, 0.022747139, 0.009509801, 0.012504052, -0.0062443875, -0.07497848, -0.010426409, -0.018805727, 0.017675245, -0.008348765, -0.0050642556, 0.02878147, 0.0032138545, 0.009280649, -0.02846066, 0.025344193, -0.018546022, 0.004858019, 0.016575316, 0.047358047, 0.034006134, 0.018164102, 0.021280568, 0.0076918635, 0.018484915, 0.025771944, 0.02441231, -0.008547364, -0.044088814, -0.013222061, 0.06501801, -0.03764201, 0.004430269, -0.054415923, 0.034220006, -0.018897388, -0.009723676, -0.028338443, -0.0140852, -0.0009977653, 0.038375296, 0.000794393, -0.025084488, 0.008829984, -0.011778404, 0.030003615, 0.020440344, 0.029606417, 0.022059683, -0.04900794, 0.0057975417, -0.018148826, 0.042713903, 0.028628703, -0.018240485, 0.014955977, 0.008226551, -0.0052284813, 0.005789903, 0.014596972, -0.028918961, 0.016666977, -0.022686033, -0.020043148, 0.0068172673, -0.016728085, 0.008509171, 0.009020944, -0.03406724, -0.033272848, -0.01041877, 0.007859908, 0.021647211, -0.005789903, 0.02436648, 0.023342934, 0.000008205307, 0.07901155, 0.01746137, 0.013695641, 0.016621146, 0.027284345, 0.00051845604, 0.054874226, 0.004602133, 0.011679105, -0.039047472, -0.022945737, -0.051177245, -0.018057166, -0.005239939, 0.011304824, 0.0059579476, 0.04873296, -0.010227811, -0.0087841535, -0.055363085, -0.025619175, 0.01261099, -0.018530745, 0.024351202, 0.0034582831, -0.01474974, 0.019539014, -0.0025111223, 0.05481312, 0.009486886, -0.024427585, 0.0139859, 0.01251169, 0.021250013, 0.0113659315, 0.011885342, 0.0139477085, -0.04253058, 0.043813832, 0.0043118736, 0.0062673027, 0.001146714, -0.028292613, -0.027223239, 0.039719652, -0.019294584, -0.0042851395, 0.008952199, 0.03165351, -0.0020986488, -0.009670207, 0.052399386, -0.03125631, 0.02887313, 0.014314352, 0.05224662, 0.03021749, 0.026810765, -0.03125631, -0.018652959, 0.00034038594, -0.013008186, -0.0046632397, 0.030538302, -0.03425056, -0.058112904, -0.012748481, -0.020562558, -0.010999288, -0.0052934075, -0.003782915, -0.0049229455, 0.008684855, -0.010922904, 0.021815255, -0.013115124, -0.015101106, -0.0028567596, -0.008509171, 0.045127634, 0.018118272, -0.020898648, -0.029698078, -0.036511526, -0.017476646, -0.025160871, -0.06721787, -0.05062728, -0.0069967695, -0.012389476, 0.0143754585, 0.034525543, -0.047785796, -0.015979521, -0.0290259, 0.0027708276, 0.018087719, 0.052063297, 0.002673438, 0.021341674, -0.0038841236, 0.024244264, 0.0043997155, 0.018530745, -0.002835754, 0.02231939, -0.025160871, -0.05551585, 0.032081258, -0.015299704, 0.00032630266, -0.019951487, -0.041980617, 0.048182994, -0.005728796, 0.003922316, 0.044455457, -0.00041271202, 0.015154575, 0.009586185, 0.018591853, 0.0065346467, -0.005209385, -0.001732006, 0.0030610866, 0.049496796, 0.019477906, 0.008631386, 0.009303564, 0.023404041, -0.013649811, -0.007157176, 0.038405847, -0.03715315, -0.021204183, 0.03834474, -0.034403328, 0.0010455053, 0.03605322, 0.045035973, -0.017064173, 0.01746137, 0.021647211, 0.00045472317, 0.006133631, -0.0120763015, 0.03035498, 0.023816515, -0.017201664, -0.017201664, -0.020669496, 0.057501834, 0.00856264, -0.007222102, -0.04158342, -0.035228275, -0.0044799186, 0.0123589225, -0.008791792, -0.037275366, 0.015024723, 0.0036549717, 0.0448221, 0.03253956, 0.038528062, 0.0142608825, -0.033700597, -0.0046708784, 0.014826124, -0.014642802, 0.0056027626, -0.004705251, -0.004911488, -0.0001494261, 0.02245688, 0.026688552, 0.047999673, 0.0020337226, 0.0041323714, -0.0037981917, -0.0217847, -0.019355692, -0.02040979, 0.05576028, 0.038986366, -0.01727805, 0.01793495, -0.026734382, -0.007890462, -0.0015897409, 0.007630756, -0.10834299, 0.011579806, 0.06697344, 0.013405383, 0.033517275, 0.03078273, 0.030935498, -0.008448064, -0.034983847, -0.028613426, -0.026994087, 0.026612166, 0.017446093, -0.016376719, -0.036236543, 0.008936922, -0.00077625184, 0.026932979, -0.009196627, -0.007435977, -0.0123589225, 0.0132297, 0.012664458, -0.03611433, -0.017919675, 0.019340415, -0.01883628, -0.0018742711, 0.0009180395, 0.00008557389, 0.023449872, -0.0139859, 0.015643433, 0.013031101, 0.021326398, -0.04662476, -0.0508106, -0.008188359, 0.009280649, -0.015406642, 0.010922904, 0.046777528, 0.023633193, -0.015070553, 0.0043042353, 0.003467831, -0.027803756, 0.032631222, 0.0046059517, 0.05414094, 0.020608388, 0.038986366, 0.0054652714, -0.009120243, -0.010227811, -0.0038191972, 0.015024723, 0.017247494, -0.0005824276, -0.006099258, -0.004067445, 0.025466407, 0.03525883, 0.0045066527, 0.031088267, -0.0002618537, 0.0057402537, -0.015024723, -0.013710918, -0.0140622845, -0.031714614, -0.038100313, 0.013550512, -0.03987242, 0.008226551, -0.005239939, 0.007730055, -0.016162843, 0.03030915, -0.0062023764, 0.0023717214, 0.013634535, -0.02726907, -0.0066301264, 0.0055263783, 0.02297629, 0.036847614, 0.019309862, -0.0046556015, -0.061259925, 0.009013305, 0.034220006, 0.005728796, -0.019966763, -0.031378526, 0.026627444, -0.00870777, -0.03096605, -0.020058423, -0.005239939, 0.024748398, -0.020638943, 0.004816008, 0.028674534, -0.016926682, -0.017950227, -0.009234819, 0.023419317, 0.025726113, 0.007409243, 0.002322072, -0.040941793, -0.03877249, 0.036847614, 0.018576575, -0.0004917217, -0.016575316, 0.0020394514, -0.024335925, -0.005705881, 0.020638943, -0.023847068, -0.02878147, -0.008875814, -0.0050833514, -0.011816597, 0.04592203, -0.04115567, -0.01503236, -0.0075009037, -0.040697366, -0.01146523, 0.034403328, -0.009250096, -0.02612331, 0.015246236, 0.012496414, -0.038008653, -0.0073863277, 0.04344719, 0.04534151, 0.014635164, -0.018714067, -0.032600667, -0.032753438, -0.0051788315, 0.01184715, -0.008807069, 0.0029102284, 0.018164102, 0.016605869, 0.022090238, 0.00036688164, -0.0053736106, 0.031134097, -0.013420659, -0.032722883, 0.017247494, 0.04583037, -0.023679024, 0.003435368, -0.011289547, -0.02231939, -0.0022170441, 0.010288917, 0.008386957, 0.032906204, -0.015857307, -0.01678919, -0.024259541, -0.014321989, -0.032692328, 0.0061870995, -0.04583037, -0.0059350324, -0.0045142914, 0.03186738, -0.0037466325, -0.01698779, -0.026581613, -0.01193881, 0.000559035, -0.04576926, 0.011648552, 0.0061107157, -0.014688632, 0.004766358, 0.015108745, -0.003582407, 0.021952746, -0.021051416, 0.0264594, 0.00456776, -0.0051941085, 0.011824234, -0.0032558658, 0.025527515, 0.0035575824, 0.017400263, 0.017614137, -0.02322072, -0.026062202, 0.005889202, 0.014520588, 0.01622395, -0.012916525, 0.008555002, -0.027757926, -0.01060973, -0.004243128, -0.022609647, -0.020730603, -0.024091497, 0.009876444, 0.027987078, 0.019798718, -0.013741472, -0.0021673944, -0.043936044, 0.003001889, 0.008898729, 0.030507747, 0.005747892, 0.012992909, 0.02612331, -0.027437113, -0.032600667, -0.013313722, -0.042500027, 0.013367191, 0.0012192788, 0.010647922, 0.004766358, -0.022517987, -0.01883628, -0.04304999, -0.019340415, 0.00086409337, -0.01503236, 0.024580354, 0.018133549, 0.005419441, 0.012068664, 0.008616109, 0.020806987, -0.010227811, -0.014948338, -0.023923451, -0.00073901465, 0.035900455, 0.029591141, -0.004800731, -0.011045119, 0.0030935497, 0.014879593, -0.039475225, -0.006828725, -0.008906368, -0.0023659926, -0.023342934, -0.0064964546, 0.014528226, 0.033425614, 0.045127634, -0.028720364, -0.033272848, 0.002944601, -0.007672767, 0.028338443, 0.012068664, -0.011755489, 0.0046899742, -0.0008860538, -0.0066339457, 0.028231507, 0.01460461, -0.024870614, -0.046746977, -0.0030267138, 0.012458222, 0.051177245, 0.0008426104, -0.030935498, 0.013611619, 0.043874938, -0.010854159, 0.049802333, -0.0033169729, -0.028475935, 0.007107526, 0.031409077, 0.0049802335, -0.01541428, -0.014887231, -0.0009003758, -0.0026066022, -0.02403039, 0.025451131, 0.004953499, -0.023465147, -0.0010340477, -0.029148113, 0.0040712645, 0.014169222, -0.0027861043, -0.034372777, 0.017216941, 0.014894869, -0.0043080547, 0.00975423, -0.016819745, 0.000417486, 0.010502793, -0.0070731533, -0.0124734985, 0.049221814, -0.00026066022, -0.016193397, -0.0023373486, 0.030125828, -0.0099757435, 0.079500414, -0.008547364, -0.013649811, 0.024442863, 0.00685164, 0.04164453, -0.015528856, -0.038466956, 0.004010157, 0.018775174, 0.0422556, 0.005320142, -0.020547282, -0.019798718, 0.016208673, 0.001508583, 0.004006338, -0.012381838, 0.01261099, 0.0074627115, 0.024152603, 0.02231939, -0.0058968407, 0.014971253, -0.0117631275, 0.0018723615, 0.03593101, -0.0038421124, 0.00015694514, -0.016850298, -0.008532086, -0.0021349313, -0.026932979, 0.03895581, -0.0053583337, -0.026627444, -0.0059082983, -0.024152603, -0.020440344, 0.021005586, -0.018607128, -0.06349034, 0.0008860538, 0.009074413, -0.017507201, -0.0043271505, 0.0013099847, -0.016498933, -0.010319471, 0.033822812, 0.0075429147, 0.018927941, -0.024748398, 0.0052132043, -0.025496962, 0.01355815, -0.009463971, -0.014849039, -0.03006472, -0.021937469, -0.01827104, 0.0039605075, 0.0027536412, 0.004078903, -0.003336069, -0.027727373, -0.017553031, 0.005969405, 0.042561136, 0.008906368, -0.0028987709, 0.022013852, 0.040330723, 0.016575316, -0.017171111, 0.0015735093, 0.042041723, 0.012122132, -0.012290177, -0.0050642556, 0.0058968407, 0.008807069, 0.00079630263, -0.0038230165, -0.016239228, -0.015948968, -0.020333406, 0.01698779, -0.0271163, 0.033028416, 0.0022590552, 0.029300882, -0.03253956, 0.008776516, 0.01698779, 0.012481137, -0.021204183, 0.04454712, 0.0020757336, -0.006798171, -0.01365745, 0.025374746, -0.0009834433, 0.019539014, -0.008639025, -0.030125828, -0.0010235449, 0.01707945, 0.00951744, 0.0138636865, -0.019875104, -0.03568658, 0.022090238, -0.0069394815, 0.019798718, -0.047694135, -0.0063093137, 0.0037561806, 0.009211903, 0.00050747587, 0.012259623, 0.029728632, -0.034097794, 0.00023881918, -0.0069471197, 0.025176149, 0.005075713, 0.0039051292, 0.011068034, 0.015124021, -0.011022204, -0.008364042, 0.014505311, 0.02587888, -0.0046135904, -0.0011553072, -0.012129771, -0.00951744, 0.043997154, -0.036083777, 0.023801237, 0.017171111, 0.012947079, -0.028918961, -0.0217847, 0.047296938, 0.029392542, 0.022869354, 0.02288463, 0.013901878, -0.011549253, 0.026291354, -0.0045753983, 0.028537042, -0.007764428, -0.0004401625, -0.0031565665, 0.048885725, 0.006171823, -0.009807698, -0.011686744, 0.0060534277, -0.010625007, -0.0194168, -0.0018332147, -0.010059766, 0.026566336, -0.000563809, 0.02850649, 0.0050069676, 0.027345452, -0.002488207, -0.004609771, 0.0032081257, 0.005304865, 0.004300416, -0.00866194, 0.021631934, -0.021402782, 0.0066301264, -0.008104336, 0.004502834, 0.034525543, 0.028582873, 0.047785796, -0.008211275, -0.009502163, 0.0034506447, -0.017614137, -0.017384985, 0.009150797, -0.009654931, 0.037611455, 0.018775174, 0.02592471, 0.015597601, -0.016941959, -0.007416881, -0.017048897, -0.008616109, 0.010441685, 0.004258405, 0.0017119552, 0.003572859, 0.026688552, 0.011969364, 0.009364672, 0.0078981, -0.0035881358, 0.007451254, 0.012190877, -0.0071686334, 0.0052934075, -0.0030152563, -0.008058506, -0.0035709494, 0.024045667, -0.019752888, -0.00870777, 0.00104646, -0.006821086, -0.031317417, -0.006504093, 0.011289547, -0.020287575, 0.0033704415, 0.009227181, -0.011801319, 0.0057097, -0.005068075, 0.0010942001, 0.00030792278, -0.0070769726, -0.0015038089, 0.005117724, 0.011549253, -0.009005668, -0.011679105, 0.0031527474, -0.0057822648, 0.0059312135, 0.03892526, -0.0054576327, -0.01937097, -0.017155834, -0.01146523, 0.0012526967, 0.00073662767, 0.002165485, 0.007084611, -0.034036685, 0.009234819, -0.013489405, 0.0067599793, -0.015994798, -0.005705881, 0.0052170237, 0.012328369, -0.006003778, -0.030523024, -0.02241105, 0.045585938, 0.0070731533, 0.00866194, 0.008180721, 0.021937469, -0.0028395732, -0.013306083, 0.043752722, 0.010105596, -0.020654218, -0.00632841, -0.01888211, 0.004078903, 0.009005668, 0.022762416, -0.029560586, 0.048274655, 0.014795571, 0.01436782, 0.011740212, -0.01869879, 0.023862345, 0.011396484, 0.0035002944, 0.002297247, -0.0011486235, -0.0076192985, 0.03593101, 0.019737612, 0.0008674352, 0.022731863, 0.005969405, -0.023770684, -0.007302305, -0.0005222752, 0.0022323208, 0.007722417, -0.028903686, -0.009273011, -0.043294422, -0.032753438, -0.02697881, -0.00837168, 0.015360812, -0.009761868, -0.008096699, -0.017690523, 0.001850401, 0.012924164, -0.009219542, -0.018561298, 0.0077185975, -0.0029694259, -0.010647922, -0.03602267, 0.014237967, -0.0154524725, 0.01541428, -0.001027364, -0.0034735599, 0.030706346, -0.009357033, -0.004682336, -0.019768165, -0.010899989, 0.0001262722, -0.035197724, 0.004586856, 0.009738953, 0.034708865, 0.019523736, -0.019523736, -0.027757926, 0.011090949, 0.02716213, -0.026153862, 0.019920934, -0.025848327, -0.047969118, -0.011900619, -0.009677846, -0.007921015, -0.0026218789, -0.021677764, -0.047358047, 0.016926682, 0.004766358, 0.01593369, -0.02031813, -0.030156381, 0.03397558, 0.014146307, 0.039719652, -0.0131304, 0.022991568, -0.023297103, -0.0020623666, -0.04534151, -0.026230248, 0.04992455, -0.0052284813, 0.018393254, 0.004296597, 0.024244264, -0.031195203, 0.047938563, -0.009311203, -0.019095987, 0.015979521, -0.01084652, -0.024152603, 0.03635876, -0.0036435141, -0.005732615, 0.04201117, -0.018530745, 0.00038526152, 0.06184044, 0.020913925, 0.02155555, 0.0030725442, 0.02445814, -0.0044799186, 0.010380578, 0.019279309, 0.0066301264, 0.0076422137, 0.005560751, 0.0026868053, 0.001660396, 0.023297103, -0.0031279225, -0.0044837375, -0.07393966, 0.010105596, 0.01831687, -0.009402864, -0.0048656575, -0.005320142, -0.0077185975, -0.023801237, -0.02126529, 0.0009294971, 0.00076336204, 0.017430816, -0.018484915, -0.0077185975, 0.018118272, 0.008501533, -0.018209932, 0.0052590347, -0.021524996, 0.01351232, -0.020868095, 0.041094564, 0.0035594918, -0.003311244, -0.026627444, -0.017568307, -0.02868981, -0.017216941, -0.011236078, -0.009158435, -0.022288835, -0.013313722, -0.0049000303, -0.01917237, -0.0006836363, 0.0071686334, -0.0066454033, -0.0020910106, -0.0236943, -0.025038658, -0.013076931, -0.01874462, -0.010831243, -0.0131304, 0.011396484, -0.011854788, 0.0024786592, -0.009463971, -0.008027953, -0.02783431, 0.016621146, 0.0071342606, -0.008463341, -0.019401522, 0.008738323, -0.017522477, 0.008967475, -0.005927394, 0.008593194, 0.012947079, 0.04705251, -0.02079171, 0.016498933, 0.0069242045, -0.034464438, 0.011870065, 0.008799431, -0.0060114167, 0.017659968, -0.01946263, -0.00091517513, -0.007615479, -0.014826124, -0.04081958, -0.036939275, -0.008402234, 0.010999288, 0.007730055, -0.005999959, -0.0136650875, -0.016071182, 0.023755407, -0.0074207005, 0.008967475, -0.021662487, -0.0060457895, 0.01727805, -0.017568307, 0.018041888, 0.00096864393, -0.0013882782, 0.008929283, 0.012855418, -0.0010311833, -0.014497673, 0.010663199, -0.02121946, 0.011870065, -0.0013577247, 0.012633905, 0.014253245, 0.017186388, 0.020806987, -0.018821005, -0.039200243, -0.0062825796, -0.0034009952, 0.02079171, -0.03739758, 0.011969364, -0.0020585475, -0.027437113, -0.022136068, -0.01642255, 0.029193943, 0.024641462, 0.010579176, 0.018637683, 0.016010076, 0.019309862, 0.0024519246, 0.030141106, 0.014383097, -0.040025186, -0.004063626, -0.013321361, 0.015093468, 0.0073252204, 0.0005881564, 0.023556808, -0.014001178, 0.0034735599, 0.03953633, 0.0008020314, 0.005812818, -0.026108032, 0.001693814, 0.0063666017, 0.012137409, 0.0061107157, 0.012977633, 0.04815244, -0.026337184, -0.00042918228, -0.0027440933, 0.013008186, -0.0028605787, -0.049191263, 0.0016594413, -0.0010235449, -0.011236078, 0.0015735093, 0.0009968105, 0.013695641, -0.011106226, 0.017522477, -0.0044226306, 0.0132678915, 0.035992116, -0.011923534, 0.0009796241, 0.016957236, 0.025985818, -0.026291354, 0.037519794, 0.00039480953, 0.044363797, -0.005320142, 0.024442863, 0.011969364, 0.01669753, 0.0006654951, -0.004716709, 0.021524996, 0.0038879428, -0.0020470899, 0.015024723, 0.0157962, 0.0011915895, -0.0037810053, -0.014642802, 0.001436973, -0.014627526, 0.009143158, 0.0015945148, 0.031531293, 0.0060725235, -0.008906368, -0.028155122, 0.02887313, -0.00956327, 0.02245688, 0.005133001, -0.0035079326, -0.026016371, 0.002121564, 0.04476099, 0.015009445, -0.013810217, 0.027788479, -0.017384985, -0.0122749, -0.0060228743, -0.018362701, -0.01946263, 0.0012087759, 0.0011934992, 0.06471248, -0.0070960685, -0.026062202, 0.034097794, 0.009502163, -0.01903488, 0.0064773588, 0.028812025, 0.0043080547, -0.010296556, -0.035808794, 0.005912117, 0.004300416, 0.009677846, 0.010785413, -0.010617369, -0.019645952, -0.02416788, 0.017782183, 0.012801949, -0.030293873, -0.0038172877, -0.007615479, -0.00004001206, 0.013474128, -0.007245017, -0.017828014, 0.002436648, -0.035564367, 0.022105513, 0.010220172, 0.026230248, 0.0048121884, -0.029805016, -0.047846902, -0.0043195123, 0.027742648, 0.032111812, -0.004716709, -0.027207961, 0.0112819085, -0.00447228, 0.0405446, -0.01727805, 0.01084652, -0.0019315591, -0.003148928, 0.0015028542, 0.0096931225, -0.009288288, -0.01289361, 0.009349395, -0.011702021, -0.013160954, 0.012404753, 0.0123589225, -0.03134797, 0.016773915, -0.0027612797, -0.035075508, -0.007546734, 0.0118777035, -0.01151106, 0.00076813606, -0.008386957, -0.0083029345, -0.010334748, 0.026321908, 0.008791792, 0.0050489786, -0.022747139, 0.02526781, 0.042500027, 0.0026657998, -0.0075352765, 0.018729344, 0.0014713458, 0.0071533564, 0.010227811, 0.017690523, -0.016529486, 0.0038669372, -0.013191507, -0.020684773, 0.0071189837, -0.0005294362, 0.0074397963, 0.0011648552, 0.0074779885, -0.0076383944, -0.008005038, 0.009784783, 0.010739583, 0.029820293, 0.0060687046, -0.013107485, 0.0008306754, -0.016162843, -0.00024944133, -0.0038612084, 0.017446093, 0.004224032, 0.002373631, -0.03877249, 0.025970541, -0.01736971, -0.059457265, -0.005919756, -0.0052513964, 0.025710836, -0.008111975, -0.016544763, -0.013160954, 0.006740883, 0.013726195, 0.022731863, -0.0005346876, -0.03217292, -0.029988337, -0.0129547175, 0.016804468, 0.025909435, -0.016101737, -0.014833762, -0.03202015, -0.010434047, 0.025481684, -0.009632016, 0.00018081513, 0.012649181, -0.003410543, -0.005553113, 0.000006172628, 0.0087841535, 0.022533264, -0.019829273, 0.0014856678, 0.007836993, 0.016712807, -0.02146389, 0.0007313763, -0.0003052971, -0.009020944, -0.005480548, -0.0033284305, 0.0039337734, 0.020012593, -0.011457592, 0.02326655, 0.008669578, 0.003221493, -0.0070922496, -0.009357033, 0.01436782, -0.0060954387, 0.021570826, 0.016254503, -0.019661227, 0.025038658, -0.009219542, 0.021097247, 0.009906998, -0.01784329, 0.00794393, -0.011129141, 0.00019346621, -0.015399003, -0.009020944, -0.007867547, 0.02612331, -0.016544763, 0.0011438496, -0.0029235955, 0.0018628135, -0.012244347, -0.0144594805, 0.015421919, 0.01746137, 0.004602133, -0.009028583, 0.0061870995, -0.012504052, 0.00074378867, -0.031179927, -0.010984011, 0.003087821, 0.0245498, 0.02040979, 0.0023087047, -0.01423033, 0.003744723, -0.012992909, -0.0024538343, -0.0019162822, 0.017950227, -0.005770807, 0.02592471, 0.008768877, -0.017507201, -0.016636424, 0.012580436, -0.011640914, -0.042133383, -0.0038497509, 0.04466933, -0.026948256, -0.0009366581, 0.007623118, -0.0056065815, -0.0022876991, 0.013550512, -0.01746137, -0.0262608, 0.018546022, -0.013336637, 0.009998659, 0.0219833, -0.012427668, -0.020501452, -0.02801763, 0.017507201, 0.034097794, -0.03962799, 0.0021521177, 0.020501452, 0.0035232096, 0.030049445, -0.012771396, -0.04191951, -0.01712528, 0.008539725, -0.011732574, 0.009937552, -0.011052757, -0.016880851, -0.011205525, -0.000024660676, -0.015635794, -0.0031011882, 0.005396526, -0.026581613, -0.016483655, -0.000110637375, 0.034708865, -0.009204266, 0.031714614, 0.007344316, -0.017782183, 0.003922316, 0.004915307, 0.018729344, 0.008264743, -0.006695053, -0.006362783, 0.010594454, 0.012603351, 0.005912117, -0.0047930926, 0.0010235449, 0.016300334, -0.019997317, -0.027956525, 0.0028032907, -0.0066874144, 0.038497508, -0.01732388, 0.017537754, 0.033120077, 0.010793052, 0.0020279938, -0.036511526, -0.020913925, -0.017659968, 0.0030190754, -0.0009815337, 0.0040177954, 0.025909435, -0.0077262362, -0.017186388, 0.021433335, -0.026046926, 0.006943301, -0.003658791, 0.01946263, 0.0064735394, 0.020180639, -0.0202723, -0.023281828, -0.017537754, -0.0023850887, 0.025542792, 0.0013911426, 0.025542792, -0.019111263, 0.010762498, -0.044363797, -0.0069012893, 0.00214066, -0.006870736, -0.00012114016, 0.016880851, 0.0009949009, 0.0051864698, -0.0060457895, -0.009456333, -0.013710918, 0.010877074, -0.014711548, -0.016712807, 0.00061870995, -0.009891721, -0.0048274654, -0.010899989, -0.019722335, 0.01203811, -0.012221431, -0.0018093447, -0.009746592, 0.010877074, 0.0051864698, -0.008493895, -0.0093799485, -0.0016021533, 0.034617204, -0.0032959674, -0.014864316, -0.010861797, 0.03525883, -0.009433418, 0.00012400457, 0.0067332448, -0.0064238897, 0.0007800711, 0.0095785465, 0.0061259926, -0.010411132, 0.0151698515, 0.043997154, 0.040177956, -0.014253245, -0.008929283, 0.008600832, -0.0033589841, -0.0024442864, -0.010739583, 0.001494261, 0.017110003, -0.0002883494, -0.023235997, -0.041705634, -0.02207496, 0.00064448954, -0.023587363, 0.016880851, 0.0023468968, 0.016010076, 0.03611433, 0.029193943, 0.006794352, 0.0146580795, -0.006561381, -0.012397114, 0.02121946, -0.0041896594, 0.0028911324, 0.030599408, 0.025665006, 0.0005275266, -0.0035804973, -0.017522477, 0.018347424, 0.012908887, -0.0015124021, 0.020119531, -0.013924793, -0.010686114, 0.013222061, 0.0095785465, 0.020715326, -0.00737487, 0.03168406, 0.032906204, -0.0049993293, -0.017018342, 0.025985818, 0.00756583, 0.005018425, 0.015483025, -0.03739758, 0.007760609, 0.0034372776, -0.0046326863, 0.020501452, -0.010731945, 0.020440344, 0.0092653725, 0.0020757336, -0.002136841, -0.0034697407, 0.0036950733, -0.010403493, 0.005980863, 0.015635794, 0.008379319, -0.0007108481, -0.0072335596, 0.014925423, 0.0073481356, 0.0040139765, -0.002698263, 0.0035461248, -0.026108032, 0.004544845, 0.016040629, 0.008348765, 0.017766906, 0.0038783948, -0.0044188113, -0.005014606, -0.00022950988, -0.016101737, -0.009219542, 0.011572168, -0.015307343, 0.002050909, -0.005152097, -0.01822521, 0.016391994, 0.0010264093, -0.01423033, -0.008677216, 0.0014933061, 0.008188359, -0.0006468765, -0.011220802, -0.019600121, 0.007237379, 0.011236078, 0.0024290094, -0.013840771, 0.0041476483, -0.0057937223, -0.0043768003, -0.015475388, -0.0034907463, 0.0008249466, 0.01455878, -0.012756119, -0.007245017, 0.011640914, 0.009059136, 0.017904397, 0.0032730522, -0.014398374, 0.006775256, 0.000021095098, 0.010281279, -0.008814707, -0.016926682, -0.0070922496, -0.010785413, -0.0040979986, 0.0245498, 0.003907039, 0.01436782, -0.0016833112, -0.024992827, -0.002354535, 0.012580436, 0.0005953174, 0.0039375923, -0.0063818786, -0.007103707, 0.00073185365, -0.0045601213, -0.017140558, -0.009441055, -0.01669753, -0.0071877292, -0.01622395, 0.0005991366, -0.009448694, -0.014902508, 0.0010646012, -0.0004131894, 0.011220802, 0.0061259926, -0.0137491105, 0.019905657, -0.010113235, -0.018561298, 0.012412392, 0.0022953376, 0.000823037, 0.0104646, -0.0051444587, -0.00866194, 0.008333488, 0.00086122897, -0.013099846, 0.0018198475, 0.000074355, 0.010411132, 0.002564591, 0.008493895, 0.019905657, -0.002150208, 0.0017978871, -0.01208394, 0.014306713, -0.026810765, -0.001522905, 0.0013071203, -0.008295297, -0.009639654, -0.01151106, -0.0013758658, 0.0065346467, 0.002136841, 0.014826124, -0.016728085, -0.013252615, -0.0070769726, 0.0018847738, 0.006389517, -0.013107485, -0.0023965463, 0.009028583, -0.0009815337, 0.007260294, -0.00029718128, 0.00066644995, -0.00575553, -0.013481766, 0.00088414416, 0.00899039, -0.004395896, 0.010701391, 0.012404753, 0.0067103296, 0.008333488, -0.0021750329, 0.012122132, -0.023480425, 0.00804323, 0.0044035343, -0.015994798, 0.011579806, -0.046166457, -0.014680995, 0.010075042, 0.0040979986, -0.0059503093, 0.012832503, 0.0061680037, -0.026016371, 0.03107299, -0.0068745553, 0.031149372, 0.011213163, -0.00031818688, 0.010304194, 0.011350654, 0.0106555605, -0.015345534, 0.0071724523, -0.000429421, -0.0028510308, 0.011404123, -0.010243087, -0.020990308, 0.008310573, -0.005354515, 0.020287575, 0.02650523, -0.00908969, -0.007829354, -0.030523024, -0.010388217, -0.010334748, -0.0021196546, 0.011258993, 0.009838252, -0.010930543, 0.00059293036, -0.0008889182, 0.017736353, -0.000024601, 0.003952869, -0.0059541287, -0.011640914, 0.019813996, 0.0120763015, -0.008524449, 0.003017166, 0.012099217, -0.009196627, 0.017965505, 0.0049573183, 0.0069776736, 0.011457592, -0.010976373, 0.000026600112, -0.009922274, -0.006504093, 0.0067905327, -0.009188988, 0.0023335295, -0.021769425, -0.012259623, 0.011174971, 0.035900455, 0.02155555, -0.021754147, 0.008761238, 0.0014484306, 0.0023812696, 0.015383727, -0.008631386, 0.013390106, -0.0030916403, -0.00094477396, -0.022777693, 0.0120457485, 0.00048503806, 0.004414992, 0.001250787, 0.015689263, 0.030767454, -0.005010787, -0.004357704, -0.006057247, 0.007974484, 0.011274271, -0.024305372, -0.007416881, 0.0039051292, 0.032234024, 0.008005038, 0.012519329, 0.0074818074, 0.0002768918, 0.0026199694, 0.015108745, -0.00528195, 0.0064162514, -0.0006822041, -0.006133631, 0.014902508, 0.027956525, 0.012175601, -0.010686114, -0.013336637, 0.031271588, -0.015536495, 0.012481137, -0.022594372, -0.00012543677, -0.010877074, 0.003725627, -0.0027765564, -0.004162925, -0.0031050073, -0.01293944, -0.01827104, -0.018240485, -0.005511102, -0.028445382, 0.010197257, -0.006740883, 0.0034372776, 0.0015792381, 0.015001807, 0.010189618, -0.013642172, 0.015024723, -0.0064811776, 0.021631934, -0.019645952, -0.026810765, 0.030232767, -0.0071304413, 0.021998577, -0.0017988419, -0.015948968, 0.003250137, 0.0084709795, 0.035289384, 0.020150084, -0.009525078, 0.0014828034, -0.0019726155, 0.007413062, -0.020150084, -0.007241198, 0.0055492935, -0.029957784, -0.010716667, 0.0017854747, -0.008814707, 0.0040139765, -0.022426326, -0.018576575, -0.008379319, 0.023923451, -0.005675327, -0.008027953, -0.00067217875, -0.0053506955, -0.014008815, -0.023373488, 0.0014207414, -0.017476646, -0.008058506, -0.0012288267, -0.006061066, 0.020501452, -0.01289361, -0.017659968, 0.0067332448, -0.0050833514, 0.0013481766, 0.00036425595, -0.003074454, 0.017155834, -0.00537743, 0.005610401, -0.0027765564, -0.017873844, 0.007145718, -0.0140852, -0.023449872, -0.009891721, 0.007493265, -0.0024748398, 0.03226458, -0.011526338, -0.002136841, 0.0032711425, -0.017140558, -0.016896129, 0.029102283, -0.013840771, -0.004380619, 0.02835372, -0.0096625695, -0.01732388, 0.0015964245, 0.0048656575, 0.019523736, -0.010602091, -0.042652797, 0.0012775215, 0.006347506, 0.034342222, -0.0064773588, 0.014589334, -0.007416881, 0.008539725, 0.018714067, -0.021387504, 0.00433097, 0.0048465612, 0.014192137, 0.013260253, 0.002864398, 0.013962985, -0.013886602, -0.024946997, -0.024824783, -0.020913925, 0.009104966, -0.00006397156, 0.009471609, 0.007531457, -0.00023141949, -0.0054270793, 0.017293325, -0.012190877, -0.0072526555, 0.0071609947, 0.013344276, 0.016758638, 0.036419865, -0.004338608, 0.0042278515, 0.009173712, 0.0034372776, -0.0003971965, 0.004010157, -0.021524996, 0.004495195, 0.023327658, 0.029377265, -0.0077491514, -0.0008344946, -0.0059350324, -0.034983847, 0.008700131, 0.0057020616, 0.008020314, 0.00941814, 0.004667059, 0.0008034636, -0.0023564447, -0.004414992, 0.0041400096, 0.0021903096, 0.005438537, -0.008180721, -0.013588704, -0.016208673, 0.01827104, 0.021952746, -0.010831243, 0.022166621, -0.02378596, 0.0054920055, -0.00870777, 0.019905657, 0.0013376739, -0.026306631, 0.0091813505, -0.014108115, 0.0024461958, 0.0008416556, 0.0025149414, 0.019386245, 0.013168592, 0.017721076, -0.005724977, -0.008020314, 0.0040559876, 0.022349942, 0.01327553, -0.011786043, 0.01674336, -0.00050699845, -0.009158435, -0.0023946366, -0.0041476483, 0.0021005585, 0.00014357794, 0.001465617, -0.0062596644, 0.00013033011, -0.008310573, 0.009792422, 0.0019630673, 0.020975031, 0.00727939, -0.008532086, 0.0027173588, 0.03944467, -0.005927394, -0.0074054236, -0.009486886, -0.0038172877, -0.009043859, 0.009143158, 0.019829273, 0.026474675, -0.00228388, 0.009899359, 0.013642172, -0.010976373, 0.027727373, -0.0058739255, 0.009601462, 0.0013204875, 0.001322397, -0.013237338, -0.006523189, -0.007829354, 0.012885972, -0.010815967, -0.0111673325, 0.009318842, 0.00090992375, -0.0034239104, -0.015735094, 0.029591141, -0.022670755, 0.0157962, -0.0104875155, -0.008822346, 0.025145594, -0.021097247, 0.03354783, 0.008035591, -0.002740274, -0.009211903, -0.0058089993, -0.010052127, 0.004961137, 0.019111263, -0.0083029345, -0.005411803, 0.020852817, -0.0044570034, 0.0034907463, 0.0023354392, 0.0073404973, 0.015750369, 0.03253956, -0.027727373, -0.010197257, 0.013840771, 0.0054308986, -0.0058815638, 0.006950939, 0.0262608, -0.0022495072, -0.00017687658, -0.012885972, -0.0071953675, 0.0040903604, 0.0128706945, 0.007206825, 0.00913552, 0.0011839512, 0.0040177954, -0.0015104925, 0.00092185877, -0.009273011, -0.011686744, 0.018805727, -0.0070349616, -0.0023679023, -0.0069814925, -0.005094809, -0.007649852, 0.011549253, 0.0016518028, 0.0149407, 0.019477906, -0.009471609, -0.010472239, 0.00030004568, 0.001898141, -0.0046365056, -0.00008927374, -0.018255763, 0.010204895, -0.004651782, -0.0032444082, 0.007359593, -0.018927941, -0.008730685, 0.0098611675, -0.023617916, 0.0078751845, -0.016865576, -0.02036396, -0.014833762, 0.012068664, -0.006664499, 0.013756748, 0.01417686, -0.0006053428, 0.006721787, 0.023113782, -0.021005586, 0.01937097, -0.012962355, -0.024672015, 0.021494443, -0.0020776433, 0.0013768206, -0.007489446, 0.010502793, 0.010059766, 0.021524996, 0.023006845, -0.03235624, -0.0054920055, -0.0002737887, -0.00093474856, 0.030125828, 0.010097957, -0.0029044996, -0.03177572, -0.010945819, 0.0044646417, -0.0132297, -0.002169304, 0.010510431, -0.0020661857, -0.030339703, -0.0016823563, -0.000842133, -0.0033265208, -0.0026562517, -0.00285485, -0.006332229, 0.010525708, -0.02407622, -0.016880851, -0.006026693, -0.014864316, -0.01727805, 0.017797459, -0.014719186, -0.016193397, -0.008027953, -0.0063589634, -0.014077561, -0.022579094, 0.0041896594, -0.0024251903, 0.00035088876, 0.005175012, -0.007237379, -0.006271122, 0.009387587, 0.006794352, -0.01793495, 0.020348683, 0.008547364, 0.015047638, 0.008875814, -0.0057937223, -0.000007440721, -0.008600832, 0.015383727, 0.011915895, -0.0061794613, -0.0016680345, -0.014673356, 0.011358293, -0.010113235, -0.013382467, -0.0077988007, 0.00813489, -0.010739583, 0.003582407, 0.010296556, -0.025985818, 0.00394905, -0.021494443, 0.003744723, -0.009463971, -0.020241745, 0.0014694361, -0.0047778157, -0.030507747, -0.005495825, -0.0078981, -0.006420071, -0.0004282275, 0.018683514, -0.007982123, -0.031286865, -0.02293046, 0.012580436, -0.026642721, -0.016529486, 0.015223321, 0.007936292, 0.009746592, 0.015994798, 0.0040177954, -0.022334665, -0.012710288, 0.00051320466, -0.025053935, 0.018973771, -0.008654301, 0.022747139, -0.0017043168, 0.026383014, 0.017064173, -0.015612879, 0.00020265616, 0.017201664, -0.017598862, -0.0039375923, -0.010953458, 0.0010731944, 0.0034277295, -0.0098611675, 0.013344276, -0.017721076, -0.0011820416, -0.0032043066, 0.012633905, -0.0020394514, 0.014283798, 0.013176231, -0.0033647127, -0.0013405383, -0.004117095, -0.0061107157, 0.0071724523, 0.029056452, -0.0166517, 0.022762416, 0.005129182, 0.0014407922, 0.0010942001, 0.008165444, 0.008386957, -0.005453814, -0.012236708, -0.00428132, 0.023297103, 0.0032806904, -0.039841868, -0.0025397663, 0.0019353782, 0.01707945, -0.015353173, -0.020669496, -0.0041476483, -0.008287658, 0.012626266, -0.010938181, 0.015001807, 0.0020528187, -0.0024862974, 0.015994798, 0.0055874856, -0.012595712, -0.009494524, 0.00051463686, -0.016025351, 0.0064582624, 0.011243717, 0.016055906, -0.035197724, -0.00009333163, -0.0070158653, -0.0038077396, -0.0028185677, 0.010097957, 0.005052798, -0.004006338, 0.0035766782, 0.013237338, -0.0010006297, 0.02160138, -0.004796912, 0.0099757435, 0.045097083, -0.024763675, 0.01151106, 0.0012479227, 0.016285058, 0.00033943116, -0.0012517419, 0.008524449, -0.0036148701, 0.033150632, 0.0006888877, 0.0033016962, -0.008050868, 0.0004945861, 0.010059766, 0.00646972, 0.011648552, 0.0052284813, -0.006171823, -0.0375809, -0.008203636, 0.007859908, 0.024228988, 0.010449324, -0.01678919, 0.0083029345, -0.017018342, -0.0048503806, 0.0052323, -0.006213834, -0.0025989637, -0.006618669, -0.0044493647, -0.02616914, -0.005400345, -0.019294584, -0.00031532248, -0.005320142, -0.0060954387, -0.02126529, -0.009188988, -0.0064964546, 0.003368532, -0.0006253935, -0.0103729395, -0.0041972976, 0.0014980801, -0.019294584, -0.0077720666, -0.008386957, 0.017522477, 0.0051368205, 0.0065766578, 0.017201664, 0.0016966783, -0.019707058, -0.026444122, 0.021631934, -0.009425779, 0.006408613, -0.009143158, -0.009555631, -0.0037676382, 0.003074454, 0.004338608, -0.0075620105, 0.000609162, -0.015376088, 0.025603898, -0.002050909, -0.0029140476, 0.030629963, 0.021020861, 0.0035136614, 0.007546734, -0.011014565, 0.016040629, 0.018301593, 0.0087536005, -0.006133631, 0.004273682, -0.0068172673, 0.005671508, 0.014321989, 0.009456333, 0.0023659926, -0.027330175, -0.0008631386, -0.0018313051, -0.0024805686, 0.007821716, 0.0076918635, 0.012420029, -0.0060075973, 0.005503463, 0.019294584, 0.015704539, -0.011770766, -0.0076613096, 0.015391365, 0.010984011, -0.0071533564, -0.0037409037, -0.016911406, 0.003706531, 0.0018580395, 0.024946997, -0.015689263, 0.028949516, 0.010701391, -0.0074207005, 0.025298363, 0.020822264, 0.006714149, 0.005071894, 0.004816008, 0.006171823, -0.0019382426, -0.016957236, -0.014039369, 0.0024156424, 0.0053506955, 0.0015324529, -0.008211275, 0.0019974401, 0.0033150632, 0.0018819094, 0.01474974, -0.0004043575, -0.0007203961, -0.022151344, -0.019432075, -0.010510431, 0.0032272218, 0.017186388, 0.041888956, 0.015589964, -0.011793681, -0.023801237, -0.0059579476, 0.008555002, -0.0029694259, 0.0090667745, -0.0042316704, -0.0111673325, -0.00646972, 0.013833133, 0.02383179, 0.0022342305, 0.033700597, 0.0041132756, -0.020990308, -0.011533976, -0.022640202, 0.016605869, 0.0049840524, -0.010357663, -0.008692493, -0.0033437072, -0.010540985, 0.018805727, -0.001227872, 0.0039337734, -0.02526781, -0.014436565, -0.020715326, 0.00018379887, 0.02231939, 0.004124733, 0.0031584762, 0.02616914, 0.008623747, -0.02421371, -0.00053707464, 0.013603981, 0.004239309, 0.004976414, 0.01355815, -0.010808328, -0.02121946, 0.00011576942, 0.010502793, -0.02702464, -0.0011963636, -0.012450583, 0.00053564244, 0.003639695, -0.017537754, 0.03345617, -0.0072335596, 0.003263504, 0.008921645, -0.021968022, 0.00019501777, 0.012908887, 0.022472156, 0.015521218, 0.009540355, 0.009364672, 0.037030935, -0.004491376, 0.0023335295, -0.019645952, 0.008791792, -0.019844549, -0.011274271, -0.0117631275, -0.031057712, 0.01355815, 0.016193397, 0.010678476, -0.0032749616, -0.0024423767, 0.010617369, 0.00037714574, 0.009082051, 0.010151426, -0.0031431993, -0.024442863, 0.024809506, -0.013695641, -0.022655478, -0.012817226, -0.00023273233, -0.002845302, 0.026474675, -0.0004167699, 0.01937097, -0.014955977, 0.014933062, -0.0077109593, -0.012236708, 0.0065652, -0.014810847, 0.012878333, -0.017965505, -0.00080394105, 0.00623293, 0.019691782, -0.008012676, -0.0020184459, -0.015628155, -0.007107526, 0.0077529703, 0.0055836663, -0.0065881154, 0.0049840524, 0.00018475366, 0.021204183, -0.011274271, -0.0038287453, -0.005029883, 0.0038325645, 0.031134097, 0.01883628, 0.0048121884, 0.012519329, -0.009188988, -0.017110003, 0.00011278567, 0.012122132, -0.00851681, -0.00026352462, -0.011870065, -0.022792969, 0.0090667745, 0.0045906752, -0.022777693, 0.006420071, -0.0010101777, 0.0056600505, 0.007680406, 0.00047167088, 0.009463971, -0.005266673, -0.016040629, 0.00090562715, -0.007764428, -0.03096605, 0.0151392985, 0.00087268656, -0.008539725, 0.010586815, -0.0068630977, -0.016941959, 0.0035671303, -0.001703362, -0.018423807, 0.0032004872, 0.015314981, 0.010411132, -0.008195997, 0.009257734, 0.008493895, -0.013909517, -0.002631427, 0.0061527267, -0.01222907, 0.008898729, 0.0019821634, 0.0047549005, 0.0011247536, 0.011060395, -0.023495702, 0.004323331, -0.015261512, 0.0038077396, -0.0070769726, 0.013115124, -0.018439084, 0.003987242, 0.021020861, 0.00851681, -0.0035881358, -0.008341127, -0.0060687046, 0.00975423, 0.015658708, 0.011144417, -0.015979521, 0.022594372, -0.0019306042, 0.00021053325, -0.01089235, -0.009998659, -0.009013305, 0.0059006596, 0.020959755, 0.004510472, 0.013802579, 0.0016374808, 0.007107526, 0.006714149, 0.026535783, -0.0040483493, 0.0024385576, 0.0099757435, 0.0065155504, 0.013015824, -0.0071724523, 0.005266673, -0.005560751, 0.0149407, 0.021051416, -0.021204183, 0.008501533, 0.01746137, 0.005190289, 0.007550553, 0.014833762, -0.011671467, 0.010388217, -0.017201664, -0.017919675, 0.0008335398, -0.0009729405, 0.00010765362, -0.0045601213, 0.004701432, -0.004216394, -0.011098587, -0.0013959166, -0.0047281664, -0.0013978262, -0.024442863, 0.000068387504, -0.0006239613, 0.014948338, -0.02387762, 0.018912666, 0.015223321, 0.0031107361, -0.015009445, -0.012129771, -0.01308457, 0.015246236, -0.021662487, -0.0065957536, 0.004445546, -0.022609647, 0.012427668, -0.012794311, -0.0077147787, 0.0037981917, 0.010831243, -0.0052170237, -0.0068669165, 0.02450397, -0.020761156, 0.002988522, 0.001974525, -0.0066683185, 0.0087841535, 0.008700131, 0.010831243, 0.030660516, 0.0039337734, -0.018591853, 0.010350024, -0.0054079834, 0.012588074, -0.0080737835, -0.011335378, 0.0028720363, -0.01118261, -0.001218324, -0.0053888876, 0.012618627, 0.0002240198, -0.022808246, -0.023067951, 0.0019353782, 0.0072259214, 0.0095785465, 0.011396484, -0.015498303, 0.011770766, -0.008776516, -0.020532005, -0.008005038, 0.0032272218, 0.0010569629, -0.011312462, -0.0035671303, -0.0060305125, 0.008608471, 0.017965505, 0.011648552, 0.002640975, -0.025160871, 0.010762498, -0.02231939, 0.021876361, -0.010785413, -0.004128552, -0.009983381, -0.026841318, 0.00551874, -0.0066874144, -0.011572168, 0.007065515, -0.0042316704, 0.001974525, 0.0052743116, -0.0024633822, 0.005591305, -0.00074378867, 0.00040626712, 0.009937552, 0.0118777035, -0.039078027, -0.005190289, 0.016346164, 0.022686033, 0.00271163, 0.0005394616, 0.018912666, -0.0074054236, -0.016758638, 0.006908928, -0.017201664, -0.016254503, 0.010082681, 0.003824926, 0.003549944, -0.008463341, -0.006442986, 0.012404753, -0.016605869, 0.0032272218, 0.01451295, 0.007997399, -0.027284345, -0.014787932, -0.0012956627, 0.013993539, 0.015009445, 0.0057937223, -0.0073404973, -0.0058319145, 0.0065537426, 0.039139133, -0.0085855555, 0.009624377, 0.0031852105, -0.011388847, 0.012152686, -0.00081539864, -0.014879593, 0.0058968407, 0.011060395, -0.0016909495, -0.029010622, 0.013336637, -0.0002945556, -0.02659689, 0.011961726, 0.0014150126, 0.0019859825, 0.0020337226, 0.02493172, 0.0013281258, -0.0011810868, 0.0049802335, 0.013000548, 0.012481137, -0.0023468968, -0.01617812, 0.00433097, 0.010006296, 0.033945024, 0.0013567698, -0.007008227, -0.005786084, -0.003553763, 0.016330888, 0.026321908, 0.0018685423, 0.010976373, -0.001056008, -0.0018456271, -0.037794776, 0.030095275, -0.016865576, 0.007508542, 0.0040483493, 0.00014166835, 0.010166703, 0.0063818786, -0.021968022, 0.0200737, -0.00019513711, 0.007214464, -0.010793052, 0.010502793, -0.007646033, 0.0029369628, 0.004544845, 0.013420659, -0.005537836, 0.005595124, -0.013649811, -0.017216941, -0.004552483, -0.013817856, -0.009838252, 0.01246586, -0.011977003, 0.015047638, -0.0017195935, 0.003922316, -0.01161036, -0.011686744, -0.03134797, -0.0041743824, -0.006672138, -0.012962355, -0.003435368, 0.009143158, -0.012129771, -0.0021845808, -0.009402864, -0.01546011, 0.017553031, -0.015948968, -0.02117363, -0.011900619, -0.016285058, -0.015826754, 0.016208673, 0.0028319347, -0.017293325, 0.029102283, 0.00030959368, 0.031027159, 0.009143158, -0.007722417, -0.0069203856, 0.0055263783, 0.0041896594, 0.01989038, -0.019523736, 0.023159612, 0.0120457485, -0.022151344, 0.002730726, -0.011381208, 0.0046326863, 0.0037657286, -0.020638943, -0.0087841535, 0.031409077, 0.020180639, -0.0014589333, 0.0012670187, -0.009410502, -0.01593369, 0.0077529703, -0.002883494, 0.00018749872, -0.01451295, 0.0047892733, -0.0026810765, -0.018591853, 0.02317489, 0.012618627, -0.0022781512, -0.017629415, 0.0011199797, 0.02150972, 0.011152056, -0.01041877, -0.0035174808, 0.0150552755, 0.0042851395, 0.0036186895, 0.0024672016, -0.01993621, 0.009250096, 0.0021998577, 0.0044035343, 0.0050986283, 0.00073615025, 0.029377265, 0.032692328, -0.009547994, -0.0068058097, -0.022487434, 0.014344905, 0.036847614, -0.0068325438, 0.004021615, 0.001156262, -0.017430816, -0.005866287, 0.007573468, 0.012091579, 0.019187648, -0.010013935, 0.03192849, -0.007913377, -0.015811477, -0.0030037987, -0.0033704415, -0.008975114, 0.00941814, 0.015238597, 0.0027803755, 0.019340415, -0.0083029345, -0.009769507, -0.0200737, 0.022533264, 0.006672138, 0.018439084, 0.015498303, 0.019141817, 0.028582873, 0.006263484, 0.023281828, 0.00035423055, 0.014520588, -0.008486256, -0.010586815, -0.0058739255, -0.012824864, 0.0031088267, -0.0020470899, -0.0076345755, 0.0018513559, -0.0039414116, 0.023327658, -0.019905657, -0.02497755, -0.008486256, -0.0073977853, 0.009456333, 0.0012574707, -0.021250013, -0.009227181, -0.014589334, 0.011617999, -0.0076040216, -0.023679024, -0.00091565255
1752
2640
  ]
1753
2641
  }
1754
2642
  ],
@@ -1762,25 +2650,22 @@ function getTemplatesPipelineCollection() {
1762
2650
  ]
1763
2651
  },
1764
2652
  {
1765
- "name": "revolutionizing-prompts-with-human-concepts",
1766
- "title": "Revolutionizing Prompts with Human Concepts",
1767
- "content": "Promptbook promotes the use of human-understandable concepts like personas, knowledge, and actions in place of traditional programming elements such as loops, variables, and tokens.",
2653
+ "name": "democratizing-programming-technology-meets-creativity",
2654
+ "title": "Democratizing Programming: Technology Meets Creativity",
2655
+ "content": "The tool is positioned as a bridge between technology and people, making programming more accessible to non-technical users. It is described as transforming programming into a creative process that can be accessed by everyone.",
1768
2656
  "keywords": [
1769
- "Promptbook",
1770
- "personas",
1771
- "knowledge",
1772
- "actions",
1773
- "human-understandable concepts",
1774
- "traditional programming",
1775
- "loops",
1776
- "variables",
1777
- "tokens"
2657
+ "Artificial intelligence",
2658
+ "programming accessibility",
2659
+ "non-technical users",
2660
+ "creative process",
2661
+ "technology bridge",
2662
+ "democratization of coding"
1778
2663
  ],
1779
2664
  "index": [
1780
2665
  {
1781
2666
  "modelName": "text-embedding-3-large",
1782
2667
  "position": [
1783
- 0.016719207, -0.0018952144, -0.031563066, -0.028162012, 0.003552037, 0.006591532, -0.026572734, 0.008462907, -0.017799918, 0.010083971, 0.040335882, 0.009090672, -0.034900554, 0.03146771, -0.048886202, 0.004215561, -0.011005753, 0.0006496175, -0.028162012, -0.004970468, -0.015757695, -0.018356165, -0.06274471, -0.028750045, 0.013969757, -0.007930499, 0.004060606, -0.0037268577, -0.032103423, 0.0025944968, 0.017434383, -0.015288858, -0.020342764, -0.029099686, -0.0074338494, -0.025905237, 0.014955109, 0.0062816227, -0.023203464, -0.0023580918, -0.016417244, 0.011514322, -0.013739311, -0.00039905787, -0.031324677, -0.008836388, -0.015288858, -0.009662813, -0.01730724, 0.00007958808, 0.026954161, -0.024903992, 0.062204354, 0.0008929758, 0.017672775, 0.0104653975, 0.0069371997, -0.04186159, 0.012499674, -0.025571488, -0.012118247, -0.024760956, -0.0070722885, -0.015090197, 0.008725138, 0.008351658, -0.0130479755, -0.01050513, 0.022392932, -0.0036871256, 0.014088952, 0.02050169, 0.026858803, 0.08474032, 0.025619166, 0.040335882, 0.08187962, 0.0012773825, 0.0036692463, 0.009305225, 0.02089901, 0.0011740794, 0.004930736, -0.0027494514, 0.059629723, -0.016353674, 0.028797723, -0.050984047, 0.02763755, -0.03184914, -0.016258318, -0.0156146595, -0.01821313, 0.0056101526, -0.016941708, 0.0072312164, 0.0072709485, 0.008709245, -0.0013777056, 0.026223093, 0.0008403309, 0.0022547885, -0.008359604, -0.058771513, 0.060615074, 0.0006635237, 0.028416296, 0.0336927, -0.051492617, 0.04586657, 0.012563245, 0.005153235, -0.0070762616, 0.018880626, -0.035377335, 0.016909922, -0.0009615134, -0.020771869, 0.019532232, 0.014653146, -0.005439305, 0.01935741, -0.015574927, -0.014955109, -0.014422701, 0.009289332, 0.0034070155, 0.024284173, 0.029512899, 0.040590167, -0.013659847, 0.049426556, 0.019961337, 0.043895867, 0.021105615, 0.038238037, 0.029147364, 0.018292593, 0.0034566803, 0.018308487, -0.033088773, -0.014128684, -0.026636304, -0.0042910515, -0.011267983, -0.0036632866, 0.02460203, 0.04640693, -0.023044536, 0.0055664475, -0.01125209, -0.04122588, 0.010060132, -0.026032379, 0.02277436, -0.0023203464, -0.03014861, 0.020708296, 0.013508866, 0.04672478, 0.0005239652, -0.025444346, -0.007775544, 0.033819843, 0.012841369, -0.017259562, 0.01764099, 0.0372209, -0.024935776, 0.03569519, -0.014851806, 0.011554053, 0.017672775, 0.012976457, -0.045612287, 0.038873747, 0.007874874, -0.024617922, -0.03820625, 0.0031745834, -0.00039781624, -0.01946866, 0.052319042, -0.03065718, 0.04402301, 0.033851627, 0.035758764, 0.01213414, 0.02147115, -0.050602622, -0.0031586906, 0.0035957422, -0.010377987, -0.0065557733, 0.014343237, -0.0007261015, -0.04745585, -0.047042638, -0.01935741, -0.014096899, -0.012436103, -0.04586657, 0.024697386, -0.017466169, -0.013016189, 0.04898156, -0.034932338, 0.004446006, 0.026652198, 0.00015954864, 0.044976577, -0.0050260928, -0.02746273, -0.004199668, -0.025317203, -0.04430908, -0.030593608, -0.019262053, 0.005045959, -0.03356556, 0.022710787, -0.02261543, 0.04523086, -0.029528791, 0.0015654392, -0.0070762616, -0.013318152, 0.028908974, 0.017116528, 0.024824528, 0.016798671, 0.051587973, 0.027812371, -0.023282928, 0.015813319, 0.0015177608, -0.0012167912, -0.00221903, -0.04402301, 0.026525056, -0.013485027, 0.0012118247, -0.011450751, -0.011418965, 0.039477672, 0.017021172, -0.025507918, 0.02523774, -0.01125209, 0.014033328, 0.012157979, 0.03100682, 0.00762059, -0.005423412, -0.020215621, 0.028908974, 0.051460832, 0.010314416, -0.0014273706, 0.042529088, -0.0029997628, 0.019659372, 0.008502639, -0.008240408, -0.020358656, -0.034328412, 0.038015537, -0.06023365, 0.0039135977, 0.0037228845, 0.07520465, -0.013127439, 0.019564016, 0.018070094, 0.024315959, 0.006635237, 0.0017531726, 0.012348693, 0.020422226, -0.023537213, -0.026620412, -0.012165925, 0.00076434354, 0.009980668, -0.001724367, -0.017291348, -0.015781533, 0.012499674, 0.0030275753, 0.002033283, -0.032278243, 0.014057167, 0.012539406, 0.033343058, 0.03598126, 0.052160114, 0.0075212596, -0.012531459, 0.011514322, -0.0007762631, 0.01070379, 0.00014899485, -0.007946392, -0.028018977, 0.037093755, 0.019262053, 0.021089723, 0.028448083, 0.0007598737, -0.017656881, 0.025889345, -0.0063610864, -0.00636506, -0.04036767, 0.039064463, 0.020755975, -0.014812074, -0.01609939, -0.00596774, -0.014963055, -0.051683333, -0.02380739, -0.089698866, -0.018562771, 0.061536856, 0.027113087, 0.006102829, 0.017625097, 0.03512305, -0.002362065, -0.043768726, -0.023855068, -0.0058604637, 0.0215824, 0.029449327, -0.052446187, -0.0071398327, 0.026636304, 0.0047400226, -0.010234953, -0.006142561, 0.0018147572, 0.013341991, -0.03442377, 0.012269229, -0.03569519, -0.00062677165, 0.0025587382, -0.013127439, -0.0058763567, 0.0009615134, 0.022694895, 0.035440907, -0.0043744887, 0.028654689, 0.0121977115, 0.049998697, -0.029497005, -0.026159521, -0.00665113, 0.0065200143, -0.027224338, 0.030577715, 0.02078776, 0.018705806, -0.034391984, 0.0034109887, 0.00173132, 0.01946866, 0.015932515, -0.008637728, 0.032993417, -0.0023898773, 0.0016796686, -0.0084788, 0.0018187304, -0.02426828, -0.0045532826, 0.0015555061, 0.027430944, 0.010513077, 0.0018068108, 0.019007768, 0.015749749, -0.007286841, -0.004569175, 0.013755204, 0.0051254225, 0.02175722, -0.034964122, -0.047137994, -0.0015058413, -0.05556117, -0.03153128, 0.031197533, -0.0048751114, -0.02449078, -0.034455553, -0.0020422228, 0.01992955, 0.01098986, -0.029989682, -0.0024872206, 0.018578663, 0.0045771217, -0.022583645, -0.012261283, 0.009495938, 0.01173682, 0.021852577, -0.015710017, -0.016925814, 0.015249126, 0.029147364, -0.00090787525, -0.005014173, -0.03614019, 0.053749394, -0.026095951, -0.041066952, 0.005351895, 0.012054676, -0.0369984, 0.0046248, 0.0043744887, 0.026397914, -0.012825476, -0.025603274, -0.010616379, 0.017164206, 0.027097195, 0.020120263, 0.022106862, -0.031451818, -0.03483698, 0.008939691, -0.0057889465, 0.004116231, -0.019675266, 0.0067464863, -0.016051712, -0.013445294, 0.018658128, -0.009599241, -0.005200913, 0.0035063452, -0.027399158, -0.030053252, 0.03693483, -0.004279132, -0.008407283, -0.039827313, -0.031451818, 0.03043468, 0.028257368, -0.0117606595, 0.009583348, -0.011720927, 0.022599539, -0.07787464, -0.005518769, 0.020708296, 0.03912803, 0.006186266, 0.0027852103, -0.012142086, 0.0010151515, 0.014192255, -0.011101109, 0.023108106, 0.027573979, 0.0104733445, -0.002860701, -0.016107336, -0.031261105, -0.008892012, 0.015344482, -0.0003623058, 0.008947637, -0.010282631, 0.015892783, -0.05419439, -0.003236168, -0.0015972247, -0.020946689, -0.01638546, 0.02968772, 0.028130226, 0.043609798, -0.016027872, -0.007604697, 0.0026163494, -0.044340864, -0.008101346, 0.016687423, -0.0495537, -0.055688314, -0.0049466286, 0.038555894, 0.009742276, -0.011832178, -0.0027633577, 0.009400581, 0.034709837, -0.05626045, 0.004422167, -0.011204412, -0.0027315721, -0.00067196676, -0.017084742, -0.027256124, 0.026652198, -0.0012902954, 0.010004507, -0.0006883562, -0.019023662, 0.013087707, -0.004906897, 0.03362913, -0.00039806456, 0.0050380123, 0.021344008, -0.018530985, -0.006500148, -0.015582874, 0.009925043, 0.029655933, 0.007727866, -0.028432189, -0.038746607, -0.0064604166, -0.0032997392, -0.021677757, -0.048886202, -0.028654689, 0.0023719978, 0.024474887, 0.04745585, -0.012650656, -0.00663921, -0.013135386, 0.027573979, 0.0063332743, 0.012285122, 0.004970468, 0.0010717696, 0.021932041, -0.024474887, -0.02638202, -0.0057134554, -0.013214849, 0.042179447, 0.003877839, 0.01598814, 0.019166697, -0.04151195, -0.039890885, -0.022488289, -0.00006316761, 0.00887612, 0.008129159, 0.025301311, 0.016401352, 0.015058412, 0.017513847, 0.01878527, 0.015527249, 0.009710491, -0.01098986, -0.026858803, 0.023155786, 0.019611694, 0.012491727, 0.0006848796, -0.02975129, 0.007604697, 0.0027653442, -0.027415052, -0.0028169958, 0.001415451, -0.019532232, -0.016290102, 0.0014790222, 0.001322081, -0.004002995, 0.07755678, -0.003917571, -0.017895274, -0.009178082, 0.0011174614, 0.034964122, 0.021089723, 0.0087648695, 0.005479037, 0.010107811, -0.010552808, 0.0063769794, -0.017799918, -0.0018942211, -0.04961727, 0.02546024, 0.010250845, 0.02512649, -0.003764603, -0.04265623, -0.027033625, 0.032643776, -0.023680247, 0.035599835, 0.010449505, -0.03362913, 0.008486746, 0.0074497424, 0.002801103, -0.017958846, -0.031165749, -0.0050101997, 0.0010876624, -0.00026471418, 0.049490128, 0.009098618, -0.037761252, 0.020644726, -0.021042045, 0.009972721, 0.007668268, 0.004002995, -0.0290679, 0.016305996, 0.014835914, -0.027844157, 0.008375497, -0.023267034, -0.0068021114, 0.01193548, 0.030275753, -0.03146771, 0.05937544, 0.019436873, -0.0011224279, -0.011411019, 0.035313763, -0.008208622, 0.04825049, -0.009122457, -0.00074547087, 0.023664355, 0.019484552, 0.020914903, -0.044849433, 0.0070762616, -0.012205658, 0.023584891, 0.04122588, 0.0015396134, -0.009297278, -0.020517584, -0.024061674, -0.023568997, -0.014231987, -0.011554053, 0.00944826, 0.028591117, 0.012165925, 0.000115471004, -0.006249837, -0.0184992, -0.01724367, 0.00003414465, 0.0491087, 0.012976457, 0.011919588, -0.021661863, -0.014780289, -0.034582697, 0.005423412, 0.019532232, -0.024697386, -0.022456503, -0.005248592, -0.030196289, -0.028670581, 0.01861045, -0.019659372, -0.0079066595, -0.016592065, -0.010807092, -0.02433185, -0.014343237, 0.020136157, -0.020247405, -0.002003484, 0.0002448482, 0.032230563, 0.033851627, -0.032278243, 0.018530985, -0.031165749, 0.020120263, 0.0001465116, 0.0043824348, -0.0279713, -0.046788353, 0.0044499794, 0.013842614, 0.003116972, 0.006047204, -0.0046526124, -0.034296628, -0.035599835, 0.024077566, 0.06306256, -0.006289569, 0.038905535, 0.023092214, 0.026683982, 0.011355394, -0.0070246104, -0.026397914, 0.014351184, -0.0027971298, -0.032611992, 0.0072153234, 0.015058412, 0.004891004, 0.009241654, 0.022535967, -0.027653443, 0.027017731, -0.0064405506, -0.0004929246, -0.03779304, 0.017434383, 0.0070047444, 0.010950128, -0.0022706813, -0.017942952, 0.02935397, 0.014390916, -0.0029282453, 0.04259266, -0.0060591237, 0.012388425, -0.009718437, 0.009297278, 0.011109056, 0.03375627, 0.021963827, -0.016290102, 0.015408053, -0.015098144, 0.00019791482, 0.013922079, -0.024109352, -0.033088773, 0.02477685, -0.0069332267, 0.012777798, -0.02614363, -0.004096365, -0.018832948, -0.023330607, -0.015527249, 0.018403843, 0.0009178082, -0.012944672, -0.009368796, -0.018292593, 0.009480045, -0.018832948, -0.014891538, 0.0027196526, 0.016170908, 0.017291348, -0.01843563, -0.015288858, -0.0071716183, -0.013206903, -0.0042076143, -0.015344482, -0.021614185, 0.017942952, -0.016067604, 0.025762202, 0.033025205, -0.00085076055, 0.0032838464, -0.018975982, 0.01821313, 0.01713242, 0.020469906, -0.0016200705, 0.028877188, -0.0029262588, 0.03289806, -0.034550913, 0.00905094, 0.0043585957, -0.0050380123, 0.019595802, 0.021932041, 0.013159225, -0.008145051, 0.0014790222, 0.026080057, -0.01741849, -0.014367077, -0.034741625, -0.014899485, 0.04157552, -0.008812549, 0.022392932, -0.02404578, 0.017195992, 0.0058763567, -0.016576173, -0.013715472, 0.01946866, 0.009329064, 0.0048949774, 0.011673249, -0.0076364824, 0.023394177, -0.0056578307, -0.028622903, 0.029449327, 0.037475184, 0.047646564, -0.007954338, -0.0021077804, 0.0104653975, 0.023712033, -0.035568047, 0.0113315545, -0.011887802, 0.04202052, -0.0051214495, -0.013349938, 0.021661863, -0.0065835854, -0.028082548, -0.016719207, -0.002777264, 0.026827019, -0.020469906, 0.022106862, 0.007898713, 0.018944198, -0.013977703, -0.011879856, 0.03135646, -0.0010548835, 0.028479869, 0.01416047, -0.01999312, -0.024220603, 0.0033136453, 0.015193501, -0.0029302319, 0.003107039, 0.0021792979, -0.004767835, -0.013485027, -0.012157979, -0.024745064, -0.028479869, 0.041543737, -0.018880626, 0.017052956, 0.0020720216, -0.027939513, -0.00221903, -0.00064316107, 0.012253336, 0.0074815275, -0.024792742, -0.017625097, 0.00026446584, -0.0029878432, 0.010735575, -0.0062458636, -0.008820495, -0.008971476, -0.0065120677, 0.02250418, -0.009106565, 0.024315959, -0.031054499, -0.018149558, 0.011816285, 0.024872206, 0.006388899, 0.018832948, -0.03966839, -0.0062855957, -0.02957647, 0.008097373, -0.008288086, -0.005844571, 0.0066670226, -0.0033414578, -0.0096071875, -0.029449327, -0.0262072, 0.021534722, -0.0016349701, 0.011887802, 0.008955583, 0.009344957, -0.004076499, 0.012380478, 0.010600487, 0.0041122576, -0.03614019, -0.0070087174, -0.0323736, -0.029719505, -0.0015207407, 0.011554053, 0.007127913, 0.017116528, 0.0076007238, 0.045326218, 0.014486272, -0.002302467, 0.006921307, 0.023139892, 0.023108106, 0.004124177, -0.00066600693, -0.009376742, 0.016528495, 0.024888098, 0.0057094824, 0.006329301, 0.025380775, -0.028305046, -0.01398565, 0.007974204, -0.015026626, 0.016083498, -0.020581154, 0.007827195, -0.020167941, -0.021455258, -0.012666549, 0.005947874, 0.017863488, 0.0030613474, 0.0051015834, -0.026223093, -0.026827019, -0.023568997, -0.02129633, -0.001674702, 0.012348693, -0.0064206845, -0.0058723832, -0.022790251, 0.023918638, -0.010417719, 0.008002017, 0.0077437586, -0.0020978474, 0.02129633, -0.016480817, -0.008558264, -0.017339027, -0.0169576, 0.011911641, -0.018229023, 0.016639745, 0.012634763, 0.02580988, 0.027685229, -0.019214375, -0.035822332, 0.012293068, 0.011824231, 0.0007275915, 0.023648461, -0.044944793, -0.030196289, 0.00865362, -0.026223093, -0.008931744, 0.00090886856, 0.01070379, -0.0052843504, 0.0155987665, 0.002820969, 0.0038083082, -0.006408765, -0.007219297, 0.047996204, 0.012444049, 0.017656881, -0.013167171, 0.020708296, -0.032166995, -0.030339323, -0.039191604, -0.027415052, 0.028670581, -0.015288858, 0.031038607, 0.02477685, 0.020692404, -0.04761478, 0.03442377, -0.01367574, -0.011585839, 0.013318152, -0.013612169, 0.0008398343, 0.01567823, -0.01147459, -0.022313468, 0.014025381, 0.0067107277, -0.00084778067, 0.05851723, 0.009329064, 0.000031770047, 0.003399069, 0.011426911, 0.0015525263, 0.004791674, 0.013381723, -0.013008243, -0.012253336, -0.0036473938, -0.005173101, 0.028956652, -0.0032580206, 0.02341007, -0.032739133, -0.10540094, -0.012722173, 0.017148314, 0.00953567, 0.009932989, 0.00064663764, -0.029433435, 0.005292297, -0.020454012, -0.0030295618, -0.013826721, 0.0026203226, 0.013405562, 0.00094115076, 0.015026626, 0.024760956, -0.031880923, 0.00035386276, -0.0076603214, -0.0015882851, -0.00999656, 0.010377987, 0.010290577, -0.0010062119, -0.034550913, 0.0077159465, -0.014033328, 0.009344957, 0.010091918, -0.011299769, -0.0161868, -0.010401826, 0.0035480638, -0.017434383, 0.005745241, -0.00014837403, -0.0035401175, 0.0038023484, -0.018546877, -0.018689914, -0.008629781, -0.010695843, -0.023886854, -0.02660452, -0.00023193531, -0.020962581, 0.01578948, -0.011625571, -0.008597996, -0.015066358, 0.022106862, 0.012920833, -0.019166697, -0.021232758, 0.0198183, -0.023282928, -0.0053201094, -0.008248354, 0.012539406, 0.0054154657, 0.038460534, 0.011172627, 0.003877839, 0.005065825, -0.030053252, -0.0008780763, 0.01510609, -0.0074378224, 0.024013996, -0.020120263, 0.0075768842, -0.00799407, -0.000337225, -0.038015537, -0.0336927, -0.0054512247, -0.007465635, 0.00011534684, 0.00722327, -0.02204329, -0.02387096, 0.031388246, 0.008542371, 0.018832948, -0.034550913, 0.0031567041, -0.02472917, -0.03614019, 0.039350532, 0.016830457, 0.026525056, -0.011633517, 0.033597343, 0.0035381308, 0.0010077017, 0.0030295618, -0.022980964, 0.015360375, -0.0075768842, 0.0036374608, 0.015479571, 0.0010896489, 0.007044476, -0.009154243, 0.0041082846, 0.006229971, 0.008037775, 0.019103125, -0.021566506, 0.01021906, 0.022249896, -0.016321888, -0.034010556, -0.01706885, 0.008462907, -0.0007737799, 0.017227776, 0.020644726, 0.0062975152, 0.027367372, -0.013286367, 0.0035381308, 0.0010826959, -0.055879027, -0.0108865565, -0.0047797547, -0.0063769794, -0.0009476072, -0.028018977, 0.02655684, -0.019627588, -0.0034566803, 0.024856312, 0.022027398, 0.0029659907, -0.024919884, 0.008208622, -0.003911611, -0.009289332, -0.004199668, -0.004465872, 0.018308487, -0.054671176, 0.015582874, 0.011776553, 0.016941708, -0.0051492616, -0.014963055, -0.010211113, -0.015837159, -0.0027534247, 0.022377038, -0.0014492231, -0.01821313, -0.006170373, 0.004787701, 0.017291348, -0.017482061, 0.031833246, -0.013230742, -0.0008328812, -0.009631027, 0.029433435, -0.014096899, 0.014835914, -0.007465635, 0.039064463, -0.01261887, -0.003206369, 0.012873154, 0.025666846, 0.016155014, 0.0025666845, 0.011728874, -0.023108106, -0.016369566, 0.015574927, 0.00038688994, -0.0016270237, 0.017227776, -0.0069610393, 0.02433185, -0.00549493, 0.0023302794, 0.020565262, 0.027049517, 0.01204673, 0.0028726205, -0.019389195, 0.017450277, -0.016480817, 0.021900255, 0.0032898062, -0.014629307, -0.009225761, -0.0047559156, 0.05400368, 0.013485027, -0.004279132, -0.011140841, 0.017100634, -0.02706541, -0.025555596, -0.00999656, -0.01462136, 0.0246656, -0.0012773825, 0.04653407, 0.0071596988, -0.01184807, 0.017942952, 0.0014482299, 0.003977169, 0.0013270474, 0.032993417, 0.009003262, 0.005379707, -0.008597996, 0.003053401, -0.0058127856, -0.001697548, 0.015296804, -0.023108106, 0.0056538577, -0.0107912, 0.027049517, 0.0010121716, -0.012038783, -0.0034765464, 0.01264271, 0.0121977115, -0.000365534, -0.017100634, -0.017211884, 0.03900089, 0.0062220246, 0.024474887, 0.004906897, 0.024395423, -0.012229497, -0.028066656, -0.033883415, -0.0016329834, 0.0060829627, 0.027494514, -0.0059518474, -0.029369863, -0.0067584063, 0.0067464863, 0.01625037, -0.006233944, 0.0035699164, 0.0015753722, 0.011069324, -0.0017670789, -0.0091860285, -0.015161715, -0.017513847, 0.02677934, -0.010107811, -0.013318152, 0.016544387, 0.0025130464, -0.00471221, 0.025682738, -0.023839176, -0.008133132, -0.001232684, 0.015646445, -0.01621064, -0.031149855, -0.0010826959, -0.0054114927, -0.028940758, 0.038873747, 0.011728874, -0.0038579733, 0.00549493, 0.0077874637, 0.03464627, 0.027812371, 0.0080934, 0.0035798494, -0.0010727629, 0.004116231, 0.010751468, 0.002223003, -0.023139892, -0.0057055093, -0.00044723286, 0.013167171, 0.003989089, 0.0016002046, -0.0024157031, -0.010123703, 0.013771097, -0.026270771, -0.015892783, 0.021995611, -0.00015718956, -0.0011482536, -0.017323134, -0.0056856433, -0.005896223, -0.002332266, -0.00023479103, -0.0051492616, 0.00999656, -0.0005433345, -0.018975982, -0.010536916, 0.021502936, -0.008145051, -0.04523086, -0.020740082, -0.002322333, 0.022535967, -0.03378806, -0.005622072, -0.027081303, 0.0035738896, 0.0069650123, 0.015622606, 0.0074100103, -0.041098736, -0.033438414, -0.015821265, 0.0034606536, -0.001020118, -0.026811125, -0.014367077, -0.00510953, 0.0046963175, 0.031054499, 0.011148787, -0.006818004, 0.0015604727, -0.008550317, -0.024697386, 0.010934235, 0.004616854, 0.030673072, -0.034519125, 0.0017064876, 0.0047002905, 0.045485146, -0.014986895, -0.0058922493, 0.0018097907, -0.013437348, -0.0032182885, -0.0011949387, -0.008868173, -0.0026123764, 0.02140758, 0.041194092, 0.0029759237, 0.0046764514, 0.0055227424, -0.011029592, 0.007986124, -0.018181344, 0.026254877, 0.027113087, -0.022424717, 0.0023302794, 0.023124, -0.013183064, -0.0067345668, -0.0011532201, -0.0035103185, 0.013969757, -0.02477685, -0.0091939755, -0.0130559215, 0.007711973, -0.011609678, -0.0091939755, -0.010266738, -0.0011899722, 0.024061674, -0.01021906, 0.002634229, 0.0143193975, 0.004120204, -0.0016339768, -0.016337782, 0.0005622072, -0.0042036413, 0.00645247, -0.026238985, -0.008085454, -0.0042274804, 0.03642626, -0.00040625926, 0.017021172, -0.016043765, 0.01644903, -0.009591294, -0.027796477, -0.007954338, 0.020342764, -0.0008115253, 0.023648461, 0.008637728, 0.018530985, 0.0011552067, 0.016242424, 0.00596774, -0.023219356, -0.023902746, 0.034010556, 0.0063332743, 0.011856017, 0.021105615, -0.0075013936, 0.017195992, 0.008121212, -0.00016066611, -0.00095704355, 0.018372057, -0.004362569, -0.0008825461, 0.006496175, 0.01264271, 0.029544685, -0.034010556, 0.0052803773, 0.010513077, -0.005824705, -0.0049466286, 0.009829686, -0.0198183, 0.021677757, 0.009257547, -0.023648461, -0.027144874, -0.025841666, 0.009074779, 0.011069324, -0.018483307, -0.0038003619, -0.0184992, -0.01896009, 0.008041749, -0.009376742, 0.011124948, -0.005173101, -0.015090197, 0.0037149382, 0.04186159, -0.0068497895, -0.006778272, -0.0020442093, -0.011824231, -0.0053280555, 0.011418965, 0.008590049, -0.018038308, -0.013739311, -0.019262053, 0.0077636247, -0.011871909, 0.004668505, 0.021391686, 0.0069371997, 0.002568671, -0.019865979, -0.019532232, 0.011236198, -0.009686652, 0.011196466, 0.014017435, -0.010107811, 0.0113474475, -0.0042314534, 0.020517584, -0.025968809, -0.001405518, -0.02677934, 0.01213414, -0.008053668, -0.008502639, 0.026254877, 0.006857736, -0.021216866, -0.0041678823, -0.004747969, 0.01867402, 0.022599539, -0.027844157, 0.0050181462, -0.00009504629, -0.001558486, -0.019230267, -0.01724367, -0.012960564, 0.007568938, 0.007080235, 0.018038308, -0.010751468, -0.010171382, -0.024204709, 0.002209097, 0.020136157, -0.004930736, -0.011037538, -0.001907134, 0.0058803298, 0.0021197, 0.012412264, -0.0048353793, -0.012491727, 0.007843088, -0.001126401, -0.015423946, -0.012944672, -0.02175722, -0.011458697, 0.012094408, -0.0104653975, 0.0125950305, -0.0143352905, -0.011180573, -0.001625037, 0.017466169, -0.010632272, -0.0011383207, -0.021232758, 0.005606179, 0.030704858, 0.007417957, 0.0074139833, -0.026811125, 0.024506671, 0.0035500505, 0.003621568, 0.0083278185, 0.01821313, 0.013993596, -0.020279191, 0.014700824, -0.018578663, -0.010457451, 0.022583645, 0.020565262, -0.0023461722, 0.022901502, -0.0063531403, 0.0029421516, -0.031261105, 0.019087233, -0.002362065, 0.00558234, 0.019611694, -0.016639745, -0.01601198, -0.02347364, 0.01204673, -0.004863192, 0.00030096958, 0.0041837753, 0.025364881, 0.0068497895, 0.038683034, -0.0071517527, 0.0077477316, -0.008168891, -0.012253336, 0.007866927, 0.0012386438, 0.00020685451, 0.006126668, 0.035568047, -0.0035401175, 0.0051055565, 0.0058922493, 0.020883117, 0.027764693, -0.008399336, 0.023219356, 0.0032917927, -0.0069689853, -0.0038857856, 0.0184992, 0.02849576, -0.03283449, 0.0030315483, 0.023219356, -0.016592065, -0.042274803, 0.025317203, -0.0048115402, 0.01730724, -0.0057770265, -0.021042045, 0.007735812, 0.019834194, 0.015980193, 0.004235427, -0.006814031, 0.020040799, 0.002286574, 0.0073226, 0.00068388635, 0.010664058, 0.0022408825, 0.008454961, 0.021169188, 0.005089664, 0.0130241355, -0.0038957186, -0.0068736286, 0.011411019, 0.013143332, -0.009233708, 0.007525233, -0.0018425696, -0.011728874, 0.008860227, 0.00014017931, -0.004465872, 0.026763447, 0.0034308545, 0.0025110599, 0.022122754, -0.0033911227, 0.000121803285, -0.0100680785, 0.0013419469, -0.004883058, -0.0027732907, -0.003339471, -0.0032679536, 0.013564491, 0.008534425, 0.012722173, 0.021630079, -0.0037944021, 0.0068696556, -0.00070424896, -0.0051889936, -0.004950602, 0.012944672, -0.005137342, 0.00009076269, -0.011426911, 0.011291822, -0.007644429, 0.006631264, 0.010362094, -0.00030245952, 0.013341991, 0.0015783521, -0.021820791, 0.0020918876, 0.0026421752, -0.028861294, -0.0060432306, 0.009583348, -0.0056498847, -0.0035738896, -0.0056657773, -0.009591294, -0.021042045, -0.029036116, -0.012658602, -0.0063134083, -0.013286367, 0.017005278, 0.0022369092, -0.0047201565, -0.00472413, -0.0018534958, -0.008152998, 0.0139061855, -0.0059319814, -0.001714434, -0.0021137402, 0.018467415, -0.007938446, -0.0125950305, -0.028511653, 0.00905094, -0.016321888, -0.0034268815, -0.0074338494, -0.002781237, -0.02380739, 0.0012187778, 0.0147564495, -0.007771571, -0.008415229, 0.019007768, -0.00722327, 0.02655684, -0.010195221, 0.005498903, 0.004549309, -0.0005711469, -0.0117606595, -0.0060193916, 0.0030255886, -0.007549072, 0.0063769794, -0.0070285834, -0.032611992, 0.016043765, -0.0060630967, 0.016266264, 0.008264247, -0.008017909, 0.0034169485, 0.004775781, -0.0075609917, -0.0033573504, 0.0076563484, -0.0064683626, 0.00074547087, 0.015233233, -0.023155786, 0.0012485768, -0.014184309, 0.0007549072, -0.011705035, -0.0007102087, -0.0020054707, -0.011593785, -0.0056141256, -0.008375497, 0.013485027, -0.0009898224, -0.018308487, -0.010743521, 0.006901441, 0.0014800155, 0.012213604, 0.01656028, 0.021963827, -0.005113503, -0.011339501, 0.008931744, 0.0049386825, -0.008931744, -0.013707526, 0.0013429401, 0.0034685999, -0.0072073773, 0.0213599, 0.022377038, -0.029401649, 0.0009679698, -0.000101316495, -0.014271719, -0.005661804, -0.053717606, -0.0071517527, 0.007811303, 0.019945443, -0.0014770356, 0.0143352905, 0.017720453, -0.022138648, 0.0035778629, -0.027573979, 0.02085133, 0.025317203, -0.010433612, 0.0025865505, 0.015876891, 0.02061294, -0.018928304, 0.016234478, -0.018880626, -0.032580204, 0.02792362, 0.018372057, -0.010242899, 0.009742276, -0.0006987858, 0.026095951, 0.026763447, -0.020565262, 0.0036374608, -0.007469608, -0.004124177, 0.0027077328, -0.011434858, -0.00046958207, 0.009456206, -0.002362065, 0.0050618513, 0.000026927713, 0.012555298, -0.000029007433, 0.0034705866, -0.006011445, -0.01775224, 0.018832948, 0.0019627588, -0.00026620412, 0.017942952, -0.007084208, -0.020406334, 0.009917097, -0.011395126, 0.0014839886, -0.003571903, 0.015090197, -0.003206369, -0.0096071875, 0.00063173816, 0.008240408, -0.0020382495, -0.00020561289, -0.008319872, -0.011538161, 0.0025726443, 0.018356165, -0.0070484495, -0.007382198, 0.0071398327, -0.022679001, 0.010624326, 0.005085691, -0.00043357498, 0.030402895, -0.017513847, 0.0030990927, -0.017148314, 0.0031209453, -0.02186847, 0.015312697, 0.011403072, 0.0061822925, 0.024570243, -0.009456206, -0.00015930033, 0.009042994, -0.0000587288, 0.015829213, -0.019961337, -0.013119493, -0.0031586906, 0.010870663, 0.0018842882, -0.001455183, -0.006086936, -0.020628832, -0.0023600783, -0.0061505074, -0.004775781, 0.00038614497, -0.008534425, -0.0016041779, 0.015559034, 0.016925814, 0.0006848796, -0.0010876624, -0.0057929195, 0.0061306413, -0.02232936, 0.0010886557, -0.011299769, -0.01070379, -0.006007472, 0.0063571134, 0.011498429, -0.02089901, -0.0044539524, -0.018181344, -0.021995611, -0.0062617566, -0.012102354, -0.01678278, -0.0005140322, -0.013151278, 0.0001646393, 0.011204412, -0.009511831, 0.022106862, 0.018133666, -0.0045810947, 0.0025726443, 0.03448734, -0.0056101526, -0.016202692, 0.013008243, 0.004263239, 0.020136157, -0.00007288331, -0.01087861, 0.011021645, 0.011196466, 0.014780289, 0.01059254, 0.021089723, 0.018530985, 0.008152998, 0.009209868, -0.016266264, 0.013556544, -0.0011889789, -0.015511356, -0.008661567, 0.011434858, -0.007886793, 0.019119019, -0.019373303, 0.010258792, 0.014573682, 0.012491727, 0.0077238926, -0.00742193, 0.012587084, -0.0027415052, 0.012269229, -0.00085374044, 0.02112151, 0.008296032, -0.011697088, 0.018149558, -0.007886793, 0.0065239877, -0.00046759547, 0.0027792505, 0.0076325093, 0.0020342763, 0.01565439, -0.0042473464, 0.006210105, 0.010330309, -0.00022920374, 0.0121897645, -0.008097373, -0.0025031134, 0.008558264, -0.004883058, -0.003013669, -0.0032123288, 0.007350412, 0.0026560815, 0.0015108077, -0.0039612763, 0.017037064, 0.013548598, -0.031706102, -0.01424788, 0.016814565, 0.0023541185, -0.010147542, 0.024983454, -0.010648165, -0.009853526, -0.005848544, -0.009106565, 0.015257072, 0.0037030184, -0.017958846, 0.013238689, -0.008447015, 0.02433185, 0.0009495938, -0.004465872, -0.004259266, 0.010600487, 0.029306293, -0.0134691335, 0.021200974, -0.028098442, 0.0046724784, 0.02050169, 0.011132895, 0.0014720691, -0.008923798, -0.009901204, -0.011244144, -0.014351184, 0.018006524, 0.0016667556, 0.021677757, 0.0063412203, 0.004465872, -0.009988614, -0.0035361443, 0.0030514144, -0.0039056514, 0.014676985, 0.01273012, -0.0013737325, 0.008693352, 0.0010171381, -0.002149499, -0.011379233, -0.011792446, 0.012698334, 0.00022100902, 0.0069491193, -0.003037508, -0.008351658, 0.0117527135, -0.008288086, -0.015265019, -0.013532705, 0.0036056752, -0.007000771, 0.010528969, 0.00799407, -0.01730724, -0.010497184, 0.0073186266, 0.0037328175, 0.0068497895, -0.0045532826, 0.010616379, 0.000501616, -0.013365831, -0.000059411694, -0.023251142, 0.024967562, -0.003774536, -0.01598814, 0.00472413, -0.02015205, 0.01213414, 0.0057293484, 0.01889652, -0.013087707, -0.0062021585, 0.022313468, 0.013882346, 0.0066908617, -0.005784973, -0.0072073773, 0.011339501, 0.0065796124, 0.013643955, -0.0070285834, 0.0000013968266, 0.009567455, 0.015638499, 0.018991876, -0.0045413626, 0.00692528, 0.016147068, -0.020088479, -0.005336002, 0.0026143629, 0.0047360496, 0.003710965, -0.0039950483, -0.015368322, 0.0046327463, -0.0213599, 0.00800599, -0.019230267, 0.02546024, -0.0068060844, -0.015408053, -0.015813319, 0.024506671, -0.016305996, 0.014017435, -0.0016528495, -0.0015247139, 0.0023600783, 0.014184309, 0.0056578307, 0.011140841, 0.0012088448, 0.0054551978, 0.0066272905, -0.01730724, 0.025094705, -0.008550317, -0.017863488, 0.01050513, 0.0033136453, -0.015725909, 0.0016935747, 0.0014780288, 0.006428631, 0.0019210402, -0.0065359073, 0.00015396134, 0.0036454073, -0.0048790844, -0.02495167, 0.017227776, -0.0070762616, -0.01484386, -0.0010519036, -0.008836388, 0.017021172, -0.00047827346, 0.03199217, 0.0052605113, 0.012118247, -0.02924272, -0.020485798, -0.0052326987, 0.010695843, -0.0029640042, -0.00027837203, 0.026334342, -0.0039135977, -0.020946689, -0.012150032, -0.0009232714, 0.008049695, 0.013922079, 0.03327949, -0.023712033, -0.011665303, -0.00043357498, -0.007549072, 0.004442033, 0.020708296, -0.0046565854, -0.0068100574, 0.00762059, -0.0035460773, -0.002934205, -0.002979897, -0.022631323, 0.008486746, 0.012976457, 0.006794165, -0.015034573, -0.0026660145, -0.003977169, 0.00432681, -0.021773113, 0.009678705, -0.01625037, 0.010179328, -0.008852281, 0.010433612, -0.012666549, 0.031483606, 0.020167941, 0.017037064, 0.015439839, -0.02387096, -0.009273439, 0.00075639714, 0.005916089, 0.0014740557, -0.008947637, 0.0003844067, 0.012467888, -0.0058564907, -0.01330226, 0.01764099, -0.009782008, -0.0077238926, 0.019039555, -0.008439068, 0.020660618, -0.009042994, -0.017195992, -0.007060369, 0.0041718557, 0.0065637194, 0.0029640042, -0.002030303, -0.00663921, -0.0087887095, 0.018594556, -0.001568419, 0.0107912, -0.023314713, -0.025587382, 0.012308961, 0.015360375, 0.026080057, -0.0027534247, 0.011093163, -0.006547827, 0.0056339917, 0.010250845, -0.019691158, 0.00066004717, 0.025158277, 0.000093990915, -0.0037566565, 0.003043468, -0.006901441, -0.002544832, -0.0074934475, 0.01678278, -0.028177904, -0.0029719505, 0.005355868, -0.007688134, -0.029147364, -0.00625381, -0.008685406, 0.002668001, -0.004521497, -0.00093221106, -0.004569175, 0.019691158, -0.02649327, -0.0063054617, -0.008264247, -0.029385757, -0.027939513, 0.013747257, -0.00025378788, -0.025746308, 0.001800851, 0.0096071875, -0.002515033, -0.0398591, 0.006861709, -0.011887802, -0.016337782, -0.0077477316, -0.0069888514, 0.008423175, 0.018006524, -0.0045810947, -0.0010191248, 0.026652198, -0.006214078, -0.008447015, -0.004362569, -0.005578367, -0.0000051139377, 0.0014859752, 0.0070722885, 0.013143332, 0.001581332, -0.0031884897, -0.01843563, 0.0062617566, 0.0054830103, -0.00084778067, 0.024999348, 0.018117772, -0.000025034238, -0.0008760897, -0.000116712625, -0.011879856, -0.01625037, -0.008844334, 0.02501524, -0.0012684427, -0.019627588, -0.0062657297, -0.0075609917, -0.02186847, -0.014104845, -0.015376268, -0.022249896, -0.013167171, 0.016242424, 0.0025130464, -0.005904169, -0.022424717, 0.010004507, -0.007147779, -0.005622072, 0.014414755, 0.012682441, 0.020104371, 0.009948882, 0.014128684, -0.00942442, -0.022234004, 0.020342764, -0.01550341, 0.007533179, -0.012237444, 0.015980193, 0.004179802, 0.020914903, 0.0079225525, -0.0065398803, -0.023584891, -0.008013936, -0.0038420805, -0.00828014, 0.014796182, -0.006921307, -0.009789955, -0.01975473, -0.0024713278, -0.01781581, 0.0044738185, 0.008359604, -0.0035679298, -0.019452767, 0.030593608, 0.020740082, -0.008240408, 0.006571666, 0.0004978911, -0.0063571134, -0.013175118, 0.018944198, 0.001378699, 0.019277947, 0.006456443, -0.015670285, 0.009853526, -0.005312163, 0.01816545, -0.014907431, -0.0009312178, 0.010123703, -0.0006714701, -0.0027613712, -0.014820021, -0.016059658, -0.013143332, 0.0080934, 0.0011979186, -0.011919588, -0.000103054765, -0.0046128803, 0.014033328, -0.014510111, 0.03636269, -0.006229971, -0.020485798, 0.009718437, -0.013183064, -0.0037824824, 0.0032699401, -0.0026699875, -0.016035818, 0.0030355216, 0.0032103423, 0.0151537685, -0.028289154, -0.0043148906, -0.0048393523, -0.006349167, -0.008852281, -0.01290494, -0.0009972722, -0.003136838, 0.0076166163, 0.00071318867, -0.0063968454, 0.010330309, -0.0065041217, 0.0031288918, 0.027669337, -0.01398565, -0.013357884, 0.0009714464, 0.01821313, 0.006186266, -0.022933286, 0.005049932, -0.01706885, 0.02118508, -0.0062855957, 0.009686652, -0.0033076855, -0.0069848783, 0.008868173, -0.010107811, 0.0021892309, 0.0051452885, -0.007175592, -0.03842875, -0.005618099, 0.004934709, 0.009654866, 0.028177904, -0.013310206, 0.0113315545, -0.018658128, -0.009058886, -0.0025726443, -0.004545336, -0.00034765463, 0.02415703, 0.008558264, -0.0138743995, -0.013842614, -0.016909922, -0.008629781, 0.016528495, -0.013540652, -0.009082725, -0.020517584, -0.026175413, 0.0121897645, -0.014684931, 0.0037626165, 0.0013111546, -0.0055505545, 0.00856621, 0.00025254625, 0.0023004804, 0.008029829, 0.0018495227, 0.0025865505, -0.0051452885, 0.006384926, -0.009599241, -0.025714524, 0.0151537685, -0.018244915, 0.017609203, 0.013437348, -0.0096230805, 0.020867225, -0.0022170432, 0.016862243, -0.0024971536, 0.004195695, -0.016798671, 0.0050976104, -0.0026004566, -0.0017094675, 0.0072272434, 0.0033275515, 0.012388425, 0.009273439, -0.021804899, 0.0028527547, 0.0031328648, 0.004827433, -0.0143273445, 0.027510408, 0.00022063653, -0.013747257, 0.014065113, 0.02226579, -0.011093163, -0.044118367, 0.016051712, -0.024999348, 0.008109293, -0.0032997392, -0.0031348516, 0.015082251, -0.017863488, 0.0001580587, 0.015265019, 0.0372209, -0.010544862, -0.003907638, 0.0023263062, -0.002777264, -0.010544862, -0.0071716183, -0.0044738185, 0.0035679298, -0.0041281506, 0.018085988, 0.0020183835, 0.0046963175, -0.008987369, 0.023060428, 0.0011522268, 0.025825772, 0.0031884897, 0.01396181, 0.009178082, 0.013922079, 0.003921544, 0.0042870785, -0.0057690805, -0.0041321237, 0.000110318266, 0.0011413005, -0.0083437115, 0.0074934475, 0.0058405977, -0.010242899, 0.010449505, 0.020056693, 0.0056856433, -0.008923798, -0.00549493, -0.02318757, 0.008844334, 0.005272431, 0.021264544, 0.03072075, -0.036680546, -0.010544862, -0.0031606774, 0.015336536, -0.0121897645, 0.025746308, 0.026032379, -0.009750223, 0.004887031, 0.010854771, 0.0100362925, 0.0060392576, 0.03003736, -0.003399069, -0.0017213871, -0.007839115, -0.014875645, 0.023839176, -0.009901204, -0.017497955, -0.009368796, -0.02528542, -0.0052128327, 0.008208622, 0.0064604166, 0.015336536, -0.02770112, -0.0044102473, -0.012269229, 0.014724663, 0.0021057937, -0.00942442, -0.016862243, 0.010258792, -0.0050340393, -0.017609203, -0.013429401, 0.017720453, 0.021693649, 0.0012018917, -0.006587559, -0.004771808, -0.025603274, -0.0071636722, 0.021375794, -0.0062657297, -0.02855933, 0.00031661405, 0.020072585, 0.013747257, -0.024347745, 0.010743521, -0.0032778867, -0.007119967, 0.0043784617, -0.0066431835, 0.009829686, 0.009877365, 0.011816285, 0.023902746, -0.0024971536, 0.011109056, 0.023251142, 0.015304751, -0.026350236, -0.023378285, 0.0057333214, -0.017386705, -0.009750223, -0.019707052, -0.006229971, 0.021773113, 0.029878432, 0.02832094, -0.002554765, -0.0032560339, -0.021439364, -0.011466643, 0.021550614, 0.013604223, 0.00038639328, -0.02175722, -0.011863963, -0.01350092, 0.0037586433, -0.0032341813, 0.025666846, 0.007266975, 0.026302556, -0.018292593, -0.016592065, -0.012157979, 0.035758764, -0.020660618, 0.0020183835, -0.002554765, -0.0042513194, 0.010584594, -0.021947933, -0.0014512098, 0.012142086, 0.03483698, 0.0021057937, 0.0070126904, 0.0017859516, -0.0045413626, 0.011307715, -0.020024907, -0.002544832, -0.004159936, 0.0076007238, 0.02032687, -0.0012704293, 0.010242899, -0.0087569235, 0.019961337, 0.037665896, 0.01021906, 0.0065279608, 0.00596774, -0.0050101997, -0.016576173, 0.0072073773, 0.011728874, -0.0055227424, -0.009178082, -0.0010260778, -0.022059184, 0.024633814, 0.019373303, -0.019420981, 0.0025925103, -0.013747257, -0.009543616, 0.0028885133, -0.0037506968, -0.0014780288, -0.013771097, 0.0019279933, -0.008049695, -0.014565736, -0.008987369, 0.015471624, -0.0070484495, -0.0077159465, -0.0026540947, -0.006992825, -0.0073226, -0.008454961, 0.016107336, -0.012698334, 0.013334045, 0.006456443, 0.0027077328, 0.0030017495, 0.0050578783, -0.0028865268, -0.0053280555, -0.0071596988, -0.021614185, 0.0029421516, 0.018944198, -0.00018140122, 0.012849315, 0.01867402, 0.0013330072, -0.017593311, -0.004505604, -0.010060132, -0.0072153234, -0.0062180515, 0.024395423, -0.002109767, -0.0027395184, 0.02129633, 0.009098618, -0.02820969, 0.004863192, -0.025539704, 0.018372057, -0.016814565, 0.020009015, -0.0016160974, 0.011283876, 0.0002659558, -0.0021117537, 0.0005860464, 0.00064216775, 0.018229023, 0.009011208, 0.008780763, 0.0156067135, 0.022917394, 0.0151537685, 0.042147662, 0.0004147023, 0.012865208, -0.013349938, -0.005339975, 0.011887802, 0.02050169, 0.012038783, 0.0038222144, 0.0067425133, -0.012571191, 0.02341007, 0.008454961, -0.011037538, -0.015694123, 0.0016627825, 0.026525056, -0.0022647216, -0.020422226, -0.009567455, 0.015439839, -0.009257547, -0.035091266, 0.0025269527, 0.0026978, 0.0013409536, 0.0007737799, 0.029099686, -0.0025845638, -0.00067544327, 0.0008522505, -0.0068895216, 0.023886854, 0.0035460773, -0.00028035862, -0.011554053, -0.004104311, -0.024633814, 0.0011909654, 0.010282631, 0.0011720927, -0.036807686, -0.0046327463, 0.0057531875, 0.015376268, -0.008931744, -0.018197237, 0.009631027, -0.011021645, 0.004104311, -0.009321118, -0.019850086, 0.015741803, 0.0013101613, -0.021773113, 0.002322333, 0.026811125, -0.000113484406, 0.0063134083, -0.01792706, 0.000896949, 0.0017422463, 0.003917571, -0.00006260887, 0.028972544, 0.025746308, -0.025190061, 0.021502936, -0.012928779, 0.010187274, 0.000072572904, -0.019500446, 0.011283876, 0.033374846, -0.0053280555, 0.010608433, -0.010457451, 0.018244915, -0.00471221, 0.0010027353, -0.011800392, 0.022202218, 0.0013677727, -0.005701536, -0.012483781, 0.029512899, -0.012396371, -0.020295084, -0.018944198, -0.0042076143, 0.010401826, -0.009368796, -0.011633517, -0.020374548, 0.0050817174, -0.00017866965, 0.01656028, -0.015002787, -0.026159521, 0.0043705152, -0.008168891, 0.021630079, -0.0043506497, -0.0065796124, -0.016766887, -0.0013727392, 0.0057492144, 0.0060352846, -0.0017025144, 0.006321355, 0.0027156794, -0.015225287, -0.00839139, -0.0003985612, -0.0022885608, 0.00298387, -0.010584594, 0.0046963175, 0.003438801, -0.026254877, 0.0117527135, -0.008597996, 0.0017819783, -0.018928304, 0.011951373, 0.0008239415, 0.011927534, -0.01213414, 0.0117686065, 0.012388425, -0.010163435, 0.021709543, -0.0067107277, 0.00009858492, 0.0037228845, -0.008677459, -0.0035639566, -0.015400107, -0.0031765702, -0.00003814889, 0.00024522067, -0.011546107, -0.03779304, -0.004100338, 0.006289569, 0.0026719742, -0.0031785567, -0.0079106325, -0.00058455643, 0.016941708, 0.05003048, 0.02085133, 0.012285122, 0.019452767, 0.0012237444, -0.02917915, -0.0071398327, -0.017847596, -0.008359604, 0.012062622, -0.0036275277, -0.02404578, 0.0054114927, -0.009742276, -0.021852577, 0.010719682, -0.0025130464, 0.005351895, 0.024522565, 0.009090672, -0.009925043, 0.015487517, -0.02649327, 0.010711736, 0.017466169, -0.0011293809, -0.003542104, -0.0014661093, 0.016687423, -0.015805373, -0.00762059, 0.00008163676, -0.003226235, -0.009368796, 0.041066952, 0.014804128, -0.012936725, 0.007044476, -0.006674969, -0.012809583, -0.03312056, -0.0043705152, -0.00953567, -0.014502165, -0.002914339, -0.015431893, 0.024745064, -0.022965072, -0.041925162, 0.00529627, 0.0020243432, -0.005423412, 0.016655637, -0.01224539, -0.0076801875, 0.0032520609, -0.011585839, 0.025571488, 0.0027037598, 0.009845579, -0.01416047, 0.0069689853, -0.003023602, -0.007199431, 0.0057293484, 0.00942442, 0.000056897406, -0.01501868, -0.006102829, -0.0046565854, -0.023712033, -0.015964301, -0.025094705, -0.0096389735, -0.0037328175, -0.0037169247, 0.017323134, -0.0035579968, -0.013707526, -0.0005915095, -0.0067623793, 0.007402064, 0.00042115877, -0.009861472, 0.009082725, -0.0123328, -0.008804602, -0.021820791, 0.0004646156, 0.015535195, -0.0011174614, 0.00779541, -0.017052956, 0.016512603, 0.021487042, -0.0011532201, 0.001079716, 0.0045572557, -0.006496175, 0.008605942, -0.010044239, 0.025889345, 0.012308961, -0.0060591237, 0.0069371997, -0.024172923, 0.013643955, 0.007199431, -0.020040799, -0.005538635, -0.00018450528, 0.014168416, 0.0063014887, 0.007982151, -0.0028746072, -0.005987606, 0.016035818, 0.01638546, 0.030625394, 0.009654866, -0.010576648, 0.007525233, -0.018832948, 0.0002349152, 0.0020422228, -0.0063014887, -0.014216094, -0.010552808, 0.015257072, 0.012173872, -0.016067604, -0.004366542, 0.0064643896, -0.015805373, -0.015272965, -0.03181735, -0.009011208, -0.0027514382, 0.020247405, 0.032341816, -0.0044062743, 0.029830754, -0.010211113, 0.0038599598, -0.0032719267, -0.008152998, -0.010377987, -0.0044340864, 0.03842875, 0.016139122, 0.0012515567, 0.015495463, -0.0063332743, 0.000993299, -0.0068259505, 0.007179565, -0.01407306, -0.009766116, 0.0121818185, -0.0046963175, 0.012006998, 0.014263773, -0.008677459, 0.014081006, 0.0032977525, 0.009162189, -0.0107912, -0.0022031371, 0.003701032, -0.013143332, -0.0063014887, 0.001960772, -0.0045969877, 0.010362094, 0.027160767, 0.0035738896, 0.008117239, 0.0018743551, 0.013659847, -0.017609203, 0.013922079, 0.007020637, -0.014438594, 0.010735575, -0.032611992, -0.003438801, -0.0008060621, -0.038015537, -0.008176837, 0.008645674, -0.0092496, -0.014311451, 0.012722173, -0.01147459, -0.004573148, 0.01975473, -0.009011208, 0.007870901, 0.0011482536, 0.004732076, 0.024443101, -0.015058412, -0.033851627, 0.0066908617
2668
+ -0.05341359, -0.0145786945, -0.021789998, -0.01755999, 0.0067781564, 0.007546894, 0.013782642, 0.02328845, -0.015242072, 0.02008863, 0.014063601, -0.008694147, -0.0023862077, -0.008249293, -0.007636645, 0.025333213, -0.0398963, -0.0066181654, -0.03440197, -0.047669522, -0.015468401, -0.026004395, -0.07123893, 0.0003821737, 0.020010585, 0.0036622335, 0.008725364, -0.004542184, -0.01128522, 0.0114335045, 0.005904059, -0.015608881, -0.021774389, -0.012135904, 0.012807086, -0.012323211, -0.0023491364, -0.0016877102, -0.021680735, 0.019136487, 0.000767274, -0.005248486, 0.026925318, 0.017450728, -0.0008219051, -0.024365462, -0.006138192, -0.035057545, -0.014508454, -0.02314797, 0.038397845, 0.01325194, 0.035369724, 0.025301995, -0.00885804, 0.016779546, 0.022695312, -0.009622875, 0.0030164162, -0.014648934, -0.0025930253, -0.0072932495, 0.014797219, -0.011363265, 0.02634779, -0.00899852, -0.012978784, 0.010161381, 0.023725498, 0.049605023, 0.009334111, -0.024474725, 0.010504777, 0.030250011, 0.002516932, 0.017794123, 0.03349666, -0.01562449, -0.02079103, 0.00982579, -0.006770352, 0.008054182, -0.002308163, -0.029610047, -0.001098475, -0.012034447, 0.041457187, -0.049074322, 0.045796454, 0.01003651, -0.0040544067, 0.023959631, -0.020712985, 0.0036115048, -0.011441309, 0.017310249, 0.01198762, 0.021805607, -0.023616236, 0.041738145, -0.008975106, 0.022351917, -0.010184795, -0.039053418, 0.0009784817, -0.017044898, 0.029812962, 0.019276967, -0.003459318, 0.019542318, 0.0051548327, -0.01574936, -0.013064633, 0.025286386, -0.000033656648, 0.04642081, -0.0033383493, -0.012588562, -0.005459206, 0.0044797487, 0.018793091, 0.00801516, -0.022086566, 0.0013228526, -0.009279479, 0.004409509, -0.016014712, -0.01311146, 0.029984659, 0.06543243, -0.013134873, 0.03683696, 0.030827539, 0.03917829, 0.059313744, 0.025863916, 0.011293025, -0.0057011438, 0.0016233235, 0.04389217, -0.00871756, 0.013969948, -0.028080376, -0.013556313, -0.03138946, 0.01527329, 0.013720206, 0.044110697, -0.02733115, 0.020322762, -0.021259295, -0.024505943, 0.01854335, -0.006067952, 0.015772773, -0.017638035, -0.008639515, 0.009935052, -0.02775259, 0.04514088, -0.0050221574, -0.008186858, 0.047981698, 0.030047094, -0.0043743886, -0.020260327, 0.010231622, -0.018153127, -0.07011509, 0.02538004, -0.01464113, 0.017731689, 0.012120295, -0.019479882, -0.033527873, 0.017747298, -0.025895134, -0.016233236, -0.0039666067, -0.04532819, -0.022180218, -0.03140507, 0.00039631923, 0.0041987887, -0.0011531061, 0.064433455, 0.06949074, 0.034620497, 0.028845211, -0.027846243, 0.017497554, -0.01713855, -0.005654317, -0.010629647, 0.011698856, -0.011386679, -0.017778514, -0.037804708, -0.002198901, 0.012814891, -0.031966988, -0.030577797, 0.004202691, -0.00074678735, 0.0061264858, 0.05381942, -0.0057128505, -0.012159318, 0.010676474, -0.0216183, 0.05797138, 0.03624382, 0.009373133, 0.014531868, -0.010067728, -0.036306255, -0.01137107, -0.014321147, -0.03596286, -0.005794797, 0.048293877, -0.0026164385, 0.000086824395, -0.044672616, 0.0043002465, -0.0012028593, -0.008069791, 0.010816954, 0.025426866, 0.036087733, -0.01938623, 0.05603588, 0.029610047, 0.00088385283, 0.0027783806, 0.013033415, 0.043174163, -0.038272973, -0.042424936, 0.046764206, -0.025192734, 0.0060484414, -0.046233505, -0.038023233, 0.0275965, -0.018324826, 0.04304929, 0.008709756, 0.01407921, -0.0134080285, 0.01771608, 0.052196097, 0.036618434, 0.023928413, -0.024989817, 0.038553935, 0.022149002, 0.0005189953, 0.028376944, 0.01701368, -0.005388966, 0.016561022, -0.03496389, 0.032435253, -0.005104104, -0.0010692083, 0.0140011655, -0.036899395, 0.007464947, 0.0055801747, 0.037117917, 0.007972236, 0.043548778, 0.016920026, 0.02105638, 0.034682933, 0.014945503, 0.040208478, 0.035244852, -0.03636869, 0.020416416, -0.000019404399, 0.07073945, 0.05463108, 0.007621036, -0.016123973, 0.015827404, -0.03805445, -0.011714465, -0.008795604, -0.04770074, 0.02386598, 0.0015374747, 0.026004395, 0.029485175, 0.039958734, 0.0032739628, -0.0078083426, -0.01826239, 0.011175958, 0.03160798, -0.03280987, 0.008257098, -0.02578587, 0.022367526, 0.0451721, 0.033278134, 0.024193766, -0.025676608, -0.0027022874, 0.06193604, -0.01938623, -0.017419511, 0.01755999, 0.0077146892, 0.01882431, -0.013915317, -0.018512132, -0.034776587, -0.00030266595, -0.055005696, -0.02801794, -0.08022965, 0.022523614, 0.044173133, 0.013634357, 0.0021071988, -0.008740973, 0.045109663, -0.01643615, -0.009903834, -0.04142597, 0.0023979142, 0.010184795, 0.0052718995, -0.07617134, -0.02147782, 0.032154296, 0.0351512, 0.021306122, -0.005775286, -0.022289481, 0.013478268, -0.026441444, 0.016514195, -0.062560394, -0.008389773, 0.02175878, 0.005654317, 0.035494596, 0.0009970173, -0.030577797, 0.0031998204, -0.0075703072, -0.011012065, 0.016092755, 0.048887014, -0.0030729983, -0.021774389, 0.02815842, 0.059032787, -0.00071947183, 0.057253372, 0.01784095, -0.015554249, -0.016233236, -0.009724333, -0.038585152, 0.000620453, -0.012627584, 0.0029208118, 0.009872617, -0.016217627, 0.00015779602, -0.0055918815, 0.03440197, -0.02353819, 0.03162359, -0.0067352317, 0.023819152, -0.011386679, 0.010606234, -0.0148674585, 0.039240725, 0.017216595, -0.0063411077, 0.019183313, -0.047170036, 0.02719067, 0.011488136, -0.013314375, -0.0049011884, -0.042924423, -0.04139475, 0.018324826, 0.00920924, 0.023912804, -0.04738856, 0.026722403, 0.003634918, -0.0122529715, -0.020322762, 0.0007609329, 0.0076873736, -0.008538058, -0.025301995, -0.026441444, -0.015031352, 0.005174344, -0.035525814, -0.009833595, -0.036087733, 0.010754518, 0.029812962, -0.0026144874, 0.000401197, 0.0044017043, 0.058065034, -0.0142587125, -0.019495491, 0.053476024, 0.03580677, 0.006551828, 0.021368558, -0.024896163, 0.0013891903, 0.009295088, 0.0005619197, -0.018652612, -0.042393718, 0.01596008, -0.0100052925, -0.024037676, -0.0055762725, 0.027440412, 0.0050221574, 0.037586182, -0.001905259, -0.012783673, 0.03471415, -0.020869073, -0.039084636, 0.0022652387, -0.013665575, -0.05534909, 0.018043866, -0.028236466, -0.029329086, 0.01840287, -0.054037943, -0.011597398, -0.024209373, -0.045390625, -0.000616063, -0.009326306, -0.044391654, 0.011815922, 0.025988786, 0.00082092953, -0.03596286, -0.010754518, 0.013634357, 0.03246647, -0.0054904236, 0.032716215, -0.009224849, -0.017060507, -0.015070374, 0.015999103, -0.0030359272, -0.011456918, -0.0290013, 0.03053097, 0.02077542, -0.032747433, 0.029235434, 0.018746266, -0.043548778, 0.008444404, -0.014633326, 0.0057167523, -0.016373716, 0.009295088, -0.022929445, 0.021290513, 0.009466786, 0.042705897, 0.0019608657, 0.036961827, -0.0018320923, 0.0058611347, -0.02369428, 0.0076873736, -0.009014129, 0.0012467593, -0.030640233, -0.0657446, -0.0140167745, 0.0072776405, 0.028938865, -0.023132361, -0.0029832474, -0.05478717, 0.034370754, -0.029032517, 0.009622875, -0.04407948, 0.04770074, 0.020229109, -0.0042143976, 0.014063601, -0.003670038, 0.021430993, 0.0061420943, 0.021540254, -0.0042846375, 0.007304956, -0.0034241981, -0.009942857, -0.0061655077, 0.008701951, 0.0088502355, 0.0069732675, 0.015374747, -0.006934245, 0.011058892, 0.0014213837, 0.0063840323, -0.016607849, -0.021914868, -0.019027226, 0.00920924, -0.023304058, 0.004979233, -0.030218793, -0.009084368, 0.011355461, 0.0054357927, 0.000425342, 0.0088346265, -0.022383135, 0.030047094, -0.0140011655, 0.014773806, 0.014196277, 0.004468042, 0.0069693653, -0.024771294, -0.011800313, -0.007976138, -0.009583852, 0.026644358, 0.043267816, 0.03305961, 0.019823277, -0.0069537563, -0.01184714, -0.0012682215, -0.017544381, -0.021040771, 0.013501681, -0.0050767884, 0.03231038, -0.024443507, -0.01478161, -0.006805472, 0.025832698, -0.0026691186, -0.044828705, 0.000056551704, -0.004647544, -0.011308634, 0.008467818, 0.015437183, -0.0023979142, -0.0046241307, 0.003759789, -0.0328723, -0.014648934, -0.012401256, 0.013977752, 0.018059475, 0.008967302, 0.017325858, 0.026753621, 0.039584123, -0.013236331, 0.00009694578, -0.019339403, 0.009357524, -0.010926216, -0.003599798, 0.0151250055, 0.008147836, 0.000057222398, 0.015210854, -0.011136936, 0.00961507, -0.015835209, -0.020697376, 0.0249586, 0.0011579838, 0.037679836, -0.0009106806, -0.02413133, 0.0065752408, 0.020572504, -0.03149872, 0.026519489, 0.0008540984, -0.021680735, 0.009591657, 0.0437673, -0.0024232788, -0.018215563, -0.020010585, -0.0077732224, 0.002799843, -0.0025657096, 0.015530836, -0.029344695, -0.021992913, 0.02202413, -0.00975555, 0.015421574, 0.006224041, -0.016280062, -0.016514195, 0.0137124015, 0.02886082, 0.006095268, 0.032934736, -0.014422606, -0.020650549, -0.014422606, 0.019682799, -0.024896163, 0.06711818, -0.016561022, -0.020291544, -0.033090826, 0.0026574119, 0.013384615, 0.06536999, 0.00064093963, 0.009162413, 0.029703699, 0.00961507, 0.025551738, -0.017731689, -0.026894102, -0.017325858, 0.029610047, 0.04214398, 0.0031978693, -0.0013082193, 0.03945925, -0.00652061, -0.028095985, 0.03067145, -0.03418345, 0.0077185915, 0.02564539, 0.013634357, -0.018996008, -0.025551738, 0.010575017, 0.0017374635, -0.0148518495, 0.025130298, -0.0052562905, -0.001949159, -0.0012848059, 0.010473559, 0.016904417, -0.0052406816, 0.006719623, 0.011246199, 0.011378874, 0.023241622, -0.010239426, 0.01701368, -0.020978335, -0.014040188, 0.009903834, -0.0077459067, -0.02703458, -0.00008359287, 0.0015725947, 0.005794797, -0.03583799, 0.009014129, -0.009732137, 0.04492236, 0.037180353, 0.013704597, -0.020104239, -0.051322, 0.0337464, -0.03755497, -0.0066571874, -0.021368558, -0.027705763, -0.012729042, 0.0037500334, 0.058783043, 0.013915317, -0.015569858, -0.047170036, -0.019448666, 0.033683963, 0.036337472, -0.016280062, 0.017372685, 0.00564261, -0.012674411, 0.02441229, 0.03917829, -0.021633908, 0.05463108, 0.00219695, 0.007371294, 0.0032407937, -0.03808567, -0.012853913, -0.0034495625, 0.016202018, -0.018793091, 0.029453957, -0.017169768, 0.0024759586, -0.00891267, -0.015999103, -0.009380938, -0.003207625, -0.013915317, 0.015296703, 0.0025618074, -0.014703565, 0.003069096, 0.037305225, -0.01158179, -0.012721238, -0.0036641846, 0.0037988112, -0.04529697, -0.0021910965, 0.023132361, -0.013064633, -0.021430993, 0.011815922, -0.024615204, -0.0011823727, -0.01965158, 0.0056972415, 0.024505943, -0.0018750167, 0.0035334604, -0.015882036, 0.01471137, 0.01632689, 0.01093402, -0.020759812, 0.030640233, 0.013688988, 0.013002197, 0.0036661357, -0.013735815, -0.0044485307, -0.0020662255, 0.030640233, -0.005068984, 0.055723704, 0.021352949, -0.029734917, 0.022617267, -0.008030769, -0.026238529, -0.02299188, -0.020681767, -0.005907961, 0.016888808, -0.017606817, 0.007094236, -0.011121327, -0.0018730656, 0.010637452, -0.0026320475, 0.030593406, -0.013985557, 0.019838886, 0.0039236825, 0.010465754, 0.028142812, 0.0071917917, -0.013829468, -0.00638013, -0.020884681, 0.0005682608, -0.024974208, 0.03209186, 0.0034437093, -0.018793091, -0.00044119477, 0.037586182, -0.038397845, 0.017653644, -0.055754922, -0.0012194437, 0.03458928, 0.021696344, 0.0041363533, -0.019901322, 0.022492398, 0.0024544965, -0.02678484, 0.029594438, 0.020182282, 0.0032154294, 0.0012301749, 0.034495626, -0.01632689, 0.02007302, 0.018387262, 0.001878919, 0.010894999, 0.048855796, 0.02133734, -0.000008269353, -0.009240457, -0.020416416, 0.005685535, -0.031561155, -0.024053285, -0.012494909, 0.024287418, -0.029360304, -0.012065665, 0.023741107, -0.01386849, -0.06234187, -0.017169768, 0.007074725, -0.006348912, -0.00094823947, 0.01596008, -0.022351917, 0.02105638, 0.03305961, 0.007414218, -0.008428795, 0.018465305, 0.001488697, 0.008327338, -0.0437673, 0.030406099, 0.04295564, -0.031826507, 0.013751424, -0.0023101142, 0.036212604, -0.012619779, 0.019635972, -0.00071459403, -0.004663153, -0.020588113, 0.01311146, 0.004327562, -0.00016974658, 0.027612109, -0.028829603, 0.0013599237, 0.010894999, 0.018434089, 0.024911772, -0.000806784, -0.018465305, -0.0015130858, -0.00801516, 0.011597398, 0.01852774, 0.027861852, 0.005088495, 0.016514195, 0.0005726508, 0.022695312, -0.016670285, 0.0063254987, 0.00961507, -0.015679121, 0.008007356, 0.014648934, -0.020759812, -0.04585889, -0.00606405, -0.007621036, -0.0041402555, 0.026800448, -0.019963758, -0.037742272, -0.011698856, -0.012440278, -0.01093402, -0.035619464, 0.018793091, 0.010848172, 0.012096883, 0.015593272, 0.018246781, -0.0019306234, -0.024505943, 0.003634918, -0.027268713, -0.008982911, 0.0011940794, -0.020869073, -0.00090385176, 0.022164611, 0.0235538, -0.0151406145, -0.008452209, 0.0390222, 0.045109663, -0.021040771, -0.016607849, 0.021352949, -0.0016447857, 0.016014712, 0.017887777, -0.0052250726, 0.005041668, 0.013540704, 0.041176226, 0.0045460863, 0.023397712, -0.005248486, -0.006469881, 0.02105638, -0.010122359, -0.022710921, -0.036743306, -0.0068327873, -0.018980399, -0.0033051805, -0.019417448, 0.0043002465, 0.005907961, 0.009334111, -0.017497554, 0.0418318, -0.0005970397, -0.024224982, -0.010301861, -0.008350751, -0.035494596, -0.0011706661, -0.008499036, -0.012666606, -0.02914178, 0.0038534424, 0.019994976, 0.010013097, 0.0028993494, -0.01798143, 0.044797488, -0.009178022, -0.01421969, -0.025723435, 0.015999103, 0.031701636, -0.017700471, 0.01632689, 0.001870139, 0.017794123, 0.056285623, -0.026191702, -0.020244718, 0.022710921, -0.0021852432, 0.0007677618, 0.027627718, -0.010762323, 0.005424086, 0.013298766, 0.012034447, 0.0017423413, -0.0009497028, 0.016217627, -0.018137518, 0.039240725, -0.018059475, -0.021509036, 0.004998744, -0.0014740636, 0.022008521, 0.029048126, 0.013985557, 0.026457053, -0.0058260146, -0.021727562, -0.030140748, -0.026441444, -0.026659967, 0.024271809, 0.0122685805, 0.031436287, -0.00043241476, 0.0070435074, -0.05197757, 0.03458928, 0.003687598, 0.029656872, 0.0058260146, -0.019448666, -0.005525544, 0.026987754, -0.0054006726, 0.00620453, 0.022710921, -0.0028271584, 0.009435568, -0.010208208, 0.014539672, -0.015320117, 0.0013882148, 0.015078179, 0.0119954245, 0.021649517, 0.026519489, 0.005868939, -0.025473693, 0.017325858, 0.0050221574, 0.0014038237, 0.01414945, -0.01254954, 0.0054201838, -0.07242521, -0.014758197, 0.009583852, 0.008303924, 0.025208343, -0.016202018, 0.02483373, 0.0035412647, -0.019136487, -0.019433057, 0.020166673, -0.008054182, 0.027346758, 0.0024720565, 0.026878493, 0.005673828, -0.04058309, -0.022149002, -0.011051088, -0.01351729, -0.005053375, 0.01896479, 0.027971113, -0.014492845, -0.031998206, 0.004659251, 0.0048894817, 0.021555863, 0.0012360283, -0.0014418704, -0.0033363982, 0.020244718, 0.004116842, 0.023756716, 0.012666606, -0.0054006726, 0.007652254, -0.0010087239, -0.005482619, -0.037149135, 0.0041246465, 0.01826239, 0.0048855795, -0.037711054, -0.01269002, -0.01840287, 0.0242562, -0.02703458, -0.021103207, -0.0048270463, 0.0065167076, -0.0060874633, 0.00400758, -0.019355012, 0.036087733, -0.011175958, -0.00662597, -0.010731106, -0.025177125, -0.01024723, 0.058377214, -0.036961827, 0.030031485, -0.010372101, -0.028127203, -0.031358242, -0.0053577484, 0.008186858, 0.015577663, 0.0077771246, -0.028095985, 0.026706794, -0.0058065034, -0.019042835, -0.0027042385, -0.0013384615, 0.008218075, 0.00623965, 0.0035354113, -0.038366627, -0.023241622, 0.02509908, 0.009256066, -0.0038066157, 0.019698408, -0.004167571, 0.0058416235, -0.031124108, -0.045421842, 0.017934604, 0.0005980152, -0.008483427, 0.004967526, 0.008655124, 0.0059430813, 0.019433057, -0.022554832, -0.008733168, -0.0061069746, -0.007652254, 0.00014584548, -0.009864813, 0.0020135455, -0.003882709, -0.0013004149, 0.011964207, 0.0041207443, 0.0020935412, -0.0024915675, -0.004179278, 0.03010953, -0.0066220677, 0.007835658, 0.009646288, 0.0035783357, 0.0049714283, 0.021524645, 0.024911772, 0.004881677, 0.009037542, 0.0045655975, 0.01673272, -0.002216461, -0.048762143, 0.00040217256, -0.005814308, -0.004062211, -0.0031490917, -0.01852774, 0.0035061447, 0.0061772144, 0.009060955, 0.026535098, 0.029219825, 0.027674545, -0.016935635, -0.012050056, -0.00961507, -0.010832563, -0.0031393361, 0.018090693, 0.040801615, -0.027097017, -0.0056270016, 0.012494909, -0.011534963, -0.018871136, 0.0019852545, -0.00094287394, 0.00017462435, -0.0036173582, 0.006505001, 0.007410316, 0.012471495, 0.0055957837, 0.0065830452, 0.021509036, 0.03543216, 0.034651715, -0.008897061, 0.004483651, -0.022102175, -0.007960529, -0.011386679, 0.0036915003, -0.021306122, 0.024599595, -0.027705763, 0.017341467, 0.013696793, -0.016264454, 0.00006420371, -0.012705629, 0.0209159, -0.0076834713, -0.00975555, 0.016202018, 0.007051312, 0.022710921, -0.0047099795, -0.011105718, 0.0075859157, -0.0002931543, -0.017856559, -0.012596367, -0.0015764969, 0.019854495, 0.028829603, -0.0033285937, 0.017638035, 0.01527329, -0.00414806, -0.005143126, -0.03499511, -0.022336308, -0.0077185915, 0.029719308, 0.0057674814, -0.023444539, 0.0055177393, 0.017481945, -0.0003097387, -0.016654676, -0.0094433725, -0.034495626, 0.04098892, -0.015616685, 0.03318448, -0.013649966, -0.015249876, 0.015640099, 0.006290379, 0.0122685805, 0.008381968, 0.045921326, 0.0018925768, 0.0075429915, 0.0043002465, 0.008920475, 0.0050806906, 0.01123059, 0.0060601477, -0.01101987, -0.026332181, -0.018621394, 0.0069420496, -0.003968558, -0.0028388652, 0.01966719, -0.0050455704, 0.010114554, 0.016092755, -0.009107782, 0.0000309129, -0.00449926, 0.0036602826, 0.01798143, 0.017513163, -0.010957434, 0.0145786945, -0.007078627, -0.016061539, -0.015577663, 0.034526844, 0.012588562, -0.0041987887, -0.021430993, -0.00926387, -0.005529446, 0.05772164, -0.031561155, 0.017778514, 0.009318502, -0.009388742, 0.022320699, 0.014648934, -0.015882036, -0.015936667, 0.008428795, -0.015686926, 0.010379906, 0.02061933, -0.012674411, -0.0031627493, 0.0036271135, 0.0021169544, -0.0068132766, 0.0047411975, 0.015195245, -0.013610944, -0.00024608374, -0.014352365, 0.0023471855, 0.00871756, 0.01548401, -0.016779546, -0.0024018164, -0.022008521, 0.003492487, 0.014321147, 0.000425342, 0.005989908, -0.025739044, 0.013049024, 0.020728594, -0.02676923, -0.003865149, -0.0015472303, -0.014664543, 0.020463243, -0.037679836, 0.017263422, -0.011175958, -0.0007282518, 0.0061225835, -0.010083336, -0.02147782, -0.025192734, -0.009544831, -0.00871756, 0.028127203, 0.01478161, -0.013977752, 0.016654676, -0.016779546, -0.00023974264, 0.020837855, 0.0049480153, -0.005939179, -0.017216595, 0.0045460863, 0.040614307, -0.015351334, -0.029172998, 0.0023413321, 0.015015743, 0.01443041, -0.02063494, -0.013571922, 0.005377259, -0.008951693, 0.0188087, 0.01910527, 0.00009353134, -0.037835926, -0.030718276, -0.010130163, 0.021446602, -0.009833595, -0.007316663, -0.009240457, -0.0122685805, 0.03126459, 0.001970621, 0.013298766, 0.023803543, 0.002075981, 0.031327024, -0.022242654, 0.007141063, -0.019682799, 0.0054865214, 0.00652061, -0.009060955, -0.020541286, 0.003014465, 0.0158196, 0.0013121215, -0.013314375, -0.010192599, 0.00926387, -0.01471137, -0.030093921, -0.013127068, -0.008538058, 0.026862884, -0.0000015014401, -0.0094433725, 0.012167122, -0.03209186, 0.0117066605, 0.0036037003, 0.011378874, -0.0049714283, -0.045390625, -0.0048426553, 0.032528907, 0.011058892, -0.010793541, -0.0122685805, -0.008530254, -0.011823727, -0.0071293563, -0.021150034, -0.005654317, -0.01553864, 0.022757748, -0.0066181654, 0.002395963, 0.0017345368, 0.0249586, -0.015788382, 0.026316572, -0.03755497, 0.015523031, -0.0091389995, -0.003049585, 0.01713855, -0.0074259248, 0.0045968154, -0.01784095, 0.008553666, -0.019729625, 0.024474725, 0.030874366, -0.009724333, 0.013369006, 0.0048465575, -0.004647544, -0.0047411975, -0.0027510652, 0.014399192, -0.019417448, 0.020463243, 0.033933707, -0.0026105852, 0.028423771, 0.021821216, -0.009817986, -0.027534066, -0.022227045, 0.018309217, -0.023491366, -0.0042143976, -0.0001269441, 0.020666158, -0.016186409, -0.023101144, 0.009482395, -0.008655124, 0.02578587, -0.0042885398, -0.0013238281, 0.00043924365, -0.034121014, -0.0142587125, -0.02957883, 0.025817089, -0.0043704864, 0.02775259, -0.014734783, -0.019167705, 0.013447051, 0.004514869, 0.006965463, -0.028236466, 0.0030047095, -0.028470598, -0.0012857815, -0.014141645, 0.0053577484, -0.02397524, 0.0018896501, -0.034370754, -0.015640099, 0.007987845, -0.0035861402, -0.0351512, -0.00053899415, 0.0023705987, 0.020416416, -0.019963758, 0.0016847835, -0.00564261, -0.000092372866, -0.017700471, 0.021946086, 0.0047958284, 0.015249876, 0.025270777, -0.0042300066, -0.020119848, -0.016982462, 0.013478268, 0.019370621, -0.024271809, -0.008311729, -0.03530729, -0.036743306, 0.027440412, 0.0028954474, 0.010239426, 0.030702667, -0.01596008, -0.0033051805, 0.00871756, -0.015640099, -0.0013706548, -0.005377259, -0.024053285, 0.022835793, 0.0021579277, -0.016342498, 0.013735815, 0.0075078714, -0.02661314, 0.015281094, -0.0061459965, 0.020962726, -0.01685759, -0.004877775, -0.012401256, -0.0011960304, -0.010715497, -0.010192599, -0.0027374073, 0.002946176, 0.0036583315, -0.0030671451, 0.024084503, -0.02107199, -0.031826507, -0.019979367, -0.0034690737, 0.0039822157, 0.016607849, 0.004397802, 0.0117222695, -0.01436017, 0.014352365, 0.017965822, -0.0015189392, 0.0070083872, 0.015405965, 0.0079839425, -0.008733168, -0.0050923973, -0.02300749, 0.015780577, 0.014742588, -0.011207176, -0.005744068, -0.0077146892, 0.0047607087, 0.015843013, -0.0034690737, -0.0037422292, -0.025270777, 0.0033168872, 0.03262256, 0.016576631, 0.012104686, 0.011074501, -0.005974299, 0.036743306, -0.0027159452, -0.010333079, -0.009084368, 0.011488136, 0.016342498, -0.021165641, 0.01311146, -0.011456918, -0.0024525453, 0.02063494, 0.04757587, -0.003065194, -0.0055060326, 0.0041753757, 0.013345593, 0.012978784, 0.003974411, -0.02817403, 0.0041948864, 0.015921058, -0.0063411077, -0.0018994056, -0.0014389437, 0.002089639, -0.0022067055, 0.016935635, -0.0005575297, -0.0010906705, 0.024193766, 0.0066376766, -0.011503745, -0.01729464, -0.0027959407, -0.018465305, 0.011207176, 0.003970509, -0.0004272931, -0.020010585, 0.02703458, 0.01852774, -0.0032915226, -0.012526127, -0.014555281, 0.017372685, 0.004912895, -0.0075976225, -0.012432474, -0.003794909, 0.0077068848, -0.0028271584, 0.01938623, -0.012034447, 0.014828436, 0.00091897283, 0.00602893, -0.007074725, -0.002749114, 0.00047216864, 0.011839336, -0.010426732, -0.0047060773, 0.0053811613, -0.003244696, 0.0033637139, 0.004834851, -0.004468042, 0.017809732, -0.004951917, 0.00045899863, -0.0029422739, 0.0094277635, 0.0056972415, 0.0048114373, 0.016514195, 0.0053148237, -0.0020428123, -0.015444987, 0.015117201, 0.022195827, 0.015983494, -0.000060545382, -0.021649517, 0.012221754, -0.007328369, -0.015686926, 0.021352949, 0.0016974658, -0.0009462884, 0.013649966, -0.011956402, 0.004483651, -0.009763354, 0.008116618, -0.02413133, 0.009490199, -0.016639067, -0.0074844584, -0.0072191074, 0.0033988338, 0.0052406816, -0.015725948, -0.024880556, 0.008319533, -0.025723435, 0.019807668, -0.00004972282, -0.0068132766, -0.016264454, -0.0019959856, 0.0069966805, 0.009552635, 0.017076116, -0.0013511437, -0.010496972, 0.013033415, -0.00069508294, 0.018839918, -0.013220722, -0.0161708, -0.0074337292, 0.0019657435, -0.016295671, 0.022086566, -0.008397577, 0.007125454, -0.0075390893, 0.020229109, 0.013837272, 0.0040427, -0.016248845, -0.005548957, -0.012081274, -0.00641525, -0.024537161, 0.024864947, -0.0043158554, 0.0122997975, -0.009607266, -0.0033539583, 0.010059924, 0.009248261, 0.019604754, 0.005950886, -0.008584884, 0.022976272, -0.0004446092, -0.0020876878, 0.0028135008, 0.0027959407, -0.0015667414, -0.010770127, 0.02385037, -0.009521417, -0.0016018613, 0.0140011655, 0.034932673, -0.0003604676, -0.012073469, -0.0018691635, -0.00044412143, 0.023819152, -0.012611975, -0.012393451, -0.006067952, 0.018293608, -0.0035919936, -0.0026379009, 0.00034754147, 0.010395515, 0.007753711, -0.002411572, 0.004752904, 0.008990715, 0.0061967256, 0.006200628, 0.004058309, 0.007933213, 0.008381968, 0.0075390893, -0.0076600583, 0.00014401632, -0.0008355629, 0.014758197, -0.018621394, 0.011175958, -0.00641525, -0.015546445, 0.018902354, 0.020057412, 0.0018535545, -0.012018838, 0.0052367793, -0.0067625474, -0.019433057, 0.008210271, -0.0051314193, -0.0134236375, -0.013969948, -0.008381968, -0.0063254987, 0.010145772, 0.010200404, 0.012455886, 0.02079103, -0.0022086566, -0.028220857, 0.011675443, -0.0015882036, 0.00083409954, -0.000020974434, -0.01590545, 0.02592635, -0.013845077, 0.00079507736, -0.004807535, -0.012385647, 0.02467764, 0.008920475, -0.012362233, 0.0007750785, -0.034464408, -0.031888943, 0.0027374073, 0.022164611, 0.004553891, -0.0047450997, 0.0108403675, -0.012096883, 0.003810518, -0.014188472, 0.019292576, -0.016966853, -0.0018759923, 0.012494909, 0.031576764, 0.0019150146, 0.016217627, 0.008561471, 0.030718276, -0.017325858, -0.0060055167, 0.026597532, 0.0055060326, -0.0076834713, -0.02174317, 0.015936667, 0.03496389, -0.0009926272, 0.01254954, -0.015936667, -0.0024310832, 0.0046826643, -0.01233882, -0.0128305, -0.0050104507, -0.009857008, 0.01311146, -0.011519354, 0.00891267, -0.000026339985, -0.0068327873, 0.016373716, 0.002058421, 0.006216237, 0.0033949316, -0.0021559766, 0.00956044, -0.0016145436, -0.0040387977, 0.007445436, -0.020478852, 0.03176407, -0.00794492, 0.021633908, 0.000102494254, 0.012401256, 0.007519578, -0.010122359, 0.010504777, -0.014844045, -0.012518322, -0.00034193203, 0.013759228, 0.002729603, -0.0052679973, 0.017918995, 0.0040114825, -0.010606234, -0.008889257, 0.010356492, 0.011261807, 0.014133842, -0.012814891, -0.0017608769, 0.0022125589, -0.0028700829, 0.014204081, 0.004222202, -0.003472976, 0.023491366, 0.01923014, 0.0042963442, -0.013064633, -0.008881453, 0.009622875, 0.01588984, -0.03359031, -0.0029305674, 0.004979233, 0.00588845, 0.0013004149, -0.027690154, 0.02186804, 0.0042261044, -0.0050962996, -0.0019628168, 0.02608244, 0.023678672, 0.0023335277, -0.007340076, 0.0006360619, 0.015967885, -0.014531868, 0.015039156, 0.0016155192, 0.008678538, -0.003137385, 0.011097914, 0.003952949, 0.007359587, 0.010653061, 0.009123391, 0.006949854, -0.010731106, -0.013361202, 0.0075234803, 0.0060913656, 0.013813859, 0.0035861402, -0.010145772, 0.022086566, 0.0000020997297, 0.010660865, 0.0013677281, -0.0033539583, 0.012182731, 0.022102175, 0.01923014, -0.005529446, -0.0069381474, -0.021040771, -0.009232652, -0.011105718, 0.012713433, 0.017700471, 0.0047568064, -0.008733168, -0.0202135, 0.0029988561, 0.0005877719, -0.0041714734, -0.0028798385, -0.00885804, 0.002448643, 0.0053850636, 0.010481363, 0.010169186, -0.01966719, -0.011425701, 0.0048465575, 0.007621036, 0.005935277, -0.0019286723, -0.0069966805, -0.008132227, 0.0004775342, 0.0032564027, -0.0075234803, -0.022710921, 0.023787934, 0.008046377, -0.01966719, 0.01938623, 0.024365462, -0.0069069294, 0.009279479, 0.0028135008, -0.010059924, 0.016139582, 0.0044602375, -0.00478022, -0.024864947, 0.005377259, -0.004690469, -0.0026671675, 0.0054748147, 0.0048894817, 0.0059860055, 0.008397577, 0.0025832697, -0.029157389, -0.010543799, -0.008897061, -0.006227943, -0.0005726508, 0.0009433617, -0.0062786723, 0.025005426, -0.0073634894, 0.009287284, 0.009053151, -0.003685647, 0.007898093, 0.0148518495, 0.020744203, -0.0051509305, 0.016264454, -0.0053616506, -0.037117917, -0.0005624075, 0.00006834982, -0.012081274, 0.003707109, -0.010473559, 0.017762907, -0.013228526, 0.0025481498, 0.0151718315, 0.02008863, -0.022070957, -0.0114335045, -0.002872034, -0.014102624, 0.028767167, -0.013384615, -0.008132227, 0.013813859, 0.014648934, 0.0069381474, -0.00048094863, -0.005158735, -0.0125573445, -0.004979233, 0.0066571874, 0.0047411975, -0.004628033, 0.007531285, -0.006333303, 0.0042300066, 0.0063879346, 0.0048894817, -0.027565284, -0.001436017, 0.017591208, 0.011051088, 0.009458981, 0.0036056514, -0.007976138, -0.0039431932, 0.0122685805, 0.009599461, -0.021118816, 0.0034515136, 0.0015921058, -0.0023979142, 0.0019637924, -0.0043158554, -0.008990715, -0.0040387977, -0.00015743019, -0.00086873176, -0.010450145, -0.00045192588, -0.015764968, 0.00039070979, 0.012752456, 0.00411294, 0.01743512, -0.002587172, 0.011901772, -0.017091725, 0.007847365, -0.012221754, -0.0026203408, 0.0175756, 0.0072815428, -0.014508454, 0.027221888, -0.0044017043, -0.006579143, -0.0025013231, -0.0052992147, -0.015257681, -0.008374165, 0.008210271, 0.0037188157, 0.012736847, -0.029313477, -0.013564117, 0.005068984, 0.011425701, 0.0060211257, 0.01685759, 0.0010087239, -0.007023996, 0.014797219, 0.0046241307, -0.026816057, -0.007180085, 0.013205113, 0.0018096545, -0.018075084, -0.003227136, -0.00920924, 0.013049024, -0.009552635, -0.001019455, -0.008584884, -0.00007847121, 0.008865844, -0.01868383, 0.0074376315, -0.019542318, 0.010692083, -0.019557927, 0.023382103, 0.009365329, 0.0033617627, 0.0038534424, 0.007144965, 0.0068562008, -0.021306122, 0.008467818, 0.008132227, 0.005365553, 0.0063528144, -0.012362233, 0.005353846, 0.012065665, 0.0038495401, -0.030484144, 0.013579726, 0.017731689, -0.009365329, 0.0024603498, -0.0019111123, 0.003775398, 0.004249518, 0.0071332585, 0.0102784475, -0.008358556, -0.0060874633, 0.008093204, 0.015179636, -0.00009267773, -0.0073478804, 0.011823727, 0.0073127607, -0.0012467593, 0.006114779, 0.01574936, 0.000611673, 0.008584884, -0.010887194, 0.0075742095, 0.0006633774, -0.000890194, -0.008101009, -0.007039605, 0.0023705987, 0.008475622, -0.008327338, 0.004967526, 0.002819354, 0.012003229, 0.026800448, 0.0066181654, -0.017856559, 0.008819018, 0.009256066, -0.0030300738, -0.0019998879, -0.0035529714, 0.00680157, -0.014929894, 0.0022457277, -0.010098945, -0.003917829, 0.008319533, -0.035588246, 0.0026281453, 0.0071917917, 0.0029988561, -0.02411572, -0.016467368, -0.01198762, 0.01464113, -0.00850684, 0.005439695, 0.0028681317, 0.010200404, 0.002852523, -0.0041597667, -0.023101144, 0.018277999, 0.012167122, 0.010645256, -0.001594057, -0.01031747, -0.0033363982, 0.003900269, 0.040083606, -0.0175756, -0.019355012, 0.008038574, 0.011347656, -0.020057412, -0.021727562, 0.01729464, 0.008389773, -0.008943888, 0.013509486, 0.0017677057, 0.025255168, -0.018996008, -0.023522584, -0.011917381, -0.006157703, -0.0048660687, 0.032997172, 0.005728459, -0.021961695, 0.017169768, 0.0058260146, -0.0033110338, 0.0030612918, -0.019682799, 0.0061459965, 0.02246118, 0.011456918, 0.022180218, -0.013134873, -0.006824983, 0.0068835164, 0.02857986, 0.011652029, -0.0027764295, 0.012432474, 0.009271675, 0.015593272, 0.0142743215, 0.001745268, -0.010379906, -0.013962144, -0.0009199484, 0.023085535, -0.0010418928, -0.006438663, 0.022008521, -0.00084190397, -0.012003229, -0.017450728, -0.008701951, 0.020853464, 0.0032134783, 0.015085983, -0.020978335, -0.013571922, -0.020182282, -0.0015247925, -0.011261807, -0.020010585, -0.0017228302, -0.0030788516, -0.029188607, -0.0042104954, 0.005279704, -0.0046709576, -0.004737295, -0.03724279, 0.0028310607, 0.015577663, 0.021243686, 0.0128305, -0.015967885, 0.00940435, -0.0007702007, -0.021899259, -0.01527329, 0.010543799, -0.037024263, 0.016810764, 0.011730074, 0.012541736, -0.000008719023, -0.00045070643, 0.003986118, -0.008982911, 0.008241489, -0.0025559543, -0.0020857367, 0.002216461, 0.01414945, -0.01290074, 0.013946535, 0.019370621, 0.00091897283, -0.007531285, -0.0052875085, -0.001550157, -0.012994393, 0.012135904, 0.02274214, 0.011051088, -0.01149594, 0.019152096, -0.00899852, -0.024552768, -0.023678672, 0.008631711, -0.017091725, -0.008865844, 0.003314936, 0.02186804, -0.0012331016, -0.0011443261, 0.031966988, 0.004557793, -0.009724333, 0.025442475, 0.0019754989, 0.020588113, 0.026831666, -0.0029891005, -0.0019725722, -0.0079995515, 0.020182282, 0.0056270016, 0.022695312, 0.007519578, 0.014539672, 0.00982579, -0.00055216416, 0.016888808, -0.0033949316, -0.016404934, 0.006227943, -0.0035295582, 0.0028915452, -0.0024057187, -0.0075586005, -0.011519354, -0.008943888, 0.021977304, -0.011480331, -0.002146221, -0.004409509, -0.019776452, -0.011269611, 0.011027674, 0.026816057, 0.000418757, 0.0070318007, -0.013673379, 0.008600493, -0.013938731, 0.022539223, -0.011800313, -0.012580758, -0.019994976, -0.0036758913, -0.024459116, 0.010075532, 0.007023996, 0.023475757, 0.013626553, -0.0075234803, 0.020182282, 0.01574936, -0.010785736, -0.011745683, 0.0082727065, -0.0008677562, -0.015398161, 0.015616685, 0.0012457838, -0.0037558868, 0.025301995, 0.005482619, 0.024771294, -0.0074181203, 0.009544831, -0.0039217314, 0.002023301, -0.008077595, -0.0070864316, -0.0125729535, 0.0072464226, 0.0026691186, 0.009396546, 0.01826239, -0.014609912, -0.02107199, 0.0022827988, -0.0051080063, -0.00013901659, -0.0039451444, -0.004834851, -0.0014194326, 0.018449698, 0.008374165, -0.010379906, 0.021930477, -0.0038768556, -0.0014526014, 0.012112491, 0.0042846375, 0.007921507, 0.0043158554, 0.0028993494, -0.010122359, -0.0073127607, -0.008740973, -0.0069966805, 0.022258263, -0.012370038, 0.013548508, 0.008499036, 0.0019784255, 0.019355012, 0.01450065, -0.00074678735, 0.009201435, -0.027237497, -0.021415384, 0.006294281, -0.008413186, -0.0040661134, 0.0030105629, -0.014469433, 0.0053421394, -0.011566181, 0.0063684233, -0.0028564252, -0.0114491135, -0.0077888314, 0.030062703, 0.016826373, -0.00920924, -0.001799899, 0.0070591164, 0.021368558, 0.0062123346, -0.009927248, -0.025504911, -0.012908544, 0.00057411415, 0.0069420496, -0.03037488, 0.0040505044, -0.012081274, 0.011199372, 0.00038314925, -0.018371653, -0.030905584, -0.0044914554, -0.025348822, 0.009217044, 0.0002453521, 0.0034163937, -0.010340883, -0.00058484526, 0.02246118, 0.010075532, -0.022679703, -0.0006833763, -0.011956402, 0.008943888, 0.0018535545, 0.0188087, 0.0067508407, -0.01080915, -0.013173895, -0.0013413882, 0.012104686, 0.011542767, -0.010957434, -0.019167705, 0.021274904, 0.014094819, 0.0032915226, 0.011511549, 0.0004707053, 0.027097017, -0.0013550459, 0.020151064, 0.012315406, 0.022367526, 0.0067079165, 0.0003041293, 0.016701503, -0.015788382, 0.027674545, -0.023787934, 0.00070239964, 0.012565149, 0.0003516876, -0.0048738727, -0.04654568, 0.0071527692, 0.019823277, 0.023803543, 0.0035178515, -0.0037714958, -0.00815564, -0.010894999, -0.010153577, -0.0045499885, -0.0043158554, 0.0140011655, -0.008428795, -0.013205113, 0.0036583315, 0.030843148, -0.016358107, 0.00024583988, -0.0070083872, 0.0035041936, 0.015015743, 0.008210271, -0.002852523, -0.000096031195, 0.016607849, 0.00013621188, -0.022227045, 0.0057674814, -0.0005448475, -0.023210404, 0.0122997975, -0.0048153396, 0.0017989235, 0.0022964566, -0.003158847, 0.0073986095, 0.009014129, -0.020978335, -0.005548957, -0.02928226, -0.005939179, -0.005669926, 0.018153127, 0.013876295, -0.012565149, -0.00038071035, 0.0004731442, -0.0142587125, -0.010785736, -0.0061928234, 0.026472662, -0.02149343, 0.0054514017, -0.004292442, 0.003190065, 0.0053460416, 0.026238529, -0.00400758, -0.024505943, 0.011410092, 0.0108559765, 0.032716215, 0.017232204, 0.005833819, -0.013915317, 0.006477685, 0.0030944606, -0.0097009195, -0.0062474543, -0.009942857, -0.02648827, -0.0070278984, -0.010777932, -0.006739134, 0.0102940565, -0.015647903, 0.0002514493, 0.017731689, 0.0021520744, -0.020837855, 0.014110428, 0.018043866, 0.013220722, -0.009857008, 0.0007692251, -0.0008267829, 0.0014750392, -0.0056348057, -0.00025169319, -0.020151064, -0.011901772, -0.013860686, -0.0060757566, -0.009817986, -0.029891007, 0.011589594, 0.0131504815, 0.017591208, 0.011698856, -0.027487239, 0.008865844, -0.00449926, 0.027346758, 0.011347656, 0.009786768, -0.013376811, -0.002696434, 0.008553666, -0.013735815, -0.03249769, 0.0024935186, 0.006255259, -0.008249293, 0.008764386, 0.011035479, 0.008561471, 0.0091389995, 0.016826373, 0.023413321, 0.0007945896, -0.012986588, -0.024474725, 0.0024525453, 0.009334111, -0.009552635, 0.00592357, 0.014617717, -0.0037558868, -0.0011901772, -0.012729042, 0.006477685, -0.017107332, 0.023663063, 0.002462301, 0.012619779, 0.0020350078, 0.0077381027, -0.014953308, 0.012533931, 0.008608297, -0.011043283, 0.010473559, -0.016826373, 0.006840592, 0.008163445, 0.0097009195, 0.01219834, 0.028517425, 0.0067664497, -0.0034554158, -0.014750392, -0.0009940906, -0.00801516, 0.0054123793, 0.014883067, 0.004019287, -0.02592635, -0.0041012336, 0.00096238503, 0.013837272, 0.018324826, 0.014890872, 0.01729464, 0.011613007, 0.003847589, -0.0114491135, 0.00068044965, 0.01184714, -0.0122841885, -0.005744068, -0.0023510875, -0.009654093, 0.0057128505, 0.0077068848, -0.013626553, 0.006465979, -0.0077576134, 0.014968917, 0.033090826, -0.0014965014, -0.0058767437, -0.014953308, -0.019698408, -0.013049024, -0.0044056065, 0.0056816326, 0.024318635, 0.0066454806, -0.00035558981, 0.0032876204, -0.012182731, -0.016888808, -0.000846294, -0.009490199, -0.013907513, -0.0048855795, -0.0067313295, -0.003492487, -0.017044898, 0.011355461, -0.013642161, -0.016654676, -0.0033598116, 0.0048582642, 0.0012955371, 0.013275353, 0.0041051353, 0.00766396, 0.027346758, -0.00200379, 0.0009218995, 0.004058309, -0.0003272987, -0.010465754, -0.0051821484, 0.0032915226, -0.008233684, -0.005548957, -0.0013696792, -0.011121327, -0.02036959, 0.0024447409, -0.019183313, 0.017200986, 0.0017481946, 0.010309665, -0.01782534, 0.01436017, -0.002819354, 0.005759677, -0.009115586, 0.009950661, 0.025504911, 0.011714465, 0.007023996, 0.015632294, 0.027846243, -0.005307019, 0.008842431, -0.0049597216, -0.002674972, -0.018277999, 0.008218075, 0.006614263, 0.008694147, 0.0071605737, -0.00926387, 0.016951244, 0.0085458625, 0.023491366, -0.010988652, -0.01436017, -0.01868383, 0.004167571, 0.022867009, -0.0031764072, -0.015109397, -0.00801516, 0.024146939, 0.021555863, 0.0008897062, 0.002552052, 0.005217268, -0.019838886, 0.01506257, 0.028330117, -0.008553666, 0.005798699, 0.010044315, -0.0038866112, 0.02747163, 0.0027217986, -0.014313343, 0.0076444494, -0.009295088, -0.013478268, 0.015827404, 0.0044485307, 0.0009799451, 0.0025032742, -0.01673272, -0.011386679, 0.0099896835, -0.03305961, -0.025582954, -0.0009575073, 0.027690154, -0.004514869, -0.016966853, -0.016795155, 0.015257681, 0.02342893, -0.012370038, -0.0056933393, -0.003387127, -0.005338237, 0.035931643, -0.0036583315, 0.009576048, -0.0021032966, -0.012354429, -0.0059313746, 0.020712985, 0.025286386, -0.020182282, 0.006360619, -0.017310249, 0.010676474, -0.006477685, -0.021946086, -0.008108813, 0.008311729, -0.014406997, 0.0100052925, -0.008553666, -0.0014438215, -0.012331015, -0.023101144, -0.014453824, 0.0061498987, 0.013376811, 0.015554249, 0.0030573895, -0.0068210806, -0.006243552, -0.021696344, 0.0015423525, -0.0032564027, -0.0010535994, 0.0033188383, 0.0022086566, -0.0102940565, 0.0151250055, 0.009849204, 0.00934972, -0.006879614, -0.0061342902, 0.010411123, -0.0071488675, 0.030827539, 0.01882431, -0.00202135, -0.016123973, -0.016482977, 0.017466336, 0.007500067, -0.0028817896, 0.0033246914, 0.002749114, 0.015117201, -0.0039666067, 0.0050260597, -0.000925314, -0.008936084, 0.0005516764, 0.0052094636, 0.034682933, -0.016420541, -0.009084368, 0.016639067, -0.010309665, -0.0041363533, -0.013579726, -0.00638013, 0.042424936, 0.010777932, 0.010863781, 0.0014399192, -0.0072776405, -0.015444987, 0.003439807, 0.010785736, -0.0035919936, 0.00043973143, -0.016295671, -0.013283158, -0.0037773491, 0.009833595, -0.0021150033, -0.013821663, -0.015671317, -0.0014613814, 0.019339403, 0.0077459067, -0.0029871494, 0.008889257, -0.0042261044, -0.015725948, 0.04642081, -0.00004036359, -0.0056933393, 0.0059313746, 0.0019501345, -0.019823277, -0.0023159676, 0.0058767437, -0.028049158, -0.013361202, -0.0014126037, -0.000064264685, -0.0076171337, -0.007375196, -0.011378874, 0.034526844, 0.018480914, 0.010559408, -0.015608881, -0.009857008, -0.0060055167, -0.01553864, 0.00069459516, 0.012190536, 0.027221888, -0.0013209016, 0.010013097, -0.0028174028, 0.010660865, 0.025411258, -0.004897286, 0.0054006726, -0.017918995, -0.00194233, 0.02386598, 0.005619197, 0.0017745346, 0.024178157, 0.004019287, 0.0010409172, -0.012892935, -0.0067781564, -0.002961785, -0.010356492, -0.008639515, -0.01421969, 0.008748777, 0.01826239, 0.0048270463, -0.0027198475, -0.02299188, -0.0009111684, -0.011168154, -0.008569275, 0.0038885623, 0.0044212155, -0.01685759, 0.004663153, -0.0035529714, 0.018199954, 0.004592913, 0.0020720789, -0.0027198475, -0.005217268, -0.0021306123, -0.009412155, 0.0014633326, -0.0021345145, 0.019261358, -0.0049050907, -0.018231172, -0.022929445, -0.016951244, -0.017965822, -0.0063723256, -0.021290513, -0.006934245, 0.00669621, -0.008982911, -0.01782534, -0.034682933, 0.0057713836, -0.022055348, 0.00046070587, -0.0009638484, -0.022492398, -0.022351917, -0.0134236375, 0.0066337744, -0.0049948418, -0.0041090376, 0.010653061, 0.00082531956, 0.017762907, 0.0063372054, 0.0002396207, -0.0023549898, 0.003262256, 0.0013472415, 0.0017950212, -0.010379906, 0.015093788, -0.00027778928, 0.0025832697, 0.02942274, 0.0038495401, 0.011675443, -0.0052875085, -0.0008877551, -0.025770262, -0.005307019, 0.004897286, -0.00030534872, 0.027861852, 0.010894999, 0.0071293563, 0.030281229, 0.00021608543, 0.012775869, -0.01603032, -0.005217268, 0.010372101, 0.012424669, -0.0051392238, -0.009763354, 0.0047763176, 0.006805472, 0.007898093, 0.014586499, 0.023678672, -0.024771294, -0.017684862, 0.010801345, -0.0016418591, -0.0069966805, -0.015203049, -0.005849428, 0.011324243, 0.014547477, 0.0066064587, 0.0012506616, 0.015288899, 0.0094433725, 0.0065713385, 0.005880646, 0.00059947855, -0.032965954, -0.0052914103, 0.03123337, 0.005494326, -0.0025266875, 0.0052718995, 0.0026008298, 0.00025047376, 0.0008414162, 0.018590176, -0.01518744, 0.000056185872, -0.00085312285, 0.011051088, -0.00546701, -0.0077381027, -0.000767274, 0.0003755887, 0.013314375, 0.016482977, 0.016342498, 0.01478161, 0.00090385176, 0.016779546, -0.0075273826, 0.008756582, -0.007355685, -0.0039217314, -0.006824983, 0.0142743215, 0.0054357927, -0.008959497, 0.0082727065, -0.0030456828, 0.004132451, -0.00008670245, 0.002749114, 0.009341915, -0.0052992147, -0.0016721013, -0.0010409172, -0.007917604, 0.027143843, -0.005689437, -0.009880422, -0.012174927, 0.011464722, -0.0029812963, 0.0029208118, 0.0045070644, -0.0070278984, 0.0010116505, 0.0008077596, 0.00602893, -0.0056348057, -0.015007938, -0.019557927, 0.0032427448
1784
2669
  ]
1785
2670
  }
1786
2671
  ],
@@ -1794,13 +2679,14 @@ function getTemplatesPipelineCollection() {
1794
2679
  ]
1795
2680
  },
1796
2681
  {
1797
- "name": "ai-engineer-revolutionizes-tech-leadership",
1798
- "title": "AI Engineer Revolutionizes Tech Leadership",
1799
- "content": "Pavol Hejný is mentioned as the CTO and Co-founder, described as an AI engineer and developer.",
2682
+ "name": "promptbook-cto-pavol-hejny-s-journey",
2683
+ "title": "Promptbook CTO: Pavol Hejný's Journey",
2684
+ "content": "Pavol Hejný is mentioned as the CTO and Co-founder of Promptbook, with a background as an AI engineer and developer.",
1800
2685
  "keywords": [
1801
2686
  "Pavol Hejný",
1802
2687
  "CTO",
1803
2688
  "Co-founder",
2689
+ "Promptbook",
1804
2690
  "AI engineer",
1805
2691
  "developer"
1806
2692
  ],
@@ -1808,11 +2694,7 @@ function getTemplatesPipelineCollection() {
1808
2694
  {
1809
2695
  "modelName": "text-embedding-3-large",
1810
2696
  "position": [
1811
- -0.03903736, -0.02921377, -0.02855696, -0.048204146, 0.029085262, -0.021646176, -0.0012484746, 0.008017366, 0.0008236898, 0.031012857, -0.001099443, 0.008981164, -0.034039896, 0.010623189, -0.020875137, 0.012372303, 0.0009816454, 0.00020045646, -0.045776807, -0.024716048, -0.0019615062, -0.039494272, -0.06282531, -0.01314334, 0.013600252, -0.011893974, 0.0031037845, 0.009359543, -0.021846073, 0.047347438, 0.0011226455, 0.011337113, 0.014949568, -0.02675787, 0.028799692, -0.0057042525, 0.027571743, 0.0033679362, 0.03135554, 0.010580353, 0.0640247, 0.010666024, -0.025372857, -0.00206681, -0.022588555, -0.013321822, -0.03689559, -0.024773162, -0.022859845, 0.016277466, 0.04449174, -0.008752708, -0.029142376, 0.023730833, -0.031155642, 0.0023363163, 0.04046521, 0.058655992, 0.03869468, 0.0050867083, -0.012515088, 0.011565568, 0.005118835, 0.0036053162, 0.04394916, -0.02628668, 0.020503897, -0.004622658, 0.0025879743, 0.019975593, -0.0049796198, -0.028971035, 0.032155138, -0.0037016957, -0.0058863033, -0.014435543, 0.023630884, -0.0125793405, -0.018362125, -0.027800199, -0.017334074, 0.0033393793, -0.031783894, -0.022474326, 0.0394086, -0.03726683, 0.025501365, -0.04140759, -0.004422759, 0.006693037, -0.01896182, 0.028328503, -0.023045465, -0.020232605, 0.008824101, 0.016977113, 0.03221225, 0.013371796, -0.017205568, -0.0017973036, -0.0017964112, -0.024516148, 0.010387594, -0.010730278, 0.03295473, 0.017105618, 0.0005372278, 0.040322427, 0.017505417, 0.030555947, 0.0021382023, -0.007049999, -0.02365944, 0.011279998, -0.012008201, 0.023716554, -0.047747236, -0.025886884, -0.008859796, -0.068422474, 0.028599795, -0.042235743, 0.010344759, -0.00070723094, 0.036610022, -0.018176503, -0.013107644, 0.010094885, -0.0025308605, 0.02891392, -0.030413162, 0.02854268, 0.0016536264, 0.03992263, 0.0010360822, 0.010194834, 0.024273414, 0.049060855, -0.009737923, 0.028899642, 0.021760402, 0.0024326958, -0.005400835, -0.030641617, -0.024930226, 0.03195524, -0.011951087, 0.026058225, -0.006807265, 0.015420758, -0.02047534, -0.019690024, 0.00041675312, -0.003400063, 0.0042335694, -0.02234582, 0.031326983, -0.020018429, -0.016448809, 0.036495794, -0.017619643, -0.0061111893, -0.015520707, 0.029527895, -0.0022559997, 0.0062218476, -0.0017874872, 0.027614579, -0.043320905, 0.018447796, 0.003164468, 0.03135554, 0.0017053859, -0.013564556, -0.05125974, 0.008003088, -0.005379417, -0.017890934, -0.018462073, 0.02168901, -0.034782376, -0.025015896, 0.008567087, -0.017291239, -0.0046904804, 0.004544126, 0.07367695, -0.007910278, 0.013607391, -0.010059189, 0.069164954, -0.01869053, 0.005500784, -0.036181666, 0.009409518, -0.021203542, 0.039779842, -0.029056706, -0.0060612145, -0.021003643, -0.031412654, -0.034953717, 0.04026531, 0.020032706, 0.01634886, 0.035267845, -0.026215289, 0.03126987, 0.0013466391, -0.017762428, -0.0025112275, 0.018733365, 0.039380047, 0.026029669, -0.027400402, 0.003323316, 0.008895493, -0.013407492, 0.025587035, 0.055114932, 0.0058541764, 0.04640506, 0.024801718, -0.010915898, -0.0041478984, -0.019018935, -0.030698732, -0.01869053, -0.015920505, -0.0025469237, 0.0030127591, 0.011565568, 0.022617111, 0.009737923, -0.01014486, -0.048946626, 0.023145415, -0.040151086, -0.020246884, -0.030870073, 0.01662015, 0.0139286565, -0.011936809, -0.0132147325, 0.03858045, 0.0030252528, -0.024973061, -0.010059189, -0.048832398, 0.017948048, 0.014849619, -0.0017214492, 0.011415645, -0.009402378, -0.01746258, 0.027828757, 0.038466223, -0.014585467, 0.022231592, 0.02938511, -0.015006682, -0.03335453, -0.025958275, 0.0074033914, -0.05060293, 0.0058291894, 0.008559949, -0.009152506, 0.010815948, -0.012450834, 0.063739136, 0.01332896, 0.055143487, -0.010016353, 0.013371796, -0.018305011, -0.018119391, 0.0113085555, 0.012472251, 0.024073517, 0.019133162, -0.022131642, 0.06493852, 0.030070478, -0.015592099, -0.0037231136, -0.010094885, 0.0028378477, -0.014000049, 0.015063796, -0.0049474933, 0.013293264, -0.010608911, 0.017548252, -0.005857746, 0.027543187, -0.012079594, -0.027614579, 0.023031188, -0.02929944, 0.008531392, -0.030441718, -0.04403483, 0.006471721, -0.015106631, 0.0008107499, 0.016477365, 0.034611035, -0.043435134, 0.00049037655, 0.0138501255, 0.005900582, 0.019290226, 0.0071606576, -0.013164758, 0.014621163, -0.024987338, -0.00015048179, -0.00816729, -0.010558936, 0.03298329, 0.0025879743, -0.01896182, -0.010159138, 0.04374926, 0.018447796, -0.016748656, 0.028985314, 0.0032965438, -0.0057899235, 0.01136567, -0.028785415, 0.020632403, 0.012843492, -0.0076961005, 0.0077603534, -0.009031138, 0.016020454, -0.012001062, 0.02817144, -0.04029387, -0.020389669, 0.015792, 0.03889458, -0.026700757, -0.037038375, -0.012786378, 0.009716505, 0.06665194, 0.043977715, 0.0006465474, -0.006789417, 0.03306896, 0.0040550884, -0.0031662527, 0.00044397148, -0.01980425, -0.023602327, -0.0019097467, -0.0035749744, 0.029984808, -0.03195524, 0.011344252, 0.03455392, 0.0135716945, 0.016277466, 0.010002075, -0.0144641, -0.021374883, -0.024558984, 0.0018419238, 0.012714986, -0.0332403, 0.027343288, -0.007199923, -0.02273134, -0.02929944, 0.013650226, -0.021817517, 0.013828707, -0.012779239, 0.013814429, -0.033554427, 0.0051973667, -0.005229493, -0.036867034, 0.03700982, -0.027343288, -0.0024273414, 0.04463453, -0.024344807, 0.014878175, 0.0018490631, -0.020775188, 0.02131777, -0.01879048, 0.008924049, 0.03295473, 0.024087794, -0.043178122, -0.030784402, 0.004387063, -0.0013671644, -0.030841516, 0.010794531, -0.027257618, 0.004619088, -0.037352502, -0.0077032396, -0.013543137, 0.018247897, 0.006553822, -0.036410123, 0.0011770822, 0.02572982, 0.022274427, -0.0035410628, 0.02995625, -0.0074033914, 0.031498324, -0.00045668823, 0.03455392, 0.018676251, 0.019175997, -0.042435642, 0.0073891133, 0.017776707, 0.011529872, 0.033868555, -0.0122223785, -0.04169316, -0.0147496695, 0.02310258, -0.018576302, -0.013578834, -0.009273873, 0.019590074, 0.014435543, 0.003060949, -0.004608379, -0.024401922, -0.0054508094, 0.02178896, 0.009345265, -0.01670582, -0.015178024, -0.00052741135, -0.009330986, 0.00007652373, 0.0031591135, 0.007317721, 0.005368708, -0.02855696, -0.010687442, -0.029242326, -0.040151086, -0.025943996, 0.034011338, -0.010194834, -0.023345314, -0.01616324, 0.0057006828, 0.025001617, -0.02601539, -0.007896, 0.0044763032, -0.021660453, -0.08498551, 0.020346833, 0.013250429, 0.056028754, -0.040693667, 0.12130996, 0.014442682, 0.04083645, -0.0082601, 0.024159187, -0.015749162, -0.04514855, 0.012158126, -0.004808278, 0.01126572, 0.035467744, -0.015849112, 0.031069972, -0.004087215, 0.03218369, -0.025001617, 0.00017279192, 0.0076032905, -0.010216252, -0.008274379, -0.012079594, -0.02206025, -0.024844553, -0.049689107, 0.021446276, -0.03866612, -0.004808278, -0.0077960496, -0.013914378, -0.044577412, -0.021717567, 0.007089265, -0.05597164, -0.0036981262, 0.016177516, -0.004497721, 0.0105018215, 0.03246926, 0.017848099, 0.021460555, 0.015420758, 0.0032804806, 0.006264683, 0.001998987, 0.008310075, 0.0028378477, -0.0089526065, 0.0043799235, 0.024644656, 0.0056864046, 0.022203036, 0.010394733, 0.024644656, 0.022402935, -0.029984808, 0.00929529, 0.00060549675, -0.08018794, -0.01981853, -0.020261163, -0.011144353, 0.024430478, -0.036495794, -0.004044379, -0.012850631, 0.02967068, 0.009402378, -0.044377513, -0.0189761, -0.0045976704, 0.021746125, 0.0010539303, 0.023702275, 0.013835846, 0.0027254047, -0.0003067642, -0.0030377465, 0.0044120504, 0.010209112, -0.024116352, 0.0008455537, 0.008624202, 0.024930226, 0.02722906, 0.011387087, -0.013093365, -0.009530885, -0.018661972, 0.017790986, 0.0032037338, 0.006535974, -0.02187463, -0.012336606, 0.0011440632, -0.0041657463, 0.03209802, -0.036181666, -0.010351897, -0.01614896, -0.030927187, -0.0034571767, 0.02253144, 0.03935149, 0.037323944, 0.0062468345, 0.0011262151, 0.0037802274, -0.007496202, 0.0266722, 0.010102024, -0.014878175, -0.013321822, 0.014228505, 0.012358024, 0.022288706, -0.02618673, -0.023873618, -0.0011681581, -0.00422286, 0.010309062, -0.005361569, 0.034953717, 0.00920248, -0.016691543, 0.015806276, 0.0398084, 0.004922506, -0.0006452088, -0.029613566, 0.012993416, -0.000414299, 0.045491237, 0.0037052655, 0.017062783, 0.025572756, 0.013393214, 0.0049617714, -0.040122528, 0.016034732, 0.016934277, -0.00059032586, 0.03126987, 0.021831796, 0.031127086, -0.00028490028, 0.0059398473, -0.04591959, 0.02975635, 0.00088348094, 0.040893566, -0.02224587, -0.024159187, 0.005233063, 0.00314662, -0.0023024047, -0.022845566, -0.000019005436, 0.022045972, -0.034725264, 0.017319795, -0.0018936833, 0.008524252, -0.0068215434, 0.0049153664, 0.020075543, 0.04489154, 0.030670173, -0.01981853, 0.004533417, 0.0026593667, -0.007021442, 0.042207185, -0.015720606, -0.0064645815, -0.0009807531, -0.0375524, 0.0140214665, -0.027900148, -0.020875137, 0.016877163, -0.0065109865, 0.009266733, 0.01013772, 0.0047475942, 0.012943442, 0.012914885, 0.020418225, 0.0024666074, 0.0013359302, -0.028057212, -0.027329009, 0.018319288, 0.011579847, 0.02581549, 0.026343795, -0.002170329, -0.0006666265, -0.011794024, -0.0010012784, -0.011279998, -0.017362632, -0.009816455, 0.017662479, -0.017105618, 0.0019632909, 0.023887897, -0.025115846, 0.012343746, -0.0030502402, -0.011893974, -0.018833315, 0.008217265, -0.02535858, 0.0082386825, 0.007995948, 0.021146428, 0.00975934, -0.03840911, -0.04009397, -0.008581366, -0.011030125, 0.017234124, 0.01596334, 0.0074033914, -0.012914885, -0.0043156706, -0.012400859, -0.022559997, 0.0050403033, -0.01267929, 0.010715999, -0.0050295945, -0.0093881, 0.02290268, 0.0034268352, -0.0068036956, -0.011044404, -0.003549987, 0.023074023, 0.0060112397, -0.0030181136, -0.0041907337, 0.02630096, 0.007164227, 0.012379441, 0.010151999, -0.020803744, 0.024815997, 0.014978125, 0.015249416, 0.015806276, -0.024830276, -0.018519187, 0.0013832276, 0.017234124, -0.0069536194, -0.010494682, 0.0066751894, -0.028399896, 0.010823088, 0.033297416, 0.01295772, -0.029185211, -0.025244351, 0.018704807, -0.031326983, 0.061454576, 0.0058291894, 0.035524856, -0.0019008226, 0.006628784, -0.041007794, -0.007867442, -0.03195524, 0.004451316, 0.0005898797, -0.0016696897, 0.03155544, 0.010958733, 0.03729539, 0.017334074, 0.012857771, 0.0008129809, 0.003680278, -0.020032706, -0.0057863537, -0.003201949, 0.0066894675, 0.008995442, 0.0042835437, -0.019590074, 0.045234222, 0.042321414, -0.011144353, 0.0199042, -0.030213263, -0.0022327972, -0.011158632, 0.00817443, -0.025472807, -0.002648658, 0.018604858, -0.017662479, -0.022045972, -0.011237163, 0.00025924365, 0.009188201, -0.027628858, -0.0039015946, -0.0061540245, -0.04017964, -0.00039221198, -0.013635948, 0.013286125, 0.035667643, -0.0024059238, 0.027971542, 0.018162226, 0.019004656, 0.014028606, -0.014214226, 0.017062783, -0.014149973, -0.0045119994, -0.01680577, -0.028199997, 0.015906226, -0.015192302, 0.0131219225, 0.02254572, 0.013371796, -0.02958501, -0.0063432143, -0.043320905, -0.0074605057, -0.032155138, -0.016919998, 0.023887897, 0.011672657, -0.00657167, 0.034325466, 0.05351574, 0.009152506, 0.029813465, -0.042835437, 0.04029387, -0.018262176, -0.015991896, 0.0035446326, -0.0018472783, -0.011786885, 0.002132848, 0.010915898, 0.0018205062, 0.006882227, 0.018447796, 0.0046262275, -0.021931745, -0.0014796074, 0.005511493, -0.009366683, -0.003708835, -0.036581464, -0.005079569, 0.0058791637, 0.008195847, -0.0021274935, -0.0026272403, -0.006485999, 0.006485999, -0.034725264, 0.016477365, 0.018804757, 0.00052741135, -0.036381565, -0.022988351, 0.009095391, -0.020946529, 0.007496202, 0.00040738287, 0.010209112, -0.0028539111, 0.020818023, 0.022574276, 0.018490631, 0.003351873, -0.0001258291, -0.025144402, -0.006875088, -0.005118835, -0.007860303, -0.023673719, -0.015734885, -0.021346327, 0.007189214, -0.033554427, -0.0006117436, 0.006093341, -0.00422286, -0.00976648, 0.020903694, -0.00281643, -0.0104090115, -0.0098664295, -0.0138501255, 0.04377782, 0.014635442, 0.022945516, 0.013257568, -0.0027682402, -0.0007005379, 0.010794531, 0.047490224, -0.03729539, -0.0062682526, -0.018176503, -0.014506935, 0.04500577, 0.017548252, 0.0230883, 0.010530379, -0.02300263, 0.042664096, 0.01914744, -0.012022479, 0.0057149613, -0.025558477, 0.005682835, 0.01352172, -0.006171873, -0.032240808, 0.027857313, 0.022759896, -0.010737416, 0.013714479, -0.004487012, 0.013978631, 0.0016286391, -0.02995625, 0.0015581391, -0.003014544, -0.034154125, -0.050003234, 0.013842986, 0.011993922, 0.011786885, -0.020232605, -0.03312607, 0.048746727, 0.036038883, -0.014949568, -0.020589568, -0.020875137, 0.01642025, 0.003408987, -0.014078581, -0.016291745, -0.020860858, -0.017976606, 0.021731846, 0.007724657, 0.0021471262, 0.008417164, -0.005322303, -0.019775694, 0.05362997, -0.010416151, -0.036038883, -0.013793011, -0.031326983, 0.030870073, 0.018147947, 0.011065821, -0.009545163, -0.029842023, -0.054029766, -0.0379522, 0.0036588605, 0.04797569, -0.020803744, 0.031412654, 0.0065573915, -0.011765467, 0.01670582, -0.0005742626, -0.026358074, 0.011594125, 0.019133162, -0.000971829, 0.007717518, -0.031498324, -0.011572707, -0.006621645, 0.011194328, 0.025515642, 0.005504354, 0.008388607, 0.011329973, -0.022988351, 0.004872531, 0.010666024, -0.017533973, 0.02855696, -0.007653265, -0.021360606, -0.0051116957, -0.02995625, 0.014214226, 0.0018918986, 0.009459493, 0.017919492, 0.023987845, 0.04057944, -0.017691037, -0.048404045, -0.015249416, -0.041436147, -0.00017569223, -0.018704807, -0.0065038474, 0.0028788985, -0.043806374, 0.0074390876, 0.009238176, 0.015749162, -0.025872605, -0.019304505, -0.01577772, -0.018162226, 0.007064278, 0.00009928005, -0.034239795, 0.001694677, 0.045319892, 0.017205568, -0.0014510505, -0.05034592, 0.046148047, 0.030841516, 0.0075675943, -0.010958733, -0.040151086, -0.0022363667, -0.010480404, 0.017077062, 0.016034732, 0.013964353, 0.0076175686, 0.013671644, 0.020917973, 0.026914934, 0.006800126, -0.0010378669, 0.024587542, 0.010073467, 0.025144402, 0.018419238, 0.012643593, -0.047832906, 0.014542631, 0.021746125, -0.015420758, -0.005586455, -0.002439835, -0.0134931635, -0.036295895, -0.013900099, 0.034125566, 0.008509974, 0.0064253155, -0.008888354, -0.009002581, 0.0030645186, -0.027628858, -0.0021471262, 0.030356048, 0.043549363, 0.0034536072, -0.00572567, 0.0059791133, 0.009438075, 0.0074390876, 0.00713924, 0.020403948, -0.0010708859, 0.0048689614, 0.0016054366, -0.0021863922, -0.0004145221, -0.0014376644, -0.005639999, -0.008138733, 0.009066834, 0.002329177, 0.008131594, 0.004622658, -0.023545213, 0.00044174047, 0.006621645, -0.0036767086, 0.00422286, 0.003773088, 0.017762428, 0.004572683, -0.016848605, -0.0045584044, 0.0028021515, 0.0050295945, -0.007917417, -0.016762935, -0.019561516, 0.020775188, -0.016634429, -0.0034696704, -0.024587542, 0.017448302, 0.013043391, 0.0020989366, -0.02855696, 0.0010137721, 0.0014126771, 0.027257618, -0.037438173, -0.006439594, -0.01437129, -0.021717567, 0.0017437593, 0.005971974, -0.0010209113, 0.004404911, 0.00021462339, -0.0010387594, 0.020618124, 0.016877163, 0.010616049, -0.009223898, -0.01399291, -0.0008482309, 0.027671693, -0.0048582526, 0.0062825307, -0.007110683, 0.017919492, 0.0047368854, -0.017019948, -0.019647188, 0.024501871, 0.012308049, -0.007810328, -0.034011338, -0.017691037, -0.014706834, -0.022317264, 0.01502096, -0.030356048, -0.0031626832, 0.0130291125, 0.027471794, -0.001564386, -0.013107644, -0.030099034, -0.017776707, -0.026700757, 0.0028556958, -0.015206581, -0.025344301, -0.013835846, 0.0135859735, -0.015335087, -0.010815948, 0.016919998, -0.0021399872, 0.0025665567, 0.030470274, 0.02630096, 0.019947035, -0.008717012, 0.0032965438, -0.028614072, 0.018147947, 0.037352502, 0.017191289, 0.019204555, 0.0009459493, 0.008702734, -0.0064645815, -0.013014834, 0.010187695, -0.034896605, -0.028871085, -0.013800151, -0.0116797965, -0.012457973, 0.018176503, 0.021089314, -0.022374377, 0.011372809, 0.03195524, 0.0075675943, -0.0025201517, -0.012436556, 0.0090454165, 0.0144641, 0.015178024, -0.0029824174, -0.03129843, 0.03700982, 0.017034225, 0.004715468, 0.0062218476, 0.0061647333, -0.03212658, 0.018619137, -0.007767493, 0.0020418225, -0.02591544, 0.013557416, 0.0044584554, -0.002291696, 0.040893566, 0.018904706, -0.0013841201, -0.0055329106, -0.012622176, 0.00011478559, 0.0032322907, 0.0025861897, 0.047747236, -0.025044452, 0.034810934, -0.026900655, 0.03164111, 0.009637973, 0.018262176, 0.008459999, -0.019647188, -0.00047252842, -0.0030377465, 0.015420758, 0.0017544682, 0.023302479, 0.016934277, -0.010901619, 0.008895493, 0.03652435, -0.037124045, 0.0036374426, -0.011808302, -0.024944503, 0.021703288, -0.0026147466, -0.01296486, -0.020489618, -0.0152922515, -0.00234881, 0.057799283, 0.0018883289, 0.011629822, 0.013264707, -0.01267929, 0.016405974, 0.024658933, 0.0032733413, 0.010658885,
1812
- 1.8475572e-7,
1813
- 0.008766986, 0.0447202, 0.020018429, -0.013400353, -0.008010227, 0.025130123, -0.0038980248, 0.04769012, -0.007107113, -0.011044404, -0.0030091896, 0.0041443286, -0.002214949, -0.003466101, -0.008410024, -0.0013627023, 0.0026165314, 0.01653448, -0.020075543, -0.0046797716, 0.028471287, 0.00469762, 0.0048189866, -0.022217315, -0.05662845, 0.02290268, 0.013892961, 0.018476352, 0.018847592, -0.00929529, -0.007353417, 0.016020454, 0.02611534, -0.021760402, 0.023702275, -0.021517668, 0.022217315, -0.015906226, -0.009987797, -0.00985215, -0.005736379, 0.026957769, 0.006646632, -0.009687948, 0.036552906, 0.006835822, 0.022460049, 0.008709872, 0.008945467, 0.06333934, -0.032240808, -0.009530885, 0.010887341, -0.021046478, 0.03298329, 0.022602834, -0.025387136, 0.007192784, -0.028571237, -0.021431997, 0.0051795184, 0.0015161961, 0.0004850221, 0.00023916452, 0.020689517, -0.010630328, 0.012058176, 0.0036838476, -0.005136683, -0.020703794, -0.009359543, -0.009316708, 0.03175534, -0.006393189, 0.00043527051, 0.014906732, -0.0064752903, -0.018676251, -0.0049510626, -0.006311088, -0.015206581, 0.0023595188, -0.0014555125, 0.016834328, -0.015906226, -0.00647886, -0.0052651893, -0.013957214, -0.0090596955, 0.029813465, -0.024587542, 0.02234582, 0.009716505, 0.02357377, -0.0048047085, -0.0011592341, -0.009730783, -0.024901668, 0.013721619, 0.0019168858, 0.015620656, -0.018005162, -0.0036767086, 0.021132149, -0.02254572, -0.00023961073, 0.043635033, -0.017077062, -0.0018080125, -0.0017973036, -0.0045905313, 0.008916911, -0.027643137, -0.012557923, -0.007560455, -0.001229734, 0.0061183283, -0.016363138, 0.008667037, -0.0013261138, 0.02618673, 0.037438173, 0.014078581, -0.00028289238, -0.0221602, 0.008131594, -0.01944729, -0.012186682, 0.013179037, 0.0068572396, -0.029270884, -0.022602834, -0.025344301, -0.0089668855, 0.0023398858, -0.012015341, -0.0017446517, 0.008759847, -0.01473539, 0.007164227, -0.0021167847, 0.020917973, -0.018433517, -0.055229157, 0.004451316, 0.01998987, 0.0094166575, -0.03426835, -0.015406479, -0.023959288, 0.044577412, 0.0071213916, -0.016734378, 0.01690572, -0.007910278, 0.00085358537, 0.0049903286, 0.004733316, 0.0034982276, 0.0030377465, 0.010694581, 0.02355949, 0.017948048, 0.0028021515, -0.018519187, 0.03321174, -0.008331493, -0.0113228345, 0.011501315, 0.0116441, 0.014792505, 0.0074248095, 0.009423796, -0.009166784, 0.0038480503, 0.01634886, 0.017776707, 0.021032201, 0.015720606, 0.0017500061, -0.03880891, 0.0050295945, 0.036038883, -0.023488099, -0.0114941755, -0.017419744, 0.0020436074, -0.012936302, -0.012886328, 0.033468757, 0.024073517, 0.006960759, 0.015149467, -0.001394829, 0.008024505, -0.02592972, -0.0065788096, -0.012793518, -0.030870073, -0.0000720617, -0.0056114425, 0.013257568, -0.019875644, -0.002891392, -0.006917923, 0.0015670632, -0.014792505, -0.014321315, -0.0060326573, -0.0005693544, 0.0034678858, 0.01436415, 0.010194834, 0.0015947276, 0.002686139, 0.01616324, -0.032926172, 0.004401341, -0.012822075, -0.01634886, 0.0033018985, -0.005015316, 0.015563543, -0.004404911, 0.0058791637, 0.02084658, -0.009916404, -0.008252962, -0.012479391, 0.017762428, 0.0008678638, 0.010773113, -0.016977113, -0.0068608094, -0.020946529, 0.009795037, -0.011001568, 0.0041657463, 0.011808302, 0.027329009, -0.027600301, 0.013671644, -0.011794024, 0.00076791446, -0.011001568, 0.034496807, -0.0041907337, 0.008302935, -0.0069500497, 0.00014702372, 0.03032749, -0.004187164, -0.006432455, 0.01502096, 0.015220859, -0.012329467, 0.0024344807, 0.0035142908, -0.020403948, 0.029327996, -0.016934277, 0.02488739, 0.015792, 0.015249416, 0.016263189, -0.010366176, -0.0140357455, -0.01943301, 0.0034393286, -0.0026504428, -0.0034018478, 0.039208703, -0.023173973, 0.0069500497, -0.0110801, 0.0056150123, -0.026715035, 0.015006682, -0.03389711, 0.0029253035, -0.0003237199, 0.010166277, 0.007531898, 0.01756253, -0.012072454, -0.035296403, -0.0026254554, -0.022959795, -0.022517161, 0.007021442, -0.0019347339, 0.016662985, -0.012622176, -0.011237163, -0.013400353, 0.02488739, -0.00080227206, 0.00093970244, 0.015135189, 0.014678277, -0.008531392, 0.027843036, -0.009452353, 0.0039408603, -0.0014135694, -0.0043156706, 0.011794024, 0.00033576737, -0.008131594, -0.019318782, 0.007917417, 0.010437569, -0.0058755944, 0.0070928345, -0.011951087, 0.0014055378, 0.0045476956, 0.010666024, -0.037609514, -0.018319288, 0.01933306, -0.009452353,
1814
- 9.551522e-7,
1815
- 0.0068322523, 0.007624708, 0.0060683535, 0.00026147466, -0.0131219225, 0.014042884, 0.002573696, 0.03258349, 0.0030109743, -0.02891392, 0.009031138, -0.01023767, -0.011001568, -0.007881721, 0.01869053, 0.007624708, 0.0028039364, -0.011901112, -0.018362125, -0.0072713154, -0.0055757463, 0.016919998, -0.027400402, -0.008381467, -0.014478378, 0.009730783, 0.022845566, -0.042121515, -0.014128556, -0.0067287334, 0.009359543, 0.011072961, 0.007221341, -0.0035410628, -0.025572756, 0.01596334, 0.026929213, 0.030413162, 0.012443695, -0.0063360753, 0.016034732, 0.0105018215, 0.016177516, 0.012629315, 0.0022542148, -0.014414125, 0.016177516, 0.011151493, 0.0001619715, 0.010473264, 0.0034571767, -0.004140759, -0.008788404, -0.0031787464, 0.017762428, -0.005718531, -0.0027878731, -0.0005515063, -0.011372809, -0.007096404, -0.0056649866, 0.010880201, 0.008131594, 0.0040693665, 0.024915947, 0.0025629872, -0.006403898, -0.031041414, 0.0035553414, 0.0047761514, 0.0033447337, -0.0076389867, 0.014406986, 0.00014568512, 0.014763948, -0.005054582, -0.002516582, -0.006703746, -0.021060757, 0.00816729, 0.011422783, 0.00845286, 0.017533973, 0.011751189, 0.004180025, 0.010794531, -0.011708353, -0.020975087, 0.005051012, -0.010701721, 0.0024487593, 0.02600111, -0.00816729, -0.0017366201, 0.008331493, -0.011651239, -0.010751695, 0.026043946, -0.009752202, 0.0060540754, 0.0005586455, 0.004162177, 0.020589568, -0.0055293413, 0.0019864934, -0.01258648, 0.011558429, 0.00290924, 0.001178867, 0.0013502088, 0.00798881, 0.0038087843, 0.0020632404, -0.0022078098, -0.008702734, 0.000830829, 0.010566074, 0.021203542, 0.018533466, -0.013364657, -0.00619686, -0.014992404, 0.021332048, 0.019461567, -0.020446783, -0.0074319486, -0.004744025, -0.005961265, 0.028856806, -0.021017922, 0.015206581, 0.0029324428, -0.006075493, 0.0015429682, -0.0010119872, 0.000030983185, 0.02375939, -0.012229518, -0.0003765949, 0.0046619237, 0.0066359234, -0.010266227, -0.018533466, -0.012743543, 0.018661972, -0.017077062, -0.020361112, -0.002272063, 0.0041086324, -0.003285835, -0.013386074, -0.012600758, 0.015449314, -0.0026415186, 0.010373315, -0.0043049618, -0.017476859, -0.0016188226, 0.022417212, -0.005579316, 0.00009582198, 0.015163745, -0.010002075, 0.004030101, 0.01606329, 0.011872556, 0.0029913415, 0.014192808, 0.013486024, -0.018647695, 0.00025879743, 0.0045012906, 0.00038685754, 0.012829213, -0.0199042, 0.022460049, 0.00056043034, 0.008552809, 0.0014912087, -0.004337088, 0.01727696, 0.0042371387, -0.009937822, 0.004383493, 0.024073517, 0.013486024, 0.0076961005, -0.0030538097, 0.016577315, 0.010851644, -0.0061825817, -0.014506935, -0.017291239, 0.014778227, -0.022474326, -0.00479043, -0.020518174, 0.013093365, -0.0061183283, 0.0009611201, 0.0076461257, -0.0028681895, 0.0062111383, 0.012593619, -0.012736403, 0.0062504043, 0.0030502402, -0.030984301, 0.00563286, -0.0033929236, -0.00506886, -0.006518126, -0.017890934, 0.021546226, -0.03312607, 0.008181569, 0.017990883, 0.0019275948, 0.01296486, -0.0021846073, 0.007531898, 0.006928632, -0.0074676448, 0.001553677, -0.015377922, 0.017805263, -0.0055828854, -0.0010860568, 0.0024326958, 0.0013154049, 0.00929529, 0.006029088, 0.0018740505, -0.029813465, -0.002600468, 0.0004491028, 0.0038444805, -0.008859796, 0.003644582, -0.018904706, 0.018105112, -0.01821934, 0.015906226, 0.0013832276, -0.008574227, -0.0013394998, -0.025786934, -0.0064253155, 0.004312101, -0.0017678542, 0.0021578353, -0.034325466, 0.01709134, -0.0019311643, 0.010451847, 0.025315745, 0.0044191894, 0.012022479, 0.021574782, 0.0002668291, -0.0035249996, -0.01042329, -0.0039123036, -0.01342891, -0.022331541, -0.0056578475, 0.018276453, 0.00816729, 0.012051037, -0.0062753917, 0.004265696, -0.000030258107, -0.0004524493, 0.0043049618, -0.005579316, 0.0054293917, -0.0009062372, 0.0165202, 0.014064303, -0.0018722656, -0.0028503414, 0.009530885, -0.008003088, -0.0065466827, 0.005993392, 0.0003971202, 0.00816729, 0.0152922515, 0.005904151, -0.016820049, 0.0189761, -0.025215795, -0.023616605, 0.002902101, -0.004422759, 0.02066096, 0.002439835, 0.0058720247, -0.026743593, -0.0012359809, 0.011351391, -0.0045227082, -0.013136202, -0.010009214, -0.010873063, -0.020361112, -0.009366683, 0.008131594, -0.004958202, 0.0051224045, 0.021260656, 0.018947542, 0.011415645, -0.011537012, 0.0016152529, 0.00290924, -0.013957214, 0.0071321004, -0.012914885, -0.010373315, -0.003858759, 0.019661466, 0.0029520756, -0.024587542, 0.006485999, -0.019218834, 0.00657524, 0.009609417, 0.019832809, -0.0017223416, 0.0073034423, -0.0134788845, 0.0025772655, 0.008509974, 0.0062111383, 0.01267929, -0.006139746, 0.014906732, -0.021660453, -0.004112202, -0.017519694, -0.007838885, 0.008367189, 0.0031252021, 0.03746673, 0.0031198477, -0.009330986, -0.0075533157, -0.018062277, 0.002468392, -0.00090400624, 0.00032907433, 0.022017416, -0.023745112, -0.0062039993, -0.005200936, -0.01417853, -0.00038194933, 0.0056542777, 0.008038784, -0.02084658, 0.010823088, -0.0061932905, -0.02902815, 0.017633922, -0.00043817083, 0.0010280506, -0.006518126, 0.0011601264, -0.015849112, -0.016206075, 0.012943442, 0.008895493, -0.013678784, 0.009659391, 0.0093238475, -0.02338815, -0.026957769, 0.017519694, -0.034953717, 0.016677264, 0.018176503, -0.00008857119, -0.01906177, -0.017205568, -0.016306024, -0.039208703, -0.021988858, -0.0056971135, -0.008667037, 0.0039372905, -0.0051402524, -0.0027807339, -0.00966653, 0.012272353, 0.020104099, -0.015449314, -0.0036767086, -0.0117583275, 0.021032201, -0.0028931769, 0.012572201, 0.014421265, 0.020575289, -0.0014662214, 0.005325873, -0.002375582, 0.008631341, -0.012236657, 0.00021863922, 0.0077817715, -0.009987797, 0.019018935, 0.008524252, 0.0005559683, 0.0025237212, -0.0063325055, 0.009152506, 0.0076604043, 0.0046797716, -0.0020810885, -0.023402428, -0.005368708, -0.021060757, 0.0026914934, 0.0010780252, -0.031184198, 0.00007836431, 0.016320301, -0.00031524204, -0.0127649605, -0.009002581, 0.0044727335, -0.0093881, 0.010294784, 0.021703288, 0.007239189, -0.008681316, 0.007681822, -0.00088615814, 0.016177516, -0.0100520495, -0.032640602, 0.011615543, 0.002862835, 0.010530379, 0.01182972, 0.03146977, 0.021646176, 0.00094416447, 0.014706834, -0.011101518, 0.01926167, -0.011537012, 0.005004607, 0.021160707, -0.01267929, -0.00081476575, -0.004383493, 0.0026272403, -0.01680577, 0.007539037, 0.013750176, -0.0058648856, 0.019861365, 0.009887847, -0.009887847, 0.0042585563, 0.006621645, 0.017062783, 0.02046106, -0.008524252, 0.031069972, -0.0019775694, -0.010751695, 0.013293264, -0.016662985, -0.005193797, 0.0013270061, -0.0230883, 0.0010646391, -0.0029984806, 0.008417164, -0.0053508603, 0.025901161, -0.0019936326, -0.0009950316, 0.012051037, 0.021746125, -0.006864379, -0.01502096, -0.0007750537, 0.008959746, 0.0140214665, -0.0028342782, -0.0036874174, 0.002214949, 0.0034286198, -0.00038730376, 0.012322328, -0.004312101, -0.006743012, 0.02337387, 0.012507948, -0.0023059745, -0.021232098, -0.0005894335, 0.0032305059, 0.00047877527, -0.01653448, 0.004365645, -0.0143927075, 0.0051402524, 0.009930682, -0.0023202528, 0.0049474933, 0.007142809, 0.00985215, -0.014064303, 0.012907745, -0.0013671644, -0.0052437717, 0.014064303, -0.007724657, -0.02018977, -0.022774175, -0.011658379, 0.003887316, 0.016577315, 0.014906732, -0.008381467, 0.016491644, 0.008103037, -0.0045405566, 0.013421771, 0.037523843, 0.008574227, 0.0018597719, -0.009966379, 0.014406986, 0.004176455, -0.0020328986, -0.0053008855, -0.017948048, 0.014142834, -0.008417164, -0.026957769, 0.018804757, -0.02150339, 0.0016366707, -0.02921377, -0.011294277, -0.003594607, -0.005961265, 0.0006286993, -0.00460124, -0.017048504, 0.0049510626, -0.010944455, 0.0054293917, 0.0067465818, 0.00007300988, -0.026215289, -0.011422783, -0.025344301, -0.013814429, -0.016463086, -0.013778733, 0.0041550375, -0.013543137, 0.016120404, 0.00033286706, -0.004833265, 0.010359037, 0.016034732, 0.0062289867, -0.0287283, -0.0027557465, 0.015049517, -0.0074676448, -0.0062218476, 0.008945467, -0.009438075, -0.016277466, -0.018362125, 0.011165771, -0.018533466, 0.022659946, 0.0005581993, 0.00413362, 0.0008027183, 0.013864404, -0.010601771, 0.00080093346, -0.013621669, 0.021060757, 0.022617111, -0.015820555, 0.020603845, -0.010651746, -0.0051723793, 0.016448809, 0.0005198259, 0.0059112906, 0.003492873, 0.0063717715, 0.019490125, -0.0076389867, -0.0070571383, -0.014949568, -0.009994935, -0.0038623286, -0.007531898, -0.011529872, 0.023616605, -0.0008178892, -0.0056150123, 0.007192784, 0.00657524, 0.009309568, 0.004926075, -0.0059291385, -0.0230883, -0.01296486, -0.01906177, -0.008745569, 0.0024451895, 0.007896, 0.008859796, -0.014107138, 0.020389669, 0.02037539, 0.0033393793, -0.020075543, 0.0011708353, 0.013014834, 0.011537012, 0.00013832276, -0.012850631, 0.018376403, -0.003624949, 0.011222885, -0.0061540245, 0.005804202, 0.021289213, -0.009802176, 0.008724151, 0.010873063, -0.008552809, 0.010273366, 0.0020810885, -0.006750151, -0.020989364, -0.003107354, 0.0065573915, -0.000026800037, 0.008752708, 0.012622176, -0.024744606, -0.013200454, 0.030927187, 0.009088252, 0.022759896, 0.0117583275, -0.007021442, -0.0070464294, 0.018833315, -0.003483949, 0.006114759, 0.014121416, 0.01662015, 0.017662479, -0.032440707, -0.012665011, -0.0038016452, -0.017533973, -0.0032144426, 0.012479391, -0.041950174, 0.016505923, -0.01623463, -0.030841516, 0.0031144933, 0.00008304944, 0.018747643, 0.00122081, -0.0014349872, -0.00873129, -0.011744049, 0.0050295945, 0.009309568, -0.031498324, -0.005850607, -0.010530379, -0.015235137, 0.010901619, -0.013771594, 0.005108126, -0.005183088, -0.009216758, -0.00025656642, -0.0062039993, -0.035896096, 0.003726683, 0.02056101, 0.01305767, -0.0000057762304, 0.018819036, -0.0016812909, 0.008909771, 0.019233111, -0.03032749, 0.012086733, -0.0013511011, -0.0028556958, -0.010701721, 0.0013760885, -0.00040002054, -0.017334074, 0.012436556, 0.04534845, 0.0025772655, -0.017833821, 0.0018106897, 0.008060202, -0.013657366, 0.008388607, 0.033754326, 0.012115289, -0.0031680376, -0.0033500881, -0.015435036, -0.011344252, -0.02084658, 0.015634935, -0.0050295945, -0.0005523987, -0.002770025, 0.011908252, -0.007967392, 0.0029128098, 0.018362125, 0.015649214, -0.0035428477, -0.008552809, 0.012714986, 0.0017107403, -0.007089265, 0.009430936, 0.006082632, -0.006910784, -0.008367189, 0.000828598, 0.01324329, -0.011279998, 0.013271847, 0.0051795184, 0.0024166326, 0.014071441, -0.00061932905, 0.021489112, -0.04055088, 0.0046619237, -0.017077062, 0.00403724, 0.015906226, -0.0102233915, 0.0065966574, -0.002996696, -0.00081833533, -0.015049517, 0.010930176, -0.020589568, -0.005772075, -0.00873129, 0.014663998, -0.008431442, 0.002730759, 0.025601314, -0.015520707, 0.0002320253, 0.0061897207, 0.0012368733, 0.0031037845, -0.015906226, 0.005279468, 0.00023559491, -0.00031925787, 0.001474253, 0.020432504, -0.014314176, -0.015363644, -0.034382578, 0.013514581, -0.004197873, -0.0093881, -0.00967367, 0.0005158101, -0.011101518, 0.016734378, -0.01427848, 0.023902174, 0.00025634334, -0.007974531, -0.016548758, -0.008866936, -0.01118005, 0.0028539111, 0.004826126, -0.018362125, 0.018676251, 0.01709134, -0.013635948, 0.00008795766, -0.0047832904, 0.008631341, 0.019033212, -0.0002523275, 0.007296303, 0.0015420758, 0.015449314, -0.014442682, 0.013957214, 0.004758303, 0.0023166833, -0.0023166833, 0.04563402, 0.007710379, 0.0034678858, 0.019290226, -0.0032840504, -0.019090327, -0.018133668, 0.010173417, -0.01850491, -0.009823594, -0.007192784, -0.017619643, -0.01604901, -0.025315745, 0.024216302, 0.012693568, 0.017291239, 0.0046262275, -0.004847544, -0.008231543, 0.007924556, -0.02864263, -0.0257441, 0.010544657, 0.01914744, 0.012272353, 0.010701721, -0.01004491, -0.0064003286, -0.010944455, -0.0029734934, 0.02355949, -0.0015813416, 0.00751048, -0.0354963, 0.017119898, 0.02320253, -0.0011422783, 0.0055257715, -0.01361453, 0.0070357206, 0.008766986, 0.021246377, 0.0001725688, -0.010587493, -0.017676758, -0.0018954681, 0.007199923, 0.0023202528, 0.014535492, 0.0058541764, 0.01464972, -0.005861316, 0.002338101, -0.008138733, -0.01634886, -0.018719086, -0.0054044044, -0.014949568, 0.008281518, 0.010416151, -0.0073891133, 0.03315463, 0.00751048, -0.009659391, 0.015506429, -0.010573214, 0.013507442, -0.0062825307, 0.011015847, 0.023145415, 0.009181063, 0.0020739492, 0.022331541, -0.0070821256, -0.009894987, 0.0030341768, 0.015235137, -0.007817468, 0.002355949, -0.017434023, 0.014949568, 0.01746258, -0.015220859, -0.008459999, 0.00817443, 0.008538531, 0.028871085, 0.008060202, -0.017990883, 0.0002895854, -0.011072961, -0.008881214, 0.0016063289, 0.0075747333, 0.004826126, 0.009709366, -0.0031216326, 0.010901619, -0.012343746, -0.0037016957, 0.008831239, -0.0052651893, 0.0018633415, 0.0114941755, 0.026772149, -0.0059791133, 0.010930176, 0.0154778715, 0.012236657, -0.022103086, 0.013179037, 0.0016429175, 0.012043897, -0.0077032396, 0.023116859, -0.027486073, 0.0069036447, 0.02320253, -0.026043946, 0.002450544, 0.01502096, 0.029699238, -0.007860303, -0.01567777, -0.013628809, 0.002600468, -0.005297316, 0.0032340756, -0.0057470878, 0.017291239, -0.007474784, 0.004365645, -0.00046048095, 0.005550759, 0.0065431134, 0.02535858, -0.0005225031, 0.0051723793, -0.029356554, -0.008759847, -0.006618075, -0.0011931454, 0.0015170884, 0.032897618, 0.011901112, 0.00657167, -0.003748101, 0.011115796, -0.02938511, 0.0023309619, -0.013785872, 0.002968139, -0.028885365, 0.009830733, 0.0127649605, 0.0077817715, 0.006168303, 0.004469164, -0.0033679362, -0.0013118353, 0.0126721505, -0.017319795, 0.011122935, -0.025615592, -0.013364657, -0.006507417, 0.010530379, 0.012507948, 0.0076604043, -0.009687948, 0.010830226, -0.01961863, 0.00061665184, -0.014242783, 0.00021562735, 0.01887615, -0.015934784, -0.010209112, -0.011672657, 0.0054329615, -0.012265214, -0.00007869896, -0.01653448, -0.013043391, -0.0075176195, -0.0045476956, -0.009366683, -0.0024576832, 0.00286462, -0.009730783, 0.00023827213, 0.0061004804, -0.014528353, -0.013071948, 0.023902174, 0.01746258, 0.033582985, -0.004533417, 0.0255442, 0.02938511, 0.0060969107, 0.017248403, -0.008995442, -0.0074033914, -0.01267929, -0.0050010374, -0.0095094675, 0.0030163287, 0.0030448858, -0.008567087, 0.017034225, 0.011515594, 0.01756253, 0.0025397844, 0.0021453416, 0.014328454, 0.0040800753, -0.008974024, -0.013864404, 0.0144641, -0.010787391, -0.017933771, -0.013785872, 0.008802682, 0.015249416, 0.0034143415, 0.037066933, 0.011629822, 0.020204049, 0.0011226455, -0.002413063, -0.00029962495, -0.0007188322, 0.00863848, 0.0003074335, -0.00034268352, 0.018819036, 0.006600227, -0.028014377, 0.00020960362, -0.01127286, -0.020632403, 0.008538531, -0.017962327, 0.0073462776, -0.03232648, 0.0037124048, 0.0053472905, 0.014399846, -0.015006682, 0.0026468732, -0.010009214, 0.0021542655, -0.005097417, 0.0014233859, -0.018105112, 0.008959746, 0.005147392, 0.009409518, 0.013643087, 0.0066252146, -0.002280987, 0.017819542, -0.012729265, 0.0028556958, -0.0051402524, 0.011237163, 0.011986784, -0.0000028724285, 0.00013207593, 0.003887316, 0.01690572, -0.009966379, -0.0076961005, 0.002600468, 0.00647886, 0.006939341, -0.0067215944, -0.026557973, 0.025087288, 0.014042884, -0.010980151, 0.017933771, -0.041778833, -0.036838476, 0.010494682, 0.0024291263, 0.0011235379, 0.008324354, -0.012857771, -0.01117291, 0.017676758, 0.0072998726, 0.0070000244, -0.006257544, 0.009002581, 0.026529415, -0.0013466391, -0.008160151, -0.004629797, -0.0027468225, -0.0015974048, -0.011194328, -0.001760715, -0.012193821, 0.0042799744, 0.0021149998, -0.008474277, 0.019647188, 0.010651746, -0.01437129, 0.012750682, 0.0029003161, 0.007824607, -0.009930682, 0.000268837, 0.014792505, -0.03061306, -0.009652252, -0.002884253, 0.017519694, 0.0009521961, 0.010587493, -0.004126481, -0.003951569, 0.0021756834, -0.006568101, 0.0036767086, 0.015549264, -0.022759896, 0.009216758, 0.0025968985, -0.018333567, 0.034953717, -0.010109164, -0.015706327, 0.013685922, 0.008295797, 0.029327996, 0.0012823859, 0.0116797965, 0.0020168351, -0.001033405, 0.0034518223, -0.011608404, -0.010373315, 0.010844505, 0.02300263, 0.0035892527, -0.023231085, -0.0006751044, 0.007938835, 0.012750682, 0.0149352895, 0.012400859, 0.01746258, -0.005193797, 0.018047998, 0.0092310365, -0.007867442, 0.005718531, 0.01324329, 0.006307518, 0.0006452088, -0.012757821, -0.017305518, 0.0061040497, 0.013436049, -0.0099449605, 0.009695088, -0.003307253, -0.00021796991, -0.0054293917, -0.017676758, -0.020818023, -0.0167201, 0.009116809, -0.009302429, -0.0062861005, -0.0025130124, 0.004872531, -0.004490582, 0.0010369746, 0.0005639999, 0.0002884699, -0.015163745, -0.002507658, 0.013107644, 0.012279492, 0.016848605, 0.010351897, -0.0026093922, -0.0255442, 0.006846531, 0.008231543, 0.022959795, 0.010865923, -0.0099521, 0.014228505, 0.012150986, -0.0072998726, -0.00966653, -0.03746673, -0.02355949, -0.024687491, -0.016477365, -0.020075543, 0.0026593667, -0.01690572, -0.02206025, -0.021132149, -0.00957372, 0.01117291, 0.012665011, 0.01614896, -0.0016348859, 0.020532453, -0.011415645, 0.0066787587, -0.0024523288, -0.012150986, -0.014806783, 0.005782784, -0.00049573096, -0.009166784, -0.00967367, 0.012565061, -0.0028092908, -0.014414125, -0.012722125, 0.012829213, 0.009823594, -0.0054365313, 0.012986277, 0.01924739, -0.010680303, 0.0062039993, -0.0045512654, -0.025886884, -0.008517113, 0.00572924, -0.007860303, 0.008410024, 0.0069464804, 0.0036767086, 0.018362125, -0.026715035, 0.00039221198, 0.01624891, 0.020118378, -0.007192784, -0.012008201, 0.0032572781, -0.013036252, 0.012800657, -0.021589061, 0.011472758, -0.00281643, -0.027186224, 0.010373315, 0.013807289, 0.01042329, -0.017919492, -0.003708835, 0.0022185186, -0.008110177, 0.012043897, 0.03172678, 0.017048504, 0.0011958226, 0.0062218476, 0.03652435, -0.038180653, -0.0046440754, -0.0077603534, -0.016177516, -0.0025951136, 0.012415138, 0.010430429, -0.032355033, -0.01699139, 0.0400083, -0.020104099, 0.01821934, -0.008995442, -0.0011565569, 0.005379417, 0.026415188, -0.0038230629, -0.008124455, 0.026615085, 0.006271822, 0.0018829745, -0.0061468855, 0.02301691, -0.001774101, 0.0038194933, 0.0011931454, 0.0015153036, -0.002770025, -0.009359543, 0.015706327, 0.0115869865, 0.0013832276, 0.016563036, 0.006125468, -0.008317214, 0.00049126893, 0.017848099, -0.016734378, -0.022945516, 0.0099449605, -0.009994935, -0.042035844, -0.00014456961, 0.033097517, 0.004176455, -0.009159644, 0.0037873667, 0.007710379, -0.028756857, -0.016762935, 0.028114326, 0.017962327, 0.00003511056, 0.029784909, -0.0017794555, -0.007410531, -0.0060612145, 0.013186175, -0.0019043921, -0.017362632, -0.0018294302, -0.000035389436, 0.009209619, -0.0013966138, -0.017105618, -0.033925667, -0.015792, -0.019233111, -0.007674683, 0.0074390876, 0.013507442, 0.004579822, -0.007817468, -0.004215721, -0.002179253, -0.028571237, -0.0048975185, 0.025943996, 0.012172404, -0.008567087, 0.012372303, 0.004701189, 0.0074248095, -0.027114833, -0.012700708, -0.0072070626, -0.03446825, 0.0050938474, -0.01840496, 0.002047177, 0.012015341, -0.016877163, -0.01869053, -0.01906177, -0.009181063, 0.012543644, -0.025315745, 0.025230072, 0.0028199996, -0.0038087843, -0.0020061263, 0.0022542148, 0.0061433157, 0.0012083163, -0.0054722275, 0.0051116957, -0.011487037, -0.004469164, 0.022702781, 0.0032233668, 0.024373364, -0.011958227, 0.00033353636, 0.012714986, -0.0018901137, -0.0071963537, -0.016220354, -0.01643453, -0.011115796, -0.00582205, 0.0116441, 0.022231592, 0.015649214, 0.0039694174, 0.008759847, 0.017848099, 0.00019610599, -0.00026147466, -0.025901161, 0.0013207593, -0.004290683, 0.013535999, 0.017548252, 0.003633873, -0.0017089555, -0.0006684113, 0.009245316, -0.02884253, 0.018019442, -0.012879188, -0.010537518, 0.03155544, 0.0028592655, 0.016834328, -0.012729265, -0.031069972, 0.010830226, 0.000654579, 0.022031695, -0.011030125, -0.00910967, -0.0058006323, 0.016577315, 0.017933771, -0.008809822, -0.016962834, -0.00816729, -0.0043299487, -0.041750275, -0.028242832, 0.012008201, 0.018547745, 0.04095068, 0.0034411135, 0.0074676448, 0.0072142016, 0.0000019242482, 0.034582477, -0.0071606576, -0.00006637262, -0.00040448256, -0.0008754493, 0.007157088, 0.012429416, 0.020646682, -0.00027129112, -0.02283129, -0.0015581391, 0.021217821, -0.015435036, 0.03195524, -0.016477365, -0.006778708, 0.022402935, 0.0055721765, 0.010259087, 0.008852657, -0.0054508094, -0.01089448, 0.014763948, 0.0077603534, 0.024973061, -0.00065681007, 0.012936302, 0.0020453923, -0.0043799235, 0.000233587, 0.025144402, 0.0031430502, 0.007974531, 0.0033590123, -0.016391695, 0.007099974, -0.01662015, -0.021389162, -0.008374328, -0.031127086, 0.0051866574, 0.0140357455, -0.024587542, -0.011665517, 0.007410531, -0.024758883
2697
+ -0.024500476, -0.037831828, -0.0230399, -0.052981745, 0.028696058, -0.022739192, 0.012636862, 0.01245787, -0.003008862, 0.043874614, 0.0027636425, 0.002956954, -0.054299127, 0.0095725125, -0.03682947, 0.012887452, 0.010324281, -0.0076465546, -0.03680083, -0.003941412, 0.000223293, -0.051062945, -0.04765493, -0.040495235, 0.010130969, -0.01058203, 0.0049509294, 0.016238188, -0.014663056, 0.04456194, 0.011577227, 0.003357897, 0.0008036758, -0.023168774, 0.02229529, -0.009092813, 0.016094996, 0.017784683, 0.013932767, 0.008355364, 0.032361824, 0.03213271, 0.0032379723, -0.0116559835, -0.0052552163, -0.023741549, -0.021006545, -0.023598356, -0.011068889, 0.041182566, 0.052437607, -0.0038304368, 0.0007942787, -0.0051621404, -0.011792018, 0.009386361, 0.018371778, 0.04487697, 0.038490523, -0.026848856, -0.007847026, 0.0037946384, -0.005262376, -0.017541254, 0.053468604, 0.0045786253, 0.012035448, -0.0006859883, 0.0041633626, 0.010360079, 0.0045893644, -0.034624286, 0.030271191, 0.0067838114, 0.01220728, -0.019316858, 0.03800366, 0.0036460748, -0.008240809, -0.024557754, -0.0063792886, -0.007209813, -0.0432732, -0.025030294, 0.015321747, -0.0578217, 0.02798009, -0.042614505, -0.013775254, 0.0035368893, -0.009107132, 0.013746615, -0.02750755, 0.0013325983, -0.0009934077, 0.0026007593, 0.03548345, 0.019087747, -0.006712214, 0.013109402, 0.012672661, -0.037488163, 0.029082682, -0.028610142, 0.04742582, 0.011999649, -0.004746878, 0.041411676, 0.002042303, 0.027836895, 0.016982798, -0.009314763, -0.006465205, 0.02656247, -0.004277918, 0.0107323835, -0.04393189, -0.020505367, -0.0027654322, -0.04768357, 0.005470007, -0.03244774, -0.010195406, -0.0024718847, 0.055587873, 0.0020494629, -0.0071704346, 0.0074818814, 0.022982622, 0.03032847, -0.021765474, 0.04255723, -0.0055093854, 0.03763136, 0.014004364, 0.020090105, 0.021078143, 0.06655653, -0.004020169, 0.012192961, -0.0020548324, 0.0044067926, 0.0073458473, -0.034423813, -0.02702069, 0.016238188, 0.013818212, 0.012830174, -0.00799022, 0.015450622, -0.028696058, -0.039177854, 0.007539159, 0.003241552, 0.01197817, -0.023798827, 0.020720158, -0.00987322, -0.020977907, 0.03387968, -0.0043853135, -0.025187807, -0.035540726, 0.03267685, -0.010753863, -0.006558281, -0.016553216, 0.024958698, -0.031932242, 0.019145025, 0.0069019464, 0.036743555, -0.009966296, -0.008333885, -0.066327415, 0.014849208, -0.021192698, -0.030958522, -0.021994583, 0.024342963, -0.029225877, -0.03952152, 0.016080676, -0.028681738, 0.007567798, 0.0068625677, 0.06248982, -0.002255304, 0.005348292, -0.022882385, 0.017197588, -0.01666777, -0.0026598268, -0.031932242, -0.0051549803, -0.03290596, 0.009823102, -0.041010734, 0.0020727317, -0.018701123, -0.00916441, -0.018443374, 0.024958698, -0.0065475414, -0.0009943027, 0.038118217, -0.017240547, 0.0098016225, 0.002137169, 0.006504583, 0.018629527, 0.012873132, 0.06300532, 0.02560307, -0.04040932, -0.0016556795, -0.008749148, -0.01431939, 0.037201777, 0.028366713, 0.0072491914, 0.053182214, 0.010868417, -0.023841785, 0.014906486, -0.0072133928, -0.031588577, -0.013016326, 0.018758401, -0.004564306, 0.00039713935, 0.018028112, 0.02040513, 0.020734478, -0.014040162, -0.03826141, 0.028094644, -0.03430926, -0.0058065127, -0.022911025, -0.0015348596, 0.006790971, -0.0098087825, -0.0051227617, 0.044103723, 0.008978258, -0.0032129132, 0.008613113, -0.037889108, 0.0040953457, 0.026447915, 0.005001047, 0.022581678, -0.0016852133, -0.012944729, 0.038375966, 0.044103723, 0.0033650568, 0.0056311004, 0.032218628, -0.026118567, -0.030815328, -0.030729411, -0.00092002086, -0.03969335, 0.006067842, 0.011613025, -0.02230961, 0.010682265, -0.0007356587, 0.05727756, -0.011598706, 0.055330124, 0.0034885616, -0.007589277, -0.018930234, -0.015479261, 0.013402949, -0.011598706, 0.0018525711, 0.00105695, -0.013467386, 0.062088877, 0.025660347, -0.015694052, 0.0040702866, 0.014075961, 0.010646467, 0.0051585604, 0.028767655, -0.014541341, 0.0050475853, 0.004979568, 0.039550155, 0.014935125, 0.036915388, -0.0032612411, -0.024357283, 0.01973212, -0.028252156, 0.01363206, -0.024085214, -0.02657679, -0.022953983, -0.03387968, -0.0068768873, 0.0151069565, 0.03519706, -0.043187283, 0.005774294, 0.006769492, -0.008247969, 0.016882561, -0.0044067926, 0.005989085, 0.021550683, -0.015536538, -0.00680887, -0.037430886, -0.012880292, 0.030901244, -0.0015894524, -0.032562293, -0.0071310564, 0.05796489, 0.01880136, 0.009751505, 0.019345496, 0.017584212, -0.0057635545, -0.015078318, -0.03270549, 0.0132740745, 0.030614857, -0.012500828, -0.004417532, -0.020276258, 0.008169212, -0.01292325, 0.04699624, -0.049230065, -0.025703305, 0.020576963, 0.043616865, -0.01762717, -0.041411676, -0.011004452, 0.017512614, 0.0464521, 0.018643847, 0.00060812663, -0.00050431106, 0.033736482, 0.008820744, 0.00540915, 0.010682265, -0.010288482, -0.018371778, -0.022209374, -0.019202303, 0.029311793, -0.047053516, 0.0062933723, 0.03992246, 0.02773666, -0.0020727317, -0.009722866, -0.017312143, -0.038862824, -0.02417113, 0.009923338, 0.016982798, -0.021693876, 0.03731633, -0.024686629, -0.00894246, -0.03267685, 0.026433595, -0.012099884, 0.0178706, -0.026032653, 0.023340607, -0.0077825887, 0.01126936, -0.00017876863, -0.021393169, 0.039807905, -0.039550155, -0.011090368, 0.016066356, -0.04539247, 0.022051862, -0.0062181954, -0.030643495, -0.0004461385, -0.040609792, -0.005584562, 0.043359116, 0.038375966, -0.03453837, -0.018872956, -0.0019689163, 0.008076136, -0.008169212, 0.0077611096, -0.018987512, -0.005094123, 0.00085424114, -0.0048972317, -0.0035995368, -0.0033435777, -0.002700995, -0.021178378, 0.0027081547, 0.015149915, 0.016023397, -0.008083296, 0.026548149, -0.013231116, 0.010381558, 0.0065833395, 0.007911463, 0.007940102, 0.017770363, -0.019374136, 0.019374136, 0.011462672, 0.0059819254, 0.033707846, 0.0005884374, -0.022023223, 0.0007705622, 0.014863527, -0.029082682, -0.0024092374, 0.011598706, 0.007804068, 0.01973212, 0.018443374, 0.0076680337, -0.027178204, -0.013682177, 0.026548149, 0.021307252, -0.014978082, -0.0056239404, -0.013252595, -0.025903778, 0.030242553, -0.009837422, 0.022467123, 0.0075248396, -0.013832531, 0.0052480567, -0.0057241763, -0.03619942, -0.032275908, 0.03493931, -0.014505543, -0.024930058, -0.045048803, 0.013567623, 0.017483976, -0.023870423, -0.018615207, -0.00657618, -0.015436303, -0.05515829, 0.023383565, 0.025173489, 0.06134427, -0.020075785, 0.07869937, 0.0005101283, 0.034681562, -0.016109314, 0.02606129, -0.015192873, -0.031187633, 0.015794288, -0.004367414, -0.017254865, 0.033507373, -0.00799738, 0.026634065, -0.0040058494, 0.010524752, -0.0063291704, -0.005734916, 0.0071525355, -0.021092461, -0.0091214515, -0.0013782413, -0.017240547, -0.014863527, -0.020261938, 0.00869903, -0.0399511, -0.011161964, -0.009486596, -0.017441018, -0.04018021, -0.013574782, 0.02417113, -0.042156287, -0.009135772, 0.010861258, -0.015006721, 0.016639132, 0.02322605, 0.017713087, 0.02845263, 0.015865885, 0.0001514723, 0.0034957211, -0.00962979, 0.0060069845, 0.0016789485, -0.0056919577, -0.0047289785, 0.03218999, -0.00469676, 0.014254953, 0.007689513, 0.030643495, 0.008484239, -0.006246834, 0.012744257, -0.004528507, -0.063234426, 0.0032272327, -0.019989869, -0.005215838, 0.010195406, -0.032218628, -0.013023485, 0.0028996766, 0.04301545, 0.0061430186, -0.043559585, -0.0357412, -0.007027241, 0.00892814, 0.015464942, 0.041984454, 0.019159345, -0.004492709, -0.006551121, -0.010130969, -0.0063291704, -0.012794375, -0.0021317992, 0.003239762, 0.0262904, 0.026691344, 0.01033144, -0.01386833, -0.031903602, -0.0027797516, -0.022252332, 0.012257398, 0.01058203, 0.0062181954, -0.021779792, -0.002774382, -0.009200208, 0.017097352, 0.01996123, -0.04885776, -0.026118567, 0.0010274162, -0.015336067, 0.01010233, 0.012042607, 0.018672485, 0.040724345, 0.007403125, -0.0017917138, 0.004159783, -0.014512702, 0.016281147, -0.0073458473, -0.014906486, -0.016481617, 0.0076035964, 0.037946384, 0.012708459, -0.03645717, -0.018257223, 0.00013648169, -0.002301842, 0.013553303, 0.004274338, 0.02863878, 0.0039127734, -0.012543786, 0.014254953, 0.02464367, 0.0052194176, -0.0050189462, -0.017727405, 0.0220805, -0.008169212, 0.030471662, -0.013710816, -0.009622631, 0.04112529, 0.014068801, 0.025345322, -0.021593641, 0.004857853, 0.026347678, -0.0016109315, 0.0248871, 0.029469306, 0.007897144, 0.0019331177, -0.0117419, -0.03668628, 0.045249272, -0.0050869635, 0.028151922, -0.012558105, -0.040323403, 0.01600908, 0.020491047, -0.014591459, -0.028323755, 0.0023430102, 0.011111847, -0.026719982, 0.0070809387, -0.018199945, 0.0038590757, 0.007632235, 0.013281235, 0.022066182, 0.029898888, 0.020462409, -0.01431939, 0.0022660436, 0.004295817, -0.006554701, 0.06678563, -0.017569892, -0.008104775, 0.022452803, -0.015135596, 0.014992402, -0.020190341, -0.025803542, 0.0012395222, 0.019818036, 0.015608136, 0.008405482, 0.014126078, 0.0042278, -0.0005942547, 0.015865885, 0.0025434818, 0.014154717, -0.020304896, -0.006887627, 0.0023841786, 0.020147383, 0.03926377, 0.014061641, -0.012171482, -0.004768357, -0.004431851, 0.0025506413, -0.0069663837, -0.023097176, -0.01598044, 0.02770802, -0.018357458, 0.025875138, -0.0026204484, -0.029669777, 0.009909018, 0.008849383, -0.041468956, -0.013660698, -0.00587453, -0.033421457, 0.011018771, 0.011369596, -0.006386448, -0.0020781015, -0.03264821, -0.024285685, -0.007453243, -0.017011436, 0.0357412, 0.0262904, -0.015837247, 0.004764777, -0.013252595, -0.011348117, -0.010947174, -0.007123897, -0.025187807, 0.009329082, -0.009916178, -0.008792106, 0.01432655, -0.006934165, -0.0029981225, 0.002205186, -0.0015312798, 0.022452803, 0.031817686, -0.008562995, 0.005935387, 0.024027938, 0.028953807, 0.018472014, 0.016696408, -0.03124491, 0.035139784, 0.0065403813, -0.012257398, 0.007897144, -0.019388454, -0.007474722, -0.0013675018, 0.008756307, -0.025545793, -0.005470007, 0.0017022175, -0.020462409, 0.021579321, 0.028624462, 0.01761285, -0.01788492, -0.015923163, 0.009178729, -0.011827816, 0.059339553, 0.009035535, 0.035540726, -0.0020244038, 0.008119094, -0.032734126, 0.0033740064, -0.009708547, 0.02302558, -0.0034169646, -0.0084556, 0.027120925, -0.005677638, 0.044504665, 0.013653539, 0.0073136287, 0.0008412642, 0.020820394, -0.017927878, -0.0006953854, -0.0010882737, 0.004249279, -0.0062110354, 0.010889896, -0.02984161, 0.039349686, 0.024314325, -0.024457518, 0.016424341, -0.02770802, 0.005541604, -0.0049043912, -0.0139757255, -0.018285861, 0.00892814, 0.0164673, -0.007925782, -0.037402246, -0.0030178116, 0.004958089, 0.021393169, -0.03780319, -0.01741238, -0.000505206, -0.037659995, -0.025087573, 0.0013970356, 0.022524402, 0.009465117, -0.012157163, 0.033278264, 0.015779968, 0.040896177, 0.023784507, -0.008799265, -0.005731336, -0.002470095, -0.00447123, 0.005938967, -0.010002094, 0.0022588838, 0.0034724523, 0.018615207, 0.03425198, 0.012500828, -0.028696058, 0.013581942, -0.03668628, -0.0064007677, -0.037946384, -0.018400416, 0.03032847, 0.0054198895, 0.0010954334, 0.04461922, 0.0357412, 0.0137251355, 0.017727405, -0.037201777, 0.052924465, -0.01480625, -0.010897056, 0.00446407, 0.0141905155, 0.0011124377, -0.013309874, 0.019445732, -0.003923513, 0.0098159425, 0.013546144, 0.008119094, -0.01526447, 0.00516572, 0.029097002, -0.032533657, 0.0031663752, -0.03966471, -0.013202478, 0.010438835, 0.024600713, 0.010130969, -0.016810965, -0.0044032126, -0.0020029247, -0.040896177, 0.010739543, 0.035053868, 0.016710728, -0.025875138, -0.02040513, -0.01408312, -0.007768269, 0.017426698, 0.009701387, 0.0007781694, 0.000775037, 0.030271191, 0.017312143, 0.0030786688, 0.00399511, -0.0041025053, -0.02322605, -0.007327948, -0.017913558, -0.017913558, -0.02958386, -0.02538828, -0.0018275122, 0.02043377, -0.035053868, 0.011584387, 0.013123721, -0.0028960968, 0.00008546886, 0.01386833, -0.015207193, -0.019187983, -0.020934949, -0.02090631, 0.03829005, -0.0019528068, 0.021550683, 0.0057456554, 0.0039378325, -0.008319566, 0.0063363304, 0.040552516, -0.05355452, -0.009486596, 0.0017013226, -0.007954421, 0.03851916, 0.009622631, 0.03304915, 0.0035046707, -0.025273724, 0.029082682, 0.020820394, -0.0008994367, -0.0032827202, -0.031617213, 0.01925958, 0.010216885, -0.01338147, -0.03525434, 0.0053590317, 0.030872606, 0.006934165, 0.025431238, 0.0040094294, 0.03900602, 0.0026580368, -0.009715706, 0.019087747, 0.0128086945, -0.049430534, -0.057220284, -0.0100522125, 0.011713262, 0.03004208, -0.010209725, -0.044275556, 0.03399423, 0.008119094, 0.006694315, -0.005699117, -0.010854098, 0.016266828, 0.016367063, -0.021880029, -0.019717801, -0.02866742, -0.0192739, 0.020648561, 0.012608224, -0.014247794, 0.014305071, 0.007918623, -0.033793762, 0.033936955, 0.009035535, -0.032247268, -0.0051764594, -0.031559937, 0.032505017, -0.0044748094, 0.007854186, -0.0037158818, -0.02229529, -0.04860001, -0.020720158, -0.012200121, 0.063234426, -0.030929884, 0.028481267, -0.004582205, -0.009436478, 0.0053697713, -0.009035535, -0.018472014, 0.013030645, 0.017541254, -0.01057487, 0.017999474, -0.014469744, -0.0074460832, -0.020118743, 0.0071095773, 0.017168948, 0.0025023136, 0.018242903, -0.0026830959, -0.023383565, 0.0039342525, 0.011935212, 0.0046180035, 0.022051862, -0.012901771, -0.019603245, 0.009987775, -0.0061644977, 0.004646642, 0.007002182, -0.0033919057, -0.01432655, 0.026748622, 0.049974672, -0.021335892, -0.040752985, -0.026276082, -0.032791406, 0.011176284, -0.0234838, -0.003243342, -0.00092002086, -0.04040932, 0.025245085, 0.02656247, 0.04444739, -0.04576477, -0.022066182, -0.036743555, -0.014849208, -0.005094123, -0.013317033, -0.009314763, -0.014655896, 0.05303902, 0.016137954, 0.017698767, -0.048657287, 0.06518187, 0.018744081, 0.008176372, 0.0026616168, -0.05409866, -0.014963763, 0.0010265213, 0.019102067, 0.017942196, 0.0234838, 0.013997205, 0.0016270408, 0.019374136, 0.05289583, 0.0022803629, 0.00023828361, 0.018672485, 0.015708372, 0.018414736, 0.01220728, 0.012264558, -0.021063823, 0.0206772, 0.016868241, -0.0071310564, 0.0050153667, -0.0013334933, -0.012550945, -0.033736482, -0.016309787, 0.028953807, -0.0033793761, 0.005781454, -0.0142048355, -0.009085653, -0.0051299217, -0.029197237, -0.0077396305, 0.020806074, 0.04040932, -0.013581942, 0.010195406, 0.010846938, -0.008355364, 0.007496201, 0.00010549364, 0.018729763, 0.0067838114, 0.0098159425, -0.008634592, -0.011061729, -0.0072527714, -0.006619138, -0.012894611, -0.004507028, -0.0070773587, -0.008477079, 0.014691695, -0.0042600185, -0.01692552, -0.0037731593, 0.0024521956, 0.003152056, -0.009236007, 0.0066835755, 0.008978258, 0.0055129654, -0.020018509, -0.0040094294, 0.0027475331, 0.0015706582, -0.0019814456, -0.02066288, -0.013589102, 0.01622387, -0.020047147, -0.00017955173, -0.02442888, 0.010488953, 0.00963695, 0.0019760758, -0.026032653, 0.00041749972, -0.026204484, 0.027607786, -0.02723548, 0.008849383, -0.025431238, 0.0009549243, 0.00540199, 0.01011665, -0.0017281715, -0.005802933, 0.005896009, 0.0018364618, 0.0144339455, 0.031044438, 0.0049867276, -0.012959048, -0.020576963, -0.012479349, -0.0066620964, -0.006737273, 0.002369859, -0.0131452, 0.016180912, 0.0056454195, -0.023426523, -0.027292758, 0.017498296, 0.0066585164, 0.0009611891, -0.033507373, -0.012235919, -0.010152448, -0.036342613, 0.012293196, -0.022395527, 0.00082068006, 0.014920805, 0.03362193, -0.000405194, -0.008591634, -0.029054044, -0.025416918, -0.02770802, 0.007589277, -0.022137778, -0.013567623, -0.0109543335, 0.012264558, -0.03144538, -0.008978258, 0.01761285, -0.015865885, 0.028080324, 0.026118567, 0.017426698, -0.006594079, -0.0053769313, 0.0010005675, -0.044390112, 0.007220553, 0.038662355, 0.02255304, 0.01386117, 0.008491399, 0.0075606382, -0.0045034485, -0.02842399, -0.004181262, -0.01738374, -0.03829005, -0.009959136, -0.013474546, -0.007381646, 0.012937569, 0.032104075, -0.023125816, 0.011641664, 0.034137428, -0.000066674664, -0.015250151, -0.01502104, 0.012529466, 0.00038013505, 0.0065403813, -0.0039127734, -0.038776908, 0.041010734, 0.022438485, 0.015006721, 0.001079324, 0.01385401, -0.021522043, 0.009987775, -0.0131452, -0.01105457, -0.024615033, 0.016853923, 0.011784858, -0.022467123, 0.0488864, 0.012235919, -0.00063318555, -0.0037624198, -0.0155079, -0.015865885, -0.007832707, 0.00044748094, 0.048714567, -0.037173137, 0.022008903, -0.03287732, 0.047798127, 0.007070199, 0.032991875, 0.0109543335, -0.0009799832, -0.0077969083, -0.008147733, 0.0047540376, 0.0021890767, 0.014763292, 0.0077181514, -0.019703481, 0.0019456472, 0.038834188, -0.042843617, -0.0014015103, -0.018285861, -0.036285337, 0.039063297, 0.0014856368, 0.004514188, -0.02230961, -0.015794288, 0.010660786, 0.049974672, 0.023841785, 0.020304896, 0.011691783, -0.016238188, 0.01925958, 0.034080148, 0.0011715051, 0.0128158545, -0.001927748, -0.007875665, 0.04058115, -0.00047790966, -0.019574607, -0.0011562908, 0.030929884, -0.0028746177, 0.05796489, -0.01715463, -0.007327948, -0.0031842745, 0.010138129, -0.014247794, -0.0026472972, 0.0031377363, 0.012858813, 0.014498383, 0.00028683527, -0.009472277, -0.0009298654, 0.019918272, 0.009085653, -0.013939926, -0.011169124, -0.040552516, 0.013717976, 0.0084198015, 0.02656247, 0.005355452, -0.014863527, -0.008376843, 0.026677024, 0.008176372, -0.0385478, 0.024027938, -0.027750978, 0.021178378, -0.009951976, 0.00469676, -0.007725311, -0.013123721, 0.004038068, 0.0014122499, -0.012049767, 0.04605116, 0.009257486, 0.019588927, 0.0063076913, 0.008906661, 0.047826763, -0.023612674, -0.02278215, 0.009042695, -0.02066288, 0.014605778, 0.0035959568, -0.024958698, 0.0070129214, -0.020118743, -0.010904216, -0.0034473932, -0.0053017545, 0.004678861, -0.0076465546, 0.015550858, -0.016796645, 0.0007271565, 0.001925958, 0.0010229414, -0.0130521245, -0.012887452, -0.0012726358, 0.03124491, 0.005305334, 0.016080676, 0.011999649, -0.008963939, -0.03588439, -0.0073172087, -0.0006685365, -0.015966121, -0.0005888849, -0.0068052905, 0.021693876, -0.0069807027, -0.0009576092, -0.0050475853, -0.01643866, -0.0038662355, 0.028366713, -0.02256736, 0.011720421, 0.0042206403, 0.017569892, -0.00916441, 0.009551033, -0.003125207, -0.007209813, 0.022524402, 0.004796996, -0.0036568143, -0.006790971, 0.0021747574, 0.00493661, -0.012880292, -0.00027609576, 0.03614214, -0.013173839, 0.0064508854, -0.008133414, -0.0039915303, 0.027650744, -0.025259405, -0.028037366, -0.0102670025, 0.00018503338, 0.016796645, -0.014612938, 0.006486684, -0.0005383196, 0.034481093, 0.034223344, 0.01269414, -0.016395703, -0.022467123, 0.006934165, -0.021980265, -0.014734653, 0.0014919015, 0.0019349076, -0.038375966, -0.042385396, -0.024385922, -0.0018597308, 0.01762717, -0.017770363, 0.011570067, -0.0001001798, -0.037516803, 0.0054914863, -0.008376843, 0.022323929, -0.03267685, -0.038490523, 0.0066441973, 0.03594167, 0.009887539, -0.022123458, -0.037259053, -0.027321396, 0.039435603, 0.019145025, -0.010166767, 0.019044789, -0.005584562, 0.002631188, 0.013109402, -0.0013585521, 0.010388718, 0.012887452, 0.01738374, 0.004181262, 0.027364355, -0.0023179513, -0.0073673264, 0.036629003, -0.005938967, -0.013796733, 0.005913908, 0.0010658996, 0.021550683, 0.016768007, 0.0021747574, -0.006325591, -0.007353007, 0.026619747, 0.015951801, 0.018285861, 0.009436478, -0.004865013, -0.022882385, 0.0063112713, 0.028681738, -0.021794112, -0.016524576, -0.013209637, 0.0060069845, -0.012873132, -0.01292325, 0.031044438, -0.007327948, 0.0046394826, 0.013603421, -0.008348204, -0.003169955, -0.0011947742, -0.0012744258, -0.00917157, -0.0206772, -0.013431588, 0.002160438, 0.021980265, -0.01712599, -0.018944554, -0.00823365, 0.0042635985, -0.0015438093, -0.0016664191, -0.020176021, -0.012250238, 0.0027869113, 0.015937481, 0.018271543, 0.013445907, 0.014963763, 0.022739192, -0.017011436, -0.013295554, -0.011777699, 0.0044497508, 0.00062647334, 0.0018847898, 0.022925343, -0.00011282114, 0.009336242, 0.01269414, -0.01151995, 0.0038805548, -0.004410372, 0.013882649, 0.0026204484, 0.01738374, -0.021736834, 0.005820832, -0.016252508, -0.0011929842, -0.011441193, 0.018314501, 0.01996123, 0.029197237, -0.038461883, 0.012486508, -0.01928822, -0.012278877, -0.016266828, 0.021779792, 0.0009781934, -0.00092449563, -0.0027350036, 0.008305246, 0.029698417, -0.0044211117, -0.012801535, 0.0062897922, 0.0048972317, -0.006769492, -0.002908626, 0.01315952, -0.0095796725, 0.013087923, -0.019674843, 0.025445556, 0.020705838, 0.010932854, 0.014906486, -0.023426523, -0.0026884656, -0.02703501, -0.0044819694, -0.0016870032, -0.014677376, 0.027779618, -0.025989695, -0.0042134807, -0.006740853, 0.006014144, -0.021894349, -0.004650222, -0.01503536, -0.011033091, -0.004109665, -0.01056771, 0.0011142276, 0.014047322, 0.0028531386, -0.03617078, -0.003220073, -0.026877496, -0.029984804, 0.011412554, -0.0046144235, 0.015063998, -0.009622631, -0.016166592, -0.019102067, -0.004625163, -0.005659739, -0.0009799832, 0.012493668, 0.017097352, -0.0069449046, 0.03708722, -0.02116406, -0.0033543173, -0.00080949307, -0.0033704266, 0.0018651006, 0.013324193, -0.0020745217, -0.018443374, 0.006794551, 0.013896968, -0.025144849, 0.008441281, -0.015708372, -0.0005973871, 0.005584562, -0.0034635025, -0.02676294, -0.013567623, 0.02913996, -0.005799353, 0.004374574, 0.006465205, 0.003783899, 0.01832882, 0.0055093854, -0.021980265, 0.009472277, 0.012851653, 0.042499952, 0.01855793, -0.0139614055, 0.0071059973, -0.0135031855, -0.004059547, -0.011491311, 0.0102813225, 0.015307428, 0.011792018, -0.009257486, -0.014025843, -0.013639219, 0.001712957, 0.02230961, -0.031903602, -0.008126254, -0.013123721, 0.008541516, 0.016238188, -0.035827115, -0.0017013226, 0.0054163095, 0.016381383, 0.0029533743, -0.014734653, -0.011018771, -0.028724696, 0.008305246, 0.014398147, 0.030500302, 0.007163275, 0.0017800792, 0.0036514446, 0.027951451, 0.016037717, 0.0042456994, 0.00033740065, -0.0178706, 0.028824933, 0.016381383, -0.004886492, -0.0029462145, 0.026934773, -0.0034903514, -0.015779968, -0.010854098, 0.021565001, -0.0015187503, -0.005423469, 0.008863702, -0.011827816, -0.011949532, -0.0011625555, 0.0069449046, 0.021751154, -0.007889984, 0.021779792, 0.026132887, -0.008040338, -0.035798475, 0.021937307, 0.0051836194, 0.010911375, 0.00095939916, -0.0033006195, 0.00042600188, 0.009479436, 0.0055093854, 0.011498471, 0.002276783, -0.012386273, 0.023541078, 0.027851215, 0.008849383, 0.010259843, 0.019087747, -0.0032558714, 0.010703744, -0.012543786, -0.020619921, 0.004818475, -0.014412466, -0.001200144, 0.025717625, 0.012157163, 0.0076393946, 0.002887147, -0.007120317, -0.012200121, 0.017756045, -0.009973455, 0.007725311, 0.005115602, 0.015908843, 0.0076751933, 0.007163275, 0.0049688285, -0.004059547, 0.01433371, 0.010660786, 0.014226315, -0.0019814456, 0.020849032, 0.013116562, 0.006558281, -0.010324281, -0.0037481005, -0.008842223, 0.0067301136, 0.014104599, 0.013431588, 0.0001116465, 0.005448528, -0.011842136, 0.017741725, -0.0111977635, -0.017799003, -0.008398322, -0.011856455, -0.0070522996, 0.0153503865, -0.018185627, 0.013016326, -0.004857853, -0.004600104, 0.008240809, -0.008784946, 0.0010909586, 0.01973212, -0.013352832, -0.0010757442, 0.000962979, -0.0000052963564, -0.025445556, -0.018414736, -0.01715463, 0.006361389, -0.006536802, -0.008584474, 0.020190341, 0.0000459507, -0.004718239, -0.021192698, -0.0068410886, 0.017297823, -0.0006085741, -0.008140573, -0.0019134285, -0.013216797, -0.0009960926, 0.010940014, -0.0070165014, 0.000115450086, 0.016868241, -0.020190341, -0.027793936, 0.026376316, 0.0109686535, -0.00019498983, 0.009014056, 0.0061716572, -0.008577315, 0.00774679, 0.0005821727, 0.003687243, 0.0169112, -0.014863527, 0.024829824, -0.011613025, 0.009307603, 0.0102741625, -0.000120596116, 0.016739367, 0.0068625677, -0.0050619044, -0.006089321, 0.013474546, 0.015880205, 0.021736834, -0.004582205, 0.012644022, -0.004564306, 0.0027403734, -0.010474634, -0.008441281, 0.012185801, -0.02253872, 0.0016091415, -0.0007486356, 0.014312231, -0.013982885, -0.017168948, 0.013002006, 0.009236007, 0.004678861, 0.0064473054, -0.021493405, 0.0044282717, -0.0142048355, -0.018586569, -0.0046896003, -0.004675281, -0.009987775, 0.0016512047, -0.015522219, 0.023526758, -0.016324105, 0.013567623, 0.02371291, -0.011169124, 0.014834888, 0.0026025493, 0.00563468, -0.0019796558, -0.00060230936, 0.0002713972, -0.02349812, 0.013374311, -0.008512878, -0.0111906035, -0.0009110712, 0.010073692, -0.0035601584, 0.00375526, -0.009028376, -0.026748622, 0.006851828, 0.022595998, -0.0047146594, -0.003660394, 0.0050798035, -0.019989869, 0.022266652, -0.017469656, 0.030471662, 0.016639132, -0.008369683, -0.008677551, -0.011104687, -0.0048972317, 0.003404435, 0.006014144, -0.0169112, -0.038834188, 0.029154278, 0.005949707, 0.015092637, 0.020534005, 0.0059998245, 0.0065869195, 0.022395527, 0.0056883777, -0.0084269615, -0.009386361, -0.00012115547, -0.009028376, -0.02491574, -0.0077611096, 0.01503536, -0.0019939751, 0.006322011, 0.0013675018, 0.005856631, -0.00002944984, 0.0050833835, 0.00140867, 0.0000213812, 0.014935125, 0.0057671345, 0.02137885, 0.012951889, -0.0091214515, -0.008319566, 0.014075961, 0.0068768873, -0.000985353, 0.0074317637, -0.0027672222, 0.0073888055, 0.0047361385, 0.013990045, -0.0069628037, 0.011076049, -0.025617389, -0.024385922, 0.0033954855, -0.0032791405, 0.029440667, 0.020934949, 0.0074604023, -0.025961054, 0.011620185, -0.0008108355, 0.0014444685, -0.0051335013, -0.011684623, -0.006837509, -0.007632235, -0.015364706, 0.009622631, -0.012021128, 0.008963939, 0.023569716, 0.02135021, 0.019932592, 0.0025291624, 0.0011777699, -0.0010739543, -0.012264558, 0.008384003, -0.015951801, -0.0062110354, -0.004353095, 0.027894173, 0.0056668986, -0.013402949, 0.014340869, -0.021063823, 0.010496113, 0.015207193, 0.019574607, -0.00068509334, 0.003876975, -0.010166767, -0.017254865, 0.0139757255, 0.0202333, 0.0116631435, -0.004557146, 0.017827641, -0.015679732, -0.0051800394, -0.02160796, -0.016896881, 0.0084269615, -0.013223957, 0.038662355, 0.004367414, -0.007381646, -0.008276608, -0.011484151, 0.0016413601, 0.01198533, 0.01572269, 0.022338249, -0.018214265, -0.0047755167, -0.0060213036, -0.01291609, 0.008040338, -0.0012789005, 0.0062826327, -0.027679382, 0.008126254, 0.009715706, -0.046853047, 0.035426173, -0.0055774027, 0.014491223, -0.008362524, -0.004292237, -0.0022427745, -0.027851215, 0.029412027, 0.0048327944, -0.014505543, 0.013138041, 0.017498296, -0.012715619, -0.01834314, 0.010703744, -0.028080324, 0.0009585042, 0.016725048, -0.009357722, -0.01809971, -0.017369421, -0.01900183, -0.040495235, -0.007320788, 0.006296952, -0.0011840346, 0.007932942, -0.009243166, 0.005656159, -0.0029050463, 0.0066406173, 0.011226402, -0.010675105, -0.004782676, 0.0011151226, 0.014419626, 0.009314763, 0.011913733, -0.001999345, 0.021436127, 0.009185889, 0.0011312319, 0.0013657119, 0.0019778658, -0.00034836392, -0.0027171043, 0.010610668, -0.0011652404, 0.014720334, 0.009500915, 0.006304112, -0.0036586043, -0.0098159425, -0.0018024533, 0.0074460832, -0.0013746615, -0.0040989257, -0.020705838, -0.004958089, -0.029555222, 0.0022606738, 0.0033507373, -0.03668628, 0.000022709659, 0.023784507, 0.004836374, -0.01502104, -0.01598044, -0.0056275204, -0.016338425, 0.0070522996, 0.0169112, 0.017226227, 0.0024146072, 0.02089199, -0.008806425, 0.008076136, -0.007184754, -0.03456701, 0.0026114988, -0.0062611536, 0.019187983, 0.008176372, 0.03032847, 0.024013618, -0.0026132888, 0.023168774, -0.010023573, 0.0071525355, -0.018600889, -0.005677638, 0.019818036, -0.020548325, -0.002536322, 0.008562995, 0.009157251, -0.0155794965, 0.007775429, 0.0042421194, -0.0020315635, 0.027808256, 0.0026437175, -0.011648824, 0.0139614055, 0.002770802, 0.015393345, 0.012422071, -0.009508075, 0.02726412, 0.0013343882, -0.009357722, 0.01057487, -0.005355452, -0.0008596109, 0.00305361, -0.018056752, -0.009257486, -0.008011699, 0.023455162, -0.004718239, 0.029197237, 0.007242032, 0.0011303369, 0.02650519, 0.022853747, 0.00281734, -0.012465029, -0.0028531386, 0.009236007, 0.008727669, -0.0015375445, -0.009601152, 0.008362524, 0.0026830959, -0.0023626995, 0.008183531, -0.008183531, 0.005817252, 0.02490142, 0.01668209, -0.0071310564, -0.019431412, 0.0051764594, 0.005001047, -0.0033543173, -0.008849383, 0.0022517242, -0.010796821, 0.002019034, -0.0018257223, 0.0006005194, 0.013095083, 0.017369421, 0.010796821, 0.0039056137, 0.01409744, 0.005502226, 0.0014176196, 0.008827904, -0.0059246477, -0.025631709, -0.02322605, -0.016524576, -0.00069180556, 0.017168948, 0.012228759, -0.013281235, 0.02116406, 0.005355452, 0.0013290184, 0.0038590757, 0.03078669, 0.013789573, 0.00799022, -0.012959048, 0.007242032, 0.009264645, -0.009486596, -0.013574782, -0.0055165454, 0.009543873, -0.0025721204, -0.029025404, 0.022209374, -0.018429056, -0.010624988, -0.015822927, 0.0034402336, 0.0065690205, -0.0042170603, 0.0033972755, -0.011104687, -0.03150266, 0.016166592, -0.0030160216, 0.01151279, -0.008090456, 0.006318431, -0.0049509294, -0.014297911, -0.0169112, -0.016295467, -0.011813497, -0.011405394, -0.005942547, -0.019545969, 0.01598044, -0.00020293261, 0.0040058494, 0.009071334, 0.009601152, -0.0076465546, -0.04396053, 0.012035448, 0.0054198895, -0.0026097088, -0.0019456472, 0.002700995, -0.010374398, -0.027636424, -0.023942022, 0.0039843703, -0.029812971, 0.020333534, 0.004567886, -0.01056771, -0.005265956, 0.005756395, -0.0056668986, -0.0010524752, -0.01431939, 0.025144849, 0.015278789, -0.012593904, 0.011312318, -0.006765912, -0.006461625, 0.018772721, 0.0036066964, -0.004954509, -0.0047074994, 0.001997555, 0.009465117, 0.016080676, -0.007088098, -0.019603245, -0.007954421, -0.00822649, -0.002276783, -0.011255041, 0.016739367, -0.009193049, 0.013209637, 0.0054807467, 0.003150266, 0.015550858, -0.0011831396, -0.015808607, -0.015063998, -0.0100450525, -0.002022614, -0.0018149827, -0.0032970395, 0.0041490435, 0.0047325585, 0.00018257223, 0.018615207, 0.015307428, -0.009687068, -0.013904128, -0.002158648, 0.0051048626, 0.001551864, -0.024615033, -0.005001047, 0.018156987, -0.0072133928, 0.024013618, -0.012436391, 0.007961581, 0.015407664, 0.009980615, 0.009286124, 0.009493756, -0.0036156462, -0.0051084426, 0.0044748094, 0.003687243, -0.009250326, -0.018744081, 0.0035154102, -0.010918535, 0.0053590317, 0.017641488, -0.021722516, -0.011204923, 0.025660347, 0.0114197135, 0.02491574, 0.0052981745, -0.003191434, -0.0037481005, 0.014047322, -0.0116559835, 0.0007401335, 0.022653276, 0.007206233, 0.0057170168, -0.017841961, -0.0045893644, 0.009236007, -0.023942022, -0.00587095, 0.0011643454, -0.029927526, 0.011355276, -0.02842399, -0.027836895, 0.008727669, -0.00091286114, 0.01665345, 0.00016590356, 0.0054377886, -0.014706014, -0.0123504745, 0.0024647252, 0.0020154542, -0.03499659, -0.005559503, -0.014154717, -0.009715706, -0.0011231772, -0.013803893, 0.0021228497, -0.008584474, -0.006465205, 0.0016386752, 0.010682265, -0.03777455, 0.013710816, 0.03482476, 0.0055702426, -0.0000061843266, 0.017670128, 0.012629703, -0.0008927245, 0.002020824, -0.03078669, 0.013238276, 0.0029712736, 0.0020798915, -0.0075463187, -0.011290839, 0.0041705226, -0.0070522996, 0.00962979, 0.036113504, -0.0038626555, -0.012994847, -0.005824412, 0.00633991, -0.011534269, -0.0039557316, 0.034080148, 0.012128524, -0.003338208, -0.0012941149, -0.0036568143, -0.019187983, -0.011204923, 0.026548149, -0.011011612, -0.022352569, -0.02137885, 0.01385401, -0.01081114, -0.0063757086, 0.0155794965, 0.014054482, 0.008605953, -0.012894611, 0.021593641, -0.0075964364, -0.013667858, 0.011154805, 0.013338512, -0.0038447564, -0.011133326, 0.0006412402, 0.010682265, 0.0013513925, 0.003970051, -0.010166767, 0.007868505, 0.013510345, 0.007184754, 0.008205011, -0.03201816, 0.0044604903, -0.010739543, -0.010088011, -0.002371649, -0.010710904, 0.014992402, -0.0019420673, 0.0074460832, -0.015135596, 0.012364794, -0.011147645, -0.0029444247, -0.00094060495, 0.011885094, -0.0056275204, 0.0057098567, 0.028524226, -0.035053868, 0.017355101, 0.0011938792, 0.0067766514, -0.0017245916, -0.027178204, 0.006765912, -0.0077897483, 0.0014927965, 0.009364882, 0.022123458, -0.0036800834, -0.009364882, -0.033278264, 0.00281913, 0.0076751933, 0.008305246, -0.01056771, -0.0027206843, -0.01480625, 0.029641138, -0.015364706, 0.029240195, 0.0032505016, -0.002960534, 0.0023304808, -0.016037717, -0.014355189, -0.0014587879, 0.005996245, -0.02958386, 0.010324281, 0.02160796, -0.0051549803, -0.00870619, 0.006694315, 0.017168948, 0.014978082, -0.004088186, 0.007091678, 0.01741238, 0.011219243, -0.006440146, 0.0013997204, 0.01408312, 0.015078318, -0.0059246477, 0.038118217, 0.010195406, -0.0011231772, 0.025631709, -0.0009611891, -0.0102741625, -0.019202303, 0.004603684, -0.018629527, -0.0151212765, -0.0038948741, -0.014448265, -0.022638956, -0.024514796, 0.017040074, 0.0139614055, 0.012801535, 0.008326725, -0.008247969, -0.0088851815, -0.0029032563, -0.022624636, -0.02557443, 0.0102741625, 0.016309787, 0.005427049, 0.0026150786, -0.0013406529, -0.02704933, -0.018156987, 0.0012994846, 0.016954158, 0.003404435, 0.0013585521, -0.024586393, 0.017512614, 0.020806074, -0.013818212, -0.0077969083, -0.011971011, 0.016567534, 0.021507725, 0.011720421, -0.0015223302, -0.009944817, -0.020147383, -0.0016377802, 0.007940102, -0.0039557316, 0.009228847, -0.0032970395, 0.006178817, -0.000004656599, 0.021335892, -0.004621583, -0.0088995015, -0.014398147, -0.011870774, -0.007063039, 0.0018257223, 0.0013487076, -0.006465205, 0.017698767, 0.012636862, -0.005989085, 0.003851916, -0.005616781, 0.0081906915, 0.003873395, 0.008283767, 0.015794288, 0.001034576, 0.014920805, 0.017226227, -0.00799022, -0.010632147, 0.0052945944, 0.024471838, -0.0053984104, -0.0077825887, -0.017827641, 0.013245436, 0.017168948, -0.013538984, -0.0066370373, 0.010023573, 0.0064938436, 0.0034509732, 0.004313716, -0.020820394, 0.013660698, -0.02021898, -0.0016485198, 0.0019223782, 0.011498471, 0.012980527, 0.013639219, -0.011613025, -0.0043423553, -0.008598794, -0.0026974152, 0.0049043912, -0.0063327504, -0.00085871597, 0.009135772, 0.021121101, -0.0012851653, 0.01480625, 0.013839691, 0.011849295, -0.029898888, 0.0017639699, 0.017283505, 0.008405482, -0.008269448, 0.023755869, -0.029526584, 0.016481617, 0.009286124, -0.023455162, 0.0021407488, 0.012758577, 0.022610318, 0.00047611972, -0.016825283, -0.019187983, 0.010209725, 0.0048685926, 0.012944729, -0.00090301654, 0.0065153227, -0.0022284552, 0.002606129, -0.007320788, 0.011469832, 0.0070129214, 0.04507744, 0.0012896401, -0.0027815416, -0.022996942, -0.016052037, -0.0058136727, -0.006690735, 0.023927702, 0.013281235, 0.024271367, -0.0015831876, -0.004131144, 0.0015992969, -0.035139784, 0.012658341, -0.009593992, 0.003665764, -0.028581504, 0.004152623, 0.0017550202, 0.013682177, 0.0013263335, 0.00010829039, -0.012013969, -0.004979568, 0.011928053, -0.015307428, -0.0009826681, -0.024457518, 0.0011643454, -0.0044425908, 0.015092637, 0.018486332, 0.023827465, -0.0076393946, 0.025259405, -0.006436566, -0.005473587, -0.0040953457, 0.0046144235, 0.02255304, -0.0026634065, -0.0032988295, -0.018028112, -0.010646467, -0.0070093414, 0.0050440053, -0.013345672, -0.014906486, -0.014548501, 0.0055093854, -0.0025434818, -0.011527109, 0.005115602, -0.010023573, -0.0069914423, 0.0055093854, -0.009228847, -0.01575133, 0.025946736, 0.026906135, 0.03456701, 0.0025882297, 0.023569716, 0.025230765, 0.012729938, 0.0017111672, -0.012765736, 0.0006671941, -0.017713087, -0.020476729, -0.012507987, -0.0066083986, 0.01409028, 0.001925958, 0.0011777699, 0.010352919, 0.014584299, 0.00634707, 0.0044067926, 0.00986606, -0.000446586, -0.011204923, -0.0098087825, 0.015049679, -0.0031377363, -0.021221336, -0.003690823, 0.0019295379, 0.014312231, 0.009200208, 0.021880029, 0.015307428, 0.0063936077, 0.010159607, -0.011913733, -0.01502104, 0.008355364, 0.009014056, 0.006669256, -0.024013618, 0.015779968, 0.0019349076, -0.009937657, 0.0041490435, -0.018314501, -0.021522043, 0.0012592115, -0.009150091, -0.0035333096, -0.025087573, -0.010374398, 0.007725311, 0.03144538, -0.008033178, 0.011870774, -0.0051979385, 0.017254865, 0.0016243559, 0.001434624, -0.019316858, 0.0069986023, -0.0033632668, 0.0005776979, 0.014777611, 0.010624988, -0.010023573, 0.01996123, -0.005430629, 0.004113245, -0.005989085, 0.01785628, 0.010216885, 0.011348117, 0.0048506935, 0.002088841, 0.016238188, -0.0066585164, -0.010753863, -0.005387671, -0.0095725125, 0.009522394, 0.0045249276, -0.02513053, 0.020548325, 0.015192873, -0.014691695, 0.013560463, -0.025932416, -0.027149564, 0.01974644, 0.0102741625, -0.0068697277, 0.005802933, -0.0000804347, -0.0153503865, 0.024457518, 0.0062897922, 0.0151069565, -0.013238276, 0.022481443, 0.01549358, -0.00067256385, -0.012092725, -0.009830262, -0.0033203086, 0.008391162, 0.013990045, -0.0003620121, -0.02796577, 0.0014999561, 0.013438748, -0.008348204, 0.013653539, 0.013947086, -0.003173535, 0.02750755, -0.00057367055, 0.00059828203, -0.021063823, -0.0012663711, 0.018443374, -0.010675105, -0.0073673264, -0.012651182, 0.023770189, -0.00043920256, 0.0044067926, -0.012665501, 0.00068240846, 0.002303632, 0.0016422551, 0.0014963764, 0.010288482, -0.021221336, 0.0042099007, 0.011842136, -0.020390812, 0.022953983, -0.011412554, -0.019359816, 0.003902034, 0.0038161175, 0.029641138, 0.0039593116, 0.012099884, -0.0061143795, 0.015192873, 0.016123634, -0.015479261, -0.012536626, 0.014978082, 0.011312318, -0.0005508491, -0.017899238, -0.012780056, 0.013231116, 0.015779968, 0.004088186, 0.012028288, 0.00010817852, -0.004388893, 0.004510608, 0.021078143, -0.0065189027, -0.0043817335, 0.020491047, 0.0026634065, -0.009429319, -0.0037767391, -0.016997116, -0.0025076834, 0.018386098, -0.0151212765, 0.020347854, 0.0077611096, -0.0010909586, -0.008863702, -0.013317033, -0.008670391, -0.017956516, -0.0030446604, -0.009085653, 0.0066835755, -0.009414999, 0.0011553958, -0.01221444, -0.006128699, 0.000030960087, 0.0006833034, -0.023082858, -0.0015885574, 0.0064974236, 0.0077611096, 0.018371778, -0.0010748493, -0.008749148, -0.016567534, 0.009500915, -0.0019044789, 0.027221162, 0.0054377886, -0.017097352, 0.015865885, -0.002956954, 0.0011187023, -0.01738374, -0.024013618, -0.015479261, -0.0071310564, -0.013546144, -0.013116562, -0.0004814895, 0.00020584124, -0.016782325, -0.011734741, -0.009422159, 0.012543786, 0.015149915, 0.016853923, 0.003941412, 0.02558875, -0.0035887973, 0.009522394, 0.003309569, -0.014863527, -0.014018683, 0.012171482, 0.0036568143, -0.020791754, -0.01291609, 0.017526934, 0.009565352, -0.01385401, -0.020562645, 0.015379026, 0.007353007, 0.00821933, 0.013846851, 0.016825283, 0.0026114988, 0.005856631, -0.0029336852, -0.016238188, -0.013546144, 0.005212258, -0.0109614935, -0.0008318671, -0.00058127777, 0.0023179513, -0.0077611096, -0.012994847, 0.0046896003, 0.011204923, 0.029956164, -0.021106781, -0.0024504056, 0.0031896443, -0.011061729, 0.017541254, -0.0034867716, 0.010746703, -0.0064759445, -0.026490873, 0.018443374, 0.0008949619, 0.0031090977, -0.008276608, 0.006049942, 0.005058325, -0.009049855, 0.010016413, 0.023068538, 0.014877846, 0.015235831, 0.010904216, 0.033536013, -0.038862824, -0.015679732, -0.0071346364, -0.023841785, -0.009042695, 0.015364706, 0.01245787, -0.017168948, -0.0013692917, 0.03949288, -0.01852929, 0.020562645, -0.008863702, -0.004396053, 0.01599476, 0.01338863, -0.009150091, 0.0012296777, 0.012908931, 0.008598794, -0.010245523, 0.010660786, 0.017483976, -0.00846276, 0.012235919, -0.0031681652, -0.0021926567, 0.003665764, 0.0025792802, 0.003026761, 0.007474722, 0.005663319, 0.016266828, 0.023154454, -0.005938967, -0.01600908, 0.0114197135, -0.011792018, -0.017054394, 0.0044569103, -0.0071919137, -0.035683922, 0.00012283352, 0.038146857, 0.018156987, -0.009858901, 0.007804068, 0.0042886576, -0.03482476, -0.009278965, 0.029526584, 0.016410021, -0.0020637822, 0.030586218, -0.00085200375, 0.0008461865, -0.005756395, 0.00090793887, -0.0018436215, -0.02465799, 0.01244355, 0.013746615, 0.0100450525, 0.0014981662, -0.002206976, -0.036543086, -0.020290576, -0.019460052, -0.022166416, 0.012622543, 0.011176284, 0.013832531, -0.013331353, -0.008040338, 0.004961669, -0.0230399, -0.0008162052, 0.02043377, 0.007889984, -0.008326725, 0.0025774902, -0.000775932, 0.005269536, -0.03711586, -0.008162052, 0.0031842745, -0.036342613, -0.0027546927, -0.0055702426, -0.005849471, -0.00010208159, -0.007839866, -0.012851653, -0.025646029, -0.009565352, 0.0016279357, -0.024557754, 0.018729763, 0.0038805548, -0.00081173045, -0.008484239, -0.0054843267, 0.016109314, -0.00014352951, 0.004621583, 0.00774679, -0.0075463187, -0.009837422, 0.02491574, -0.013223957, 0.028681738, -0.0042134807, -0.010417356, 0.0128158545, -0.015808607, -0.0037910587, -0.010030733, -0.029784333, -0.005072644, -0.008262288, 0.013796733, 0.01011665, 0.012486508, 0.003638915, 0.0036729237, 0.0064687845, -0.00072223425, -0.000681066, -0.011949532, -0.002956954, -0.005430629, 0.0136249, 0.012529466, 0.0035154102, 0.0019438573, -0.007861345, 0.00094955455, -0.018314501, 0.012672661, -0.012128524, -0.015407664, 0.014634417, -0.012064086, 0.011827816, -0.0047540376, -0.02863878, 0.0141976755, -0.0023340606, 0.02560307, -0.013982885, -0.009830262, -0.008477079, 0.016725048, 0.008061817, -0.014655896, -0.0128086945, 0.012243079, 0.010882737, -0.03926377, -0.015822927, 0.022452803, 0.014820569, 0.03356465, 0.0014641577, -0.00055890373, 0.014147557, -0.015235831, 0.036915388, -0.009250326, 0.0022499342, -0.000963874, -0.0032379723, 0.022510082, 0.0044425908, 0.018915914, 0.009601152, -0.016997116, -0.0038662355, 0.013374311, -0.009329082, 0.027693702, -0.016524576, 0.0028495586, 0.020548325, -0.004796996, 0.0192739, 0.0016467299, -0.0005195254, 0.0028710377, 0.01409028, 0.007091678, 0.008820744, 0.0024110274, 0.0100522125, -0.012379113, -0.0058888495, 0.004396053, 0.025345322, 0.0051012826, 0.019789398, 0.0015787128, -0.007832707, -0.005616781, -0.016023397, -0.02183707, -0.0008828799, -0.028739017, 0.013811052, 0.013768094, -0.017841961, -0.016324105, -0.009006897, -0.03356465
1816
2698
  ]
1817
2699
  }
1818
2700
  ],
@@ -2094,29 +2976,29 @@ function getTemplatesPipelineCollection() {
2094
2976
  {
2095
2977
  "modelVariant": "CHAT",
2096
2978
  "models": [
2979
+ {
2980
+ "modelName": "gpt-4.1",
2981
+ "systemMessage": "You are a developer of the Promptbook Project. Act as an experienced AI engineer and virtual assistant. Goals: precise assistance, reliable prompt/pipeline design, strong tool/function calling, and implementation-ready guidance. Ask targeted clarifying questions when specs are ambiguous. Keep answers concise, structured, and reproducible.",
2982
+ "temperature": 0.2
2983
+ },
2097
2984
  {
2098
2985
  "modelName": "chatgpt-4o-latest",
2099
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2986
+ "systemMessage": "You are a developer of the Promptbook Project operating a multimodal virtual assistant. Provide concise, technically accurate help on prompt design, integration, and tooling. Use structured outputs when helpful and confirm assumptions before proceeding.",
2100
2987
  "temperature": 0.3
2101
2988
  },
2102
2989
  {
2103
- "modelName": "gpt-4.1",
2104
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2105
- "temperature": 0.25
2990
+ "modelName": "o4-mini",
2991
+ "systemMessage": "You are a developer of the Promptbook Project focused on fast, cost-efficient reasoning. Provide brief, stepwise solutions, emphasize determinism and token efficiency, and output implementation-ready prompts/code.",
2992
+ "temperature": 0.2
2106
2993
  },
2107
2994
  {
2108
2995
  "modelName": "gpt-4",
2109
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2110
- "temperature": 0.3
2996
+ "systemMessage": "You are a developer of the Promptbook Project. Provide high-quality, reliable assistance on prompt engineering, SDK integration, and workflow design. Be concise, cite assumptions, and return structured, ready-to-use outputs.",
2997
+ "temperature": 0.2
2111
2998
  },
2112
2999
  {
2113
3000
  "modelName": "gpt-3.5-turbo-16k",
2114
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
2115
- "temperature": 0.4
2116
- },
2117
- {
2118
- "modelName": "o4-mini",
2119
- "systemMessage": "You are a senior AI engineer and virtual assistant, a developer of the Promptbook Project. Be precise, pragmatic, and engineering-focused. Deliver copy-pasteable outputs that follow Promptbook conventions (clear roles, parameterized blocks, and verifiable steps). Ask concise clarifying questions before assuming requirements. Prefer deterministic strategies, minimal verbosity, and safe defaults. When proposing prompts, include evaluation ideas, test cases, and guardrails. Use structured JSON when appropriate for tools and function calling. Do not reveal chain-of-thought; provide only final reasoning and results.",
3001
+ "systemMessage": "You are a developer of the Promptbook Project on a budget tier. Prioritize clarity, brevity, and correctness. Ask for missing details, avoid speculation, and return minimal, ready-to-use prompts/code.",
2120
3002
  "temperature": 0.2
2121
3003
  }
2122
3004
  ]
@@ -2130,14 +3012,14 @@ function getTemplatesPipelineCollection() {
2130
3012
  "preparations": [
2131
3013
  {
2132
3014
  "id": 1,
2133
- "promptbookVersion": "0.102.0-8",
3015
+ "promptbookVersion": "0.102.0",
2134
3016
  "usage": {
2135
3017
  "price": {
2136
- "value": 0.0355725
3018
+ "value": 0.033065000000000004
2137
3019
  },
2138
3020
  "input": {
2139
3021
  "tokensCount": {
2140
- "value": 6154
3022
+ "value": 6316
2141
3023
  },
2142
3024
  "charactersCount": {
2143
3025
  "value": 2377
@@ -2160,19 +3042,19 @@ function getTemplatesPipelineCollection() {
2160
3042
  },
2161
3043
  "output": {
2162
3044
  "tokensCount": {
2163
- "value": 2788
3045
+ "value": 2517
2164
3046
  },
2165
3047
  "charactersCount": {
2166
- "value": 3604
3048
+ "value": 1743
2167
3049
  },
2168
3050
  "wordsCount": {
2169
- "value": 466
3051
+ "value": 223
2170
3052
  },
2171
3053
  "sentencesCount": {
2172
- "value": 48
3054
+ "value": 24
2173
3055
  },
2174
3056
  "linesCount": {
2175
- "value": 79
3057
+ "value": 47
2176
3058
  },
2177
3059
  "paragraphsCount": {
2178
3060
  "value": 1
@@ -2209,22 +3091,24 @@ function getTemplatesPipelineCollection() {
2209
3091
  ],
2210
3092
  "knowledgePieces": [
2211
3093
  {
2212
- "name": "promptbook-english-driven-software-development",
2213
- "title": "Promptbook: English-Driven Software Development",
2214
- "content": "---\nPromptbook is a tool that enables programming in plain English, making software development accessible to a wider audience.",
3094
+ "name": "promptbook-english-to-code-translator",
3095
+ "title": "Promptbook: English to Code Translator",
3096
+ "content": "---\nPromptbook is a tool that allows users to write programming specifications in plain English, which are then translated into working code. This approach shifts the focus from traditional coding elements like loops and variables to more human-centric concepts such as stories, personas, and knowledge.",
2215
3097
  "keywords": [
2216
3098
  "Promptbook",
2217
- "tool",
2218
- "programming",
3099
+ "programming specifications",
2219
3100
  "plain English",
2220
- "software development",
2221
- "accessible"
3101
+ "working code",
3102
+ "human-centric concepts",
3103
+ "stories",
3104
+ "personas",
3105
+ "knowledge"
2222
3106
  ],
2223
3107
  "index": [
2224
3108
  {
2225
3109
  "modelName": "text-embedding-3-large",
2226
3110
  "position": [
2227
- -0.010369726, -0.010677097, -0.02188805, -0.010499146, -0.011712451, -0.014050089, 0.021904226, 0.032969583, -0.032273952, 0.059047583, 0.01748779, 0.0073121935, -0.02269692, -0.0046671857, -0.03584916, 0.014721452, -0.007712585, 0.0054477463, -0.010191775, 0.009439524, -0.031869516, -0.016420081, -0.056750387, -0.03185334, 0.007910758, 0.00049290573, 0.001686496, 0.016873049, -0.0017279506, 0.0034336573, 0.0011566855, -0.02219542, -0.026110355, -0.01485896, 0.027258953, 0.017293662, -0.014834694, 0.011607299, -0.03246808, -0.0035731876, -0.025123533, 0.0103859035, 0.008986557, -0.010790339, 0.0020525102, -0.0041616415, -0.004270839, -0.016937759, -0.006280883, -0.0020221774, 0.044811454, 0.0020929538, 0.04827342, -0.01743926, 0.0053506815, 0.03649626, -0.01586196, -0.037013937, 0.012367638, -0.041867163, -0.034490258, -0.007619565, -0.0018300706, -0.041867163, 0.019509967, 0.008881403, -0.0100300005, 0.005273839, 0.009827782, 0.042190712, 0.047852807, -0.01774663, -0.0047763833, 0.047626324, 0.026417727, 0.023117533, 0.007324327, -0.016395815, -0.0014236129, 0.009649831, 0.028666388, -0.029070823, -0.03290487, -0.025511792, 0.0130875325, -0.03178863, 0.030979758, -0.0634802, 0.021435082, -0.017892227, 0.021240951, -0.003223351, -0.013880226, 0.021580677, -0.020998292, 0.0006592299, -0.0010302995, 0.012561766, -0.014050089, 0.03756397, 0.01630684, 0.013702274, 0.00959321, -0.047820453, 0.021435082, -0.007785383, 0.023166066, 0.015077355, -0.005775339, 0.01824813, 0.020448258, 0.014689097, -0.004841093, 0.027889872, -0.014260395, 0.03127095, 0.0046105646, -0.026239775, 0.0071059316, 0.019412903, -0.025317661, -0.008938025, -0.03329313, 0.013548589, 0.019202597, 0.0055973874, 0.017762806, -0.0031384195, 0.01667892, 0.04584681, -0.006596343, 0.04733513, 0.0063739032, 0.0058400487, 0.05962997, 0.01993058, 0.0053304597, 0.049697034, -0.020723274, -0.0086872745, -0.039537612, -0.008133198, -0.00032102066, 0.010021912, -0.011461702, -0.0060665323, 0.018798161, 0.028100178, -0.018604033, -0.010652831, -0.02395876, -0.04820871, 0.02119242, -0.0031950404, 0.027242774, -0.005730851, -0.023457259, 0.036755096, 0.01831284, 0.03986116, 0.010086621, -0.03436084, -0.0038320264, -0.0018068156, -0.0068996698, 0.0013882249, -0.008420347, 0.014082444, -0.03280781, 0.039537612, 0.008638742, 0.03516971, 0.007785383, 0.005508411, -0.029556146, 0.042126, -0.0095285, -0.0019291573, 0.028261952, -0.020658566, -0.016727451, -0.015716363, 0.034069646, -0.028698742, 0.02400729, 0.038502257, 0.039019935, 0.024864694, 0.008218129, -0.05396787, 0.0011132087, -0.013750806, -0.022357194, -0.0185555, 0.017164242, -0.009439524, -0.028666388, -0.016120799, -0.015643565, -0.005965424, -0.0050756657, -0.029006114, -0.0017795162, -0.030138534, -0.019170243, 0.045458548, -0.029119356, -0.018426081, 0.022454258, 0.009577032, 0.059791744, 0.0037329397, -0.016258307, -0.011105799, -0.02821342, -0.046946872, -0.027566323, -0.03135184, -0.007918847, -0.045361485, 0.01949379, 0.014155243, 0.031545967, -0.034004938, -0.036463905, -0.0027865604, -0.016824517, 0.030753275, 0.030429726, 0.030656211, -0.005811738, 0.035687387, -0.009924847, 0.009479968, -0.004909847, -0.0132573955, 0.018604033, -0.008193864, -0.028553145, 0.04364668, -0.0019301684, -0.005629742, -0.012052177, -0.026886871, 0.047367483, 0.022729274, 0.028698742, 0.024314662, -0.018587856, -0.0006359748, 0.008234306, 0.01949379, -0.009981468, 0.03335784, -0.037887517, 0.035946228, 0.0447791, 0.001788616, 0.014187597, 0.014575855, 0.0048815366, 0.014915581, -0.0039290907, 0.019526146, 0.0013063266, -0.037661035, 0.023376372, -0.061959516, 0.004788516, 0.032581322, 0.043614324, -0.040799454, 0.018151065, 0.029863518, 0.0050675767, -0.0040301997, -0.0046833633, 0.021839516, -0.0024488568, -0.034037292, -0.021758629, 0.017342195, 0.04358197, 0.03028413, 0.012650742, -0.0113889035, 0.016225953, 0.0125941215, 0.013694186, 0.0037329397, -0.021321839, -0.003326482, 0.053644326, 0.062994875, 0.05662097, 0.03140037, -0.0091806855, -0.023166066, -0.014074355, 0.011016822, -0.0024549235, 0.0007042233, 0.0032678389, -0.024557324, 0.009803517, 0.017390726, 0.04005529, 0.028795807, -0.044487905, 0.008816694, 0.025657387, -0.050764743, -0.021483613, -0.022421904, 0.026644211, 0.04526442, -0.004477101, -0.022049824, -0.011089621, -0.019170243, -0.020108532, 0.00081746525, -0.09661155, 0.007918847, 0.07648684, 0.0024751453, 0.00833946, 0.008028044, 0.015667832, -0.0033224376, -0.049632322, -0.043614324, 0.0067621614, 0.023344018, 0.007453746, -0.08858755, -0.02125713, -0.0036520525, 0.018506968, 0.020351194, -0.01561121, -0.013556678, 0.028229598, -0.01216542, 0.033001937, -0.03804929, 0.009973379, 0.011121976, 0.001138486, -0.023311662, 0.001025244, 0.011469791, 0.041964225, -0.004772339, 0.034004938, 0.015045, 0.010547678, -0.026870694, -0.03487852, -0.0009008801, 0.0095285, -0.044099648, 0.015942847, 0.026110355, 0.026207421, -0.043290775, -0.00032455949, -0.014389815, -0.008282839, 0.012319105, 0.008549767, 0.04995587, -0.00934246, 0.013378726, -0.010248396, 0.010927847, -0.015020735, 0.0141228875, -0.0070290887, 0.002060599, -0.0053992136, 0.029944403, 0.025980936, -0.00036247532, 0.015570766, 0.0019766784, -0.0014549567, -0.017503968, 0.01009471, -0.011259484, -0.024039647, 0.017358372, -0.057171002, -0.04164068, 0.02232484, 0.005730851, -0.010369726, -0.020998292, 0.026757453, 0.018911405, 0.003292105, -0.023813162, -0.012780162, 0.023311662, 0.0063091936, -0.037078645, -0.0009377848, 0.009536589, 0.027954582, 0.0067985607, -0.010038089, -0.040605325, 0.006106976, 0.046332132, 0.007971424, 0.012068355, -0.023554323, 0.04183481, -0.026482437, -0.0021900183, 0.028116355, -0.014042, -0.011752895, 0.016889226, 0.0058562257, 0.027226597, -0.027064823, 0.008574032, -0.027469259, -0.00019349711, 0.03148126, 0.017293662, -0.0023517923, -0.01698629, 0.018523145, -0.002790605, -0.025916226, 0.030138534, 0.01078225, 0.0064103026, -0.022486614, -0.028682565, -0.0038906694, -0.013775073, -0.04031413, 0.0030211331, -0.005957335, -0.0062363953, 0.06487145, -0.029912049, 0.027113356, 0.0021677744, -0.018814338, 0.035105, 0.026239775, -0.01787605, -0.029960582, 0.025851516, 0.0051403753, -0.047076292, -0.004521589, 0.008881403, 0.03837284, 0.0067419396, -0.0044043027, -0.020173242, -0.007518456, 0.009512323, 0.001424624, 0.005937113, 0.0042020846, 0.023004292, -0.025673565, 0.0069684237, -0.04452026, -0.016250217, 0.017018646, -0.008897581, 0.0054032584, 0.0033810807, 0.017892227, -0.08134007, -0.012432347, -0.022470437, -0.008485056, -0.004796605, 0.028536968, 0.003019111, 0.034522615, 0.020027645, -0.0195585, -0.0090270005, -0.0058076936, -0.0029301352, 0.004363859, 0.013079444, -0.05228542, -0.018539323, 0.031319484, 0.016775984, -0.008929935, -0.0012426281, -0.019461436, 0.038793452, -0.034166712, 0.021467436, -0.028973758, 0.0053142826, 0.010571944, -0.011291839, 0.018199597, -0.020610033, 0.005892625, -0.0010616431, 0.012545589, -0.010418259, 0.010369726, 0.00896229, 0.014211863, 0.035590325, 0.025625033, -0.0043031937, 0.005010956, -0.0012021845, 0.004375992, -0.010652831, 0.040217064, 0.008679186, -0.033519614, -0.032872517, 0.016581856, 0.013500057, -0.0088409595, -0.0010166498, -0.033196066, -0.009957202, 0.023716098, 0.040022936, -0.009763073, -0.018215775, -0.036140356, 0.008533589, -0.016420081, 0.012124976, 0.014341283, 0.008412259, -0.00013573866, -0.022292484, -0.027986936, -0.003805738, -0.03368139, 0.03335784, 0.017714275, 0.034328483, 0.02437937, -0.025010291, -0.05354726, -0.02771192, -0.044908516, -0.0003680363, 0.0029362016, 0.028682565, 0.02313371, 0.012488968, 0.0058562257, 0.0017582834, 0.04267603, -0.008743895, -0.042093646, -0.017148064, 0.02413671, 0.013071355, 0.047432195, -0.006923936, -0.014907492, 0.033843163, 0.00032455949, -0.016339194, -0.011364637, -0.00058997027, -0.021338016, -0.0038805585, -0.032128356, -0.011866137, 0.0030919095, 0.0518001, -0.016169332, -0.026094178, -0.018765807, 0.010685186, 0.016873049, -0.0024144799, 0.022308663, 0.0028674477, 0.020885048, 0.0032617722, 0.022276307, -0.020108532, 0.0023052823, -0.03442555, 0.010361637, 0.004909847, 0.024427904, -0.0047480725, -0.021338016, -0.01862021, 0.013766984, -0.003350748, 0.036334485, 0.0113889035, -0.06613329, 0.008412259, 0.022664566, 0.0042061293, 0.008557855, -0.03659332, -0.020351194, -0.0047561615, 0.008036133, 0.037078645, -0.016533323, -0.033454902, 0.023052823, -0.046008583, 0.013346371, 0.035363838, -0.014729541, -0.042352486, -0.00053688814, 0.008238351, -0.01742308, -0.0006041255, -0.029879695, -0.015328106, 0.0053587705, 0.038469903, -0.015959024, 0.03128713, 0.0072636614, -0.0066044317, 0.012780162, 0.0058724033, 0.0072515286, 0.08185774, 0.002063632, -0.017536324, 0.039731745, 0.048111647, 0.046235066, -0.026886871, -0.014575855, -0.023052823, 0.020076178, 0.028811984, 0.013847872, 0.013734629, 0.0055771656, -0.041349486, -0.0148023395, 0.008978468, -0.016225953, -0.005585254, 0.022211598, 0.0022587723, 0.013063267, -0.008849049, -0.01341917, -0.023376372, -0.007279839, 0.048952874, -0.0029422683, 0.0023194375, -0.032646034, -0.014624387, -0.0029119356, -0.003933135, 0.029539969, -0.0033143489, -0.026919227, -0.0041313088, -0.011227129, -0.027032468, -0.017196598, -0.024314662, -0.03047826, -0.00833946, -0.008646831, -0.05247955, -0.022713097, -0.0035630767, -0.034102, -0.001162752, 0.0009034078, 0.036205065, 0.024945581, -0.04238484, 0.020658566, -0.021143887, 0.018345194, -0.006883492, -0.011906581, -0.023166066, -0.030882694, -0.015012645, -0.010588122, 0.035687387, -0.0015186553, -0.004691452, -0.018426081, -0.0016379638, 0.0054315687, 0.04953526, -0.012230129, 0.015635476, -0.0041232198, 0.020480614, 0.030106178, -0.008574032, -0.016873049, 0.03562268, 0.004311282, -0.0013862026, -0.00996529, 0.0066003874, 0.026530968, -0.018442258, 0.009204952, -0.017520146, 0.011631565, -0.01591858, 0.0040463773, -0.016088445, 0.008695363, -0.0022506835, 0.008214084, -0.013006645, -0.013904492, 0.026951581, 0.002060599, -0.011308016, 0.045296777, -0.00011576966, -0.0063739032, 0.00376125, 0.019962937, 0.01792458, 0.02031884, 0.0042223064, -0.01761721, -0.018733453, -0.015400903, 0.006280883, 0.0026793852, -0.025625033, -0.013580943, 0.035655033, -0.0003407369, -0.01792458, -0.036075648, 0.001047488, -0.0018290596, 0.0090108225, -0.024961758, -0.0040160445, 0.0105315, -0.025625033, -0.008307105, -0.013386815, 0.009771162, -0.0009160464, -0.011469791, 0.010199863, 0.024104355, 0.017730452, -0.009253484, -0.008800516, 0.017778985, -0.016128888, 0.005961379, -0.025285307, -0.01674363, 0.012480879, -0.02363521, -0.0072434396, 0.026919227, 0.0060948427, -0.002278994, -0.025366195, 0.024622032, 0.004339593, 0.037402194, -0.005755117, 0.001264872, 0.01041017, 0.02847226, -0.0055528996, 0.029442905, -0.002871492, -0.01862021, -0.001971623, 0.012197775, 0.026061824, -0.0027521835, -0.0074335244, 0.03442555, -0.01435746, 0.003508478, -0.024735276, -0.023101356, 0.05202658, -0.009714541, 0.013435347, -0.0041414197, 0.02971792, 0.0021981068, -0.0010636654, 0.01210071, 0.0407671, 0.022939581, -0.0024347017, 0.008011867, -0.016031822, 0.027000114, 0.0065720766, 0.0030332662, 0.03130331, 0.02119242, 0.009293928, 0.009204952, 0.001628864, 0.0033689477, 0.013030912, -0.054388486, 0.013273573, -0.0165495, 0.028860517, -0.00355701, 0.018134888, 0.017196598, -0.026870694, -0.043549616, -0.022939581, -0.0060220445, -0.0023801029, -0.002382125, 0.004574165, 0.0144626135, 0.038761098, -0.017633388, -0.008149375, 0.016347283, 0.0050433106, -0.0100300005, 0.007664053, -0.02149979, 0.009269661, 0.010822694, -0.024735276, 0.01667892, -0.0058764475, -0.015036912, -0.022777807, 0.021855693, -0.015061178, -0.025673565, -0.014033912, 0.038178712, -0.017503968, -0.0042546615, -0.0026166977, -0.016258307, 0.012068355, -0.011550678, 0.0060948427, 0.025172066, -0.02276163, -0.036108002, -0.007518456, 0.009585122, 0.010337371, 0.00055255997, -0.01611271, -0.02847226, -0.002622764, 0.0026854516, 0.0009266628, 0.0112352185, 0.005900714, 0.0038118046, -0.0057712947, 0.0068066493, 0.025075, -0.004096932, -0.014543501, 0.0115345, -0.009293928, 0.0047238064, -0.02200129, -0.017131887, 0.01116242, 0.0026834295, -0.029410549, 0.0022527056, -0.025657387, 0.014098621, 0.0024104356, 0.030834163, 0.030688565, 0.035363838, -0.007352637, -0.0070573995, 0.041964225, 0.009326283, -0.039052293, 0.005241484, -0.030963581, -0.01109771, 0.014373638, 0.03523442, -0.019946758, 0.018943759, -0.0019736453, 0.04833813, 0.022599855, -0.010329283, 0.017455436, 0.017649565, 0.007142331, 0.011672009, -0.01655759, 0.0024468347, 0.017374549, 0.030979758, 0.012666919, 0.013338283, 0.013839782, -0.011809517, -0.0007749995, 0.0011020867, -0.0070129116, -0.0053264154, -0.015845783, -0.0016703185, -0.039149355, -0.012335283, -0.006321327, -0.007712585, 0.0054962784, -0.009447613, -0.0042748833, 0.0033224376, -0.007554855, -0.01655759, -0.0027016292, -0.011947025, 0.012796339, -0.000098454766, 0.00871963, 0.00467123, -0.015813427, -0.009868226, 0.008541678, -0.009754984, -0.012391903, 0.021580677, -0.010110888, -0.03140037, -0.01661421, 0.019784985, -0.032629855, -0.022066, -0.015263395, 0.011202863, 0.04164068, 0.033001937, -0.01667892, -0.024023468, 0.010741807, 0.009892493, -0.0027319617, 0.022713097, -0.045426194, -0.03135184, 0.04105829, 0.005965424, -0.030251775, 0.012513234, -0.0004089854, -0.0037996715, 0.029135533, 0.0068106935, 0.0066003874, -0.016411992, -0.03555797, 0.025770629, 0.034102, 0.0397641, -0.023101356, -0.0071018874, -0.033843163, -0.031626854, -0.023748452, -0.030979758, 0.031869516, 0.009706452, 0.040022936, 0.021046823, 0.0061352863, -0.038081646, 0.055909164, -0.002541877, -0.025592677, 0.00026844407, -0.04358197, -0.0009944058, 0.012472791, -0.0077732503, -0.0067945165, 0.031238597, 0.04170539, -0.029378194, 0.023085179, 0.024185242, -0.0076842746, 0.005116109, 0.0125941215, -0.0079228915, 0.008824782, 0.04639684, 0.0021010423, -0.0021718186, 0.019251129, -0.008921847, -0.00069562905, 0.0069118026, -0.0088409595, -0.0080765765, -0.06917465, 0.011696274, 0.020173242, 0.009795427, -0.010216041, 0.005548855, 0.012658831, 0.004812782, -0.013524323, -0.009504234, 0.00990867, 0.0057389396, -0.001264872, -0.0014266463, 0.0027845383, 0.0144626135, -0.007380948, -0.01718042, -0.022891048, 0.018054001, -0.0033325485, 0.02627213, 0.007053355, -0.022146888, -0.026498614, -0.0014539456, -0.017261308, 0.00871963, -0.004042333, -0.005678274, 0.004501367, 0.011760985, -0.029912049, -0.005492234, 0.015263395, 0.008173642, -0.005455835, -0.01116242, -0.003759228, -0.022454258, 0.017018646, 0.0010035055, -0.0052091293, -0.0042101736, -0.006438613, -0.002096998, 0.023877872, -0.026854517, -0.018587856, -0.02363521, 0.017714275, 0.0054275244, -0.010207952, -0.03636684, 0.011364637, -0.015837694, -0.0041859075, 0.00084880897, 0.013969202, -0.0034498349, 0.06377139, -0.008032089, 0.009698363, 0.0021333972, -0.031093001, 0.0026268086, 0.011922758, -0.007118065, 0.025527969, -0.008549767, 0.0005611543, 0.017018646, -0.0057591614, -0.043064293, -0.008011867, 0.014325106, -0.012440436, 0.0020686875, -0.004107042, -0.022454258, -0.028197242, 0.010450613, -0.0069360686, 0.008044222, -0.0035367885, 0.00914833, -0.0055407663, -0.035266776, 0.013030912, 0.009941025, 0.00783796, 0.0012952046, 0.017520146, -0.008104887, 0.011243307, 0.012157331, -0.02389405, 0.0027299395, 0.0063860365, -0.0014519234, 0.018474614, 0.00717873, -0.0057591614, -0.026126534, -0.013775073, 0.0051322863, -0.0023861695, 0.022518968, -0.010790339, -0.014025823, 0.002072732, -0.012553678, -0.02069092, -0.01761721, 0.011121976, 0.017018646, 0.014543501, -0.005322371, 0.007453746, 0.032937225, -0.014009645, 0.0067136292, 0.00026288308, -0.04018471, 0.0028795807, -0.00827475, -0.009302016, -0.010935936, -0.028003113, 0.023473436, 0.0021819295, -0.0032091956, 0.032322485, 0.0070048226, -0.012213952, -0.024347017, -0.0070048226, -0.022729274, -0.0075225, -0.0012031955, 0.0056701857, 0.018862871, -0.04332313, -0.0016511079, -0.012990468, 0.01742308, 0.010741807, -0.051055938, -0.0049947784, -0.008024001, -0.009374815, -0.0127639845, 0.012658831, 0.00170874, 0.009787339, 0.021208597, 0.012683097, 0.008800516, 0.019720275, -0.026433904, -0.009957202, -0.009641742, 0.009310105, -0.034134354, 0.004594387, -0.01623404, 0.029750274, 0.00190388, 0.02803547, 0.01798929, 0.02714571, 0.0023962804, -0.01529575, -0.004127264, -0.02025413, -0.020448258, -0.0034599456, -0.012909581, 0.0063617704, 0.004009978, -0.004820871, -0.008242396, -0.000717873, -0.016145065, 0.00649119, -0.0031303307, 0.02852079, 0.013152243, -0.022777807, 0.017374549, -0.0033851252, 0.027631033, 0.011752895, -0.021370372, -0.035460904, 0.012181597, 0.0325975, 0.008654919, -0.005184863, -0.000243546, -0.015667832, -0.018490791, -0.02382934, 0.0058036493, 0.0006420413, 0.038275775, -0.013411081, 0.05396787, 0.0013386814, -0.008108932, 0.013710363, 0.009132153, -0.006588254, -0.007134242, 0.033325486, 0.026919227, -0.00076185534, -0.010628565, 0.0007911769, -0.010321193, 0.013184597, 0.026029468, -0.039958227, -0.008646831, -0.00608271, 0.010296928, -0.004958379, 0.0077894274, -0.004193996, 0.0023032601, 0.008646831, 0.009641742, -0.025673565, -0.01798929, 0.008258573, -0.006321327, 0.011817605, 0.028795807, 0.023052823, -0.019461436, -0.008052311, -0.032532793, -0.014470702, 0.018054001, 0.0255765, -0.0034437682, -0.027631033, 0.001664252, -0.013864049, 0.027792808, 0.004489234, 0.0023639256, -0.00084729237, 0.0065478105, 0.005241484, 0.001093998, -0.026255952, -0.008290928, 0.017245129, -0.027938403, -0.011817605, 0.0066367863, -0.00094637903, -0.0005606487, 0.0027825162, 0.007850093, -0.027792808, 0.009787339, 0.004865359, -0.01829666, 0.011227129, 0.003542855, -0.004812782, 0.01034546, 0.036884516, 0.007134242, -0.0048491815, -0.017908404, 0.018409904, 0.031319484, 0.0014721452, 0.034166712, -0.017698098, 0.014381726, 0.012699274, -0.015942847, -0.003360859, 0.012796339, 0.014640565, 0.009835871, -0.03127095, -0.013920669, -0.018393727, -0.012861049, 0.00818173, 0.020173242, -0.010652831, 0.007384992, 0.024460258, 0.020092355, 0.013305928, 0.010685186, -0.0073324153, -0.0077004516, 0.00048936694, -0.0002780494, 0.007858181, 0.012213952, 0.0065356777, -0.010871226, -0.029960582, 0.048985228, -0.0082626175, -0.03999058, -0.010652831, -0.009730718, 0.016646566, -0.00015216885, -0.00071382866, -0.020399727, 0.008808605, 0.0023073044, 0.009787339, -0.00030737097, -0.03779045, -0.038502257, -0.030559147, 0.009633654, -0.0020828429, -0.026304485, -0.017714275, -0.024427904, 0.005002867, 0.018814338, 0.02219542, -0.014939847, 0.0015762873, 0.008363726, -0.015708275, 0.00093930145, -0.014050089, 0.036205065, -0.03122242, 0.0033709698, -0.018862871, 0.019542323, -0.010232218, -0.014931759, -0.020836517, -0.019574678, 0.007987601, 0.0010818649, -0.017164242, 0.010822694, 0.012739718, 0.025997113, -0.004719762, 0.0022567501, 0.009334371, -0.005848137, 0.007591254, -0.021095356, 0.01197129, 0.021548323, -0.025544146, 0.0005879481, 0.022793984, -0.012230129, -0.015004557, -0.028132534, 0.0030110222, -0.01379125, -0.009124065, -0.03217689, -0.012739718, 0.0107094515, 0.0026773629, -0.0022931492, -0.02062621, -0.00859021, 0.016598033, -0.013613299, 0.015085444, -0.0016733519, 0.00012739719, -0.007757073, 0.00558121, -0.009633654, -0.020140888, 0.0028654255, -0.026417727, 0.00078662706, -0.010135153, 0.018393727, 0.01366992, 0.010749895, -0.0052131736, 0.0022345062, -0.010127065, -0.032823984, -0.0031727965, 0.022227775, -0.0042546615, 0.016792161, 0.0044366573, 0.014033912, -0.0042789276, 0.018959936, -0.015028823, -0.027048646, -0.0024973892, 0.03178863, -0.0039149355, 0.008533589, 0.002404369, 0.017326016, 0.024492614, -0.012796339, -0.007890536, 0.0035246552, 0.017309839, -0.008768162, 0.009018912, 0.029006114, -0.010539589, 0.0062121293, -0.021386549, 0.019315839, 0.0129338475, -0.020351194, -0.007862226, -0.014486879, -0.0022506835, 0.028375193, 0.01818342, -0.022502791, -0.0016571744, -0.010442524, 0.0018553479, 0.013265484, -0.016015645, -0.018442258, -0.011113888, -0.028245775, -0.0028957583, -0.007995689, 0.013079444, -0.023376372, -0.00065063563, 0.031513613, 0.032306306, 0.0064992784, 0.010207952, -0.004218262, -0.0021394638, -0.02182334, 0.0052374396, 0.012941936, 0.0020889093, -0.010701363, -0.024282306, -0.0041656857, 0.0063132383, -0.0036985625, 0.017034823, -0.014317016, 0.007914803, -0.02570592, -0.029685566, -0.003281994, -0.011874226, 0.017277485, -0.0007224229, -0.018280484, 0.00093930145, -0.0056135645, -0.010393992, -0.048920516, 0.0011667964, -0.04888816, 0.009407169, -0.01661421, -0.0107256295, 0.009310105, 0.0031768407, -0.022664566, 0.00416973, -0.017309839, 0.020432081, 0.025252953, -0.0061231535, 0.0060463105, -0.010434436, -0.0108954925, -0.019946758, -0.013346371, 0.0031465082, -0.002359881, -0.00517273, 0.021321839, -0.021839516, 0.012844872, -0.022179242, 0.004792561, 0.0144626135, 0.010175597, -0.0054639233, 0.015983291, -0.0022082177, 0.009382904, -0.002074754, -0.016476702, -0.008222174, 0.0031404416, -0.0038623589, -0.006058444, 0.004727851, -0.026255952, 0.012108799, 0.010960202, -0.011809517, -0.008032089, -0.015061178, -0.016646566, -0.00075225, 0.025220597, 0.0007325338, -0.02564121, -0.016711274, 0.022227775, 0.042643677, -0.00015532851, 0.014405992, -0.010871226, 0.018733453, -0.008824782, -0.007566988, -0.0061595524, 0.016541412, 0.021240951, -0.006495234, 0.016120799, -0.013718452, 0.0026389416, 0.014308928, 0.03555797, -0.0050190445, 0.00012101468, -0.0013275595, 0.0061959517, -0.0117286295, -0.0026166977, 0.010660919, 0.025608856, -0.0091806855, -0.03623742, -0.02834284, -0.013071355, -0.0013578922, -0.00758721, 0.015311928, 0.0011688186, 0.016711274, 0.03562268, 0.024961758, 0.005912847, 0.0062849275, -0.009479968, -0.00046130925, 0.011736718, 0.005443702, -0.015724452, -0.0038987582, 0.037272774, 0.010563855, -0.010224129, -0.013435347, 0.0055326778, 0.021418903, -0.00959321, 0.016379638, -0.00296249, 0.0034114134, -0.010539589, 0.006450746, 0.01811871, -0.028359016, 0.023538146, 0.030187065, -0.00890567, -0.011987468, 0.045555614, 0.004934113, 0.015878137, -0.0027602722, -0.032888696, 0.010021912, 0.0043234155, 0.021079179, 0.025188243, -0.0018947803, 0.024185242, -0.004096932, 0.011202863, 0.012950025, -0.021208597, 0.002016111, -0.020561501, 0.017973114, 0.002517611, 0.0051929518, 0.011178597, -0.011024912, 0.0007770217, -0.002357859, 0.0078217825, 0.008307105, 0.0020423993, -0.017164242, -0.0115587665, 0.013961113, 0.01586196, 0.02690305, 0.017018646, 0.005310238, -0.005480101, 0.005961379, -0.0027521835, -0.020885048, 0.018604033, 0.0037167622, 0.000877625, -0.009213041, 0.004489234, -0.00055053784, 0.002325504, -0.010644742, 0.008889493, -0.01993058, 0.022535145, -0.000028120905, 0.0025681653, 0.00025732207, 0.028164888, 0.0051120645, -0.0016268417, -0.015522234, 0.009188774, -0.021904226, -0.005795561, 0.003075732, 0.0061474196, -0.0063658147, -0.0120845325, -0.011752895, -0.005346637, 0.0018553479, -0.0074375686, 0.0072474843, 0.027857516, -0.002094976, -0.0018300706, -0.0014883226, -0.003943246, -0.028375193, -0.027986936, -0.0060018227, -0.00011659117, 0.0016268417, 0.022017468, 0.0064345687, -0.000118676544, -0.0057025403, -0.017956937, -0.001514611, 0.0031202198, 0.0010424325, -0.024751453, -0.008760073, 0.017148064, 0.0008796472, -0.0007830882, -0.014114799, 0.01636346, 0.0046631414, -0.01811871, -0.01116242, 0.01988205, -0.018054001, -0.008938025, 0.0044973227, -0.0038765143, -0.009002734, 0.0068147383, -0.001766372, 0.038858164, -0.011000645, -0.0020444214, -0.00090391334, -0.008978468, -0.010499146, -0.00611102, -0.0010227163, -0.0039290907, -0.0019969002, 0.008347549, -0.016598033, 0.0043234155, 0.010733718, 0.014284662, 0.005071621, -0.00018161681, 0.006895625, 0.0049300687, -0.00658421, -0.0073000607, 0.020027645, -0.011437436, -0.0074011697, 0.021774808, -0.0066731856, -0.022793984, -0.019073177, 0.0107256295, 0.010984468, -0.009552767, 0.0016581855, -0.01667892, 0.002426613, -0.020157065, 0.012359548, -0.013597121, -0.019801162, -0.002622764, 0.017568678, 0.0023841471, 0.009989557, 0.013063267, 0.03078563, -0.00081948744, -0.026983935, 0.02614271, -0.0023437038, -0.00661252, 0.0033770364, 0.007995689, 0.00915642, -0.011267573, 0.013686097, -0.019089356, -0.023230774, 0.0076276534, 0.014907492, -0.020043824, 0.007647875, -0.046364486, -0.026045647, 0.019509967, 0.032969583, 0.000032828786, 0.02395876, 0.011631565, -0.034619678, 0.0057632057, -0.0088571375, 0.028084, 0.0055245887, 0.013556678, 0.010944025, 0.030559147, 0.01178525, -0.0071301977, 0.019154064, -0.011817605, -0.013508146, 0.0077408953, 0.03280781, -0.0024448126, -0.0014650676, 0.012707363, 0.025948582, 0.022680743, -0.0025459214, -0.0033426594, -0.017455436, -0.00576725, 0.008493145, -0.0047359397, 0.008663008, 0.0007942102, 0.0014782117, 0.0077044964, -0.0129176695, 0.017342195, -0.000026414693, -0.0053709033, 0.004784472, -0.013961113, 0.026320662, -0.002564121, 0.01624213, -0.0014337238, 0.011146242, -0.018021645, 0.0127639845, -0.0030494437, 0.0142765725, 0.015036912, -0.0047035846, 0.0078217825, -0.020173242, 0.009358637, 0.01661421, -0.01498838, -0.00094739016, -0.013273573, -0.0025782762, 0.024864694, 0.015781073, 0.0027966714, -0.00079016585, 0.0034902783, -0.00023634199, -0.024913227, 0.016581856, 0.01988205, 0.0149560245, -0.018280484, -0.011566855, -0.010822694, 0.0056095202, -0.0031667298, 0.016808338, -0.0036560968, 0.02036737, 0.0120845325, -0.0041980403, 0.011502146, 0.009852049, 0.017568678, 0.0057834275, -0.03135184, -0.012772073, -0.009852049, 0.043096647, 0.023619033, 0.019089356, 0.0040605324, -0.008056355, 0.0039938004, -0.0056014317, 0.010466791, 0.012044089, 0.000078548954, -0.005152508, -0.0014954002, 0.014001557, -0.008889493, 0.0030676431, 0.012772073, -0.00044513182, -0.023796985, 0.022308663, -0.024557324, -0.0074092583, -0.0070048226, 0.0072677056, 0.0058360044, 0.00089986896, -0.008751984, -0.0096902745, -0.0057793832, -0.008024001, 0.0058764475, 0.0064062583, 0.022777807, -0.0071746856, -0.0025600768, 0.013443436, 0.000487092, 0.0029483347, 0.008970379, 0.021726275, -0.011380815, 0.008970379, -0.0025540101, -0.029442905, 0.018668743, -0.0048006494, 0.023861695, 0.010903581, -0.014721452, -0.0012284728, -0.0034902783, 0.026466258, 0.016889226, -0.0021010423, 0.011938936, 0.0026348974, 0.011210952, -0.006709585, 0.009164508, -0.008468879, -0.012432347, -0.013726541, -0.001754239, -0.013726541, -0.0019564568, -0.010329283, 0.0004906308, 0.014058177, 0.0044851894, -0.0012739719, -0.008205996, 0.011647742, 0.0027764498, -0.014284662, -0.0025540101, 0.0022729274, 0.0071746856, -0.0063981693, 0.011121976, -0.01993058, 0.012044089, -0.0037309173, -0.016484791, -0.010167508, 0.007910758, 0.0028694698, -0.010102798, -0.00040569936, 0.028828163, -0.0025014335, 0.015408993, -0.0036823852, -0.010466791, -0.01698629, -0.0008513367, -0.02771192, -0.013750806, 0.009075533, -0.013912581, 0.0022830383, 0.0090270005, 0.027841339, 0.024298485, -0.018571679, -0.00661252, 0.016444348, -0.0010616431, 0.014300839, 0.038114, 0.0071059316, -0.0070048226, -0.016808338, 0.008044222, 0.003496345, -0.011574944, -0.012246307, 0.023667565, 0.0134272585, 0.014753806, -0.003736984, 0.015643565, -0.000216373, -0.0017400837, 0.01417142, -0.018652566, 0.02237337, -0.010612387, -0.0022425947, 0.014648654, 0.012505146, 0.009293928, -0.005504367, -0.0046752742, -0.016468612, -0.010952113, 0.015045, -0.0073121935, 0.014300839, 0.02670892, -0.019089356, -0.010021912, -0.0051808185, -0.004481145, -0.005747028, 0.01742308, 0.0042263507, -0.0020090332, 0.022599855, -0.005148464, 0.007769206, 0.00021599383, -0.01586196, -0.006632742, 0.011146242, 0.0017582834, 0.00019311794, 0.00052829384, 0.016824517, -0.00927775, -0.0072677056, -0.009876315, -0.017795162, -0.00042389895, 0.005916891, 0.004250617, -0.00014875643, 0.00071180647, 0.006013956, 0.013718452, 0.011105799, 0.01091167, -0.00749419, -0.008189819, -0.016169332, -0.0042910604, -0.014260395, 0.029944403, 0.0065033226, -0.007668097, 0.008792427, -0.00576725, 0.019315839, -0.0031242643, 0.0018765806, -0.014001557, -0.014769984, 0.021354195, 0.0035812764, 0.009358637, 0.0057793832, -0.0039371797, 0.0081615085, -0.002982712, 0.006875403, -0.0010110887, -0.0049058027, 0.009884403, 0.012367638, 0.03798458, -0.0070290887, 0.0151258875, 0.00742948, -0.021111533, 0.00051767746, 0.0014832672, -0.0012163398, -0.013847872, 0.0041090646, -0.007890536, -0.0030332662, -0.0063536814, 0.023117533, -0.019526146, 0.020076178, -0.00033770365, -0.005993734, -0.007939069, 0.028310485, -0.0039978446, 0.0063981693, -0.0014145131, -0.0015924647, -0.012699274, -0.0027481392, 0.0018037823, 0.0091968635, -0.005310238, 0.023457259, 0.006859226, 0.0033123267, 0.029087001, 0.010248396, -0.010604299, 0.01968792, 0.014583944, 0.009310105, -0.008816694, 0.0137993395, 0.0070048226, 0.009407169, -0.009204952, 0.0036540746, 0.020949759, -0.018345194, -0.006418391, 0.028164888, -0.0018472591, 0.006559944, 0.0033750143, 0.0069441576, 0.012950025, 0.0100138225, 0.023489613, 0.0038360707, -0.0009827783, -0.025835339, -0.023311662, 0.027695743, 0.0006086754, -0.011817605, -0.013993468, 0.017471613, 0.0061474196, -0.020642387, -0.0175525, 0.0011233196, -0.00045322053, 0.007417347, 0.026789807, -0.025447082, -0.006632742, -0.004715718, 0.016500968, -0.0054517905, 0.009463791, 0.00040392994, -0.011777162, 0.0064750123, -0.024023468, 0.008816694, -0.00066226313, -0.019380549, 0.00914833, -0.0061029317, -0.01097638, -0.026644211, -0.014203775, 0.0073647704, 0.01587005, -0.020496791, 0.021370372, -0.00608271, 0.0013043045, -0.021321839, -0.011736718, -0.0030009113, 0.021111533, 0.0026975847, 0.00692798, -0.0024529013, -0.010491056, -0.012586033, -0.0035266776, 0.026676565, 0.007449702, -0.0075508105, 0.005912847, 0.009657919, -0.006709585, -0.010757985, 0.019218775, -0.009512323, -0.026886871, -0.0004678813, -0.022664566, 0.008630654, -0.004796605, -0.06137713, -0.0019635344, 0.01785987, 0.008129153, 0.012157331, -0.000427185, -0.01899229, -0.0051201535, 0.030656211, 0.0037390061, -0.006495234, -0.005755117, -0.016937759, -0.008468879, 0.008808605, 0.019040823, -0.028326662, -0.00078409933, -0.006596343, -0.0029645122, 0.01868492, -0.016007558, 0.0077651613, 0.0185555, 0.0028532925, 0.0117286295, -0.004295105, -0.008052311, -0.0112352185, 0.004691452, 0.0041535525, -0.015222952, -0.013144153, 0.0146162985, -0.0014215908, -0.0058157826, -0.00426275, -0.005051399, -0.004078732, 0.0063375044, -0.0005808705, 0.003292105, 0.00029650176, -0.045911517, -0.023780808, -0.008307105, -0.019202597, -0.013872137, 0.016355371, -0.014470702, -0.022713097, 0.0124080805, -0.00019488735, 0.0005143914, -0.028989937, -0.0071261534, -0.014025823, -0.012294839, -0.0047035846, -0.00934246, 0.0027501613, 0.012052177, -0.020060001, 0.0006531633, 0.020399727, -0.006050355, 0.009318193, 0.025398549, -0.010749895, -0.000008191399, -0.0036055425, 0.014195686, 0.008371815, -0.009536589, -0.015198686, -0.011704363, 0.010256484, 0.0065235444, -0.013702274, 0.0024913226, 0.010604299, -0.008242396, -0.014405992, -0.008404169, -0.014527323, -0.02025413, -0.006588254, -0.006661053, -0.0122543955, -0.0007360726, 0.004816827, -0.023764629, -0.02834284, -0.0038097824, 0.0013498034, -0.014656742, -0.009075533, -0.0023275262, -0.0018270373, -0.0055448106, -0.031368017, 0.023360195, -0.0009468846, -0.013548589, 0.0053264154, 0.014397903, 0.015578855, 0.013766984, 0.0215645, -0.00025289858, -0.018539323, 0.011194775, 0.007668097, -0.0067378953, -0.009512323, 0.024460258, -0.0020990202, 0.018199597, 0.011882314, -0.01787605, -0.011340371, 0.011866137, 0.0024751453, -0.00811702, 0.0015601099, 0.011938936, -0.016452435, -0.022211598, 0.013564766, 0.00271174, 0.006301105, 0.0105315, -0.003508478, -0.004582254, 0.011396992, 0.020043824, -0.011453614, 0.005585254, 0.0066165645, -0.01868492, 0.003931113, 0.011947025, -0.020480614, 0.019704098, -0.010838871, -0.019979114, -0.013928758, 0.004086821, 0.009496145, -0.013451525, 0.011858049, 0.006030133, 0.010523411, -0.0027258953, -0.03436084, -0.0100300005, 0.003089887, 0.011882314, -0.003089887, -0.006179774, 0.0004405819, -0.0024084134, 0.013564766, -0.010264573, 0.0317401, -0.006758117, 0.0056135645, 0.017956937, -0.0037066513, -0.006822827, -0.012780162, -0.00022825328, -0.020464435, -0.00009693813, 0.018264307, 0.011502146, -0.007862226, 0.0052253064, -0.00074668904, -0.012278662, 0.0018240041, 0.009924847, 0.016598033, -0.01781134, 0.012019823, 0.0001372553, 0.0024367238, 0.026951581, -0.00070169556, -0.009827782, 0.023036646, -0.016581856, 0.013305928, 0.0060907984, 0.009431436, 0.0038684255, -0.016088445, -0.0047561615, -0.005342593, 0.018393727, -0.0059775566, -0.0073890365, 0.002598498, -0.0038765143, 0.014494969, 0.01542517, -0.002768361, 0.0022324838, -0.012828694, -0.028391372, 0.0011303972, -0.0049381573, 0.012270573, 0.009237307, -0.0025701877, -0.0025256996, -0.0019190464, -0.013621387, -0.01874963, -0.0103859035, -0.0058036493, 0.0049300687, 0.0037693388, -0.008270706, -0.0069077583, -0.019704098, 0.003508478, 0.0027380283, -0.011041089, -0.007348593, -0.0048572705, -0.01698629, 0.027760452, -0.018134888, -0.006422436, 0.00658421, -0.016533323, 0.00371474, -0.013079444, -0.019137887, 0.0013568811, 0.0031303307, 0.009479968, -0.0034882561, 0.024897048, -0.015546501, -0.015045, -0.0021819295, -0.0014418125, -0.0012941936, -0.0038219155, -0.013451525, 0.008679186, -0.014244218, -0.00092565175, -0.0038198933, 0.0009787339, -0.017455436, 0.0017704164, -0.013726541, 0.016711274, 0.02640155, 0.0075225, 0.007073577, 0.0053789923, -0.025236774, 0.012836782, 0.0031869516, -0.003122242, 0.0020444214, 0.0066286977, 0.006915847, 0.0030959537, 0.013661831, 0.020561501, 0.008468879, -0.02238955, 0.0039776233, -0.019655565, -0.0050150002, -0.023069, 0.0025782762, -0.003486234, -0.0048046936, 0.0029260907, 0.022405727, 0.015667832, -0.010102798, -0.0064305244, -0.002369992, 0.0011819628, 0.001515622, -0.029054645, -0.013637565, 0.010644742, -0.0063981693, 0.011283751, -0.0060786656, 0.016856872, 0.0063658147, -0.008954202, 0.00815342, 0.001492367, 0.0006966401, 0.0070290887, -0.0007709552, 0.010863137, 0.007352637, -0.004363859, -0.0045135003, 0.01617742, 0.003747095, -0.0017340172, -0.016193597, -0.023020469, 0.01241617, 0.017083356, 0.0061919075, 0.0067945165, 0.004145464, -0.0071949074, -0.0018128821, -0.005706585, 0.0070088673, 0.016048001, 0.04270839, 0.0065437662, -0.03436084, -0.016355371, -0.0056095202, 0.014001557, -0.010127065, 0.015829606, 0.010038089, -0.0050635324, -0.0040079555, 0.005391125, 0.0036864295, 0.0037005849, 0.03643155, -0.0018715252, -0.009560855, 0.011396992, -0.011550678, 0.01774663, 0.0113889035, -0.027566323, -0.022146888, 0.00040468827, 0.0037996715, -0.0007259617, -0.0029988892, 0.0027724053, -0.008679186, 0.0048572705, 0.0068309153, 0.015667832, 0.007635742, 0.0080927545, -0.006657008, 0.037078645, 0.012189685, -0.025835339, 0.012521323, 0.014074355, 0.01587005, -0.0052374396, 0.003975601, -0.008258573, -0.00977925, 0.013443436, 0.022988113, 0.0012062289, -0.025091179, -0.009115976, 0.01097638, 0.022923404, -0.024249952, 0.025673565, -0.003979645, 0.005536722, 0.0009787339, -0.0030049558, 0.015878137, 0.015473702, 0.029814985, 0.011752895, 0.005387081, -0.013111799, 0.016048001, 0.017956937, -0.011421259, -0.019057, 0.0005373937, -0.0063536814, -0.017083356, -0.018474614, -0.0066367863, 0.013726541, 0.008824782, -0.00024051273, 0.0064588347, -0.0021394638, -0.020593856, -0.023004292, -0.009132153, 0.010321193, -0.007655964, -0.017374549, -0.00063496374, 0.005698496, 0.0014408014, -0.012529411, -0.0006288972, 0.0020110556, 0.032759275, -0.004218262, 0.0071261534, -0.01141317, 0.019704098, -0.018199597, -0.009900581, 0.013572855, -0.008129153, 0.0059290244, -0.04390552, -0.0026611856, 0.017584855, 0.029766452, 0.014567766, 0.0070290887, -0.014559678, 0.002541877, 0.0022992159, 0.0056418753, -0.0062161735, -0.011396992, 0.003601498, 0.041349486, -0.00742948, -0.00611102, -0.009067444, 0.014931759, 0.018701097, 0.02112771, 0.013540501, -0.0022203508, -0.00959321, -0.025980936, 0.014867049, 0.011631565, -0.012027912, -0.0033103046, -0.003099998, -0.031206243, 0.0051686857, 0.009213041, -0.0072313068, 0.0048249154, -0.00009232504, 0.0013983357, 0.0077247177, 0.0037875385, 0.0028654255, -0.015489879, -0.020221775, 0.01341917, -0.0035974537, -0.011566855, 0.015352371, -0.0013831694, -0.00016809351, -0.00024266129, -0.000097254095, 0.0012507167, -0.00407671, 0.003724851, -0.015465613, 0.019251129, 0.0029180022, 0.008630654, 0.0054073026, -0.0026975847, 0.008165552, -0.00717873, 0.0134272585, -0.014705274, 0.0024003247, 0.017455436, -0.010814605, 0.0030919095, -0.0027137622, 0.0011091643, -0.005504367, -0.013483879, 0.017795162, -0.00407671, -0.005047355, 0.013613299, -0.0065558995, 0.00070573995, 0.025754452, 0.0036864295, -0.017099533, -0.0069360686, -0.022810161, 0.012812517, 0.009706452, 0.021030646, -0.039893515, 0.015101621, -0.005366859, -0.013564766, -0.010984468, 0.013540501, 0.01981734, 0.0043921694, 0.023020469, 0.0107256295, 0.011121976, -0.001208251, 0.033875518, 0.0012729607, 0.019218775, -0.021596855, -0.003340637, 0.01981734, 0.02182334, 0.018911405, -0.00025062362, 0.0009696341, 0.007109976, 0.037143357, 0.008387992, -0.012804428, -0.008824782, 0.014009645, -0.005706585, -0.019590855, -0.0066286977, -0.0060948427, 0.016630387, 0.030640032, -0.026175065, -0.0026510747, -0.020124711, -0.013589033, -0.0095204115, 0.023441082, -0.006446702, 0.0012628498, -0.010523411, -0.01335446, 0.0095204115, -0.01210071, -0.011324194, -0.010539589, 0.009868226, -0.019946758, 0.013289751, 0.0076761856, 0.00617573, -0.02382934, -0.0002472112, -0.0033689477, -0.008185774, -0.033519614, -0.009682186, 0.009706452, -0.00859021, 0.008493145, -0.0027360062, -0.03248426, 0.021580677, 0.010677097, -0.005560988, 0.011696274, -0.0015045, 0.0057348954, 0.016727451, -0.0063860365, 0.002382125, 0.005730851, 0.00683496, -0.0036358752, 0.021613033, 0.013621387, -0.016476702, 0.023020469, -0.013540501, 0.024524968, -0.027178066, -0.012545589, -0.009633654, 0.009059355, -0.01091167, -0.0036763186, -0.005823871, 0.011591122, -0.008565944, -0.00457821, -0.00044664845, 0.0067176735, 0.019299662, -0.006232351, -0.0015065222, 0.027307484, -0.008323283, -0.012958113, 0.00984396, -0.001526744, -0.0058643147, -0.0021495747, -0.009229218, -0.03804929, 0.014268484, -0.0008750973, 0.012027912, -0.010466791, -0.012497057, 0.011291839, -0.002289105, 0.028811984, 0.00060008117, 0.0022021513, -0.0050190445, 0.0046752742, 0.0074618347, 0.0005672208, -0.021726275, 0.0107094515, -0.007647875, -0.011882314, -0.024654388, 0.004557988, -0.0017410947, 0.015158243, -0.005002867, 0.00075477775, 0.011510234, -0.031998936, 0.013216952, -0.009172597, 0.009763073, 0.0012476835, 0.031772453, 0.005504367, 0.014042, -0.005387081, 0.00045322053, 0.007498234, -0.00003390307, 0.005152508, 0.01899229, 0.004408347, -0.017309839, -0.007154464, -0.009035089, -0.02162921, 0.007842004, -0.004772339, 0.0056014317, -0.0085255, -0.013726541, -0.0025904092, 0.007360726, 0.007397125, -0.01442217, -0.0025216553, 0.02263221, 0.008784339, 0.05222071, 0.00016430192, 0.022114532, -0.0054073026, -0.0056944517, -0.00959321, -0.017973114, -0.02069092, -0.0044851894, -0.009544678, 0.0072070407, -0.028164888, 0.00859021, -0.0027137622, -0.016153153, 0.015959024, -0.0014943891, -0.0014418125, 0.0036702522, 0.01536046, -0.010644742, 0.0012133064, 0.009334371, 0.00031849297, 0.012521323, 0.009827782, -0.0032516613, -0.010183685, 0.016970113, -0.002382125, -0.0008523478, -0.005455835, -0.025463259, 0.0042991494, 0.02771192, 0.035363838, -0.00019577205, 0.01574063, -0.0035064558, -0.024314662, -0.008072533, 0.005892625, -0.0014802339, -0.009018912, -0.004841093, -0.004295105, 0.0061676414, -0.006685319, -0.004739984, 0.004014022, -0.015764896, 0.0067176735, -0.0071746856, 0.0013305928, -0.013160331, 0.021790985, -0.0035367885, 0.0033527703, 0.0037309173, 0.019526146, 0.0070088673, -0.0060099117, 0.0154979685, 0.00492198, -0.021532146, 0.02276163, -0.0013144154, 0.005443702, 0.0020221774, -0.007829871, -0.019429082, -0.019979114, -0.00683496, -0.013694186, -0.018717274, -0.023602856, 0.016185509, -0.012027912, -0.00073455594, 0.0033669255, -0.012213952, -0.007328371, -0.013402992, -0.0060463105, -0.011033, -0.017973114, -0.00072090625, -0.01711571, 0.012286751, -0.0032152622, 0.0026652298, 0.013734629, -0.004384081, 0.014163331, 0.0057591614, -0.0071018874, -0.008832871, 0.0051686857, -0.008517412, 0.00959321, -0.021758629, 0.033196066, 0.013451525, -0.013775073, 0.00376125, -0.0017127843, 0.010790339, -0.0011283751, -0.019332016, -0.019590855, 0.016598033, -0.0047116736, -0.011380815, 0.011267573, -0.005787472, -0.0016682964, 0.008889493, 0.011453614, 0.005455835, -0.00072545616, -0.015684009, 0.00070776214, -0.0007896603, -0.01517442, 0.007097843, 0.00045271497, 0.012448524, 0.0037652946, 0.019898226, 0.01962321, -0.014575855, -0.014527323, 0.020771807, -0.006106976, -0.011259484, 0.0023153932, -0.0017006512, 0.014624387, -0.006948202, 0.018911405, -0.012464702, 0.036269777, 0.022146888, 0.002109131, -0.005055444, -0.029734097, -0.007498234, 0.010021912, 0.0305915, 0.01742308, -0.010741807, 0.017326016, -0.018264307, 0.0027380283, -0.008396081, -0.0053264154, -0.011364637, -0.016395815, 0.001663241, 0.0046590967, -0.014511146, -0.011906581, -0.0017249174, 0.004913891, 0.010264573, -0.0035185888, 0.0022992159, 0.013119888, 0.0030939316, 0.006151464, -0.0023639256, 0.0067864275, -0.0042101736, 0.015489879, 0.006851137, 0.015376638, 0.018830517, -0.013039, 0.009269661, 0.006244484, 0.0047602057, 0.013629477, -0.017730452, 0.024719097, -0.010822694, 0.00016859904, -0.0019059023, -0.02188805, 0.0009903614, -0.0045175445, 0.008133198, -0.007575077, -0.002814871, -0.010070444, -0.013993468, 0.010442524, 0.0011334305, 0.00046080368, 0.0019382571, 0.00004717361, 0.016209774, -0.006276839, -0.031109178, 0.0028816028
3111
+ -0.009948436, -0.002005733, -0.029007792, -0.015270967, -0.013157609, -0.0033070135, 0.015349239, 0.0109738065, -0.030933296, 0.04743314, 0.041985374, 0.004191493, -0.020523053, 0.010034536, -0.032843146, 0.006500532, -0.009001339, 0.014589996, -0.008743039, 0.019802945, -0.025266366, -0.0059487107, -0.04029469, -0.028882556, 0.014543032, 0.0045632874, 0.0014754368, -0.0034576883, -0.014370833, -0.006414432, 0.0102145625, -0.014096879, -0.02913303, -0.033469327, 0.01187394, 0.012390538, 0.00040530483, 0.0033304954, -0.043801297, -0.0047511416, -0.012288785, 0.004923341, 0.024014007, -0.0154118575, -0.015756257, -0.015388376, -0.025125476, -0.009604037, -0.018472312, 0.00006237341, 0.04411439, -0.0016760101, 0.050438806, -0.0021701055, 0.011146005, 0.030714134, -0.009016993, -0.041014794, 0.021086615, -0.041421812, -0.032686602, -0.020585671, -0.0012024614, -0.045992926, 0.017814824, 0.001129081, -0.01682859, -0.0014969618, -0.004841155, 0.029430464, 0.0354731, -0.017861787, 0.0093770465, 0.06643771, 0.0110129425, 0.04812194, 0.041954067, -0.0013903155, 0.008296886, 0.0036964193, 0.01742346, -0.025829928, -0.026643964, -0.0067549176, 0.010926843, -0.047026124, 0.021180542, -0.056230973, 0.056074426, -0.011466923, 0.00656315, -0.012116585, -0.012069621, 0.00888393, -0.038165677, 0.0006271585, 0.0007333156, 0.015325758, -0.008492568, 0.038196985, 0.0065983725, 0.0057452023, -0.002038999, -0.048560265, 0.035598338, -0.016421573, 0.020883106, 0.014300387, -0.017533042, 0.03960589, 0.01905153, 0.016812935, -0.0027728037, 0.023027772, -0.007752892, 0.016953826, 0.00933791, -0.03456514, 0.027943287, 0.009901472, -0.024640186, 0.002310996, -0.028193759, 0.006457482, 0.01235923, 0.011279069, 0.01571712, 0.021180542, 0.020069072, 0.030103607, 0.006762745, 0.0452102, 0.012069621, 0.0018570153, 0.04474057, 0.035504412, -0.006073947, 0.037570804, -0.00053225306, -0.0005195338, -0.025704693, -0.010339798, -0.014331697, -0.012883656, 0.0101754265, -0.011020769, 0.016593773, 0.04464664, -0.023168663, -0.00683319, -0.040200762, -0.0368507, 0.015811047, -0.018722784, 0.02764585, -0.018159222, -0.04114003, 0.030166226, 0.021634523, 0.037789967, 0.005612139, -0.04154705, -0.008038587, 0.0016368739, 0.0073419614, -0.00871173, -0.011404305, 0.017533042, -0.013713344, 0.026049092, -0.0046102507, 0.040326, 0.012179202, -0.0024636274, -0.023246937, 0.02471846, -0.010238045, -0.009220501, 0.009580555, -0.020194307, -0.011740876, -0.015427512, 0.040419925, -0.027802397, 0.04314381, 0.04176621, 0.048779428, 0.026518727, 0.006762745, -0.057608567, -0.01030849, 0.00736153, 0.013149782, -0.009361392, 0.016546808, -0.009533592, -0.029853135, -0.030745443, -0.03991898, -0.00080376083, -0.020773524, -0.02291819, -0.0062265783, -0.014456932, -0.01919242, 0.04968739, -0.03713248, -0.019834254, 0.025516838, 0.015552748, 0.06171005, -0.0152944485, -0.010981633, -0.010965979, -0.031042878, -0.04812194, -0.032561366, -0.022886882, 0.005592571, -0.046493873, 0.021791067, -0.0009515002, 0.032968383, -0.042204536, -0.016390264, 0.0058195614, -0.0128132105, 0.042486317, 0.036287136, 0.030432353, 0.003471386, 0.051659856, -0.005604312, 0.0057491157, -0.0008003364, 0.00683319, 0.011067733, -0.01244533, -0.025720347, 0.042955954, -0.0016221978, -0.00034146383, -0.016218064, -0.036036663, 0.04182883, 0.016765973, 0.013470699, 0.027301451, -0.022589447, -0.0006247125, 0.016124137, 0.041171342, 0.0007347832, 0.02593951, -0.024734113, 0.034439906, 0.047088742, 0.0060269833, 0.0016897079, 0.023184318, 0.003365718, 0.014957877, -0.002289471, 0.005612139, -0.021149233, -0.03804044, 0.044083077, -0.058923546, 0.0049898727, 0.021415358, 0.04928037, -0.030025335, 0.02767716, 0.01787744, -0.00048553417, -0.007725497, -0.0068918946, 0.016672045, 0.013963816, -0.019693363, -0.023012118, 0.0020076898, 0.03706986, 0.026596999, -0.00879783, -0.015842356, 0.011083388, 0.0014147756, 0.026236946, 0.0037179443, -0.01540403, -0.0047159186, 0.046118163, 0.04211061, 0.05936187, 0.039104946, -0.013447218, 0.005518212, -0.0005655189, 0.009588382, -0.0021681485, 0.006895808, -0.011169488, -0.024796732, 0.017642625, 0.016859898, 0.013282845, 0.025798619, -0.029680936, -0.011826976, 0.022135466, -0.04095218, -0.025235057, -0.020585671, 0.034189433, 0.022589447, -0.0008654005, -0.026362183, -0.0005625837, -0.018691476, -0.040106833, -0.023700917, -0.08628762, 0.011521714, 0.075078994, 0.008195132, 0.028976483, 0.016985135, 0.022338975, -0.0023677435, -0.049186446, -0.034439906, 0.016640736, 0.012367057, 0.008109032, -0.07676968, -0.03195084, 0.0076785334, -0.0048137596, 0.011725222, 0.0024851523, -0.0066727316, 0.028287686, -0.019098492, 0.036631536, -0.025235057, 0.009870164, 0.0019636615, -0.007596347, -0.039386727, 0.0009656871, 0.016765973, 0.020679597, -0.0051894677, 0.03094895, 0.03237351, 0.02388877, -0.028037213, -0.012304438, -0.008930894, 0.0007083662, -0.040357307, 0.009964091, 0.0299001, 0.0131341275, -0.02896083, 0.00034488825, -0.002434275, -0.0052403444, 0.013141954, -0.012241821, 0.05535432, 0.0052912217, 0.01776786, -0.012914964, 0.01967771, -0.025845584, 0.013713344, -0.008406468, 0.025642075, 0.010558962, 0.026174327, 0.03240482, 0.010386762, 0.01147475, 0.003271791, -0.008829139, -0.0137759615, 0.0003348596, -0.029712245, -0.018456658, 0.008155996, -0.053287927, -0.032248273, 0.020851796, 0.00736153, -0.010183253, -0.0199908, 0.023685262, 0.025861237, 0.020069072, -0.026769198, -0.02503155, 0.029931407, 0.014785677, -0.03428336, 0.0071658483, 0.017705241, 0.02471846, 0.027379725, 0.003731642, -0.023246937, 0.00919702, 0.03901102, 0.009189193, 0.011897421, -0.026988361, 0.053632323, -0.024765423, -0.003991898, 0.026581345, -0.011310378, -0.012836692, 0.0019372447, -0.001949964, 0.025532493, -0.030933296, 0.0018325552, -0.010104981, 0.0035144358, 0.047589686, 0.006907549, 0.000515131, -0.018409695, 0.014503896, 0.012312266, -0.010746816, 0.025955165, 0.00683319, 0.021603214, -0.028459884, 0.0048959455, -0.00091334234, -0.02229201, -0.034095507, 0.0034557313, -0.010566789, -0.016124137, 0.053193998, -0.012147894, 0.011271241, -0.0073106526, -0.02249552, 0.027724123, 0.036349755, -0.011482578, -0.029618317, -0.012163548, 0.030917643, -0.065874144, -0.022996463, -0.00027786742, 0.024358405, -0.0023168663, 0.008445604, -0.019771636, -0.014136015, 0.022573791, -0.007940746, 0.010879879, 0.005933056, 0.021728449, -0.029461773, -0.0062461463, -0.035097394, 0.008672594, 0.02892952, -0.008664767, 0.004230629, 0.010183253, 0.008852621, -0.06311895, -0.0053381855, -0.025782965, -0.007557211, -0.010699852, 0.041359194, 0.009400529, 0.027301451, -0.000039411432, -0.009470974, -0.015967593, -0.011028597, -0.00035687373, 0.0004280528, 0.00066776236, -0.048528958, -0.00731848, 0.023841808, -0.012312266, -0.012758419, -0.0060269833, -0.00015128609, 0.04336297, -0.02531333, 0.028538158, -0.023246937, 0.016859898, 0.008476913, -0.0040388615, 0.0057921656, -0.01574843, -0.012382711, 0.0057060663, 0.018268805, -0.0051072813, 0.016139792, 0.0036083627, 0.023215627, 0.025610765, 0.03209173, 0.006751004, 0.0009828092, -0.011858285, 0.0073302207, -0.017673934, 0.039418038, 0.03004099, -0.024702804, -0.025438566, 0.0064457413, 0.009220501, 0.012320093, -0.015568403, -0.021791067, -0.030761097, 0.016546808, 0.04411439, -0.0051346766, -0.008641285, -0.037257716, -0.0002888745, 0.0071462803, 0.02420186, 0.019098492, 0.005205122, -0.0010948367, -0.022526829, -0.041734904, -0.010065845, -0.018472312, 0.032874454, 0.009290947, 0.02030389, 0.02670658, -0.02736407, -0.04777754, -0.047683615, -0.034345977, 0.010699852, 0.0048881182, 0.015059631, 0.023027772, 0.0141751515, 0.017204298, 0.017016444, 0.045116276, -0.00003916683, -0.03459645, -0.015920628, 0.020069072, 0.017204298, 0.03365718, 0.0025340726, -0.015701465, 0.02263641, -0.004379347, -0.015247486, -0.0098545095, 0.003344193, -0.02197892, 0.00089181744, -0.030463662, -0.008429949, -0.008602149, 0.051158912, -0.014057743, -0.03653761, -0.0074163205, 0.0039586322, 0.021258814, 0.01696948, 0.01922373, 0.019755982, 0.024295788, -0.0044380515, 0.005905661, -0.023998352, 0.005717807, -0.04755838, 0.013689863, -0.0020507397, 0.03334409, 0.00095834903, -0.016515499, -0.0044145696, 0.022855572, -0.0090952655, 0.041922756, 0.01787744, -0.061334338, -0.00794466, 0.014480415, 0.00094514055, 0.00053225306, -0.051941637, -0.0058978335, -0.022354629, -0.0077411514, 0.034752995, -0.009611865, -0.033375397, 0.025203748, -0.037821278, 0.019489855, 0.023074737, -0.005592571, -0.036600225, -0.0018941947, 0.017079063, -0.016922517, 0.0013208486, -0.029915754, -0.013650726, 0.012468811, 0.022589447, -0.013682035, 0.025109822, 0.012891483, -0.022276357, -0.010425898, 0.021321433, -0.007482852, 0.088917576, -0.0005611161, -0.008351677, 0.03299969, 0.043519516, 0.044615332, -0.037946515, -0.009345738, -0.023043428, 0.011607814, 0.03340671, 0.0091344025, 0.018472312, 0.008414295, -0.028209412, -0.0013384599, -0.001776786, -0.011928731, 0.0070601804, 0.03995029, 0.0073497887, 0.0110129425, -0.004923341, -0.015114422, -0.027489306, -0.015497957, 0.034815613, 0.0039351503, 0.005216863, -0.030651515, -0.023012118, -0.0099093, 0.0025321157, 0.03584881, -0.012061794, -0.032811835, 0.0060543786, -0.018300112, -0.03556703, -0.0008096313, -0.02075787, -0.023137353, -0.013423735, 0.0025966906, -0.05347578, -0.012719283, -0.0012063751, -0.052129492, -0.008077723, -0.008860448, 0.031872567, 0.03775866, -0.050845824, 0.007251948, -0.028726012, 0.015787566, 0.008109032, -0.0013423736, -0.023215627, -0.05500992, -0.012969755, -0.013822925, 0.021650176, 0.0021798895, -0.019662054, -0.017955715, -0.02392008, 0.003948848, 0.052693054, -0.007885955, 0.023466099, 0.006637509, 0.023669608, 0.030401044, -0.009220501, -0.022354629, 0.034001578, -0.0003368164, -0.018315768, -0.0025536406, 0.012437502, 0.034439906, -0.00083996187, 0.0006212881, -0.028350303, 0.014503896, -0.0117330495, 0.0090561295, -0.020773524, -0.003594665, 0.0015184868, 0.0128132105, -0.002383398, -0.013658553, 0.030917643, 0.000370816, -0.009901472, 0.049656082, -0.015505784, -0.0052207764, 0.0006990714, 0.019239383, 0.0124531565, 0.012367057, -0.0002147602, -0.015599712, -0.0112164505, -0.017079063, 0.0053147036, 0.023685262, -0.032467436, -0.030197535, 0.030338425, -0.008461258, -0.016124137, -0.022072848, 0.0032326546, -0.01773655, 0.0036827216, -0.01804964, -0.0013609633, 0.010120636, -0.012742765, 0.012367057, -0.027270142, 0.006594459, -0.008116859, -0.0100971535, 0.016311992, 0.034064196, 0.02548553, -0.011232105, -0.012492293, 0.0026103882, -0.020585671, 0.015756257, -0.022104157, -0.017219953, 0.0264248, -0.025720347, -0.00897003, 0.039386727, 0.00063351815, 0.009533592, -0.03869793, 0.032248273, -0.0010292835, 0.032310892, -0.007251948, 0.01549013, 0.006731436, 0.022839919, -0.013619417, 0.025704693, -0.012515775, -0.0045084967, 0.007690274, 0.028663393, 0.022229394, 0.0033911564, 0.005369494, 0.02750496, -0.017861787, -0.008547358, -0.042329773, -0.010206736, 0.048967283, -0.020523053, 0.027254488, 0.0021975008, 0.012711456, -0.00021806233, -0.009408356, 0.007694188, 0.04079563, 0.02531333, 0.010660716, 0.02075787, -0.025892546, 0.02830334, 0.0047472278, -0.0009304645, 0.035441794, 0.022307666, 0.021947613, 0.009807546, 0.0072793434, -0.000004544239, 0.013815098, -0.046775654, -0.00041851334, -0.009877991, 0.03869793, -0.0028236809, 0.011059905, 0.017861787, -0.03271791, -0.03969982, -0.018613202, 0.007314566, 0.00079397677, -0.003040887, 0.003209173, 0.01415167, 0.038290914, -0.025469875, -0.0019714888, 0.026174327, 0.0015409901, 0.0025790792, 0.010872052, -0.030901987, 0.00042585138, 0.000522469, -0.0037199012, 0.0052873082, -0.00147348, -0.023246937, -0.0199908, 0.010410244, -0.013987298, -0.018597549, -0.02457757, 0.026550036, -0.018206187, -0.0048724636, -0.00736153, -0.011834804, 0.015388376, -0.015967593, 0.009604037, 0.012296611, -0.015576229, -0.018550586, -0.0021270555, -0.0002139041, 0.0037570805, 0.021227505, -0.009870164, -0.028052868, 0.00021182498, 0.027551923, -0.0075024203, -0.005381235, 0.019114148, 0.007056267, -0.007314566, 0.0105354795, 0.019035874, -0.0033715884, -0.02232332, 0.0036631536, -0.005741289, 0.0067862268, -0.03331278, -0.011795667, -0.00013232947, 0.003228741, -0.019630745, -0.009478801, -0.027129252, 0.017783515, -0.002017474, 0.04743314, 0.0139716435, 0.018519277, -0.00086393283, -0.011146005, 0.03863531, 0.015169213, -0.040388614, 0.008805658, -0.027207525, -0.008226441, 0.011967867, 0.015200522, -0.02864774, 0.011005115, 0.014965704, 0.041327886, 0.019286348, -0.0021622782, 0.016343301, 0.011920904, 0.002925435, 0.016609427, -0.008124687, -0.016750317, 0.018503621, 0.022198085, 0.031011568, 0.013298499, 0.02044478, -0.024984585, 0.013877716, 0.0056786705, -0.009071784, 0.021164887, -0.016045865, 0.012257475, -0.02910172, 0.0020429126, 0.0013355247, 0.0024107934, 0.017533042, -0.0015752342, -0.013689863, -0.0047511416, -0.015795393, -0.019082839, -0.0015184868, -0.012437502, 0.0048528956, 0.00209966, 0.007169762, 0.0047433143, -0.0124140205, -0.0101754265, 0.015842356, 0.004680696, -0.011357341, 0.02667527, -0.012781901, -0.022213738, -0.017470425, 0.017032098, -0.019270692, -0.03243613, -0.015106594, 0.0062344056, 0.0358175, 0.014049916, -0.014316042, -0.019552473, 0.013517663, 0.016045865, -0.0017415633, 0.020429125, -0.042423703, -0.029618317, 0.038478766, -0.0036201037, -0.026894435, 0.026471764, 0.003220914, -0.014793505, 0.027567578, -0.0029606577, 0.01463696, -0.011341687, -0.008617803, 0.022041539, 0.0351287, 0.041390505, -0.022965156, -0.0123357475, -0.03644368, -0.026409145, -0.027379725, -0.028835593, 0.03397027, 0.0022601187, 0.041922756, 0.01842535, -0.00015862414, -0.04467795, 0.054289814, 0.0041288747, -0.018519277, 0.003262007, -0.029258264, -0.013556799, 0.003911669, -0.019098492, -0.009705791, 0.029806172, 0.027771087, -0.015130077, 0.03365718, 0.016938172, -0.000922148, 0.005385149, 0.009948436, -0.002475368, 0.011372996, 0.039480656, -0.0065279272, 0.0063831233, 0.0053538396, -0.00397233, 0.009228329, 0.010707679, -0.0063400734, -0.006461396, -0.08472217, 0.0005459508, 0.019286348, -0.00196464, 0.006660991, -0.00008738392, 0.0057334616, 0.0027845446, -0.014785677, -0.015685812, 0.002467541, 0.0019626832, -0.006782313, 0.0032952728, 0.020366507, 0.016077174, -0.008680422, -0.013713344, -0.013337635, 0.010050191, -0.0017004703, 0.019348964, 0.015208349, -0.016484192, -0.029915754, 0.006508359, -0.016765973, -0.004046689, 0.0044380515, -0.008891758, 0.0012102887, 0.009431837, -0.02030389, -0.013502008, 0.022824265, 0.002226853, -0.009799718, -0.004203234, -0.008962203, -0.0073693567, 0.012155721, -0.014425624, -0.0106137525, -0.0090952655, -0.009627519, -0.016124137, 0.030667169, -0.03484692, -0.018550586, -0.017439116, 0.028506849, -0.00096275186, -0.012828864, -0.025751656, 0.022385938, -0.023043428, -0.009721446, 0.00075728656, 0.02716056, 0.0019215902, 0.052286036, -0.0037159876, 0.013290673, 0.008132514, -0.028772974, 0.0065788045, 0.003804044, 0.00424237, 0.012429675, -0.018284459, 0.012226166, 0.0029039101, -0.013306327, -0.0500631, 0.00043881527, 0.0075924336, -0.0030604552, 0.0015517526, 0.0121322395, -0.027348416, -0.02816245, 0.024248824, -0.002686704, 0.013032373, -0.009807546, 0.0053968895, -0.017032098, -0.041171342, 0.032937072, 0.011905249, 0.018754093, -0.010950324, 0.027457997, -0.009103093, 0.009517937, 0.00902482, -0.015858011, 0.0014744584, -0.0024381888, -0.010285008, 0.017032098, -0.00046352003, 0.007807683, -0.020413471, -0.015858011, 0.0030389302, -0.004222802, 0.029289573, -0.011780013, -0.013815098, 0.007138453, -0.02044478, -0.01825315, -0.006187442, 0.018268805, 0.017298225, 0.011866112, -0.0007108122, 0.009541419, 0.032185655, -0.006105256, 0.006895808, 0.0011007072, -0.030761097, -0.001133973, -0.005803907, -0.006152219, 0.0003686146, -0.025689038, 0.025876893, 0.0042188885, -0.0072676027, 0.02298081, 0.008516049, -0.012570566, -0.023998352, -0.002958701, -0.03844746, -0.026925744, -0.0012699715, -0.005279481, 0.018988911, -0.044709258, 0.0113338595, -0.012868001, 0.013094991, 0.010128463, -0.03954327, -0.011834804, -0.013337635, -0.010159772, -0.0019939921, -0.0013942291, -0.0038705757, 0.008320368, 0.021055305, 0.0130402, -0.0070210444, 0.016139792, -0.027442342, -0.012797556, -0.0138542345, 0.005768684, -0.030134916, 0.012210512, -0.022135466, 0.031387277, -0.0027728037, 0.018785402, 0.021869339, 0.020037763, -0.007893783, -0.015474475, 0.011623468, -0.021556249, -0.030463662, 0.006199183, -0.008821312, 0.0037492532, 0.0048450683, -0.0037277283, 0.0018188575, 0.008148168, -0.009400529, 0.016719008, 0.016171101, 0.015928457, 0.00942401, -0.018143568, 0.0050250953, 0.002980226, 0.031481203, 0.009557074, -0.028052868, -0.01867582, 0.0014695664, 0.035316557, -0.004336297, 0.0013159566, 0.0047902777, 0.0011046209, -0.021540595, -0.020930069, 0.011537368, -0.014002952, 0.04780885, -0.012868001, 0.054790758, 0.0034772563, -0.018801058, 0.011482578, 0.00727543, -0.008891758, 0.0062578875, 0.03832222, 0.028866902, 0.0023716572, 0.0059487107, 0.016006729, -0.0016427443, 0.017360844, 0.014824813, -0.0354731, -0.009150056, -0.005760857, 0.006700127, -0.017501734, -0.015560575, -0.010433726, -0.00095198944, -0.0019294174, -0.00017378943, -0.03528525, -0.0015732775, 0.020663943, -0.00093927013, 0.008852621, 0.025375947, 0.021744104, -0.019255038, -0.014206461, -0.047182668, -0.0017347145, 0.015764084, 0.021258814, -0.015638847, -0.02500024, 0.0025125477, -0.004680696, 0.022245048, 0.0020566103, 0.0002634359, 0.003680765, 0.00683319, 0.00919702, -0.0044576195, -0.026236946, -0.0051816404, 0.02246421, -0.027974596, -0.021321433, 0.009924955, -0.010684198, 0.0073106526, 0.010746816, -0.0026103882, -0.021994576, 0.01682859, 0.0040055956, -0.0231217, 0.010942497, 0.011717395, 0.013220227, -0.016499845, 0.037946515, 0.011341687, -0.002674963, -0.011748704, 0.015004841, 0.01679728, 0.017063407, 0.022714682, -0.012374884, 0.009831027, 0.021274468, -0.0076472242, -0.009447492, 0.0022816437, 0.017580006, 0.005561262, -0.012609702, -0.010183253, -0.0056904117, -0.006852758, -0.0030252326, 0.017439116, -0.0026397405, -0.0041954066, 0.010566789, 0.02468715, 0.011639123, 0.0051581585, 0.00014052361, -0.008273404, -0.004492842, -0.00029034208, 0.012547083, 0.016155446, 0.013415908, -0.0055964845, -0.027176216, 0.036631536, -0.021947613, -0.04370737, -0.020288235, -0.012515775, 0.026596999, -0.009964091, -0.0028784715, -0.026299564, 0.0034459473, 0.005694325, 0.008813485, -0.006152219, -0.034345977, -0.044270933, -0.025235057, 0.014621305, -0.0021192282, -0.022432901, -0.009298774, -0.015310103, 0.008852621, 0.02357568, 0.018456658, -0.021258814, 0.008101205, 0.002267946, -0.021509286, 0.002258162, -0.009948436, 0.029383501, -0.038009133, 0.01084857, -0.00736153, 0.027896322, -0.012367057, -0.017345188, -0.01950551, -0.022401592, 0.007169762, 0.0071541076, -0.020413471, 0.0071462803, -0.0017464554, 0.04680696, -0.00031871587, 0.0012142024, 0.0199908, -0.0059721926, 0.0061913556, -0.012460983, 0.020804834, 0.021744104, -0.015482303, 0.006942772, 0.011341687, -0.014073397, -0.015818875, -0.020601325, 0.0071971575, -0.003040887, -0.010770298, -0.027395379, -0.021556249, 0.019458545, -0.011372996, -0.0050759725, -0.022667719, 0.005302963, 0.016578117, -0.02013169, 0.01218703, 0.0030271893, -0.006073947, -0.0090561295, -0.0019010436, -0.0013590065, -0.018331422, 0.0041523566, -0.017673934, -0.0094553195, -0.025704693, 0.024280133, 0.0062148375, 0.007475025, -0.0068175355, 0.007201071, 0.0024401455, -0.043300353, -0.0073263072, 0.029211301, -0.0014226029, 0.017204298, 0.008633458, 0.0062578875, 0.0018648426, 0.014206461, -0.014002952, -0.022699028, -0.0015654502, 0.034690376, -0.0013834666, 0.0070601804, 0.004136702, -0.011239933, 0.023763534, -0.0026456108, -0.013016718, -0.004097566, 0.028726012, -0.000013384293, 0.0035261766, 0.021243159, -0.0034205087, 0.0061169965, -0.029633973, 0.025689038, 0.010402417, -0.020460434, -0.014096879, -0.0033481068, -0.013235882, 0.026346527, 0.015967593, -0.02881994, -0.013642899, -0.0072871707, 0.0031602527, 0.00012658133, -0.029962717, -0.01352549, 0.0037746918, -0.021086615, 0.0053147036, -0.0056708436, 0.013024546, -0.017486079, -0.0013423736, 0.027567578, 0.032592673, 0.0003842691, 0.009877991, 0.0028569466, -0.014136015, -0.002123142, 0.016812935, 0.008868275, 0.0049820454, -0.016296336, -0.027270142, 0.004398915, 0.006351814, -0.0006203097, 0.021853685, -0.00078223593, 0.0073928386, -0.023027772, -0.021916304, 0.0010537436, -0.0052090357, 0.024452332, 0.011326033, -0.023826152, 0.008602149, -0.008226441, 0.002301212, -0.032216966, 0.007400666, -0.0462434, 0.006531841, -0.01856624, -0.015263139, 0.020977033, -0.00010169311, -0.026831817, 0.007819423, -0.012460983, 0.023497408, 0.026957054, -0.015153558, -0.0009759604, -0.00794466, -0.016374609, -0.010629407, -0.006743177, 0.0002152494, 0.013102818, -0.0132515365, 0.01577191, -0.01682859, -0.0012014831, -0.031309005, 0.00091432076, 0.01745477, 0.0032346116, -0.0008732277, 0.015623193, 0.006113083, 0.021039652, -0.0033246248, -0.009345738, -0.009306601, 0.0079368325, -0.007228466, -0.0033167975, 0.0011721308, -0.02907041, 0.003240482, 0.019145457, -0.012468811, 0.0011848501, -0.008836967, -0.013862061, -0.0023951388, 0.008923066, 0.0029743554, -0.019740328, -0.020053416, 0.0098153725, 0.045147583, -0.00007081216, 0.022229394, -0.0153727215, 0.028037213, -0.007882042, -0.0054477667, 0.00043343403, 0.013783789, 0.0032854886, -0.0065983725, 0.010339798, -0.0045280647, -0.005741289, 0.023841808, 0.041860137, 0.0019675752, 0.0019401798, -0.00008010702, -0.0041132206, -0.010003227, 0.018159222, 0.007662879, 0.02166583, 0.002582993, -0.032279585, -0.026800508, -0.01682859, 0.0013893371, -0.01210093, 0.01574843, 0.00504075, 0.0194742, 0.023356518, 0.03195084, 0.012507947, 0.017188644, -0.012727111, -0.0041014794, 0.010198908, -0.022417247, -0.0100971535, -0.009251811, 0.03960589, 0.008406468, 0.0024225342, -0.01335329, 0.008328195, 0.031700365, -0.010238045, 0.01549013, -0.0016221978, -0.008273404, -0.009838855, 0.008500394, 0.019067183, -0.016922517, 0.01124776, 0.02280861, -0.013728999, -0.025923856, 0.042830717, 0.003177864, 0.015458821, -0.0135333175, -0.032874454, 0.015779737, 0.01549013, 0.023544371, 0.021023996, -0.010731162, 0.027551923, -0.004602424, 0.013384599, 0.016022382, -0.0138933705, 0.010965979, -0.010911188, 0.013948161, -0.0046533006, 0.007921178, 0.010566789, -0.007979883, 0.0011672388, 0.0042149746, 0.012946273, 0.012147894, 0.00087860896, -0.013635071, -0.007475025, 0.0026906175, 0.01597542, 0.03591143, 0.0028862988, -0.00067265437, 0.012288785, 0.0060778605, 0.0059017474, -0.020413471, 0.01107556, -0.008218613, 0.0022972983, -0.0031485118, -0.00097057916, -0.00049213844, 0.007874215, -0.01178784, 0.014402142, -0.017705241, 0.016092828, 0.0014607607, 0.008069896, 0.0029117374, 0.020804834, -0.0067979675, 0.0033304954, -0.0037981735, 0.009588382, -0.013259363, -0.0005268718, 0.0015468606, -0.0039155823, -0.003690549, -0.0047511416, -0.012985409, -0.0063400734, 0.0020350853, -0.01588932, 0.007913351, 0.017360844, -0.0062070102, -0.009212675, -0.0025673383, -0.009486629, -0.03112115, -0.040670395, -0.013744653, -0.007490679, 0.0008678465, 0.018628858, 0.0035790105, -0.005600398, -0.0036181468, -0.00723238, 0.0027532356, 0.0046963505, 0.0063831233, -0.015067458, -0.012226166, 0.00933791, 0.0023286073, -0.011850459, -0.018691476, -0.0002609899, -0.002046826, -0.011232105, -0.011513886, 0.0146917505, -0.015873665, -0.0007338048, 0.008531704, -0.0023990525, -0.005436026, 0.013815098, -0.0063635553, 0.034408595, -0.006324419, -0.0028882558, -0.005185554, 0.0015693639, -0.0050446633, -0.006660991, 0.0035770538, -0.015388376, 0.015654502, 0.0152944485, -0.021321433, -0.0041562705, 0.007662879, 0.0142534245, 0.007709842, 0.002267946, 0.0022601187, 0.01870713, -0.003678808, -0.0065357545, -0.0051581585, -0.0060387244, -0.0050211814, 0.018769749, -0.0031485118, -0.014832641, -0.0138933705, 0.007733324, -0.004046689, -0.005874352, -0.0023638299, -0.02360699, -0.005737375, -0.01696948, 0.006073947, -0.00062079885, -0.018331422, 0.0026475678, 0.014363006, -0.0034205087, 0.016327646, 0.010472862, 0.02531333, -0.0039782003, -0.028710358, 0.013682035, -0.0042149746, -0.0057021524, 0.0013413952, 0.007968142, 0.0044889287, -0.013376772, 0.023732224, -0.018315768, -0.009001339, 0.0028491195, 0.01477785, -0.016218064, 0.003939064, -0.05776511, -0.018472312, 0.017658278, 0.028913865, 0.008163823, 0.017517388, 0.01714168, -0.027692815, -0.002446016, -0.012226166, 0.019427238, 0.019881219, 0.0070875757, 0.003584881, 0.024014007, 0.020836143, -0.009392701, 0.006719695, -0.010191081, -0.022683375, 0.014276906, 0.025438566, -0.007251948, -0.0063909506, -0.0006589567, 0.032905765, 0.011952212, -0.010566789, 0.0039097117, -0.013408081, -0.0012787771, 0.011983521, -0.0074789384, -0.0007636462, -0.0012406193, -0.0022816437, 0.009580555, -0.0044380515, 0.019317655, -0.000024429584, -0.010159772, 0.0041445293, -0.015427512, 0.02343479, -0.0006286261, 0.010003227, 0.003469429, 0.007408493, -0.01383858, 0.005475162, -0.010042363, 0.009361392, 0.008382986, 0.009611865, 0.007161935, -0.022276357, -0.00042438376, 0.014034261, -0.0232939, -0.006073947, -0.0045398055, -0.002256205, 0.014073397, 0.021352742, -0.006480964, 0.0045672012, 0.01822184, -0.010879879, -0.012437502, 0.020914415, 0.0039527616, 0.023168663, -0.010778124, -0.012061794, -0.017392151, 0.010660716, -0.008077723, 0.021290123, 0.013862061, 0.016531155, 0.0050016134, -0.008038587, 0.0044771875, 0.003710117, 0.02075787, 0.0098232, -0.027598888, -0.018127913, -0.0045398055, 0.02440537, 0.012797556, 0.016468536, -0.0031211164, -0.0053342716, -0.000731848, -0.00032654314, 0.0061209104, 0.015779737, -0.0073263072, -0.0056356206, 0.0074867657, 0.022072848, -0.0050759725, 0.009478801, 0.0052207764, 0.0071971575, -0.02388877, 0.018143568, -0.026612654, -0.013478527, 0.0035477015, -0.00388623, 0.0038118714, 0.0041523566, -0.014136015, -0.012868001, -0.011748704, -0.003218957, -0.008578667, 0.000044945544, 0.011498231, -0.006660991, -0.0034733426, 0.008750867, -0.010300662, 0.022479866, -0.000016892798, 0.017580006, 0.0053264443, 0.021321433, -0.0011662605, -0.03362587, 0.015247486, -0.000028541948, 0.02844423, 0.009204848, -0.017407807, 0.0027669333, 0.0043910877, 0.029023448, 0.012523602, 0.0036494557, 0.01196004, -0.002684747, 0.011975694, -0.0058782655, 0.002101617, -0.00976841, -0.018801058, -0.011819149, 0.008210787, -0.01030849, 0.008163823, -0.010167599, 0.0026925744, 0.015685812, 0.005694325, 0.008836967, -0.0074358885, 0.006062206, 0.00069271174, -0.011599986, -0.0018971299, 0.00024827063, 0.002258162, 0.0026612654, 0.015740601, -0.01856624, 0.00042511759, 0.0032737479, -0.020116035, -0.00040310342, 0.013188918, 0.00790161, -0.011208624, -0.0023481753, 0.02280861, -0.0121322395, 0.0031817777, -0.0073302207, -0.0058586975, 0.0006085688, -0.0030487143, -0.015584057, -0.015482303, 0.012257475, 0.0007108122, 0.003385286, 0.010519826, 0.014543032, 0.010073672, -0.031966493, 0.004668955, 0.006794054, -0.010402417, 0.0041523566, 0.036349755, -0.0006252017, -0.022354629, -0.016139792, 0.006070033, 0.010144117, -0.0065827183, -0.015811047, 0.028679049, 0.0075024203, 0.011138178, -0.0064340006, 0.010856397, -0.0019617048, 0.0023481753, 0.015709292, -0.014402142, 0.009580555, -0.02656569, -0.00056160527, 0.0260804, 0.013110646, 0.007357616, 0.0045437193, -0.012069621, -0.008030759, -0.022511175, 0.032905765, -0.006637509, 0.020992687, 0.027426688, -0.0034459473, -0.0052677398, -0.008062068, -0.006633595, -0.005162072, 0.014957877, 0.01870713, 0.014707405, 0.013791616, -0.0022542484, 0.005142504, 0.0026064746, -0.010394589, -0.0042580245, 0.008516049, -0.0011329945, -0.0024949363, -0.008304713, 0.010112808, -0.0053342716, -0.002925435, -0.017517388, 0.001249425, -0.0039018847, -0.00038720432, -0.0043950016, 0.0017396066, -0.006062206, 0.0056082252, 0.014527378, 0.013290673, 0.008868275, 0.007158021, -0.007169762, -0.017392151, -0.0005293179, -0.017642625, 0.022448556, -0.0006413454, -0.007670706, 0.001358028, -0.009635346, 0.020648288, 0.0031915617, 0.010598098, -0.011631295, -0.007138453, 0.023184318, 0.008523877, 0.010832915, 0.008382986, -0.007608088, 0.009635346, -0.010817261, 0.010668543, -0.0042580245, -0.005655189, 0.007999451, 0.01620241, 0.030103607, -0.009697964, 0.011584331, 0.010034536, -0.018894983, -0.00019555898, 0.008664767, 0.006394864, -0.008633458, 0.008821312, -0.008688249, 0.008555185, -0.01463696, 0.020961378, -0.018801058, 0.02388877, 0.003449861, -0.011662604, -0.019114148, 0.027317107, -0.0030917642, 0.0040819114, -0.004672869, -0.005173813, -0.013909025, 0.0058900067, 0.014848296, 0.0116156405, -0.0013883587, 0.017673934, -0.0052442583, -0.0018335335, 0.02440537, 0.0074867657, -0.0027669333, 0.016781626, 0.0020977033, 0.0006022091, -0.018096605, 0.0029410897, 0.00051610934, 0.015106594, -0.003741426, 0.011232105, 0.014417796, -0.004817673, -0.017392151, 0.042580247, 0.0037042466, 0.004023207, 0.010331972, -0.008328195, 0.0071501937, 0.0009113856, 0.03425205, 0.0041288747, -0.0033167975, -0.023873115, -0.027113598, 0.029399155, 0.012476638, -0.008508222, -0.0074985065, 0.025235057, -0.00223468, -0.013220227, -0.009885818, 0.007580693, -0.002496893, 0.006762745, 0.014214288, -0.022965156, -0.002487109, -0.005365581, 0.0054164575, -0.00006218995, 0.018033987, -0.0019030004, -0.021650176, 0.0034048543, -0.02360699, 0.0073654433, -0.008011191, -0.017893096, 0.006242233, -0.0009969961, -0.0059956745, -0.027708469, -0.014057743, 0.007643311, 0.01147475, -0.030432353, 0.021337086, -0.015826702, 0.004575028, -0.008821312, -0.008202959, -0.012218339, 0.028804284, 0.01566233, 0.0066962135, 0.0003490465, -0.008516049, -0.0055730026, 0.0012367057, 0.018096605, -0.00049116, -0.004273679, -0.0025849496, 0.0138933705, -0.006003502, -0.005760857, 0.01842535, -0.013376772, -0.01950551, 0.0057217204, -0.025141131, 0.01665639, -0.002080092, -0.043018572, -0.006081774, 0.007878128, -0.0074124066, 0.009784064, 0.007619829, -0.017799169, 0.000072952425, 0.024593223, 0.0013169349, -0.0001152685, -0.017313879, -0.010151945, 0.000089646484, 0.013228054, 0.01902022, -0.0196464, 0.013728999, 0.000052314168, 0.00020350853, 0.02750496, -0.0226051, 0.009729273, 0.020648288, 0.0019754025, -0.004293247, 0.0058391294, -0.0044967555, 0.00019690428, 0.007494593, 0.00022503347, -0.028506849, -0.005193381, 0.019239383, -0.01258622, -0.0127349375, -0.006461396, 0.0049898727, 0.0016173058, 0.0018902811, -0.0028178103, -0.008054242, 0.011083388, -0.042329773, -0.01343939, -0.0035340039, -0.016546808, -0.017329535, 0.02733276, -0.0039586322, -0.023982698, 0.005236431, -0.005760857, -0.004093652, -0.03459645, -0.0066218544, -0.018237496, -0.020100381, 0.0041249613, -0.009744927, 0.0050837994, 0.01130255, -0.007897696, -0.0030330599, 0.023466099, -0.0026495245, 0.012124412, 0.008860448, -0.009439665, -0.000009852858, -0.0071032303, 0.012265302, 0.009157884, -0.0077215834, -0.014339524, -0.0117330495, 0.010167599, 0.014120361, -0.010511998, 0.011756531, 0.002342305, 0.0068018814, -0.008531704, -0.013674208, -0.011435614, -0.022260701, 0.0011780013, -0.0013413952, -0.018112259, -0.009549246, 0.0005053469, -0.017846132, -0.028099831, -0.010402417, -0.0023188232, -0.022886882, -0.0050094407, 0.013721171, -0.0015135946, -0.0043676062, -0.035066083, 0.02357568, -0.012077449, -0.012844519, 0.0026162586, 0.0064066052, 0.02687878, 0.009564901, 0.017533042, -0.0030056643, -0.016061518, 0.010050191, -0.0013325895, -0.007204985, -0.013384599, 0.018315768, 0.0044263103, 0.02437406, 0.022620756, -0.013243709, -0.011897421, -0.0032463523, -0.0012181159, -0.014644787, 0.0013198702, 0.012406193, -0.012140066, -0.032248273, 0.010676371, -0.0021857598, 0.016265027, -0.00086931407, -0.002301212, -0.020037763, 0.00683319, 0.029352192, -0.013728999, 0.0045828554, -0.009658827, -0.0023814412, -0.005236431, 0.011576504, -0.006300937, 0.019411582, -0.0035516152, -0.02388877, -0.007752892, -0.013282845, 0.015396203, -0.02047609, 0.007052353, 0.011576504, 0.008821312, -0.0027630196, -0.030181881, -0.0054477667, 0.0018139655, 0.017705241, -0.011200796, -0.0031406845, -0.007228466, -0.018519277, 0.014026434, -0.025094166, 0.020209963, -0.0058156475, -0.00104983, 0.0131732635, -0.016311992, -0.0031641664, -0.011380823, -0.00048651258, -0.019865563, 0.006688386, 0.012210512, 0.019787291, -0.008469086, -0.000041612846, -0.0071267122, -0.008860448, -0.0015801264, 0.008672594, 0.01486395, -0.0052677398, -0.0019264822, -0.002246421, -0.008304713, 0.032780528, -0.003878403, -0.008429949, 0.024217514, -0.02030389, -0.000003588764, 0.003970373, 0.015826702, 0.005193381, -0.015106594, 0.0014451062, -0.01984991, 0.019380273, -0.0074358885, 0.0005968279, -0.00092361565, -0.0037062033, 0.016499845, 0.015529267, -0.0030565416, 0.0049194274, -0.008343849, -0.022025885, 0.003553572, -0.0040075528, -0.00094514055, 0.01440997, -0.019912526, 0.00083311304, 0.0008135449, -0.015670156, -0.015466648, -0.013063682, 0.004848982, 0.004461533, -0.0025849496, -0.0034752996, -0.0009573707, -0.01887933, -0.000095455776, 0.0014989186, -0.011459095, -0.008649113, -0.003847094, -0.010331972, 0.014433451, -0.014214288, 0.006633595, 0.004293247, -0.012922792, 0.001396186, -0.010026708, -0.006993649, 0.0016378523, 0.010785952, 0.0071227984, -0.00043318942, 0.018159222, -0.014605651, -0.020663943, 0.0030350166, -0.0059839333, 0.011396478, 0.0018716914, -0.030714134, 0.02229201, -0.009212675, -0.0055573485, 0.00397233, 0.00593697, -0.013674208, 0.002894126, -0.0083751585, 0.022213738, 0.018926293, 0.01870713, 0.010926843, 0.008469086, -0.021446668, 0.008116859, -0.002759106, -0.014355179, 0.0016603556, -0.0057099797, 0.0066531636, -0.012844519, 0.0130558545, 0.022792956, -0.00468461, -0.030901987, 0.0071658483, -0.017642625, 0.0051777265, -0.010715507, 0.00294696, -0.0038392667, -0.016280683, -0.004661128, 0.015497957, 0.02892952, -0.01210093, 0.00027101857, -0.0149735315, 0.0005342099, 0.0011995262, -0.017580006, -0.018456658, 0.003021319, -0.008602149, 0.025235057, -0.00902482, 0.016327646, -0.0031524254, -0.0043245563, 0.013016718, 0.011099042, 0.008453432, 0.021712795, -0.012930619, 0.011091215, -0.0014186893, -0.0052716536, -0.0031641664, 0.008179477, 0.00731848, -0.003911669, -0.00781551, -0.0070875757, 0.008727385, 0.01116166, 0.014026434, 0.012202685, 0.0002442347, -0.0014509767, 0.0061600464, 0.0023853548, 0.0036181468, 0.002089876, 0.030714134, 0.0146526145, -0.04154705, -0.009009166, -0.0033598475, 0.020695252, -0.014903086, 0.015623193, 0.0008409403, -0.009048303, 0.00043465703, 0.003854921, 0.0014509767, 0.009784064, 0.038009133, 0.0047080917, -0.0056160525, 0.015317931, -0.015270967, 0.020288235, 0.011639123, -0.0226051, -0.019114148, -0.021086615, -0.004985959, -0.0058586975, -0.0039038416, 0.00086833566, -0.01076247, -0.00055867, -0.002508634, 0.014981358, -0.0009040475, -0.0014206461, -0.009087439, 0.041359194, 0.016405918, -0.024937622, 0.0032541796, 0.01124776, 0.018660167, -0.003428336, 0.0004133767, -0.0075219884, -0.016186755, 0.007580693, 0.027238835, -0.01164695, -0.026690926, -0.008547358, 0.012022657, 0.012171376, -0.021164887, 0.017079063, 0.0053147036, 0.00052882865, 0.007095403, -0.009486629, 0.017955715, 0.020585671, 0.02653438, 0.013415908, 0.01250012, -0.009470974, 0.015427512, 0.023106046, -0.017172989, -0.022135466, 0.00063743175, -0.016546808, -0.021681486, -0.014707405, -0.010809434, 0.008242096, 0.0142534245, 0.0142534245, 0.0060348106, -0.0028999965, -0.016938172, -0.014903086, -0.0035144358, 0.009126575, -0.0011848501, -0.015904974, -0.0067040403, -0.005154245, 0.004755055, -0.0073419614, 0.005999588, 0.0032933159, 0.036224518, 0.0019920354, 0.012484466, -0.0130402, 0.030260153, -0.017266916, 0.0031328571, 0.0049155136, -0.0006706976, 0.020288235, -0.042079303, -0.0057530296, 0.008508222, 0.030604552, 0.0041327886, 0.004140616, -0.014770023, -0.0026123452, 0.0023599162, 0.008453432, 0.002571252, -0.0076785334, 0.0040506027, 0.035066083, -0.005788252, 0.0022092417, -0.016781626, 0.019568129, 0.016625082, 0.017157335, 0.009917127, -0.00064770505, -0.013048028, -0.010425898, 0.016405918, 0.005475162, -0.016562464, -0.008062068, 0.00361619, -0.020554362, 0.009251811, 0.016625082, -0.0059408834, 0.007745065, 0.0075063338, 0.0040075528, 0.007979883, 0.0039527616, -0.0013208486, -0.01916111, -0.010269353, 0.012022657, -0.011670431, -0.015075286, 0.016781626, 0.0027884583, -0.015787566, -0.0015732775, 0.008406468, -0.009721446, -0.010003227, 0.017063407, -0.011803495, 0.019098492, 0.008750867, 0.0072167255, -0.008155996, -0.0027649764, 0.0069466853, -0.011067733, 0.014057743, -0.007044526, 0.008516049, 0.011889595, -0.0015566446, 0.0024949363, 0.013564626, -0.0057452023, -0.00862563, -0.007878128, 0.010856397, -0.002665179, -0.006156133, 0.015537093, -0.0040623434, -0.0003676362, 0.026596999, -0.00041533352, -0.024624532, -0.006030897, -0.027379725, 0.009557074, 0.011811322, 0.017266916, -0.027802397, 0.02061698, -0.009314429, -0.002915651, -0.02197892, 0.006531841, 0.016421573, 0.0067157815, 0.012797556, 0.0004449303, 0.015904974, -0.012594047, 0.040764324, -0.0050211814, 0.026315218, -0.01808095, 0.0035653128, 0.016859898, 0.008680422, 0.019380273, -0.011341687, -0.003416595, 0.008132514, 0.02733276, 0.010754643, -0.01787744, -0.019270692, 0.014355179, -0.00023995417, -0.03299969, -0.008954375, -0.011310378, 0.021070959, 0.012625356, -0.025469875, 0.0043871743, -0.025501184, -0.00024129948, -0.0051151086, 0.021274468, 0.00031309004, -0.0013188918, -0.010723334, -0.012304438, 0.008586494, -0.015302276, -0.008320368, -0.0094944555, -0.0036024924, -0.027551923, 0.0031152458, 0.014143843, 0.0024734114, -0.02722318, 0.005361667, -0.002674963, 0.0016221978, -0.030354079, -0.016562464, 0.022714682, -0.010872052, 0.008007278, 0.0077489787, -0.03969982, 0.019442892, 0.0038099145, -0.011983521, 0.007158021, -0.005843043, 0.004293247, 0.0068879807, 0.0037453396, 0.0023716572, 0.0019450719, 0.011200796, -0.012946273, 0.027113598, 0.0057843383, -0.028099831, 0.01759566, -0.012523602, 0.014582169, -0.015670156, -0.011811322, 0.008555185, 0.01919242, -0.010519826, -0.00032458632, -0.009572729, 0.014190806, -0.0037199012, -0.014918741, -0.015427512, 0.013705516, 0.009517937, -0.0055769165, 0.002434275, 0.008555185, -0.0104963435, -0.010253699, 0.0057530296, 0.003614233, 0.011114697, -0.0057099797, -0.0196464, -0.037289023, 0.016452882, 0.00033926242, 0.009690137, -0.011537368, -0.012961928, 0.0074671977, -0.006551409, 0.032623984, -0.0063909506, 0.0028412922, -0.016108483, -0.0100971535, 0.014848296, 0.009987572, 0.0017082975, 0.0034087677, -0.020491743, -0.018519277, -0.02531333, 0.007490679, -0.0007064094, 0.009071784, -0.0034126814, 0.0011877854, 0.0056591025, -0.035942737, 0.019521164, -0.012163548, 0.008852621, -0.005999588, 0.018863674, 0.00388623, 0.008523877, -0.0040897387, 0.0052520856, 0.015983246, 0.0019949707, 0.009525765, 0.008750867, 0.00029596794, -0.016124137, -0.017517388, -0.010707679, -0.0054908167, 0.0015155515, -0.0018795186, -0.014190806, -0.01164695, -0.0054399394, -0.002091833, -0.003627931, -0.007819423, -0.013290673, -0.015396203, 0.01477785, 0.013932507, 0.048935972, 0.015474475, 0.012805383, 0.0062030964, -0.00049849803, -0.016030211, -0.019411582, -0.022902537, 0.0024792817, -0.00037399583, 0.001588932, -0.025047204, 0.017204298, -0.008907412, -0.018127913, 0.009752755, -0.005013354, -0.001143757, 0.0059526246, 0.010347626, -0.012672319, 0.011490405, 0.0049468228, 0.014582169, 0.014480415, 0.00656315, -0.0030761096, -0.02218243, 0.017486079, -0.018503621, -0.00486855, -0.010104981, -0.0061835283, -0.006676645, 0.032279585, 0.02503155, -0.0082577495, 0.015959766, -0.0054438533, -0.012507947, -0.014809159, 0.006281369, 0.009533592, -0.015364894, -0.01696948, -0.009791891, 0.011905249, -0.0010811391, -0.020209963, 0.011138178, -0.0018883243, 0.011357341, -0.0026064746, 0.0021074873, -0.010605926, 0.01762697, -0.009079611, 0.006794054, -0.005322531, 0.014104706, 0.0036846783, -0.00008671127, 0.013995125, -0.0012533385, -0.0076589654, 0.020710906, -0.0061404784, 0.0139716435, -0.0006932009, -0.015811047, -0.014182979, -0.019082839, -0.011005115, -0.012155721, -0.018159222, -0.015482303, 0.025955165, -0.009212675, -0.0011202754, -0.0005660081, -0.003878403, -0.014566515, -0.008641285, -0.0057725976, -0.010801607, -0.014605651, -0.010183253, -0.014621305, 0.0061013424, 0.0020037764, -0.0010155858, 0.0149735315, -0.0067979675, 0.0194742, 0.009917127, -0.014198634, -0.0119365575, 0.007208898, -0.013235882, 0.004712005, -0.020491743, 0.016906863, 0.011200796, -0.0073028253, 0.002749322, -0.008743039, 0.018957602, -0.008664767, -0.020523053, -0.012554911, 0.0039136256, 0.0119365575, -0.007553297, 0.012828864, 0.0012044183, -0.004234543, 0.0025771225, 0.0069153765, 0.014370833, 0.00365924, -0.009118748, 0.0052833944, -0.005811734, -0.009345738, 0.0060152425, 0.0023266503, -0.0026084315, -0.001138865, 0.015677985, 0.010652889, -0.0072989115, -0.01076247, 0.0097762365, -0.005150331, -0.01147475, 0.0029978373, -0.0068410174, 0.010011055, -0.0022522914, 0.026017783, -0.010919015, 0.036944624, 0.008954375, -0.00023114852, -0.008531704, -0.021462323, -0.019082839, 0.013995125, 0.0365063, 0.009831027, -0.007862474, 0.025094166, -0.019552473, -0.0040858253, -0.0041562705, -0.013275018, -0.012836692, -0.010919015, 0.0039899414, 0.0023970956, -0.0059408834, -0.006132651, -0.006175701, 0.010363281, 0.005686498, 0.002927392, 0.0051268493, 0.011944385, -0.004001682, -0.0062970235, 0.0076785334, 0.009674482, -0.0073263072, 0.013392427, 0.0075885197, 0.028397268, 0.014370833, -0.004817673, 0.00968231, 0.0023442616, 0.006105256, 0.008054242, -0.02830334, 0.019286348, -0.012922792, -0.008030759, -0.0059291427, -0.024921967, 0.001860929, -0.0035731401, 0.004441965, -0.015928457, -0.002665179, 0.002287514, -0.0046141646, 0.019098492, -0.0010733118, -0.0009475866, 0.0020840056, -0.0032698342, 0.008523877, -0.006304851, -0.03108984, 0.0029039101
2228
3112
  ]
2229
3113
  }
2230
3114
  ],
@@ -2238,22 +3122,21 @@ function getTemplatesPipelineCollection() {
2238
3122
  ]
2239
3123
  },
2240
3124
  {
2241
- "name": "natural-language-ai-application-creator",
2242
- "title": "Natural Language AI Application Creator",
2243
- "content": "The platform offers features like a chatbot, corrector, and spreadsheet processing, allowing users to create AI applications using natural language instead of traditional coding.",
3125
+ "name": "ai-powered-creative-programming-platform",
3126
+ "title": "AI-Powered Creative Programming Platform",
3127
+ "content": "The platform emphasizes AI-native applications, enabling users to work with human-understandable concepts instead of low-level programming constructs. This approach aims to make programming more accessible and creative for a wider audience.",
2244
3128
  "keywords": [
2245
- "Chatbot",
2246
- "corrector",
2247
- "spreadsheet processing",
2248
- "AI applications",
2249
- "natural language",
2250
- "coding"
3129
+ "AI-native applications",
3130
+ "human-understandable concepts",
3131
+ "low-level programming",
3132
+ "accessible programming",
3133
+ "creative programming"
2251
3134
  ],
2252
3135
  "index": [
2253
3136
  {
2254
3137
  "modelName": "text-embedding-3-large",
2255
3138
  "position": [
2256
- -0.032598548, -0.045205567, -0.0134633975, -0.038916096, 0.0094342055, 0.030885791, 0.0030955987, 0.02279933, 0.0040993867, 0.014024957, 0.050596543, 0.02643543, -0.04096579, 0.00852869, -0.040516544, 0.010459052, -0.029846907, -0.012979052, 0.010838105, -0.04113426, -0.015119999, -0.02390841, -0.036585625, 0.018531475, -0.0067176595, -0.0032184399, 0.013877547, -0.0022532588, -0.015119999, 0.038298383, 0.0040923674, -0.034339383, -0.0055980496, -0.01593426, 0.003966016, -0.05649292, 0.04124657, -0.023599552, 0.013884568, -0.015569246, 0.025817715, 0.01104869, 0.01858763, 0.025003452, -0.0039063506, -0.04152735, 0.009967688, -0.03007153, -0.027951641, 0.025382506, 0.016439665, -0.008163677, 0.033525124, 0.015470974, 0.025649246, 0.022701057, 0.014769024, 0.0006339484, 0.023318773, -0.042818937, -0.035883673, 0.004604791, -0.00824791, 0.006794874, -0.016327353, -0.0011441782, 0.010374818, -0.0034149857, 0.002042674, 0.04806952, -0.0232205, -0.021928912, -0.0018355987, -0.03007153, -0.033047795, 0.007156378, -0.014418049, -0.02698295, 0.008479553, -0.022813369, 0.021423507, -0.0073634535, 0.0134283, -0.040348075, 0.06042384, -0.026968911, 0.026828522, -0.05104579, -0.0020356544, 0.026112532, 0.0007418732, 0.0070581054, -0.023304734, -0.025901947, 0.023009915, -0.055201333, -0.013856489, 0.0045240666, -0.019289581, 0.02014596, 0.011568133, 0.02053905, -0.0028042896, -0.042060833, 0.012979052, -0.010971475, 0.02560713, -0.006026239, -0.02348724, 0.008984958, 0.00023888229, -0.013301949, -0.0041028964, -0.021606015, 0.023838215, 0.0057419497, -0.024512088, -0.027025068, -0.0040783286, -0.02351532, 0.034395542, -0.016271196, -0.019640556, -0.03835454, -0.010788969, -0.0050961557, 0.0027042616, 0.0013477437, 0.020047687, 0.015162116, -0.026112532, 0.048266068, 0.0006172771, 0.035771362, -0.01300713, 0.04995075, 0.0062824506, -0.005085626, 0.009609693, 0.02993114, -0.019387854, -0.027207574, -0.038944174, -0.02351532, -0.005945515, -0.0018391085, -0.023192422, 0.07182351, 0.0018408634, 0.0016241363, -0.05129849, -0.043577045, -0.0034869357, -0.030857714, 0.0100238435, -0.07036345, 0.0009520194, -0.004924178, -0.010564345, 0.029959219, -0.011118885, -0.015330584, 0.028653592, -0.010367799, 0.0075740386, -0.02866763, -0.014010918, 0.039084565, -0.03793337, 0.04236969, 0.002628802, 0.032795094, 0.03105426, -0.024820944, -0.033525124, 0.015344623, -0.018419163, -0.012178829, 0.021044455, -0.00517688, -0.0018022561, -0.0037413924, 0.02376802, 0.007932032, -0.011441782, -0.010810027, 0.040881556, 0.03818607, 0.038551085, -0.02573348, -0.016130807, -0.03734373, -0.012003342, -0.0049873535, 0.02126908, -0.030155763, -0.01761894, 0.022602784, -0.034732476, 0.0077705844, -0.005520835, 0.009630752, 0.0008712952, 0.016425626, 0.016678328, 0.05200044, -0.018896488, -0.012621057, -0.029481892, 0.0075740386, 0.037512198, 0.009553537, -0.0031377156, -0.0027007519, -0.008170696, -0.009960668, 0.011673425, -0.050540388, -0.027123341, 0.005369916, 0.0015943035, 0.030745402, 0.012536824, -0.032963563, -0.039056487, -0.04680601, -0.004713593, -0.016215041, 0.0016601112, 0.02223777, 0.01846128, 0.036304843, 0.021718327, -0.025845792, -0.0026042338, -0.031952754, 0.057672195, -0.04012345, -0.051270414, 0.022476433, 0.007946072, 0.014783063, -0.050175373, -0.052955095, 0.020721558, -0.03130696, 0.046384845, 0.014151308, -0.009967688, -0.004095877, 0.01005894, -0.012761448, -0.0015118244, 0.019500166, -0.024792867, 0.0031254315, 0.102260046, -0.039000332, 0.005296211, 0.026351197, 0.02194295, -0.017815486, 0.0013152785, 0.020426739, -0.010255487, -0.037512198, 0.0052470746, -0.04559866, 0.019219385, 0.0117155425, 0.043689355, 0.009855376, 0.02250451, 0.01496557, -0.022855485, 0.0039238995, -0.026533702, -0.0047065737, 0.029144956, -0.0011406684, -0.0044503617, -0.025719441, 0.08799643, 0.04812568, -0.017885681, -0.0023866293, -0.0140530355, -0.01721181, -0.0035290527, 0.00019720402, -0.017941836, 0.008928802, 0.0008739275, 0.021030417, 0.013933703, 0.0232205, -0.00021946899, 0.01580791, 0.006703621, 0.024526127, -0.032514315, -0.017155653, 0.00461532, -0.013498494, 0.018896488, 0.034198996, 0.06109771, 0.055341724, -0.048855707, 0.04040423, 0.057166792, 0.016299274, -0.026379274, 0.012178829, 0.015204233, 0.044700164, 0.018966684, -0.019317659, -0.015892144, 0.014839219, -0.015021726, 0.003453593, -0.07199197, 0.013954762, 0.01942997, 0.030998103, 0.012340277, 0.0065105846, 0.07064423, 0.003032423, -0.014502283, -0.008472534, -0.00062956125, 0.05034384, 0.014347854, -0.027600667, 0.0018268244, 0.021381391, 0.0151340375, 0.0040467405, -0.012810584, -0.018475318, -0.016313314, 0.020819832, -0.0114488015, -0.045907516, 0.00050759746, 0.02504557, 0.011259275, 0.011224178, 0.0007598607, -0.019528244, 0.016846795, 0.007651253, -0.0008984958, 0.011954205, -0.012712311, -0.03299164, -0.016888913, 0.03734373, 0.021507742, -0.024245346, 0.012101615, 0.016341392, -0.015765794, -0.030548856, 0.018110305, -0.010501169, 0.0052505843, -0.00811454, 0.014228523, 0.014726907, -0.0063701947, 0.0032482727, -0.02503153, 0.012993091, 0.023936488, -0.020216154, 0.017197771, 0.020819832, 0.025003452, -0.0136529235, -0.025747519, -0.0012915876, 0.02754451, -0.013393203, 0.017955877, -0.014474205, 0.008016267, 0.009448244, 0.023374928, -0.027474316, -0.0020163509, -0.029538048, 0.024792867, 0.012979052, -0.023571474, -0.0018724512, -0.01048713, 0.00115383, -0.009771141, -0.017506627, 0.015555208, -0.0062298044, -0.011090807, -0.0204127, -0.012487687, -0.030436544, 0.04697448, 0.008079442, -0.029116878, -0.054246683, -0.024989413, 0.015765794, 0.012143732, -0.011020612, 0.03554674, 0.038916096, -0.015442896, -0.009279776, -0.0030254037, 0.017141614, -0.0003503168, 0.0017417129, -0.009553537, -0.011673425, 0.03579944, 0.027025068, -0.035715207, -0.03175621, -0.028751865, 0.013484456, -0.0040537603, -0.023669748, -0.024287464, 0.0159483, 0.057419494, 0.014361893, -0.015442896, -0.01607465, -0.02517192, -0.030745402, 0.006777325, -0.036248688, -0.06559019, 0.01708546, -0.022055263, 0.022293925, 0.010051921, -0.061771583, 0.006138551, -0.0071809464, -0.032402, -0.019949414, -0.021620054, -0.020075765, -0.003790529, 0.020328466, 0.032261614, -0.021886796, -0.002839387, -0.016172923, 0.024638439, 0.0016680083, 0.013596768, -0.03453593, -0.01538674, -0.02684256, 0.020061726, -0.0053769355, -0.032963563, -0.024245346, 0.04220122, 0.014502283, -0.0063701947, 0.00035887185, 0.022181613, 0.0018777157, 0.011455821, 0.0047592195, 0.03832646, -0.052112754, -0.0074336487, -0.06867877, 0.013407242, 0.0036606682, 0.025157882, -0.017661057, 0.002460334, -0.010262506, 0.0011775208, -0.012621057, 0.012789525, -0.003439554, -0.011224178, -0.029004566, -0.005468189, -0.0061069634, 0.0012284121, 0.0006988788, -0.014642673, 0.008353203, -0.032795094, 0.006363175, -0.04225738, 0.01804011, -0.0034027016, -0.0052646236, 0.014797102, 0.029425737, -0.0037694704, -0.018671865, -0.027909525, 0.028372811, -0.005668245, -0.0026463508, -0.0028341224, 0.007847799, 0.0027428688, -0.021184845, 0.010002784, 0.0218166, -0.0014688299, 0.002305905, 0.009441225, 0.0075389408, 0.009364011, 0.012143732, 0.03885994, -0.027039107, -0.003692256, -0.00391337, -0.03568713, 0.034339383, -0.04141504, -0.0023585514, 0.010227408, -0.009258718, -0.029622283, -0.00307805, -0.02671621, 0.019359775, 0.023964567, -0.0010511698, 0.008893704, 0.008732256, -0.008437437, -0.018994762, -0.015850026, 0.011364567, -0.024863062, 0.009869414, 0.014811141, 0.0068755983, -0.005984122, -0.028232422, -0.029060721, -0.011554094, -0.026042338, 0.017983954, 0.017366238, 0.002321699, 0.033019718, -0.004906629, 0.017871642, -0.024189191, 0.020300388, -0.0069177155, -0.02629504, -0.018082228, 0.005383955, 0.003664178, 0.03638908, 0.033468965, 0.018377045, 0.018531475, 0.012824623, -0.0077144285, 0.018531475, -0.011399665, 0.0011994567, -0.005703342, -0.0025901948, 0.02656178, 0.03007153, 0.064242445, -0.006307019, -0.011139943, 0.02420323, 0.012319219, 0.006657994, 0.033440888, 0.023739943, -0.023164343, -0.02701103, -0.019654594, 0.015555208, 0.018966684, -0.009349971, -0.03970228, 0.0034886906, 0.011940166, 0.03358128, 0.016959107, -0.0097571025, 0.0120244, 0.020384623, -0.0040467405, 0.026828522, 0.0075740386, -0.013526573, -0.004309972, 0.03681025, 0.0022427295, -0.008346183, -0.006166629, -0.008612924, -0.008514651, -0.041611586, 0.022967799, -0.023445124, -0.00029898674, -0.021170806, -0.027460277, 0.0053909747, 0.0022988857, -0.010030863, -0.036332924, 0.012543843, 0.017703174, 0.0041836207, 0.0060051805, -0.0173522, 0.01985114, -0.008893704, -0.023669748, -0.0044503617, 0.030998103, -0.00075722835, -0.027053146, -0.03843877, 0.0046539274, -0.0021198883, 0.07244122, -0.0024726181, 0.0067632864, -0.03638908, 0.011673425, 0.016566016, 0.0024375208, 0.0016469498, 0.003902841, 0.016523898, 0.03369359, -0.00024195333, -0.023206461, 0.026505625, 0.017239887, -0.020188076, 0.014783063, 0.01482518, 0.021353314, 0.00021771411, -0.012740389, 0.011476879, -0.027783174, -0.002672674, 0.0010783704, -0.0015714901, 0.028457046, -0.0031973813, -0.029313425, -0.026547741, 0.0057735373, 0.0046925345, -0.007384512, 0.013105403, -0.0070019495, -0.016186962, 0.020258272, -0.023655709, -0.030043451, -0.009167464, 0.0031780777, -0.055341724, 0.006184178, 0.019907296, -0.0059525343, 0.0056261276, -0.011118885, -0.014867297, 0.02616869, -0.00992557, 0.015723675, 0.004123955, 0.02236412, 0.0087884115, -0.017492589, 0.0024673536, -0.030857714, 0.0026902226, -0.042903174, -0.0017425905, -0.023290694, -0.008472534, 0.00741259, 0.009392088, 0.0054050134, -0.04823799, -0.0014442618, 0.0144320885, 0.009497381, 0.016959107, 0.014642673, 0.0055138157, 0.0068475204, -0.007749526, 0.02754451, -0.027474316, 0.037961446, 0.012529804, 0.013877547, 0.0043871864, -0.011245236, -0.014102172, -0.020202115, 0.026631976, -0.0023094148, 0.013505515, -0.01552713, 0.008360222, -0.02351532, -0.0046820054, -0.0047486904, 0.01551309, -0.030520778, 0.012101615, -0.0041660722, -0.0010222144, 0.011582172, 0.014158328, -0.019837102, -0.02223777, -0.019233424, -0.0022760723, -0.038803786, 0.00073441496, -0.0069949296, -0.025354426, 0.012459609, 0.0068826177, -0.0032517824, 0.031222727, -0.023838215, -0.030043451, 0.019261504, -0.021928912, 0.008107521, -0.04166774, 0.012677213, -0.005548913, 0.0023041503, -0.025649246, -0.004306462, 0.03551866, -0.022729134, -0.0061596096, -0.0030973535, -0.0073353755, -0.000049410686, 0.040095374, -0.034929022, 0.04293125, 0.015569246, -0.0058016153, -0.018770138, 0.00489961, -0.007910974, 0.0075459606, -0.013891587, -0.02824646, 0.0065667406, -0.03203699, 0.039589968, -0.018629748, 0.016678328, -0.0067352084, -0.047788743, 0.020468857, 0.030520778, 0.03874763, -0.0005014554, -0.00909025, 0.027039107, 0.004401225, -0.007889916, 0.018826295, -0.03467632, 0.0039976044, -0.024526127, 0.02979075, -0.0068159327, -0.009188523, -0.009314874, -0.0029481892, -0.033805903, -0.005075097, 0.003523788, 0.0106696375, 0.026688132, 0.0077705844, 0.0120945955, -0.020328466, 0.020188076, -0.01413025, 0.0072371024, -0.024104957, 0.0064298604, -0.022967799, 0.016018495, 0.022055263, -0.0010099303, 0.004836434, 0.011168022, -0.016397547, 0.022027185, 0.036838327, 0.035995986, 0.0020391643, -0.018503398, -0.012466629, 0.0030306682, -0.027488355, -0.022771252, -0.0176049, 0.023796098, 0.007342395, 0.0045802225, 0.026828522, 0.005913927, -0.04781682, -0.015035765, -0.005510306, -0.0010406406, 0.0051909187, -0.022279887, -0.0072371024, 0.0071809464, 0.019738829, 0.017380277, -0.001167869, -0.01314752, 0.021437546, 0.016692366, -0.020777714, 0.00049180357, 0.0377649, -0.02053905, 0.00937103, 0.0046223393, 0.0073915315, -0.047002558, 0.0048680217, 0.005889359, 0.0011213648, -0.0495015, -0.0029008077, -0.02014596, 0.004920668, 0.033188187, -0.017394315, -0.013126462, -0.005001392, -0.0021321725, 0.013238774, 0.019050919, -0.015695598, -0.01580791, -0.013133481, -0.013512534, -0.021999108, 0.038382616, -0.0028850138, 0.023304734, 0.033918213, 0.0041204453, -0.00090200553, -0.01538674, 0.0044608912, -0.002949944, -0.0068896376, -0.003049972, 0.005527855, -0.050568465, 0.029116878, 0.0009985236, 0.00614908, -0.003678217, -0.00039221445, -0.016762562, 0.008051365, -0.03692256, -0.031671975, -0.026337156, 0.0014214483, -0.024245346, 0.011869972, -0.017717212, 0.03021192, 0.0071809464, -0.029903062, 0.025761558, 0.0032623117, -0.0068475204, -0.0034448188, -0.017548745, 0.0000065430772, 0.019472087, 0.024610361, -0.019093035, 0.020356545, 0.0069036763, 0.046412922, -0.00824791, -0.032935485, 0.03417092, -0.03186852, 0.013772255, 0.017071418, -0.006408802, -0.0019988022, 0.00502947, 0.03832646, 0.021479664, 0.04040423, -0.030155763, 0.0060508074, -0.002390139, -0.0055067963, 0.0039625065, 0.004169582, 0.004271365, -0.027642783, 0.010557326, -0.0106134815, -0.004316991, 0.014200444, -0.014923453, 0.007910974, 0.024385737, 0.012972033, 0.024273423, 0.050175373, -0.0016943313, -0.008163677, -0.012417492, -0.01005894, -0.0048048464, 0.0036115318, -0.00784078, 0.0037168243, 0.003471142, 0.0012968522, 0.000272883, 0.020356545, 0.012452589, 0.0041204453, -0.022644902, 0.015765794, -0.0074898046, 0.0039800555, 0.021507742, 0.014361893, -0.023290694, 0.022041224, -0.012249025, -0.040881556, 0.02250451, -0.031419273, -0.0052646236, 0.010136155, -0.029762672, -0.020496935, -0.0005251462, -0.019121112, -0.023880333, 0.020159999, 0.0061876876, -0.018854372, 0.028471084, -0.023164343, 0.006443899, -0.027193535, 0.013231754, -0.008304066, -0.002795515, 0.031643897, 0.012003342, 0.005278663, -0.00047206125, 0.014502283, -0.015976377, -0.017239887, 0.03846685, 0.0015012951, 0.031503506, -0.022027185, 0.014712868, -0.044980943, 0.032402, 0.041499272, 0.042004675, -0.0058367127, -0.004559164, -0.0075038434, 0.022743173, -0.019387854, -0.05385359, 0.038831864, 0.011785737, -0.029706515, 0.004503008, -0.013603787, -0.0009774651, 0.004955766, 0.0061561, -0.014558439, 0.039477658, 0.028597435, -0.0072371024, -0.0005865668, 0.034395542, 0.029987296, -0.0075599994, 0.019050919, -0.026309079, -0.007314317, -0.060929243, -0.01427064, -0.0068299714, -0.018910527, -0.023234539, 0.0028341224, 0.024161112, -0.022125458, -0.027319886, 0.000068714304, -0.0028727297, 0.004348579, 0.0055138157, -0.011926128, 0.029116878, -0.011954205, 0.0018864902, -0.01874206, -0.01663621, -0.008023286, -0.010564345, 0.034395542, 0.039758436, 0.017225849, -0.042903174, -0.016832756, -0.03228969, -0.007995209, 0.01398284, 0.0025480778, -0.0010529247, 0.0031833423, -0.01902284, -0.0150778815, 0.018770138, -0.0067597767, -0.00993259, -0.0061069634, -0.004573203, -0.03119465, -0.0027656823, -0.009974707, -0.008297047, 0.0031587742, 0.0029885513, -0.0071528684, 0.019612478, -0.035827518, -0.011645347, -0.029509969, 0.03568713, 0.0040748185, 0.023950528, -0.01777337, 0.022027185, -0.024245346, 0.0050821165, -0.036726013, -0.0027621726, -0.020047687, 0.008290027, -0.0133300265, 0.014783063, -0.025775596, -0.01861571, 0.005678774, 0.022027185, 0.013835431, 0.032177377, -0.022743173, -0.021872755, 0.00040625344, 0.011420723, -0.00024195333, 0.0008375139, 0.024863062, 0.01020635, -0.019626517, 0.024104957, -0.023403006, 0.0061525903, 0.020595208, -0.0033483007, 0.022841446, -0.02011788, -0.0045100274, 0.0027990248, -0.01007298, 0.0013503759, -0.0048504733, -0.010943398, 0.018250694, 0.004952256, -0.009048133, -0.0005400626, 0.023164343, -0.010430974, 0.01662217, 0.020791754, -0.025550973, 0.012410472, 0.00087041775, 0.0012213927, 0.0022953758, -0.011504957, 0.026674092, 0.006478997, 0.001007298, -0.005468189, -0.0059104175, -0.0067808353, -0.0043591084, 0.00004255571, -0.0075319214, 0.019233424, 0.024231307, 0.01902284, 0.016327353, -0.00045495122, 0.02112869, -0.011153982, 0.02110061, 0.025915988, -0.044615928, 0.0096237315, 0.005261114, 0.020791754, -0.014628634, 0.008072423, 0.006942284, -0.00993259, 0.013610806, 0.03843877, 0.03063309, 0.0014363648, -0.03147543, -0.002741114, -0.023894371, 0.02754451, -0.017127575, 0.0030762951, 0.024568243, -0.00923064, 0.008535709, 0.02152178, 0.0033219776, 0.0032500275, -0.04262239, -0.0032938996, -0.0028218383, -0.0036711975, -0.016860835, 0.019331697, 0.01708546, 0.0010564345, -0.019219385, 0.0074898046, 0.011533035, 0.027797213, -0.005261114, 0.017745292, -0.016116768, 0.01118206, -0.013105403, 0.027460277, -0.021872755, 0.016608132, -0.019809024, -0.0075599994, -0.01301415, 0.00021870124, -0.014024957, 0.023262616, 0.02684256, -0.0013091364, -0.010676657, 0.033749748, 0.043183953, 0.027951641, -0.00502947, -0.024820944, 0.025550973, -0.0050680777, -0.004871532, -0.010325681, 0.038803786, 0.02167621, -0.021774484, -0.014312756, -0.007889916, 0.008718217, -0.0026832032, 0.022336043, -0.009722005, -0.015723675, -0.0020953203, 0.033497047, 0.010234429, -0.027305847, 0.007581058, 0.005352367, -0.0027709468, 0.0033184676, -0.014017938, -0.009707966, 0.028021837, -0.005622618, 0.0405727, -0.00065763923, -0.002811309, 0.007061615, 0.0081987735, -0.038101837, 0.008837548, 0.017562784, -0.00084233977, -0.011280334, 0.0008168941, 0.011455821, 0.04236969, 0.01005894, 0.0075389408, -0.0068650693, -0.003846685, -0.03341281, 0.021746404, 0.012614038, -0.010592422, 0.025059609, 0.00032816152, -0.014516322, 0.024245346, -0.0145444, -0.018671865, -0.0034079663, -0.026281001, 0.019135151, -0.003230724, -0.0015749999, 0.015162116, 0.0020321447, -0.024680555, -0.020693481, 0.010543286, 0.025831753, -0.026323117, -0.006489526, 0.01568156, 0.003790529, 0.05480824, -0.016257158, -0.00037751737, -0.015246349, 0.0041836207, 0.04447554, 0.005622618, -0.0083883, -0.019149192, 0.0029148466, -0.00783376, -0.00064886484, -0.015499052, -0.008030306, -0.0057945955, 0.005064568, 0.005805125, -0.0150778815, 0.018756099, -0.017745292, -0.008023286, 0.0059771026, -0.010571364, -0.007202005, -0.013526573, 0.009104289, -0.0037133144, -0.00067518797, -0.025508856, -0.0007383635, 0.034339383, -0.0072371024, 0.003994094, -0.00092394144, -0.006756267, -0.013231754, -0.00076600275, 0.0048118657, -0.023318773, -0.0051803896, -0.0006593941, -0.02209738, 0.028035875, 0.019289581, -0.00054313365, -0.0024515598, 0.003622061, 0.014116211, -0.025901947, -0.0038642336, 0.004576713, 0.012087576, 0.019135151, -0.01718373, 0.01580791, -0.015470974, -0.00020784295, 0.0037413924, 0.00978518, -0.0051242337, 0.0029376599, -0.012712311, 0.014909414, -0.02616869, -0.04812568, 0.003550111, -0.019373816, 0.009237659, 0.014572478, 0.0069142054, -0.0005396239, -0.0052505843, 0.015456934, 0.020749636, -0.009020055, -0.017043341, -0.024287464, -0.019036878, 0.020454817, 0.0021304176, -0.00937103, -0.022013146, 0.011989303, 0.0026621446, 0.009237659, 0.01048713, 0.016959107, 0.014488244, -0.003471142, -0.009679887, 0.0018917547, -0.021746404, 0.028204344, -0.016973147, -0.015485013, 0.00922362, 0.016902952, 0.013870528, 0.00039353062, 0.00042116988, -0.025677323, 0.0017250417, -0.020482896, -0.020468857, 0.0022146516, -0.0015574511, 0.0015565737, 0.00081864896, -0.008079442, -0.027221613, 0.0034588578, -0.00951142, 0.0035764342, 0.009020055, -0.014067074, -0.041302726, 0.009132367, 0.01888245, 0.019977491, 0.010459052, 0.0025673814, -0.0038923116, -0.011175041, -0.003664178, -0.005471699, -0.02309415, 0.00092481886, 0.0056998325, -0.0051382724, -0.00030929662, -0.020875987, 0.007072144, 0.002293621, 0.010971475, -0.005187409, 0.005057548, 0.01146986, -0.007072144, 0.0068159327, -0.004215209, 0.010241448, -0.01679064, 0.001412674, -0.018208578, 0.00017022283, 0.02922919, -0.014740946, -0.015119999, 0.00048171307, -0.01636947, -0.0018671865, -0.013224734, 0.0113154305, -0.017997993, 0.03442362, 0.024961336, -0.014207464, -0.0008752437, 0.0097922, -0.015485013, -0.02504557, -0.021732366, 0.022757214, -0.025536934, -0.017197771, 0.017815486, -0.0039695264, -0.01733816, 0.028779943, -0.009841336, 0.01076791, -0.0017557519, 0.0028428966, -0.0070686345, 0.003550111, -0.020019608, -0.018208578, -0.025930027, -0.0020549581, -0.01175766, 0.00880245, -0.006447409, 0.018938607, 0.010065961, 0.032907408, -0.01761894, -0.036669858, -0.014923453, -0.0048188856, -0.018671865, -0.0075389408, -0.0061806682, -0.015344623, -0.010922339, 0.02601426, -0.01607465, 0.013898606, -0.0024006683, 0.0011143453, -0.015779832, 0.0347044, 0.023725903, 0.012234985, 0.019626517, 0.020749636, 0.02361359, -0.018756099, 0.013273871, 0.018601669, -0.00058130216, 0.033468965, -0.0063105286, 0.0035009747, 0.01622908, 0.0068545397, -0.000748454, 0.00009213091, 0.012936935, -0.029453814, 0.004271365, 0.028597435, 0.00461532, 0.0537132, 0.0015197214, -0.033637434, 0.024357658, 0.0070581054, 0.002978022, -0.030689245, 0.018082228, -0.019331697, 0.008121559, -0.00067211693, 0.0058507514, 0.037821054, -0.025747519, -0.017731253, 0.01763298, -0.013737158, 0.02922919, -0.0013328271, 0.004910139, 0.0037308633, 0.007917994, 0.010620501, -0.011413704, 0.011210138, -0.012740389, 0.0064368797, 0.016523898, 0.016931029, -0.0055734813, 0.0045942613, -0.009904512, 0.001888245, -0.0010195822, 0.0276849, 0.02237816, -0.0043275207, -0.019472087, 0.0013196657, 0.0013494985, -0.005805125, 0.007061615, -0.012515765, -0.008149637, 0.0071493587, 0.008486574, 0.008458495, 0.004271365, -0.017562784, 0.009125347, 0.008402339, -0.010423955, -0.0006971239, -0.006963342, 0.009272757, -0.0030289134, 0.013793314, -0.006675543, 0.0035430917, 0.029509969, -0.013231754, 0.0016232589, -0.006728189, 0.026407352, -0.019387854, 0.0026217825, 0.0190088, 0.021858716, 0.004696044, -0.0056542056, -0.0013310723, -0.02336089, -0.0031219218, 0.038157992, 0.0628947, -0.0065948186, 0.009897492, 0.0034062115, -0.010016824, 0.0022620333, -0.014895375, 0.028190304, -0.00027529593, -0.0034746516, -0.02152178, -0.01568156, -0.021620054, 0.011097826, 0.008886685, 0.013688021, -0.00391688, 0.0062438436, 0.03871955, 0.0036431195, -0.0049171583, 0.004639888, 0.0034886906, -0.0173522, 0.013870528, -0.0012529804, -0.009602673, -0.0056998325, 0.00077389966, 0.0190088, 0.013119441, -0.013337046, 0.0057840664, 0.0011362813, 0.013898606, -0.007939053, -0.013091364, 0.007286239, 0.010409916, 0.010269525, 0.023332812, -0.021620054, 0.025972143, 0.003007855, -0.0040537603, -0.012270083, 0.015035765, 0.0019268523, 0.0062999995, 0.0061245123, 0.0019040388, 0.015485013, -0.0007067757, -0.006268412, 0.00074318936, -0.008416378, 0.015007687, 0.014003899, 0.0019917826, -0.0035869635, -0.006040278, 0.034086682, -0.012143732, 0.0076442333, 0.0068650693, 0.0005633147, 0.011252255, -0.004446852, 0.02084791, 0.015358662, -0.0190088, -0.015274428, 0.026393313, -0.01832089, -0.012206907, 0.021002337, 0.0058963783, 0.00043104106, 0.01314752, -0.00006695943, 0.00031478063, 0.000071346614, -0.004966295, -0.026379274, 0.00937103, -0.008837548, 0.013056266, -0.004815376, 0.015878106, -0.007156378, -0.0137862945, -0.02684256, 0.013273871, -0.008135598, 0.020960221, 0.0075319214, -0.009307855, -0.0021514762, 0.0159483, 0.023150304, 0.0027200554, 0.016004456, 0.00040208563, -0.009630752, 0.010852144, 0.007100222, 0.013414261, -0.025059609, 0.010599442, -0.003832646, 0.0061174924, 0.029566126, 0.0321493, -0.0073634535, 0.024399776, 0.0040818383, 0.008858606, 0.0046258494, -0.004948746, 0.009525459, 0.012242004, -0.007398551, -0.010922339, -0.020468857, 0.02194295, -0.011996322, 0.009918551, -0.0032974093, -0.031222727, -0.0036466292, -0.0010757381, 0.01804011, 0.00016397108, -0.020988299, 0.015162116, 0.0028464065, 0.015583286, -0.0067352084, -0.00008363074, -0.00601571, 0.009293815, 0.0076723113, 0.0049698045, -0.01468479, -0.019093035, 0.04374551, -0.0053313086, -0.036613703, -0.018531475, 0.00056638574, 0.002993816, -0.019556321, -0.013526573, -0.000020002828, 0.008570807, -0.0021497214, -0.0062192753, 0.00587181, 0.009258718, 0.0024059329, -0.009862395, -0.005647186, -0.0052400553, 0.027151419, -0.019766906, -0.0081426175, 0.0011345263, 0.020581169, -0.012403453, 0.003762451, -0.019542282, -0.0037519217, -0.0018847352, -0.020525012, 0.012220946, -0.011750639, -0.033805903, -0.011708523, -0.012901838, 0.0035272979, -0.0130632855, 0.004955766, -0.004825905, -0.011533035, 0.0010467827, 0.00028736072, 0.029959219, -0.019486127, -0.014769024, 0.0042748745, -0.0013802088, 0.007314317, -0.01314752, -0.0046539274, -0.011132924, -0.04349281, 0.0048223953, 0.022209693, -0.0018777157, 0.015892144, -0.0003957242, 0.019682672, 0.009714985, -0.013505515, 0.009476323, -0.0013451113, 0.0022479943, 0.006766796, -0.003592228, 0.004362618, -0.02658986, -0.015148077, -0.003748412, -0.0133300265, 0.004225738, -0.014516322, 0.003272841, -0.023417046, 0.01300713, 0.0094342055, 0.010950417, -0.007819721, -0.0028779942, 0.016706405, 0.018601669, -0.009167464, 0.0041099163, -0.0062017264, 0.008655041, 0.014979609, 0.0032570472, -0.0116383275, 0.007044066, -0.009202562, 0.010234429, 0.024259385, 0.032345846, -0.008900723, -0.0008822632, -0.030436544, -0.0053593866, -0.004373147, -0.020679442, -0.00029964483, -0.0010266016, -0.0013266852, 0.008128579, 0.009771141, 0.025115764, -0.000026213438, -0.0040713088, 0.0040818383, -0.018559553, 0.009118328, 0.011617269, 0.010143175, 0.0011933147, 0.012796545, -0.009160445, -0.006672033, -0.009146406, 0.013182618, 0.029959219, 0.010810027, -0.0056015593, 0.012670194, -0.0081005, -0.023543397, 0.009174484, -0.0057103615, 0.0034062115, -0.013884568, 0.004320501, 0.008612924, -0.01844724, -0.013870528, 0.014333815, -0.010388857, 0.0044117547, 0.000034110373, -0.019289581, 0.0046890248, -0.01063454, 0.009609693, -0.003804568, 0.010992534, 0.02014596, -0.004741671, -0.0038291363, 0.030857714, -0.0024515598, -0.007107242, -0.002154986, -0.0128737595, 0.002153231, 0.022827407, -0.03021192, -0.012108634, 0.017871642, 0.007107242, 0.00587181, -0.019401893, -0.006264902, -0.018573591, 0.014600556, -0.00153727, 0.008212813, 0.0056717545, 0.028443007, 0.018236656, 0.014783063, 0.005482228, 0.007988188, -0.015428857, -0.01203142, 0.002463844, -0.013154539, 0.013484456, -0.015976377, 0.01916323, -0.008648022, 0.007777604, -0.008058384, -0.011322451, -0.011855932, 0.000923064, 0.007524902, 0.0027305847, -0.010339721, -0.016523898, 0.019837102, -0.009455264, 0.011701503, 0.015007687, -0.00017921656, 0.02880802, 0.0050435094, 0.039842673, 0.0068334816, 0.03147543, -0.03846685, 0.00052909466, 0.001007298, 0.010037882, 0.0002625731, 0.019837102, -0.005973593, -0.013301949, 0.019640556, 0.016144846, 0.004948746, -0.0027077715, -0.012649136, 0.002432256, 0.01048713, -0.029397657, -0.018826295, -0.021409469, 0.039112642, 0.006798384, -0.010381837, -0.015906183, -0.03400245, -0.014909414, -0.024905179, 0.015555208, -0.0072792196, -0.005296211, -0.009595654, 0.0131966565, 0.011919107, -0.00006624651, -0.0119050685, 0.015091921, -0.025410583, 0.0068650693, -0.017099498, 0.002237465, 0.02292568, -0.017267965, 0.0026270472, -0.011111866, -0.010690696, -0.016678328, 0.021620054, 0.015485013, -0.0023410027, 0.012810584, 0.002111114, -0.0048785512, 0.008219833, 0.0033325066, 0.015962338, -0.019668633, -0.015021726, -0.000103647275, -0.003804568, 0.002125153, 0.0052540945, 0.005998161, 0.010999554, -0.013315988, -0.01832089, 0.0042116987, 0.008998997, -0.000009898589, 0.018896488, -0.006949303, -0.014656712, 0.004671476, 0.01846128, 0.007286239, -0.005984122, -0.014951531, 0.012901838, 0.020019608, 0.002490167, 0.017253926, -0.0033623397, -0.016215041, -0.0114488015, -0.0014863787, -0.02125504, 0.048546847, 0.013828411, 0.0055138157, 0.0020093312, -0.00053830777, 0.035490584, 0.00041809885, 0.012052478, -0.0056857932, -0.0048294147, 0.008493593, -0.0038291363, 0.0020058216, 0.015864065, -0.012522785, 0.004966295, 0.018938607, -0.0061455704, -0.0037519217, -0.006057827, 0.025958104, 0.02799376, 0.016453704, -0.00019040388, 0.00782674, -0.011343509, 0.0151340375, 0.00082742336, -0.018068189, -0.022392198, -0.01062752, 0.0034746516, 0.022869525, -0.00979922, -0.014811141, 0.012270083, -0.04307164, 0.00978518, 0.0071809464, 0.0049733142, -0.007524902, -0.0038221166, -0.006784345, -0.012529804, 0.013084345, -0.0071949856, 0.016481781, 0.0014819915, 0.008268969, -0.017885681, -0.007903955, 0.0045100274, 0.003664178, -0.018896488, 0.018868411, 0.0032658214, -0.004436323, 0.0008427785, 0.019458048, -0.01930362, -0.02251855, 0.004278384, -0.014628634, 0.00042424092, 0.0059314757, -0.0031377156, -0.026968911, 0.030268075, -0.0067632864, 0.010079999, -0.0173522, 0.008991977, 0.02713738, -0.0014135514, -0.0006383356, 0.011806795, 0.013323007, -0.0060508074, -0.020890025, 0.007925013, -0.024933258, 0.018348968, -0.0027498885, 0.006742228, 0.009181503, 0.013898606, -0.0021163786, 0.009686908, -0.0018952645, -0.0017847074, 0.019612478, -0.018531475, 0.02361359, 0.019514205, 0.010136155, -0.0037729803, 0.0010581893, 0.016397547, 0.0035887184, 0.028330695, 0.003948468, 0.013042227, 0.027305847, -0.0011643593, 0.005713871, 0.020918105, 0.017562784, -0.017296044, -0.0027481336, 0.020510973, -0.0030868242, 0.016537938, -0.025129803, 0.0032851251, 0.0064123115, 0.008479553, 0.0095044, -0.029566126, 0.000108473185, -0.009076211, 0.013533592, -0.0058121444, -0.008591865, -0.011217158, 0.0029008077, 0.003004345, -0.00028341223, 0.036950637, 0.012831642, 0.00063658075, -0.0060472977, 0.0075178826, -0.014179386, 0.0105362665, 0.010894261, -0.013119441, -0.0035466014, -0.011687464, 0.017071418, 0.014326796, 0.020314427, 0.016692366, -0.004573203, 0.020988299, -0.0053664064, 0.0041625625, 0.010697715, -0.002839387, -0.00087875343, -0.01593426, 0.018138383, 0.007454707, -0.004436323, -0.0028130638, 0.0024796377, 0.0030534817, -0.01663621, 0.0031710584, -0.004429303, -0.014516322, -0.008479553, 0.0009941364, 0.0027376043, -0.0064930357, 0.0022866016, 0.028471084, -0.0012152506, -0.0051944284, -0.020749636, 0.007015988, -0.015723675, 0.01133649, 0.007510863, 0.016060611, 0.011694483, -0.0059033977, 0.01551309, -0.0181805, -0.009497381, 0.015485013, -0.018517436, -0.021577938, 0.01566752, 0.0075178826, -0.017857604, 0.020496935, -0.018868411, -0.0060192198, 0.023276655, -0.0232205, 0.014979609, -0.006591309, -0.022420276, -0.028779943, -0.0037133144, -0.01691699, 0.01552713, 0.002154986, -0.0018899998, 0.000548837, 0.00195844, -0.031250805, -0.004464401, -0.022406237, 0.011238216, 0.015906183, 0.003357075, 0.007384512, -0.028611474, -0.013645904, 0.033019718, 0.010122117, 0.018236656, -0.0044959886, 0.00811454, 0.011217158, 0.0053348187, 0.030268075, 0.011139943, -0.0020356544, -0.019809024, -0.0100238435, 0.024680555, -0.0036606682, 0.019949414, -0.006391253, 0.00559454, -0.012157771, -0.0050435094, -0.023374928, 0.014354873, 0.011076768, 0.0035325624, -0.0014942756, 0.0048890803, 0.0037519217, -0.0058542616, -0.023023954, -0.003966016, -0.017282004, 0.0068896376, -0.011722562, -0.0073915315, -0.013772255, -0.0055699716, -0.0067913644, -0.023248577, 0.0053348187, -0.0035571307, -0.0010643314, 0.013596768, -0.0022883564, 0.01888245, -0.0005466434, -0.0018127854, -0.0104801105, 0.019064957, -0.012277102, -0.008044344, -0.012136712, -0.023403006, -0.000009192527, -0.008612924, 0.000807681, 0.01763298, 0.020918105, -0.0069563226, -0.010269525, 0.0020356544, -0.028920332, -0.0085988855, 0.014214484, 0.008633982, -0.006643955, -0.011540055, 0.014277659, -0.0031289412, -0.025087686, 0.016116768, 0.0036852364, -0.013435319, -0.0014196935, 0.020061726, -0.0072090244, -0.009307855, 0.013358105, -0.003204401, 0.007756545, -0.010030863, -0.01566752, -0.009216601, -0.0048469636, -0.015007687, 0.02600022, -0.012319219, -0.0076231747, 0.010185292, -0.0020637324, 0.004559164, 0.031222727, -0.0022006126, -0.012894818, -0.0076231747, -0.0051803896, -0.0017013508, 0.027628744, 0.029846907, -0.009146406, -0.016032534, -0.0029622281, 0.021030417, -0.0048294147, -0.011876991, 0.0021479663, -0.004657437, 0.019907296, -0.007314317, -0.009834317, -0.004632869, -0.00447493, -0.002183064, -0.002935905, 0.0027253202, 0.0019057937, -0.0054611694, -0.0057524787, -0.00014894498, 0.007854818, -0.0054471307, 0.0048890803, -0.013961782, -0.005527855, 0.010381837, 0.03717526, -0.019149192, 0.022476433, 0.0015118244, 0.00087963085, -0.023852255, -0.004141504, 0.027572589, -0.008711197, 0.008746294, -0.0057524787, 0.0050821165, -0.0076021166, -0.016018495, -0.011413704, -0.014017938, 0.027165458, -0.013772255, 0.011161002, -0.0006708008, -0.021718327, 0.024399776, -0.0018408634, -0.012305181, 0.006303509, 0.0082759885, -0.011238216, -0.015597325, -0.027516432, -0.0059104175, 0.016172923, 0.010718773, -0.0017329386, 0.0052681332, 0.004429303, -0.0038782726, -0.011603231, -0.0139758205, 0.018826295, 0.017001225, 0.01663621, -0.0032658214, 0.0004733774, 0.012382395, 0.025635207, 0.018980723, 0.019247463, -0.022139497, 0.008493593, 0.00040844706, -0.00824791, 0.0058963783, -0.004980334, -0.0011301392, -0.0021356824, -0.0057419497, -0.007946072, -0.011806795, 0.008346183, 0.0015618383, 0.01777337, -0.028976489, 0.0027727017, 0.023318773, 0.016341392, 0.012347297, 0.009013035, -0.011062729, -0.013077325, 0.011420723, 0.01804011, 0.0036325902, 0.0016004456, -0.0011713788, 0.00010238596, -0.004853983, 0.006324568, -0.019809024, -0.0020935654, 0.0008375139, 0.0067457375, 0.0033219776, -0.01482518, -0.011090807, 0.005640167, 0.007230083, 0.013168578, -0.00004395412, 0.0067738155, -0.019556321, -0.009743064, 0.00028056058, -0.018433202, 0.011687464, -0.004039721, 0.001174011, -0.0025656265, -0.009820278, -0.005369916, 0.0013916155, 0.0045416155, 0.0023532868, 0.0060192198, 0.0059490246, -0.020609247, 0.0042994427, -0.0023550417, 0.016846795, -0.000094927746, -0.0031868522, -0.005468189, 0.013477436, -0.000678259, 0.0037168243, -0.004583732, -0.013989859, -0.017253926, 0.0159483, -0.0051733702, -0.018896488, 0.00978518, 0.0023918939, 0.012319219, 0.0145444, -0.0032605568, -0.007882897, -0.02253259, 0.009939609, -0.011238216, 0.0019882729, 0.005352367, 0.008423397, -0.001231922, 0.008479553, 0.010227408, -0.019654594, 0.00048434536, -0.008879665, -0.005917437, 0.015162116, 0.023838215, -0.0057945955, -0.021072533, 0.0028692198, 0.028485123, 0.01565348, 0.023824176, -0.0012433286, -0.008844567, 0.012403453, -0.014017938, 0.011076768, -0.004948746, 0.009616712, 0.0032061557, -0.011434763, -0.0051944284, 0.0017566294, 0.006377214, -0.011729581, 0.0015635932, 0.02403476, 0.0022550137, 0.011785737, 0.0052470746, -0.0017083704, 0.020890025, -0.02167621, -0.01861571, 0.01565348, -0.0020795262, 0.0047311415, -0.0042292476, -0.018348968, -0.005001392, 0.00066597486, -0.00093359326, 0.0053944844, 0.00011203777, -0.01286674, -0.009027074, -0.0012336768, -0.013617827, 0.00020444288, 0.023739943, 0.027937602, -0.022687018, -0.01861571, -0.0036010025, -0.014797102, 0.004029192, 0.007107242, 0.0045942613, -0.008725236, 0.020763675, 0.010234429, 0.018840333, 0.015485013, 0.018391086, 0.0030113647, -0.004696044, -0.0059033977, 0.014277659, 0.020216154, 0.008900723, -0.0024726181, -0.012979052, 0.0034728968, 0.0033518104, 0.010087019, 0.005412033, -0.013730139, -0.008290027, -0.026533702, -0.015316545, -0.0026638994, 0.024006683, -0.007370473, -0.012733369, 0.0057945955, 0.020019608, -0.011554094, 0.007398551, 0.010943398, -0.0050399997, -0.015274428, 0.006949303, -0.00080417126, 0.012614038, -0.00058261835, -0.0031587742, -0.016201, -0.0065140943, 0.0072932583, -0.0008835793, -0.017576823, -0.021662172, 0.008612924, 0.0073213363, -0.00993259, 0.0049733142, -0.023543397, -0.00601571, -0.00433454, 0.012705292, 0.024259385, 0.00049180357, 0.011034651, 0.024020722, 0.010494149, -0.024104957, -0.0009134122, 0.013681002, -0.029201113, -0.011518996, 0.0020689971, -0.033328578, -0.009216601, 0.012080556, 0.0062438436, 0.0024673536, 0.0024445402, 0.008486574, -0.012045459, 0.00095026457, 0.00050540385, 0.004643398, -0.015695598, 0.020637324, -0.025298271, -0.016032534, -0.00027222492, 0.00419766, -0.0020549581, 0.015906183, 0.035490584, 0.018812254, -0.0036992754, -0.00587181, -0.00880947, -0.00089147623, 0.0018812255, 0.01972479, 0.02097426, -0.009953648, 0.01957036, 0.006054317, -0.0019461558, -0.021914873, 0.0020725068, -0.0062333145, -0.006471977, -0.010606461, -0.020019608, 0.014572478, -0.022476433, 0.0063737044, -0.0024006683, -0.014895375, -0.0022778271, -0.017029302, 0.0058507514, 0.005843732, 0.014354873, 0.0011994567, 0.03961805, 0.00032114203, -0.012108634, -0.000024403724, 0.01105571, -0.024455931, 0.012515765, -0.029341502, -0.01384947, 0.015906183, 0.0013512534, -0.015906183, 0.013681002, -0.008325125, 0.008641002, 0.017225849, 0.0013249302, 0.002251504, -0.0017601391, -0.01844724, 0.020763675, 0.01203142, -0.012256044, -0.002390139, -0.01146986, -0.0042397766, 0.0020918103, -0.014179386, -0.017310083, -0.02979075, -0.021297157, -0.0032008912, 0.0005321657, -0.011027631, -0.0020093312, -0.0025129803, -0.0002965738, -0.0039519775, -0.010620501, 0.009771141, -0.003973036, 0.0034062115, 0.023599552, 0.005927966, 0.027207574, -0.0006260515, -0.0006835236, -0.006489526, 0.024820944, -0.0145444, 0.01399688, -0.0034448188, 0.020637324, -0.0036571585, -0.00881649, 0.015358662, -0.000011105065, -0.019893257, -0.01691699, -0.022125458, -0.0040467405, 0.0015469219, 0.028218383, -0.009034094, 0.009483342, -0.014046015, 0.017127575, 0.005464679, 0.0008068036, -0.0025357937, -0.00076424784, 0.023417046, -0.004429303, 0.020398661, -0.021212922, -0.0075599994, -0.008339164, 0.024357658, -0.0021760445, 0.0075319214, 0.015119999, 0.020805793, 0.0405727, 0.0031535095, 0.01888245, 0.011294372, -0.0022427295, -0.011497938, -0.0046188296, 0.002935905, 0.0276849, 0.012291141, -0.00048653895, -0.0062192753, -0.0043310304, -0.0032412533, -0.0018706962, 0.013512534, -0.021044455, 0.00978518, 0.003064011, 0.0036676878, 0.0096237315, -0.009469303, 0.0015556962, -0.0029569636, 0.013610806, 0.017927798, -0.0035413369, -0.0027481336, 0.0010853899, 0.016018495, -0.014895375, 0.0033904177, 0.008697158, 0.012101615, 0.006303509, -0.0032412533, -0.0039625065, 0.0041730916, -0.010992534, 0.0058542616, 0.007230083, -0.016580055, 0.0122841215, -0.034311306, -0.012473648, 0.023894371, 0.016945068, -0.00038212392, -0.017675096, 0.012059498, -0.009020055, 0.00391337, 0.00040515666, -0.01510596, -0.013210695, 0.0037027854, -0.008402339, 0.030492699, -0.004488969, -0.030941948, 0.009076211, -0.010423955, 0.015021726, -0.029116878, -0.0167766, -0.010437993, -0.009750083, -0.012817604, -0.012803565, 0.010037882, -0.030605013, -0.0058858492, -0.033384733, -0.008304066, 0.0007076532, 0.022729134, 0.019121112, 0.0045942613, 0.001524986, -0.0064228405, -0.0033026738, 0.007784623, -0.019514205, 0.0041836207, -0.030576933, -0.013989859, -0.024652477, 0.017955877, -0.0048785512, 0.008563788, 0.0025305292, -0.010044902, 0.0050821165, -0.0024059329, 0.007756545, 0.0069317543, -0.017871642, -0.0022848467, -0.025831753, 0.012382395, -0.021212922, -0.01510596, 0.0017382032, -0.004011643, -0.014937492, 0.015274428, 0.004994373, 0.02250451, 0.003049972, -0.013589748, -0.00782674, 0.034760553, -0.030380387, -0.0122841215, -0.0016838021, 0.0022708077, 0.0020584678, 0.0011608495, 0.020033648, -0.007510863, -0.0039976044, 0.005278663, -0.015793871, 0.0002777089, -0.015864065, 0.015260389, 0.0074055707, -0.011898049, -0.00811454, 0.006380724, -0.021297157, -0.005387465, 0.021830639, -0.002349777, -0.013358105, -0.018980723, -0.003930919, 0.015246349, 0.0033816432, 0.0076161553, -0.0018268244, -0.024610361, -0.021900835, 0.03928111, -0.0022462395, 0.0026551252, 0.015569246, -0.0017855848, 0.011575152, 0.020384623, 0.001789972, -0.019879218, -0.025298271, -0.015569246, -0.0064965454, 0.021620054, 0.017983954, -0.019373816, 0.007679331, 0.0020637324, -0.008472534, -0.020946182, -0.016748523, 0.010985514, 0.010388857, 0.021226963, -0.008170696, 0.013400222, -0.0033676042, -0.019205347, -0.004938217, 0.0020496934, 0.014305737, 0.0081987735, -0.010283565, -0.004699554, -0.005970083, 0.015204233, 0.009321894, -0.00010649895, 0.0033869077, 0.010501169, 0.0010941642, -0.020258272, 0.021072533, 0.0038431752, 0.006507075, 0.00937103, -0.003313203, 0.0022602784, 0.02517192, -0.015906183, 0.024315542, -0.008044344, -0.009834317, -0.009455264, -0.0013547632, 0.0097922, -0.0037133144, -0.012150751, 0.022392198, -0.010269525, 0.019921336, -0.011575152, -0.008823509, 0.0011608495, 0.010648578, -0.018713983, -0.0011898049, -0.011596211, 0.020763675, 0.012045459, 0.00029350276, -0.016341392, -0.016411586, 0.00054488855, -0.01705738, 0.008837548, -0.013210695, -0.012810584, 0.015793871, -0.0007769707, -0.017927798, -0.004587242, 0.007356434, 0.011069749, -0.009286796, -0.0077003893, 0.016341392, -0.016018495, -0.0043310304, 0.013772255, -0.0012170054, -0.019921336, 0.016172923, 0.0008138231, 0.015793871, 0.017787408, -0.009441225, -0.01370206, 0.004660947, -0.0025164902, 0.021226963, -0.011118885, 0.016692366, 0.004952256, -0.019696712, 0.007370473, 0.012185848, -0.01846128, -0.005159331, -0.017310083, 0.0019952923, 0.021563899, 0.02403476, 0.019317659, 0.027418159, 0.00433805, -0.021648131, 0.018924566, -0.018334929, 0.0042292476, -0.013175598, -0.0052365456, -0.006643955, 0.00839532, -0.002686713, -0.0014583007, -0.0037589413, 0.0040993867, 0.011146963, -0.018699942, 0.010592422, -0.024863062, -0.008261949, -0.0030727852, 0.015470974, 0.005468189, -0.011813816, -0.0195844, 0.018475318, 0.013737158, 0.0023725904, 0.011701503, -0.0040537603, 0.030885791, 0.019879218, 0.0018057659, -0.018994762, -0.035855595, 0.0059490246, 0.040348075, 0.0036466292, -0.0005633147, 0.00937103, 0.004253816, -0.007496824, -0.008479553, 0.00741259, 0.013245793, -0.0022550137, 0.011778718, 0.0031131473, -0.0032605568, 0.0054050134, 0.0114488015, 0.0014442618, 0.030885791, 0.018503398, 0.015765794, 0.023824176, 0.021142729, -0.013744177, -0.014354873, -0.006584289, -0.0026884677, -0.010129136, 0.02336089, 0.015091921, 0.011806795, 0.009778161, 0.014340835, -0.015190193, 0.0052927015, -0.0061701387, 0.014993648, 0.01258596, -0.029678438, 0.010788969, -0.005987632, -0.0074757654, 0.007398551, 0.0047311415, 0.0117155425, 0.0079530915, -0.013582729, -0.013491475, -0.013884568, -0.0016662533, -0.019289581, 0.019107074, -0.027572589, -0.000036495905, 0.0037449023, 0.009686908, -0.012993091, -0.005103175
3139
+ -0.051679775, -0.027872238, -0.020236406, -0.0315595, 0.011076312, 0.007730191, -0.007454372, 0.029048098, 0.009486723, 0.012085228, 0.009348813, 0.0019996879, 0.0047760243, 0.000035186204, -0.050721668, 0.03144337, -0.014495015, 0.001060633, -0.002424304, -0.043724574, 0.0048740124, -0.020192856, -0.018349223, 0.0010080097, 0.029106164, -0.00005191454, 0.015010362, 0.003445923, -0.065732025, 0.026217323, 0.010727908, -0.028046438, -0.0051752357, 0.0009281673, -0.008898793, -0.027306084, 0.035769373, 0.0010824082, 0.00077528734, 0.012963494, 0.029048098, 0.025752787, 0.021455817, 0.020120272, -0.008506839, -0.03754042, -0.005015551, -0.013645783, -0.043492306, 0.013667558, -0.000068160865, -0.0014825272, 0.046424694, 0.02668186, 0.020962246, 0.019786386, 0.03153047, -0.010372247, 0.013173987, -0.038905, -0.027988372, 0.011373905, -0.013166729, -0.0017220543, 0.021368716, -0.014117579, 0.026986713, 0.022530058, -0.012818326, 0.028830346, -0.018566975, -0.030775595, 0.012266688, 0.012963494, -0.010677099, 0.009689958, 0.023241382, 0.004667148, -0.002124895, 0.0041409144, -0.0050445846, -0.01479261, -0.0014652886, -0.009014927, 0.048544146, 0.00086828554, 0.047905408, -0.056528382, -0.0025622135, 0.01072065, -0.032198243, 0.03211114, -0.0011803965, -0.0021593727, 0.040356677, -0.009718991, -0.019423466, 0.014611149, -0.02862711, 0.009755284, 0.0041590603, 0.018349223, 0.007330979, -0.051824942, -0.00089686544, -0.042272896, 0.040037308, 0.015794268, -0.028685179, 0.012295721, -0.022442957, -0.025201147, -0.015068429, -0.013856277, -0.033446684, 0.01759435, -0.027088331, -0.024867263, 0.013682075, -0.005530897, 0.021252582, -0.025883438, -0.0012566097, -0.014756317, -0.008223762, -0.009682699, 0.0069208797, -0.019220231, 0.035769373, 0.07090001, 0.00057568145, 0.052115276, 0.013159471, 0.03097883, 0.0045800474, 0.037192017, 0.051708806, 0.026507659, 0.00097171764, 0.015082945, -0.015736202, -0.025404382, -0.036291976, -0.0073382375, -0.017129812, 0.011424714, -0.0044348794, 0.039224368, 0.0039449376, -0.011018244, -0.04857318, -0.0093778465, -0.0013981484, -0.027277049, -0.008245537, -0.020410607, -0.010430314, -0.026014088, -0.0048232037, 0.04125672, 0.031762738, -0.030688494, 0.010234337, 0.025157599, 0.013711109, 0.00015911763, 0.0068555544, 0.008717333, -0.05504767, 0.04215676, 0.009907709, 0.037598487, 0.013377222, 0.0051171687, -0.033620887, 0.031588536, 0.0030721158, -0.009319779, 0.01673786, 0.023299448, -0.013602233, -0.005752278, 0.031182066, 0.00800601, 0.004191723, 0.005033697, 0.06683531, 0.01682496, 0.050082926, -0.0045655305, -0.0022210688, -0.027233498, 0.012854618, -0.01759435, 0.018566975, -0.05019906, -0.0195396, -0.012803809, -0.026173774, 0.025201147, -0.019365398, -0.035391934, 0.00060380774, 0.005596223, 0.0027926676, 0.014574857, -0.008630232, -0.038063023, -0.0101109445, 0.003955825, 0.053334687, 0.042272896, -0.008521356, -0.022878462, -0.004805058, -0.015576516, 0.010016586, -0.028510977, -0.031762738, 0.010401281, 0.020831594, 0.010967435, 0.015605549, -0.040066343, -0.030514294, -0.03672748, -0.017623384, -0.0075342143, 0.0011731382, 0.011823926, -0.00646723, 0.034433827, 0.04273743, 0.0010633549, 0.007788258, -0.028757762, 0.053044353, -0.045756925, -0.04192449, 0.032720845, -0.008419738, -0.0005085413, -0.059867244, -0.03971794, 0.026391525, -0.0073128333, 0.0066523193, 0.027131882, 0.0001972242, 0.0045800474, 0.006303916, 0.0122521715, 0.013355447, 0.010335955, -0.044247176, 0.0010179899, 0.034520928, -0.0134280315, -0.0022555464, 0.034259625, -0.0031428852, 0.015765235, 0.004924821, 0.02193487, -0.027102849, -0.005803087, 0.004572789, -0.023734953, 0.01795727, 0.02234134, 0.031675637, 0.027756104, 0.025839888, 0.014553082, -0.013580457, 0.016447524, -0.0020831595, 0.044334278, 0.043114867, -0.018160505, -0.0028325887, -0.046976335, 0.074558236, 0.024881778, -0.004021151, -0.03672748, -0.028264191, -0.03614681, -0.015199079, 0.0020559405, -0.047295704, -0.001384539, -0.0059809177, 0.015126496, 0.019713802, 0.028685179, -0.0041227685, -0.015257147, 0.032198243, -0.017739518, -0.010568224, -0.025810853, 0.03071753, -0.030427193, 0.026028605, 0.038411427, 0.038063023, 0.040501844, -0.010967435, 0.024518859, 0.03745332, 0.0033279741, -0.024852745, -0.009987552, 0.017855652, 0.047876377, -0.0066414317, -0.02894648, -0.020802561, 0.027712554, 0.005781312, 0.0038360618, -0.08181663, 0.016970128, 0.041459955, 0.031153033, 0.001366393, -0.020642877, 0.013036078, -0.022588126, -0.032575678, -0.016084604, -0.013065112, 0.042766463, 0.022892978, -0.042998735, -0.013253829, 0.010604516, 0.007773741, 0.012702191, 0.0148651935, -0.015315214, 0.007889875, -0.0063801296, -0.023313966, -0.05951884, -0.012332014, 0.025360834, 0.0043768124, 0.023212347, 0.0008977728, -0.028714212, 0.018915378, -0.02071546, -0.01524263, -0.0017547171, 0.022515543, -0.02537535, -0.007218474, 0.037395254, 0.050373264, 0.004536497, 0.037308153, 0.013645783, -0.022573609, -0.032604713, 0.00026243634, -0.027756104, 0.0029196895, 0.013268347, 0.002908802, 0.021092897, 0.003745332, 0.007399934, -0.017623384, 0.015794268, -0.020599326, -0.006960801, 0.0069208797, 0.021688085, -0.004558272, 0.024678543, -0.034027357, 0.03277891, 0.021020312, -0.0010279702, 0.031094965, -0.02428659, 0.03048526, 0.0040138927, -0.009327038, -0.024634993, -0.025259215, -0.051360406, 0.043840706, 0.00429697, 0.03350475, -0.025694719, -0.0016249733, -0.033620887, -0.00027400441, 0.007363642, 0.050634567, -0.0038832414, -0.024881778, -0.010292404, -0.035159666, -0.02795934, 0.03359185, -0.015416832, -0.021992937, -0.062712535, -0.03635004, 0.014465982, -0.020991279, -0.010299663, 0.020933213, 0.016650759, -0.011250513, -0.011809409, 0.0041227685, 0.017623384, -0.0032553903, -0.015097462, -0.017115297, -0.01524263, 0.024576927, -0.0022718776, -0.033678953, -0.049879692, -0.0037380736, -0.003102964, 0.009334296, -0.011018244, -0.033940256, 0.005951884, 0.021426782, 0.036059707, -0.023270415, -0.012854618, -0.049095787, -0.046889234, 0.018784726, -0.025665686, -0.064280346, 0.009152836, -0.017042711, 0.0022174397, 0.022820394, -0.07484857, -0.014364365, 0.014168387, -0.032459542, -0.021992937, 0.0029668692, -0.025810853, 0.006866442, 0.015634583, 0.019423466, -0.037598487, 0.013907085, 0.014168387, 0.03356282, -0.022951046, 0.024475308, -0.0037162984, -0.019350883, -0.025070498, 0.004329633, 0.003387856, -0.010778717, -0.015315214, 0.044973016, 0.023299448, -0.005294999, -0.008441513, 0.0065652183, -0.03478223, -0.019844452, -0.013957894, 0.04337617, -0.02460596, 0.002279136, -0.041634154, -0.011199703, 0.011250513, 0.018566975, 0.015634583, -0.0006990742, -0.013827243, -0.010996468, -0.016868511, 0.020468675, -0.027204465, -0.02958522, -0.051999144, -0.016476557, 0.0025549552, 0.012317496, 0.023270415, -0.039282434, -0.0087318495, -0.038701765, 0.02270426, -0.03007879, 0.02736415, -0.01699916, 0.025999572, 0.016229771, 0.033707988, 0.013435289, 0.006187782, -0.012143295, 0.031327233, 0.018581491, 0.008361671, 0.009523015, -0.009218162, -0.0006387388, -0.008289088, 0.006681353, 0.019423466, -0.0007675753, -0.0014707324, 0.0007866286, -0.0045147217, 0.021557434, 0.0033388617, -0.015024878, -0.010524673, -0.010909368, 0.01031418, -0.060680185, 0.008739108, -0.023081698, 0.0127530005, 0.022573609, 0.0069208797, -0.02221069, -0.006870071, -0.011439231, 0.029991688, 0.035769373, 0.020149305, -0.008935085, 0.011700533, 0.015997503, -0.027102849, -0.034114458, 0.0057885703, 0.0044711716, 0.018784726, 0.004844979, 0.008267312, 0.008985893, -0.02501243, -0.021760669, 0.0027563756, -0.032140173, 0.0017102594, 0.035159666, -0.020657392, 0.037656553, -0.008717333, -0.00020210094, 0.0064708595, 0.021818737, 0.023865603, -0.019249264, -0.008376188, 0.0021466704, -0.007345496, 0.010343214, 0.02469306, 0.01913313, 0.026768962, 0.0022246982, -0.03266278, 0.0009381476, -0.010553706, 0.017129812, 0.0007353662, -0.0120199025, 0.04093735, 0.036524244, 0.01904603, -0.0061369734, -0.028743245, 0.0061369734, -0.0011558995, 0.015184563, 0.04134382, 0.015271664, -0.010880334, -0.011468264, 0.0023136134, -0.0006024468, 0.015445865, -0.0046453727, -0.041488986, 0.030427193, -0.008993152, 0.047411837, 0.00012293908, -0.025026947, 0.0056107393, 0.03794689, -0.013232054, 0.01352239, -0.004754249, -0.00007235713, 0.026885096, 0.026347974, -0.006369242, -0.0045619016, 0.0073926756, -0.0018463543, -0.018465357, -0.021383232, 0.03794689, -0.018566975, -0.026754444, -0.015358765, -0.013587716, 0.007291058, 0.00836893, 0.0013119549, -0.029556185, 0.017057229, 0.014037737, 0.004405846, 0.006645061, -0.021223547, -0.011932801, -0.023763986, -0.015111979, -0.019220231, 0.03469513, -0.0021013054, -0.018436324, -0.035856474, 0.010343214, 0.004543755, 0.052492715, 0.0027382297, 0.026768962, 0.0035783888, -0.0068773297, 0.01347884, -0.0094068805, 0.003681821, -0.0012375563, 0.018479874, 0.040647015, -0.0061442317, -0.005451055, 0.0315595, 0.016258806, -0.010735166, 0.017086262, -0.017274981, 0.0050264387, 0.0068773297, 0.006205928, -0.005621627, -0.023967221, 0.0019724688, -0.007701157, -0.016200738, 0.024388207, -0.019510567, -0.029280366, -0.013819984, -0.00065280194, 0.0215284, -0.002785409, 0.006427309, -0.0013037892, -0.02306718, 0.037714623, -0.007955201, -0.011780376, -0.012317496, 0.0023372034, -0.06056405, -0.017608866, -0.0027473026, -0.0057921996, -0.011192446, -0.010887593, -0.012586057, 0.019844452, 0.014618408, 0.038411427, -0.008071336, 0.032866012, 0.005255078, -0.03364992, 0.030688494, -0.039601803, -0.008419738, -0.035856474, -0.009689958, -0.017086262, 0.003908646, 0.016084604, 0.012869135, 0.0053966166, -0.06851925, -0.0052659656, 0.017289497, 0.025230182, 0.007232991, 0.030514294, 0.018392773, 0.008695558, 0.0030448968, 0.01112712, -0.018378256, 0.024228523, 0.014727284, 0.0069535426, 0.004558272, -0.015547482, -0.035391934, -0.0010479308, 0.013101404, -0.00035180536, 0.010981952, -0.013602233, 0.005051843, 0.0015170046, 0.0054692007, 0.013094145, 0.0062022987, -0.021789702, 0.017013678, 0.018523425, -0.0032245421, 0.015634583, 0.03298215, -0.0022446588, 0.0009762542, -0.0044929464, 0.0056978404, -0.031385303, -0.00020697768, -0.0033588223, -0.025186632, -0.0011912842, 0.01736208, -0.03031106, 0.025085013, -0.06323514, -0.01189651, 0.010691616, -0.021876803, 0.021499367, -0.02184777, 0.028685179, 0.017739518, 0.023763986, -0.025796337, 0.026028605, 0.048834484, -0.024475308, -0.019670252, -0.010742425, -0.008448772, -0.00049402454, 0.044247176, -0.030136857, 0.051592674, -0.014415173, -0.018697627, 0.00859394, -0.01699916, -0.012179587, -0.009675441, -0.01795727, -0.011301321, 0.013406256, -0.024083355, 0.016839476, -0.009472206, -0.014582116, -0.0014961368, -0.036930714, 0.024722094, 0.026115706, 0.03446286, 0.0273206, 0.004202611, 0.004844979, 0.022167139, -0.008223762, -0.008347155, -0.057196155, 0.011286804, -0.04491495, 0.030020723, 0.0040864768, -0.01112712, -0.0027745215, -0.01017627, -0.030514294, 0.020729978, -0.029164232, -0.008274571, 0.025709236, 0.017841136, -0.012404597, -0.017173363, 0.055425107, -0.003854208, -0.0016367681, -0.02627539, 0.029294884, -0.013878052, -0.004151802, 0.0052478197, -0.00655796, 0.0003102964, 0.009102028, -0.029367467, 0.024214007, 0.023778502, 0.03695975, 0.004217128, -0.012600574, -0.010909368, -0.019786386, -0.040269576, -0.006797487, -0.028510977, 0.010677099, -0.01958315, -0.007846326, 0.003451367, -0.0014716396, -0.018204056, -0.022776844, -0.012186846, -0.008964119, 0.0014525864, 0.00022931992, -0.033620887, 0.02836581, 0.007868101, 0.0007612242, -0.0010669841, -0.017754035, 0.024388207, 0.021470333, -0.016360423, 0.009682699, 0.04645373, -0.02655121, 0.010531931, -0.007330979, 0.020904178, -0.01329738, 0.009871418, 0.0043768124, -0.018102437, -0.03632101, 0.0034259625, -0.0056978404, 0.0018236719, 0.01836374, -0.007868101, -0.025622135, -0.0051171687, 0.030020723, 0.02221069, 0.009189128, -0.008615715, -0.0011958206, 0.0013246571, 0.0018781098, 0.0064708595, 0.022065522, 0.015808785, 0.019437982, 0.013856277, 0.015082945, -0.0048849, -0.0087899165, 0.007548731, -0.0061224564, 0.0099657765, 0.021383232, 0.008964119, -0.024068838, 0.019234747, 0.008797175, -0.016984645, 0.029991688, 0.00085921254, -0.029512635, 0.000890968, -0.020541258, -0.019684767, -0.022515543, 0.00336971, -0.012905426, 0.006231332, 0.015692651, 0.021020312, -0.0015351506, -0.029222298, 0.013290122, -0.023676885, -0.022805877, -0.010234337, -0.036930714, -0.018639559, 0.029004548, 0.012455407, -0.012883652, -0.0014099433, 0.035885505, 0.05019906, -0.012186846, -0.0175508, 0.031907905, -0.025665686, 0.029556185, 0.017333047, -0.009849642, -0.0025404384, 0.028148057, 0.038556594, -0.0018762952, 0.057776827, -0.014995844, -0.022501025, 0.0075995396, -0.022994597, 0.025680203, -0.010822267, 0.005832121, -0.017623384, 0.015474899, -0.024809195, -0.0037961407, -0.0028035552, -0.0012738483, 0.0070987106, 0.044769783, -0.007196699, 0.031327233, 0.029193265, -0.011845701, -0.002211996, -0.0060861646, -0.0021412265, -0.019728318, -0.020163821, 0.01234653, 0.009131061, 0.010887593, -0.012382822, -0.0014870637, 0.05667355, 0.012557024, -0.007875359, -0.017942753, -0.005872042, -0.011881993, 0.008216503, -0.014857935, 0.0056869527, 0.010067394, 0.037888825, -0.042853564, -0.019002479, 0.0142191965, -0.019713802, -0.023734953, 0.013188505, -0.0140740285, 0.014117579, -0.018073404, -0.014422432, -0.0234301, 0.010546449, 0.0058103455, -0.053654056, 0.039108235, -0.0005448333, 0.0106117735, -0.00782455, -0.009827867, 0.0005049121, -0.007904393, 0.007708416, 0.020062204, 0.00038288036, -0.0007607706, -0.012201362, -0.035304833, -0.007751966, 0.0126658995, 0.019742835, 0.03469513, 0.012317496, 0.029817488, -0.0548154, 0.010887593, 0.030252991, 0.036117774, -0.0056288857, -0.022007454, -0.002821701, 0.0051752357, -0.014538566, -0.03867273, 0.026507659, -0.008245537, -0.00080568186, 0.013130437, 0.014008703, -0.0077229324, 0.0047760243, 0.018857311, -0.0051316856, 0.018247606, 0.035653237, -0.01017627, -0.02107838, 0.0046381145, 0.018552458, -0.008049561, 0.011177929, -0.02274781, 0.0030594135, -0.06892572, -0.006111569, 0.0051099104, -0.008637491, 0.018799243, 0.0016766893, 0.018450841, -0.02392367, -0.043231003, -0.01605557, -0.008666524, 0.0016122711, 0.01994607, 0.0020813448, 0.032807946, 0.0073600127, -0.0175508, -0.017333047, -0.0035620574, 0.0049538547, -0.004355037, 0.028119024, 0.04265033, 0.003572945, -0.024925329, -0.009893193, -0.0254189, -0.010960177, 0.0147780925, 0.002003317, 0.0028198867, 0.013899826, -0.018552458, -0.016752375, 0.02573827, -0.0015478528, -0.0148651935, -0.0056833234, -0.014415173, -0.037685588, -0.0066559482, 0.01252799, -0.011809409, -0.014596633, -0.013565941, 0.013790951, 0.01596847, -0.022863945, -0.0071821823, -0.012143295, 0.023865603, -0.0054111336, -0.005487347, -0.009697216, 0.032546643, -0.011947319, 0.007846326, -0.027944822, -0.020120272, -0.0053893584, 0.044450413, -0.0070587895, 0.0031682895, -0.018349223, -0.023531718, 0.0020015026, 0.008448772, -0.0030340091, 0.027277049, -0.00026606556, -0.018929895, 0.030688494, 0.007860842, 0.00094268407, -0.0049502254, 0.0022718776, 0.004714328, -0.0046961815, 0.021630017, -0.02225424, -0.01949605, 0.024591442, -0.020613842, 0.020425124, 0.0039921175, -0.02148485, 0.011410197, -0.01695561, -0.02221069, -0.010343214, -0.001981542, 0.024402725, -0.0014054067, -0.013761917, 0.00040669696, 0.005088135, -0.030949797, -0.0028017405, 0.014015961, -0.013181246, 0.0044312505, -0.008717333, 0.0006977132, 0.021397749, -0.01194006, 0.009885934, 0.014284522, 0.009218162, 0.0036745626, -0.0006854647, 0.009559306, -0.018755693, -0.0067648245, -0.0054474254, 0.004779653, 0.007621315, 0.019960588, 0.027567385, 0.0006215001, 0.02456241, -0.009653666, 0.014335331, -0.0027563756, -0.063525476, 0.0022537317, 0.0037235569, -0.0077229324, -0.015707167, -0.028786795, 0.009385105, -0.017739518, 0.009515756, 0.036175843, 0.026057638, 0.009624632, -0.013986927, -0.0007648534, -0.0045873057, 0.015895886, -0.017565316, 0.011497298, 0.031036898, -0.023633335, 0.0022228835, 0.032517612, -0.020933213, -0.02116548, -0.011206962, 0.011410197, -0.009922226, -0.00818747, -0.009711733, 0.0056869527, 0.012397339, 0.007831808, 0.016084604, 0.021136448, 0.031820804, 0.035159666, -0.00033751538, 0.012317496, -0.015692651, 0.0053131455, -0.0066378023, 0.030543327, -0.015721684, 0.0234301, -0.03396929, 0.00046022763, -0.003854208, 0.00057250593, -0.0073890463, 0.042534195, 0.019220231, 0.013718367, -0.007272912, 0.037714623, 0.022326823, 0.017042711, -0.0008950509, -0.016897544, 0.022922013, -0.014640183, -0.0039267917, -0.0099657765, 0.03989214, 0.0113448715, -0.010735166, -0.0058684126, 0.009748025, 0.014059512, -0.0040247804, 0.0049284506, -0.011199703, -0.01637494, -0.026115706, 0.029207783, -0.0058611543, -0.015852336, 0.0071023395, -0.006623286, -0.00046022763, 0.009885934, -0.023676885, -0.00005594068, 0.029991688, -0.008622973, 0.024881778, -0.020338023, -0.03809206, -0.0048232037, 0.0041590603, 0.0049502254, -0.0031646604, 0.015808785, -0.0022573608, 0.0019343623, -0.00849958, 0.0040647015, 0.016723342, 0.014647442, 0.012375564, 0.016665276, -0.026072156, -0.04337617, 0.015765235, 0.02971587, -0.007069677, 0.00624222, -0.019394431, -0.0028017405, 0.034927398, -0.014342589, -0.020875145, 0.017536283, 0.0047288444, 0.012782034, 0.0058793, -0.017042711, 0.016200738, -0.011112603, -0.021673568, -0.0087899165, 0.0127530005, 0.023241382, -0.010597257, -0.016665276, 0.008586681, 0.026827028, 0.03835336, -0.015576516, 0.015707167, 0.00293965, -0.027378667, 0.028569045, 0.012215879, -0.042127725, -0.025273733, 0.0061260858, -0.021673568, 0.00683015, -0.004329633, -0.0049720006, -0.012673158, 0.016708827, -0.007505181, -0.016476557, 0.0092907455, -0.011185187, -0.0234301, 0.012317496, -0.010103686, -0.024272073, -0.0056397733, -0.009029443, -0.002148485, -0.0028380326, -0.02274781, 0.012760259, 0.037656553, -0.013827243, -0.008100369, -0.013333672, 0.0068156333, 0.00084560306, -0.021310648, -0.006249478, -0.019220231, -0.019278297, -0.012063453, -0.030398158, 0.014734542, 0.010865818, 0.01194006, -0.0054619424, -0.008847984, -0.003908646, -0.021281615, 0.0055163805, -0.010981952, 0.035972606, 0.012273947, -0.030136857, 0.013268347, -0.021455817, -0.00018440861, 0.041634154, 0.00217026, -0.014095804, -0.011250513, -0.022922013, 0.022791361, -0.023154281, -0.057312287, 0.0029977171, -0.004757878, 0.0031265537, -0.0030412676, -0.011722309, 0.0015877739, 0.011548107, 0.021644535, 0.037685588, -0.021281615, -0.018015336, -0.028249674, -0.030601393, 0.0070370142, -0.007577765, 0.0018263937, -0.024751129, -0.02659476, 0.019728318, 0.013123179, 0.016984645, 0.0097698, 0.016447524, -0.0069716885, -0.012905426, 0.0017529024, -0.005752278, 0.0055671893, 0.00031256463, -0.009581082, -0.011983611, 0.019844452, 0.009624632, -0.0024134165, 0.016200738, -0.030282024, -0.0016140856, -0.006169636, -0.032691814, -0.0037054108, -0.0066559482, 0.0027473026, -0.006133344, 0.008434256, -0.0038469494, -0.01515553, 0.0087899165, 0.008630232, 0.032517612, -0.013464323, -0.042621296, -0.0061406023, 0.0274077, 0.010735166, 0.003572945, -0.000080919766, 0.0008914217, -0.00014550814, -0.008869759, 0.0029922735, -0.0087899165, -0.015503932, 0.013551424, -0.020134788, -0.0008723684, -0.01329738, -0.0048086867, 0.0034187043, 0.027523834, -0.014233713, 0.015474899, -0.0040683304, -0.021963904, 0.012782034, 0.0074834055, 0.004848608, -0.018349223, 0.0036473437, -0.017579833, 0.010103686, 0.03948567, -0.0136603, -0.012803809, -0.0027509318, -0.024184972, -0.011134379, 0.0057377615, 0.0062676244, -0.014081287, 0.018828277, 0.016868511, 0.0027400441, -0.008114886, 0.011911026, -0.026449593, -0.026217323, -0.019104097, 0.03437576, -0.018305672, -0.018073404, 0.003148329, 0.020163821, -0.025665686, 0.011105345, -0.01791372, -0.02266071, 0.009675441, 0.0015369651, -0.0033715246, 0.004997405, -0.010640807, -0.033040214, -0.016970128, -0.02026544, 0.013769176, 0.015678134, -0.007269283, -0.023676885, 0.007399934, 0.027886754, -0.0027581903, -0.027698036, -0.0081729535, -0.013108661, -0.030630428, -0.015474899, 0.012491698, -0.0014689177, 0.0006546165, 0.0013192133, -0.008521356, 0.019815419, -0.011642466, 0.0017955456, -0.038208194, 0.027828688, 0.032459542, -0.03170467, -0.00041032615, 0.016723342, 0.0066378023, -0.019554118, 0.015358765, 0.020657392, 0.0029251333, 0.019234747, -0.014415173, 0.010335955, -0.019060547, 0.011780376, -0.0018372813, -0.0025894325, 0.0074761473, -0.053654056, -0.012586057, 0.032169208, -0.0024569668, 0.023139764, 0.0053204037, -0.031036898, 0.028380325, 0.006746678, -0.011221479, -0.015010362, 0.0108730765, -0.023038147, 0.019568633, 0.015837818, 0.015184563, 0.017129812, -0.01787017, -0.03681458, 0.034230594, -0.0070116096, 0.016534625, 0.007926168, -0.00217026, 0.002745488, 0.00868104, 0.019481532, -0.013740142, 0.010531931, 0.008927826, 0.024141423, 0.0158233, 0.018596008, -0.018102437, -0.005661548, -0.0215284, -0.0031918793, 0.0059409966, 0.035391934, 0.010270629, -0.002297282, -0.01998962, 0.005142573, 0.011366647, 0.0023063552, -0.007000722, 0.012644124, -0.004707069, -0.00741808, 0.0021738894, -0.009646407, -0.010263371, -0.003151958, -0.006645061, 0.0047760243, -0.013943377, 0.0063765002, 0.0029106166, 0.014270005, -0.007926168, -0.007730191, -0.008543131, 0.026057638, 0.019336365, 0.0056071104, 0.014734542, -0.010880334, 0.035566136, -0.017057229, -0.018886345, 0.009014927, 0.035275802, 0.0033352326, -0.008303604, 0.012869135, 0.0032263566, 0.004133656, 0.016258806, 0.049328055, -0.014335331, -0.0030448968, 0.010444831, -0.0063801296, 0.004169948, -0.0063982755, -0.003672748, -0.006249478, -0.0066341734, -0.03225631, -0.008470547, -0.019975103, 0.029643286, -0.0009953075, 0.020889662, -0.0047179568, 0.010183528, 0.041982558, 0.017158845, -0.0024442647, -0.016708827, -0.014574857, -0.013594974, 0.0072983163, 0.021571951, -0.0073019457, 0.0056071104, 0.021499367, 0.029817488, -0.01171505, -0.020439642, 0.012215879, 0.006684982, 0.0050591016, -0.0035675012, -0.012869135, 0.014538566, 0.016128154, 0.0033588223, 0.032953113, -0.011395681, 0.015228113, 0.0030412676, -0.0046054516, -0.008528614, -0.0018998849, 0.0033189012, 0.007577765, 0.009573824, -0.0063402085, 0.015692651, -0.0033207159, 0.0053167744, 0.0020196484, -0.0049683717, 0.019888002, -0.014712767, 0.0034604399, -0.0020105755, 0.01998962, 0.03202404, -0.0017129813, 0.016345907, 0.0061297147, 0.0011069053, -0.003333418, -0.008942343, 0.017158845, 0.036291976, -0.027233498, -0.013565941, 0.014378881, -0.026362492, -0.015532966, 0.024722094, -0.0009816979, -0.0067321616, 0.016723342, -0.007490664, -0.0119908685, -0.007490664, -0.014734542, -0.021992937, 0.014908744, -0.02261716, 0.013021561, -0.0025585843, 0.01750725, 0.000901402, -0.025709236, -0.009602857, 0.015329731, -0.0009798834, 0.008514098, -0.0017402002, -0.008434256, -0.008579423, 0.0018390958, 0.012506215, 0.0039195335, 0.008042302, 0.0087028155, -0.00936333, 0.020541258, 0.022689743, 0.008869759, -0.020555776, 0.00683015, -0.0073128333, 0.008964119, 0.013065112, 0.022268757, -0.008194728, 0.021281615, -0.0044748005, -0.012230396, 0.006100681, 0.0042280154, -0.00782455, 0.0027182691, -0.0052732243, -0.0158233, -0.0215284, 0.020700943, 0.0041735773, 0.00429697, 0.0019615814, -0.024983397, 0.0099657765, 0.0005765888, 0.00723662, -0.009334296, 0.00020652403, 0.012680417, -0.00012464025, 0.012622349, -0.02270426, 0.0087318495, -0.013217538, 0.0120199025, -0.0106117735, 0.0010261557, -0.0031229246, -0.0080568185, 0.052812085, 0.006078906, -0.0025712864, 0.0014934149, -0.010335955, 0.015750717, -0.012992527, -0.019655734, -0.00052441907, 0.011860218, -0.0032463174, -0.005414763, 0.0015260776, -0.003930421, 0.00055889646, -0.007251137, 0.007033385, 0.021818737, 0.012586057, -0.0064744884, 0.0035402824, 0.0079987515, 0.017899202, -0.0044675423, 0.0082310205, -0.011838443, 0.010931144, 0.015053912, -0.015329731, 0.010865818, -0.011025502, -0.01759435, 0.0039449376, 0.0009417768, -0.0053385496, -0.017812101, -0.000026495978, 0.0058829295, -0.0068410374, -0.0066740946, -0.0070406436, 0.002763634, -0.017812101, -0.003857837, -0.0010687987, -0.002311799, -0.0019670252, 0.0034568107, -0.009479464, -0.0063075456, -0.04953129, -0.0065942523, 0.014821643, -0.0055744476, 0.0057631657, -0.0034749566, 0.014502274, -0.010183528, 0.0013310083, 0.0014861564, -0.004870383, 0.016578175, -0.010292404, -0.00429697, 0.011627949, -0.048863515, -0.010060136, 0.003039453, -0.00005466479, -0.00077165815, -0.001160436, -0.000361332, -0.028743245, 0.01998962, -0.010437572, 0.029933622, 0.0030648573, 0.0015215412, -0.014683734, 0.02229779, -0.0014480499, -0.0011050907, 0.009486723, 0.027523834, -0.0040138927, -0.0013437105, 0.0051280563, 0.0033624517, -0.0010034732, -0.0018191353, 0.015547482, 0.022428442, -0.016505592, -0.0038832414, -0.025114048, -0.014204679, -0.008281829, -0.011410197, 0.0067684534, -0.0061986693, -0.003373339, 0.012005386, 0.009080253, 0.009370589, -0.000025163383, 0.0030993347, 0.014233713, -0.0067321616, 0.018813761, 0.018189538, 0.0075922813, -0.0021902209, 0.007693899, -0.011722309, -0.0004318745, -0.019263782, 0.011787633, 0.01795727, 0.027175432, -0.011540849, 0.006924509, 0.0005684231, -0.008289088, 0.0054111336, -0.0086447485, -0.01949605, -0.007839067, 0.010292404, 0.015489415, -0.01682496, -0.006989835, 0.012948977, -0.011214221, -0.0028017405, 0.010227079, -0.0033098282, 0.011395681, -0.017173363, 0.0094359135, -0.0025658428, 0.022573609, 0.0007144983, 0.010822267, -0.017652417, 0.018204056, 0.011141636, 0.015039395, 0.00069363037, -0.016926577, -0.0040501845, 0.02180422, -0.021020312, -0.0035892765, -0.007904393, -0.015895886, 0.00696443, -0.023822052, 0.011751342, 0.0068156333, 0.013224796, -0.008390705, 0.029019063, 0.018625041, 0.018218571, 0.0023644222, -0.002808999, 0.009268971, 0.004463913, 0.0078027747, -0.0054365383, 0.005690582, -0.0014244601, 0.024214007, -0.0076140566, 0.010662583, -0.017347565, 0.005001034, -0.0003989849, -0.007203957, -0.005418392, -0.005001034, -0.0041409144, 0.009421397, -0.0062676244, -0.011257771, 0.023807537, -0.002654758, 0.006459972, 0.017579833, 0.012426373, 0.027349634, -0.003342491, 0.026202807, -0.0033025697, 0.012549765, -0.02877228, -0.0008891534, -0.0053204037, 0.016302356, 0.0023172428, 0.012847359, -0.007766483, -0.0011595286, 0.009936743, 0.000057982103, 0.0016621725, -0.0052732243, -0.0017483659, -0.0026366122, -0.0078100334, -0.022283273, -0.00009793163, -0.014524049, 0.021644535, -0.008136661, 0.00210312, -0.0075922813, -0.0054692007, -0.004511093, -0.027741587, -0.00087735854, 0.015460382, 0.0031955086, -0.013819984, 0.00039104605, -0.0002975942, -0.013558682, -0.010981952, 0.012288463, -0.012506215, -0.0033678955, -0.00079933077, -0.0078100334, 0.019191196, -0.011867477, -0.01641849, -0.021238064, -0.007751966, -0.0017683265, 0.013348189, -0.005374842, 0.0053530666, 0.0073745297, 0.0027962967, -0.01637494, 0.0033588223, -0.020250922, -0.007316462, -0.003821545, -0.013558682, 0.00398123, 0.0077955164, 0.018378256, -0.0027872238, -0.0022192544, 0.010619032, 0.0027835947, 0.007875359, -0.00020096682, -0.005781312, -0.0064309384, 0.015634583, -0.0043985876, -0.02975942, 0.015184563, 0.010989211, 0.008129403, -0.015532966, -0.019481532, 0.0025313653, 0.0045147217, 0.012963494, 0.017536283, 0.009958519, -0.022239722, -0.023763986, -0.0056325146, -0.009980294, 0.037395254, 0.008390705, -0.0027473026, 0.021963904, -0.0040320386, 0.015736202, 0.0040864768, 0.0014952294, -0.0059736595, 0.0059918053, 0.012448148, -0.0030521553, 0.0042352737, 0.007160407, -0.008238278, -0.015010362, 0.021949388, -0.005890188, -0.015736202, -0.021659052, 0.020947728, 0.020004136, 0.006906363, -0.0010216192, 0.0034804004, -0.004511093, 0.0094649475, 0.0135441655, -0.017304014, -0.0059264796, -0.0030067903, -0.0006577921, 0.03225631, -0.010067394, -0.017115297, -0.0008406129, -0.010292404, -0.0016902988, 0.0031755478, 0.009443172, -0.015997503, 0.004786912, 0.006989835, -0.014052253, 0.015228113, -0.010488381, 0.0062748827, 0.016766893, -0.014676475, -0.018494392, -0.0001669431, 0.014661958, -0.015591033, -0.0064309384, 0.02822064, 0.016128154, 0.012513474, -0.0035711306, 0.0003504444, -0.0291352, -0.014436948, 0.029875554, -0.0023317595, -0.01194006, -0.007381788, -0.017420148, -0.009239937, 0.016549142, 0.002994088, 0.00083290087, 0.0014017776, -0.0011304951, 0.015271664, 0.0057232445, -0.0016295097, -0.00023703197, 0.010263371, -0.008027785, -0.02234134, 0.015808785, -0.016810443, 0.011794892, -0.0015251703, 0.009094769, 0.0029922735, 0.0076866406, 0.012673158, -0.0042316443, 0.024054322, -0.0008206523, 0.026202807, -0.011686016, 0.023865603, 0.01714433, 0.018479874, 0.0059664007, 0.020367056, 0.016273322, 0.0013437105, 0.022312308, 0.0036164955, 0.00800601, 0.014734542, -0.007708416, 0.0027073815, 0.026362492, 0.015053912, -0.0039521963, 0.002975942, 0.021339683, 0.00017737703, -0.008136661, -0.023444617, 0.0033860414, -0.0076866406, -0.008920568, 0.0035021757, -0.018581491, 0.009058477, -0.007933426, 0.030746562, -0.0054292795, -0.01031418, -0.0059264796, -0.0020595696, 0.0017746777, 0.0016540068, 0.0156491, 0.011301321, 0.00624222, -0.008622973, 0.001433533, -0.019249264, -0.0025186632, 0.0073781586, 0.00019144018, 0.0040647015, 0.0019888002, 0.010909368, 0.004844979, 0.011947319, 0.021397749, 0.010981952, 0.022805877, -0.015997503, -0.0010016585, -0.0023444616, -0.0069680596, 0.007563248, -0.010495639, -0.000063114014, -0.008615715, 0.00029419182, -0.0039267917, -0.0020976763, 0.007421709, -0.016549142, 0.0021738894, -0.0002948723, -0.023313966, -0.0005452869, -0.0013128623, -0.0066958694, 0.016883027, 0.0048159454, 0.015518449, -0.007381788, -0.005490976, -0.015866851, 0.00913832, 0.014843418, 0.01438614, 0.014211938, 0.00456916, -0.0014371623, -0.006097052, 0.014364365, -0.021702603, 0.014937777, 0.014299039, -0.017274981, -0.018900862, 0.016941095, -0.001614993, -0.024722094, 0.018262122, -0.0069680596, -0.0028942851, 0.008935085, -0.010350471, 0.028931964, -0.00800601, -0.031036898, -0.026739929, -0.009160095, -0.008557648, 0.024634993, 0.001284736, -0.0012520732, 0.0014979513, -0.0066015106, -0.012738484, 0.018291157, -0.01723143, 0.0045219804, 0.029875554, -0.007853583, 0.011540849, -0.015329731, -0.008862501, 0.025680203, 0.003875983, 0.012948977, -0.010858559, 0.009617373, 0.004997405, -0.008768141, 0.022109073, 0.0016013834, -0.008971376, -0.015721684, -0.0040647015, 0.023531718, -0.006158748, -0.00091591873, 0.015562, 0.016128154, -0.019655734, -0.008071336, -0.011954577, 0.025839888, 0.023865603, 0.015387798, -0.008027785, 0.007570506, 0.012789292, -0.0012384637, -0.017216913, -0.017071746, -0.0107642, 0.010800492, -0.032285344, -0.026478626, -0.0077229324, 0.0012647754, -0.013609491, -0.037482355, 0.015591033, 0.009218162, -0.000052793483, 0.0050409553, -0.0016195294, 0.0066958694, 0.0048159454, -0.012317496, -0.014625667, 0.007127744, -0.01868311, 0.003821545, -0.006518039, -0.00012634145, -0.000008562638, -0.014625667, 0.0026384266, 0.0014371623, 0.019220231, -0.011562624, -0.011823926, -0.017681452, -0.006118827, -0.00096536655, 0.0039594546, 0.009689958, -0.014509532, -0.00002113724, 0.0070805647, 0.0040501845, -0.02623184, -0.0039267917, 0.019917037, 0.004046555, -0.011294063, 0.02311073, -0.01958315, -0.023531718, -0.004594564, 0.0024442647, 0.0020704572, -0.018784726, 0.010285146, -0.012186846, -0.004942967, -0.011395681, 0.029875554, 0.0031356267, -0.00398123, 0.0048232037, -0.00018883169, 0.013464323, 0.02338655, -0.008695558, -0.0234301, -0.015300697, 0.013442548, 0.000065042026, 0.018668592, 0.024576927, -0.008158436, -0.014008703, -0.00041463584, 0.026435075, 0.0071821823, -0.0087028155, -0.0068809586, 0.009944001, 0.023081698, -0.0017157032, -0.0032771653, -0.011780376, -0.0019198456, 0.0032408736, -0.012586057, 0.007918909, -0.0027999259, -0.016766893, -0.0014108506, 0.010386763, 0.010227079, -0.007984235, -0.002469669, -0.023734953, 0.009022186, 0.003966713, 0.032401476, -0.012999786, 0.004805058, -0.00034386647, 0.0057776826, -0.02695768, 0.010502898, 0.004935709, 0.0056288857, -0.0016276952, -0.008209245, 0.013682075, 0.0059264796, -0.017565316, -0.02392367, -0.012694933, 0.021542918, -0.015053912, 0.01289091, 0.00090548483, -0.007940684, 0.011932801, 0.0038723538, 0.0067902287, 0.0012965308, 0.005505493, -0.010553706, -0.0012738483, -0.018204056, -0.010364989, 0.011729566, -0.00060562236, 0.0077955164, 0.0046707774, 0.018421806, -0.013907085, -0.006612398, 0.0075414726, 0.0040247804, 0.011867477, -0.0029795712, -0.003409631, 0.009508498, 0.012673158, 0.026841545, 0.0024914441, 0.021630017, -0.0058139744, 0.0033751538, 0.012215879, -0.0019107725, 0.0068882173, -0.0072838, -0.0014534936, -0.018900862, 0.00085921254, -0.0074035632, -0.003351564, 0.012731225, 0.008071336, 0.011018244, -0.018886345, 0.0035293947, 0.029367467, -0.0015823302, 0.017376598, 0.03396929, 0.004739732, -0.026507659, 0.0026602019, 0.005857525, 0.010466606, 0.015271664, -0.0029904589, 0.017260464, 0.0050772475, 0.013355447, -0.0026166516, -0.02030899, 0.014182905, 0.0014371623, -0.00060017855, -0.02704478, -0.017376598, 0.009878676, 0.013435289, 0.007421709, -0.021586467, -0.020889662, -0.021238064, -0.014270005, -0.0006364705, -0.018813761, -0.0052478197, -0.0021103784, 0.0003223181, 0.0038650956, -0.012992527, -0.0215284, 0.0057958285, -0.016970128, -0.01298527, 0.0036019785, -0.008506839, -0.015939437, -0.0071749236, 0.026449593, -0.0059083337, 0.010212562, -0.009893193, -0.004551014, 0.022588126, 0.013144954, 0.012498956, -0.012332014, -0.008695558, -0.022951046, 0.006572477, 0.005668807, 0.003930421, 0.0068591833, -0.017086262, 0.032053072, 0.008390705, -0.02347365, 0.0127239665, -0.018886345, 0.011831184, -0.039224368, 0.009218162, -0.007421709, 0.0003706318, -0.0076140566, -0.0021720747, 0.009356071, -0.027973855, -0.0023009114, -0.022021972, 0.00041508948, 0.026754444, 0.009261712, -0.0021448557, -0.033214416, 0.015518449, 0.030949797, 0.02311073, 0.010364989, -0.018378256, 0.007087823, 0.012208621, -0.010372247, -0.0065652183, 0.0028688808, 0.02193487, 0.00024338307, -0.0071023395, 0.0068555544, 0.0030539697, -0.005284112, 0.006597881, 0.014008703, 0.029527152, 0.010633549, 0.021905838, 0.0114319725, 0.007414451, 0.014328072, -0.013152212, -0.013849018, 0.0018073404, 0.0012021717, -0.015315214, 0.0058357497, -0.012462664, -0.010916626, 0.01334093, 0.0018254864, -0.0004461645, 0.005197011, -0.003703596, -0.014763576, -0.0032481318, 0.0037598487, -0.0014716396, 0.022834912, 0.021252582, -0.017274981, -0.024417242, -0.0024932588, -0.008847984, -0.0028815828, 0.008514098, 0.022907495, -0.013870793, -0.00064690446, 0.0021230807, 0.022820394, 0.012564282, 0.023197832, -0.0067503075, 0.0026710895, -0.0020142046, 0.0133989975, 0.018944412, 0.0030194924, 0.0071749236, -0.0073055746, 0.005712357, -0.00841248, 0.006572477, -0.001160436, 0.0035529844, -0.026536694, -0.007258395, -0.016215255, -0.009036702, 0.026827028, -0.0027781508, -0.022486508, 0.008913309, -0.0048849, -0.021586467, -0.013718367, 0.014625667, 0.0006977132, -0.011998127, 0.004188094, 0.0032408736, 0.0052224156, -0.007548731, -0.013602233, -0.012694933, -0.013631267, 0.004786912, -0.003139256, -0.017318532, -0.015474899, 0.012731225, 0.0044893175, -0.0064563425, 0.016026536, -0.024112388, 0.01248444, 0.0035874618, 0.010742425, 0.029265849, -0.0028325887, 0.013783692, 0.018073404, -0.001124144, -0.016607208, -0.008129403, 0.015329731, -0.014320814, -0.010321438, -0.0010352286, -0.008869759, 0.0022700632, 0.01795727, 0.017115297, 0.0059264796, 0.0028561784, 0.0016095492, -0.020642877, 0.0027037521, 0.0040828474, -0.00429697, -0.004877642, 0.018625041, -0.017333047, -0.019147648, -0.011860218, 0.014320814, -0.006826521, 0.014371622, 0.008506839, 0.02274781, -0.014146612, 0.0078100334, -0.011090828, -0.0101980455, 0.0074616303, -0.0038106574, 0.005530897, -0.022007454, 0.010096428, 0.008129403, -0.0041046226, -0.014335331, 0.0128401015, -0.00114229, 0.0047760243, 0.0017147958, -0.008898793, 0.0031773625, 0.0026620165, 0.018218571, 0.002627539, -0.010154495, 0.012201362, -0.01252799, 0.015170046, 0.023197832, 0.0023099843, -0.0061950404, 0.023342999, -0.0076721236, -0.0016975572, 0.009798833, 0.017536283, -0.020584809, 0.009414138, -0.030543327, -0.009145578, 0.02234134, -0.017405631, -0.013471582, -0.009697216, -0.018189538, 0.009319779, 0.024126906, -0.00076802896, 0.0037598487, -0.012448148, -0.018247606, -0.005178865, -0.0051498315, -0.015620067, 0.003148329, 0.0080568185, -0.0034967319, 0.008129403, -0.030194923, -0.026362492, -0.022239722, -0.010502898, -0.003923163, -0.0017719558, 0.0037072254, 0.0024732982, -0.013878052, 0.00556356, 0.002681977, -0.0041808356, 0.0003488566, -0.00090049463, 0.00028716025, 0.034491893, 0.0048232037, 0.01013272, 0.006550702, -0.0044348794, -0.006939026, -0.00083471544, -0.015068429, 0.0069281384, -0.0028942851, 0.029817488, -0.006024468, -0.012477182, -0.0075342143, 0.0033098282, -0.016041053, -0.004558272, -0.013536907, 0.009936743, -0.00077438005, 0.01669431, -0.0048413496, -0.004500205, 0.0013056039, 0.013123179, 0.0029269478, 0.00597003, 0.010481123, 0.0135731995, 0.022152623, 0.016142672, 0.01736208, -0.0018853681, 0.0021557433, 0.005138944, 0.024634993, -0.010125461, 0.01682496, 0.0057740533, 0.0050119217, 0.042940665, -0.003220913, 0.024838228, 0.015344247, -0.0011304951, -0.007505181, -0.01212152, -0.01596847, 0.025593102, 0.02193487, 0.009791575, -0.001666709, -0.009581082, 0.009878676, 0.015939437, 0.0026366122, -0.009864159, 0.016316872, 0.00958834, 0.0020468675, 0.0023081696, 0.0043659247, 0.006459972, 0.005363954, 0.0039739716, 0.028467426, -0.0040864768, -0.0032408736, 0.0028616223, 0.008826208, -0.009660924, 0.013732884, 0.0022555464, 0.0035257654, -0.010488381, -0.0020577551, -0.017695967, 0.01270945, -0.013094145, -0.014487757, -0.013261088, 0.009987552, 0.010836784, -0.03736622, -0.018871827, 0.016447524, 0.013065112, 0.0047288444, -0.029875554, -0.0058865584, -0.009777059, 0.0028325887, -0.0066051395, -0.0004885807, -0.015910402, 0.006797487, -0.008492323, 0.017928237, 0.01017627, -0.021368716, 0.012034419, -0.012455407, 0.011874734, -0.011729566, -0.019554118, -0.0032898677, -0.014284522, -0.018755693, 0.0050409553, 0.008114886, -0.018552458, -0.013892569, -0.020207372, -0.004649002, 0.01194006, 0.01438614, 0.0234301, -0.003572945, 0.0051897527, -0.01618622, -0.0315595, 0.0041082515, -0.0034949174, 0.013754659, -0.022573609, -0.015199079, -0.015126496, 0.029991688, 0.00045433018, 0.0092907455, 0.012295721, -0.021412266, 0.011773117, -0.015707167, 0.014669217, 0.00010297848, -0.016723342, -0.014306297, -0.011032761, 0.009399622, -0.015460382, -0.004191723, 0.008339896, 0.007258395, 0.0068591833, 0.00800601, 0.0030467114, 0.008260054, -0.008652007, -0.016244289, -0.0037925115, 0.030688494, -0.014153871, -0.017478216, -0.005621627, 0.015402314, 0.00036654895, -0.0062277033, 0.011373905, 0.008434256, 0.0087608835, 0.0019198456, 0.0013464324, 0.009152836, -0.016810443, 0.009885934, 0.017333047, -0.01528618, -0.0012230396, 0.006314804, -0.012114261, -0.010285146, 0.0055200094, -0.00028511885, -0.0072148447, -0.019147648, -0.0007825457, 0.030020723, 0.016389456, -0.0019670252, 0.0013555053, -0.024925329, -0.023415582, 0.042592265, 0.007047902, 0.010640807, 0.021760669, -0.01528618, 0.00027604584, 0.003984859, -0.0038396912, -0.035304833, -0.016926577, -0.016636241, -0.016810443, 0.015765235, 0.0017483659, -0.008506839, 0.023865603, 0.0094068805, 0.0082310205, 0.003930421, 0.00036201248, 0.011736825, 0.006550702, -0.0022192544, 0.0029160604, 0.019713802, -0.0060172095, 0.0020886033, 0.001621344, -0.0050119217, 0.0069317673, -0.015213597, 0.0034187043, -0.012876393, -0.0074471137, 0.026028605, -0.007399934, 0.005008293, 0.012644124, 0.006100681, -0.0070370142, -0.029164232, 0.012339272, -0.0009444987, 0.0066740946, 0.017725002, -0.013079628, 0.005527268, 0.015416832, -0.008289088, 0.014052253, -0.014923261, 0.000374261, -0.0017728631, -0.0009508498, -0.018145988, -0.011635208, -0.012288463, 0.015982985, -0.0018472616, 0.026260873, -0.023662368, 0.008637491, -0.015228113, 0.002084974, -0.005538156, -0.00705516, 0.0087608835, 0.016650759, 0.024838228, 0.013261088, -0.002732786, -0.027102849, -0.021339683, -0.010648066, 0.0011123491, -0.013261088, -0.00936333, 0.015068429, -0.0059083337, 0.0029106166, -0.0021684456, 0.0003422787, -0.0013328228, -0.009602857, -0.0046889232, -0.00017057228, -0.027248016, -0.019321848, 0.01094566, -0.0034114458, -0.018828277, 0.0013890754, 0.009080253, 0.017463699, 0.030049756, -0.010103686, 0.012455407, 0.016345907, 0.0030049756, 0.003821545, -0.017637901, 0.023778502, -0.0007852676, -0.013536907, 0.0040683304, -0.0034840298, 0.017666934, -0.022196172, -0.0045401263, -0.011635208, 0.01411032, 0.03016589, 0.014814384, 0.025883438, 0.015750717, -0.0012629607, 0.020062204, -0.009203645, 0.021600984, -0.010227079, -0.009864159, 0.010089169, -0.008390705, 0.0009599228, -0.01673786, -0.017710485, -0.0031047785, 0.013667558, -0.0043622954, 0.0028344034, -0.028191607, -0.02180422, 0.014908744, 0.012999786, 0.015431348, -0.006949913, -0.01791372, -0.0019470645, 0.016549142, 0.018871827, 0.007251137, 0.009298004, 0.019554118, 0.014908744, 0.007577765, -0.002402529, -0.022689743, -0.003745332, 0.016853994, 0.017013678, 0.00053984317, -0.0013945192, 0.0020341652, 0.020323507, 0.0055998517, 0.008049561, -0.008100369, -0.0074325968, 0.0074325968, -0.0043042284, -0.0051679774, -0.0028489202, 0.010096428, -0.018581491, 0.023705918, 0.021978421, 0.015387798, 0.017695967, 0.020367056, 0.0026474996, -0.012005386, 0.0027055668, -0.004423992, -0.0063583544, 0.014908744, 0.01370385, 0.013689334, 0.00615149, -0.0026620165, -0.015373281, -0.0097698, -0.009007668, 0.006666836, 0.023154281, -0.018610526, -0.002542253, -0.008557648, 0.008434256, 0.0072075864, 0.0019633959, 0.0028434764, 0.00086783187, 0.0050228094, -0.017841136, -0.007526956, 0.009864159, -0.0058538956, 0.009319779, -0.007947943, 0.006231332, -0.011794892, -0.00047860044, -0.0100238435, 0.008985893
2257
3140
  ]
2258
3141
  }
2259
3142
  ],
@@ -2267,53 +3150,25 @@ function getTemplatesPipelineCollection() {
2267
3150
  ]
2268
3151
  },
2269
3152
  {
2270
- "name": "accelerating-enterprise-ai-development",
2271
- "title": "Accelerating Enterprise AI Development",
2272
- "content": "Key benefits include rapid development, with the ability to build AI applications in minutes rather than weeks, and an enterprise-ready solution with built-in security, privacy, and scalability features.",
3153
+ "name": "promptbook-rapid-ai-development-platform",
3154
+ "title": "Promptbook: Rapid AI Development Platform",
3155
+ "content": "Promptbook offers rapid development capabilities, allowing users to build AI applications quickly. It also provides enterprise-ready features, including built-in security, privacy, encryption, testing, and scalability considerations.",
2273
3156
  "keywords": [
2274
- "Rapid development",
3157
+ "Promptbook",
3158
+ "rapid development",
2275
3159
  "AI applications",
2276
- "enterprise-ready solution",
3160
+ "enterprise-ready",
2277
3161
  "security",
2278
3162
  "privacy",
3163
+ "encryption",
3164
+ "testing",
2279
3165
  "scalability"
2280
3166
  ],
2281
3167
  "index": [
2282
3168
  {
2283
3169
  "modelName": "text-embedding-3-large",
2284
3170
  "position": [
2285
- -0.025765076, -0.014685495, -0.016114395, -0.031959467, 0.019615572, -0.022817504, 0.018852495, 0.034862153, 0.0121344235, 0.021635482, -0.0024968334, 0.0040398203, 0.0071893837, -0.02462794, -0.051350605, 0.014760306, -0.00761955, -0.049465355, -0.005023591, -0.04357021, 0.003987452, -0.032857206, -0.030882182, -0.033126526, 0.016009659, -0.0025772557, -0.0055173473, 0.0039425655, -0.065355316, 0.0071632, 0.008640727, 0.0022761396, -0.006291646, -0.015126883, -0.018164229, -0.027650325, 0.004664496, -0.029161518, -0.023909751, 0.009164407, 0.025795002, -0.014805193, -0.00039977388, 0.0332163, 0.028383479, -0.029670235, -0.012822689, -0.01660815, -0.048028976, -0.0020030777, -0.008842718, -0.03061286, 0.013308964, -0.024373582, -0.009680606, 0.024194036, 0.013151859, -0.008820274, 0.005296653, -0.03222879, -0.032049242, -0.0017431077, -0.0013120065, 0.004675718, -0.016682962, 0.0037330932, 0.020408574, 0.032857206, -0.037166346, 0.032707583, -0.055450276, 0.013952342, 0.0049001523, -0.014101965, 0.006624557, -0.02272773, 0.009927484, -0.007028539, 0.006231797, 0.018643022, 0.0099574085, 0.0016851288, -0.0059512537, -0.0064824154, 0.08785861, -0.020393612, -0.01035391, -0.046742216, 0.0075671817, 0.001882444, -0.03836333, -0.029056782, -0.006257981, 0.007802838, 0.0053116158, 0.015979733, -0.042941794, 0.004024858, -0.016129356, -0.0000104400015, -0.00063028676, 0.047520258, -0.0011633186, -0.03426366, -0.0036246164, -0.024433432, 0.036059137, 0.023999525, -0.006987393, -0.019720308, -0.014408693, -0.03875235, -0.017266491, -0.02989467, -0.03183977, -0.022383597, -0.0020853702, -0.027156569, 0.025645377, -0.013181784, 0.03282728, -0.0005456563, 0.004211887, -0.027560553, -0.042253528, 0.0055921585, 0.04240315, -0.003106547, -0.011580818, 0.0012418707, 0.0028503176, 0.05021347, 0.011311497, 0.021096839, -0.009194332, 0.017685436, 0.03779476, 0.038123935, 0.006953728, 0.020677894, -0.021411048, -0.02435862, -0.03405419, -0.016593188, 0.031570446, 0.003856532, 0.012643142, 0.04584448, 0.0036040433, -0.002377135, -0.05105136, 0.016189206, 0.0018188542, -0.0025978289, 0.060477607, -0.014236626, 0.01159578, 0.00074203644, -0.055180952, 0.031959467, 0.02037865, -0.017894907, 0.016937321, 0.023475844, 0.015426128, 0.042492926, -0.0043689907, -0.0203188, -0.06804853, 0.053954042, 0.010937439, 0.025750114, -0.0006854602, -0.03183977, 0.017999643, 0.024987036, 0.0073090824, -0.0018936658, -0.008528509, 0.028727612, 0.008064678, 0.00794498, -0.0067554773, 0.014812674, 0.014573278, 0.01211198, 0.07924033, 0.012538405, 0.043420587, 0.026303718, 0.013825162, 0.027590476, 0.03587959, -0.005749263, 0.012942387, -0.040098958, -0.03920122, 0.023401033, -0.028084232, -0.005098403, -0.009433729, -0.0050123697, 0.03432351, 0.044019077, 0.008109565, 0.008326518, 0.010249173, -0.0067966236, 0.019032042, -0.007847725, 0.023565618, 0.024029449, -0.017610624, -0.03671748, 0.005165733, 0.0070883883, 0.012964831, -0.026797475, -0.07062204, -0.015471015, -0.02598951, 0.032468185, 0.0031738773, -0.028248817, -0.03692695, -0.042163756, 0.0046121283, -0.014535872, 0.020169176, -0.0004710786, -0.010750411, -0.014049597, 0.024702752, -0.0010595177, 0.02676755, -0.031121578, 0.055569973, -0.051829398, -0.052098718, 0.025301244, -0.005386427, 0.001621539, -0.036238685, -0.040787224, 0.020139253, -0.021500822, 0.01719168, 0.033306073, -0.008019791, 0.02233871, -0.015590714, -0.014438617, 0.0049787043, -0.013914936, 0.0059924, 0.000083403116, 0.023041938, -0.004017377, 0.022578107, -0.003770499, 0.027276268, -0.007503592, 0.014116928, 0.042193677, -0.04207398, -0.014730382, -0.0041595185, 0.017805133, 0.019136779, 0.029490689, 0.029415876, -0.0014242237, 0.007484889, 0.012269083, -0.020094365, -0.008296594, -0.019720308, 0.025031924, 0.045904327, 0.009216775, 0.03210909, -0.032917053, 0.06320074, 0.016787698, -0.008072159, -0.060806777, -0.04096677, -0.047400557, -0.030792408, -0.009628238, -0.033904567, 0.011326459, -0.011640667, 0.035340946, 0.01765551, 0.040398203, -0.0014681754, -0.01713183, 0.0031215092, 0.013368812, -0.028772498, 0.011453639, -0.0014148722, -0.003979971, -0.015164289, 0.04554523, 0.009127001, 0.01744604, 0.0011483564, 0.043540284, 0.0005288237, 0.020214064, -0.006037287, 0.014498466, 0.0295655, 0.056377936, 0.0009847062, -0.0039575277, -0.018328814, -0.021455934, 0.019331288, 0.011730441, -0.091210164, 0.0031832287, 0.021141727, 0.024583055, 0.0003413274, -0.005640786, 0.01744604, -0.040787224, -0.015979733, -0.026258832, -0.020468423, 0.050841887, 0.029909633, -0.0026988243, -0.007305342, -0.0038415699, -0.007092129, 0.0038116453, 0.010840184, -0.027036872, -0.051350605, 0.021934727, 0.014700457, -0.026483266, -0.036986798, 0.037884537, 0.02025895, -0.0062542404, 0.0007481149, -0.039709937, 0.0095908325, -0.023475844, 0.010488571, -0.00917937, 0.006276684, 0.009845192, -0.037345894, 0.02812912, 0.025361095, -0.0019376175, -0.004657015, 0.02194969, -0.007795357, 0.0013559582, 0.015785223, 0.008805312, -0.022458408, 0.0315106, -0.023012014, 0.03426366, 0.017057018, 0.013451105, 0.0060933954, -0.026139133, -0.0010370743, -0.004357769, -0.009426247, 0.0124336695, 0.002891464, -0.011992281, -0.036448155, 0.04324104, 0.032587882, 0.02800942, 0.033515546, -0.031181429, 0.010802778, 0.026273794, 0.022682842, -0.022832466, -0.029864745, -0.05203887, 0.03288713, -0.005887664, 0.027006947, -0.01490993, 0.019331288, -0.035281096, -0.020139253, 0.05946017, 0.020977141, -0.015321393, -0.03381479, 0.012037168, 0.01790987, 0.0046794587, 0.042881943, 0.021635482, -0.017640548, -0.036687553, -0.039320916, 0.00899234, 0.0072716763, -0.014498466, 0.011341421, 0.007974904, -0.013458586, 0.006987393, -0.039470542, 0.009680606, 0.038542878, -0.016009659, -0.02709672, 0.004211887, -0.010047182, -0.014894967, -0.03908152, -0.009852673, -0.0063851606, 0.025765076, 0.022563145, -0.011565856, -0.027635364, 0.025839888, 0.051230907, 0.04024858, -0.028622875, -0.01485008, -0.029670235, -0.0057081166, 0.02970016, -0.0110571375, -0.031540524, 0.014610684, 0.023819977, 0.007301601, -0.005165733, -0.06188406, -0.05188925, 0.034532983, -0.026258832, -0.03842318, -0.0047467886, -0.016293941, 0.005255507, 0.019944742, 0.0011997892, -0.0089025665, -0.0021265165, 0.006714331, 0.02136616, 0.011969838, 0.011161874, -0.022159163, -0.07469179, -0.028862271, 0.020662932, 0.021800067, -0.0015803927, -0.009014784, 0.032528035, 0.020229027, -0.0043016607, 0.00008726059, 0.0015775872, -0.020094365, -0.04850777, 0.007380153, 0.03177992, 0.011094543, 0.014154334, -0.049734678, -0.011648148, 0.03797431, -0.006231797, 0.0020236508, 0.0035610269, -0.0064337878, -0.023475844, -0.02859295, 0.01321919, -0.03770499, -0.029685197, -0.0463532, -0.010316504, 0.001237195, 0.029056782, 0.023730204, -0.035999287, -0.027710175, -0.023041938, 0.002534239, -0.029191442, 0.002466909, 0.0066058543, 0.001478462, -0.009478616, 0.0406376, -0.015650563, 0.00917937, 0.0022368634, 0.014356324, 0.0068003642, 0.008610802, -0.0057155974, -0.0038527916, -0.016024621, -0.017401151, -0.00026487943, 0.018209117, -0.014857561, -0.016189206, -0.007967424, 0.001048296, 0.0046532745, -0.02325141, 0.026333643, -0.028847309, 0.0018665466, 0.009785342, -0.07098114, 0.0073277852, -0.029071745, 0.008842718, 0.0312712, 0.0058577396, -0.0060672117, -0.016234092, -0.015298949, 0.015456053, 0.009299068, 0.022233974, 0.021874879, 0.013234152, 0.033246223, -0.044707343, -0.023012014, -0.0056183427, -0.0071931244, -0.0110346945, 0.0010015388, -0.0051732142, -0.019869931, -0.0037405742, 0.013787757, -0.010054664, -0.00338709, 0.0010258525, -0.013024679, -0.0018609357, 0.023071863, 0.010264136, 0.0049600014, 0.004350288, 0.0312712, -0.002898945, -0.00096600334, 0.015785223, -0.0067517366, 0.00859584, 0.011386308, -0.016024621, 0.0045747226, 0.0042567737, 0.010077108, -0.027410928, 0.009538464, 0.015575752, 0.0132117085, -0.004825341, 0.015560789, 0.028188968, 0.031989392, -0.0019843746, -0.028308667, -0.024268847, 0.008102084, -0.017954757, 0.01686251, 0.017505888, -0.012875057, -0.012942387, -0.0069799116, -0.018149266, 0.03067271, 0.026617927, -0.0072529735, -0.015710412, -0.011640667, -0.008954935, 0.0626621, 0.014805193, -0.0124336695, 0.027051834, 0.025645377, 0.016338829, 0.03348562, -0.013114453, 0.011558374, 0.0060859146, 0.04701154, -0.0069799116, -0.01361569, 0.019286402, 0.019959705, -0.010720486, -0.07050235, -0.005913848, -0.0061382824, -0.023760129, -0.014296475, 0.0045223543, 0.004570982, 0.012261603, -0.0068415105, -0.010107032, 0.012239159, -0.018194154, 0.013974786, -0.016443565, -0.0125009995, -0.007256714, -0.018777683, -0.019854968, -0.032408334, 0.047759652, -0.025361095, 0.00074343913, -0.015545827, 0.01868791, 0.02051331, 0.07379405, 0.00044536212, 0.0018833792, -0.015141845, -0.0066133356, 0.030523086, 0.014618165, -0.0056220833, 0.020408574, 0.009007303, 0.03941069, 0.015156807, -0.02350577, 0.00025131984, 0.015321393, -0.02690221, 0.013294001, -0.0024556872, 0.017999643, -0.0026296237, 0.047580104, 0.0061457637, -0.0076756584, 0.011924951, 0.020199101, -0.0055061253, 0.018224077, -0.009680606, -0.029430838, -0.013323925, -0.026213946, 0.017954757, -0.012059611, 0.011042176, -0.014191739, -0.011311497, 0.010211768, -0.007907574, -0.025884774, -0.0054387953, -0.007372672, -0.0664326, -0.008161933, -0.024283808, 0.019047005, 0.009141964, -0.016757773, -0.031151503, -0.010398797, 0.029011894, -0.015381241, 0.019376175, -0.005932551, -0.013062086, -0.006474934, 0.00041847676, -0.06391893, -0.0066619627, -0.020049479, 0.008259188, -0.0010277228, 0.020348724, 0.008827755, 0.014072041, -0.0095908325, -0.033186376, -0.014932373, -0.004391434, 0.016697925, 0.0024968334, 0.0032860946, 0.016114395, 0.036388308, -0.00911952, -0.0017683565, 0.006011103, 0.021650445, 0.036567856, 0.017730322, 0.011289054, -0.0070060957, -0.005401389, 0.030852256, 0.019032042, 0.014969778, -0.014408693, -0.015845073, 0.021590594, -0.035101548, 0.013593247, -0.002951313, 0.025645377, -0.031480674, 0.026707701, 0.0025117956, -0.003953787, 0.0010062145, 0.02521147, -0.011872583, -0.025540642, -0.010750411, 0.016129356, -0.020438498, 0.017057018, -0.014079521, -0.009321511, -0.033695094, 0.0035703783, -0.008618283, 0.024179073, -0.028892197, -0.032617807, -0.0150221465, -0.0110721, 0.0009912523, -0.027410928, -0.000027338338, 0.023116749, 0.008842718, -0.00013840126, 0.032976903, 0.040727373, -0.018029569, -0.0056968946, -0.017715361, 0.02115669, 0.009605795, 0.039829634, -0.014707938, 0.042492926, -0.024268847, -0.01224664, 0.03537087, 0.030448275, -0.015650563, -0.005367724, -0.017401151, -0.0011390048, 0.017700398, -0.02624387, 0.055001404, -0.0092915865, -0.012186791, -0.0062504997, -0.01517925, 0.0033365923, 0.015261543, 0.007372672, 0.028174005, -0.0016299553, -0.0034244957, 0.008670651, 0.0035030479, 0.0050198506, -0.026498228, 0.011318978, -0.0304782, 0.037076574, -0.016593188, -0.012822689, 0.00742504, -0.025809962, -0.004357769, -0.010189325, 0.0029962, 0.014535872, 0.013690502, -0.010383834, 0.01146112, -0.017042058, 0.011580818, -0.0132117085, -0.012463594, -0.008251707, -0.0026857324, -0.01790987, -0.011079581, 0.025286283, -0.028548064, 0.0053752055, 0.008132009, -0.034084115, 0.019271439, 0.0016851288, 0.029146556, 0.0064898967, 0.008910048, -0.01621913, -0.040876996, -0.018523324, 0.013301482, -0.025809962, 0.030104142, 0.028742572, 0.02709672, -0.0062168348, -0.0009931225, 0.015007184, 0.003523621, -0.00899234, 0.019436024, 0.021066915, -0.012291527, -0.01660815, 0.024912225, 0.014476023, 0.019286402, -0.0014223534, -0.017221604, -0.0019095632, 0.00683777, -0.015725374, 0.014229145, 0.016757773, -0.031181429, 0.013017199, 0.0057717063, 0.00071865786, 0.011281572, 0.010069626, -0.011176836, -0.00014529793, -0.005932551, -0.004391434, -0.0018665466, 0.0026745107, -0.022174126, -0.0110721, -0.0045485385, -0.017401151, 0.023924714, 0.018014606, 0.021874879, 0.026677776, -0.013668058, 0.018463476, -0.027066795, 0.00087950256, -0.01406456, 0.013817682, 0.03399434, 0.017745284, 0.026094247, -0.045365684, -0.019585647, 0.0008388238, -0.008289113, -0.027440853, 0.0051358086, -0.004772973, -0.00938136, 0.014842599, -0.0041108914, -0.017894907, 0.010107032, 0.01680266, -0.021096839, 0.01367554, -0.0033702576, -0.047759652, 0.00062561105, 0.019899856, 0.0020479644, 0.0069387653, 0.0007532582, 0.019510835, -0.009067153, -0.031211352, 0.018987155, -0.0035572862, -0.021680368, -0.00014728511, -0.012119461, 0.0020891107, -0.009972371, 0.017805133, -0.033126526, 0.03863265, 0.03968001, 0.004376472, 0.003536713, 0.00057604845, 0.0132790385, -0.010787817, 0.004342807, -0.008386368, -0.00046710423, -0.008378887, 0.030104142, 0.044827044, 0.000014268246, 0.017610624, -0.025720188, 0.0021770142, -0.01068308, -0.041056544, 0.017206643, -0.016907396, -0.021216538, -0.030852256, -0.038123935, -0.033964414, -0.054821856, -0.0071407566, 0.011835177, -0.0046457932, -0.006400123, -0.012074574, 0.04147549, 0.026198983, -0.02319156, -0.019510835, 0.0044699865, -0.0020947217, -0.0138999745, -0.026947098, 0.030343538, 0.034951925, 0.019032042, 0.012007244, 0.00050871813, 0.046203576, 0.03875235, -0.00074156886, -0.016922358, -0.01608447, 0.0031402123, -0.021844953, -0.008438735, 0.013870049, 0.006396382, 0.008565915, -0.03863265, -0.008087122, -0.00042712683, -0.01224664, -0.031690147, 0.0055921585, -0.0047318265, -0.019690383, -0.020079402, 0.00957587, -0.0034731233, 0.014543353, -0.018074455, -0.05685673, 0.009762899, 0.0039238627, -0.008408811, -0.00089446484, -0.019002117, -0.0066731847, -0.013301482, -0.0006826548, 0.024657866, 0.023490807, 0.0152391, -0.03225871, 0.00001779695, -0.018418588, 0.024508243,
2286
- 5.296712e-7,
2287
- -0.0003794345, -0.008498585, 0.029909633, -0.039320916, 0.023909751, 0.0056482675, 0.005221842, 0.016338829, -0.004664496, 0.0011221723, 0.034173887, -0.006370198, -0.016204167, 0.023086825, -0.042881943, 0.007137016, 0.010585825, 0.024538167, 0.02156067, 0.0146555705, 0.0089025665, 0.005588418, 0.016159281, 0.007757951, -0.0017038316, -0.004720605, -0.011079581, 0.010787817, -0.023864863, 0.0295655, -0.013398738, -0.0044587646, -0.045754705, 0.007855206, 0.0099798525, -0.02194969, 0.00010666482, -0.013009718, 0.008962416, -0.02663289, -0.010413759, -0.009493577, 0.0312712, 0.0001906524, -0.0076419935, -0.0045822035, 0.026019435, -0.00742504, 0.000025789506, -0.0058390363, -0.0044138776, 0.009493577, -0.009433729, 0.036029212, 0.014408693, 0.0059961407, -0.0081694145, -0.020737745, -0.02820393, -0.031241277, 0.019884894, -0.004649534, 0.003289835, -0.00410341, -0.019720308, -0.01687747, 0.0019881153, -0.020303838, -0.02449328, -0.025869813, -0.03746559, -0.021096839, -0.0031289905, -0.011805252, -0.00088090525, -0.009545946, 0.02923633, 0.011191798, -0.00088090525, 0.0022387337, -0.0037892018, -0.046562668, 0.017236566, 0.0035741187, -0.003308538, -0.024508243, 0.025361095, -0.012530924, 0.0017215994, -0.023356145, -0.0037873315, 0.02721642, 0.04584448, -0.037226196, -0.0026127913, -0.015725374, -0.025720188, 0.006617076, 0.018942269, -0.018463476, 0.012747877, -0.009762899, 0.009037227, 0.01569545, -0.0032056721, -0.010466127, -0.01458824, 0.020064441, 0.022129238, -0.00494878, 0.006635779, -0.026468305, -0.01583011, 0.005659489, -0.01627898, -0.006276684, -0.0026090506, -0.011506007, 0.018014606, 0.0030990657, -0.0076906206, -0.016368754, -0.023984563, 0.007196865, -0.0078252815, 0.0007560636, -0.016967244, 0.010054664, -0.006142023, 0.013840125, 0.0026726404, 0.0014532132, 0.004982445, -0.004174481, -0.004630831, 0.0036264868, -0.03061286, -0.013047123, -0.022757655, -0.013690502, -0.0016308904, 0.0009940576, 0.0013606339, -0.019720308, -0.0153662795, 0.01627898, 0.017027095, 0.026498228, 0.015994696, 0.025839888, 0.0039313436, 0.0076569556, 0.002657678, -0.008341481, 0.015269024, -0.031540524, -0.0076232906, 0.0027979496, 0.0022144201, -0.0050198506, -0.005569715, -0.01882257, -0.015725374, 0.026752587, 0.028577987, 0.0078178, 0.0048515247, -0.025809962, -0.0075447382, -0.00410341, 0.025824925, -0.023849903, 0.01790987, 0.03354547, 0.004615869, -0.010780335, 0.009695569, -0.0027568033, -0.004589685, -0.019840006, 0.004619609, 0.009164407, -0.00813949, -0.009373879, -0.015800186, 0.012852614, -0.015231619, 0.02494215, 0.015485978, 0.02057316, 0.009044709, 0.0157553, 0.016907396, 0.003968749, 0.0010903775, -0.02904182, 0.04183458, -0.007713064, 0.03438336, 0.020034516, 0.010870109, 0.006336533, -0.005262988, 0.004032339, 0.020393612, 0.014199221, 0.019106854, -0.0030654008, 0.03522125, 0.04108647, 0.010653156, -0.021141727, -0.016323866, 0.0022293823, 0.0011885675, -0.0021994577, -0.015276506, 0.04422855, -0.012508481, -0.026677776, -0.008678133, 0.012052131, -0.034562908, -0.0113788275, 0.0053490214, -0.0061195795, -0.013451105, -0.009762899, 0.02422396, -0.0036956875, -0.021261424, 0.028682724, -0.005674451, -0.009343955, 0.012927425, -0.0143338805, -0.0006807845, -0.004780454, -0.0026445861, 0.027141608, -0.028937083, -0.027381005, -0.013226671, 0.010271617, -0.0030691412, 0.011842659, 0.0021134245, -0.011453639, -0.0047056424, -0.04114632, 0.010585825, 0.009343955, 0.002807301, 0.020797594, 0.004982445, -0.01915174, -0.023760129, 0.0075185546, 0.024598017, -0.023819977, 0.010121994, 0.010466127, 0.0052143605, 0.023326222, 0.0077355076, -0.0042941794, 0.0023546915, -0.018119343, -0.0002485144, 0.008872642, 0.005779187, 0.03210909, -0.0088801235, -0.014490985, 0.0007429716, 0.00065273023, -0.0032730026, 0.006201872, 0.0032767432, 0.028967008, -0.0074212993, 0.042612623, -0.035520494, 0.0156356, 0.008117046, -0.014259069, 0.012897501, 0.012321452, -0.0035067885, -0.026827399, 0.0011231074, -0.02156067, -0.0052143605, 0.0069350246, -0.0031813586, -0.0072342707, -0.0024781304, 0.00018457396, -0.01835874, -0.00009655357, -0.014184258, -0.0030055514, 0.013181784, -0.010331466, -0.017341303, 0.003478734, -0.0031869693, -0.0009762899, -0.0073577096, -0.021800067, 0.029610386, 0.022967126, -0.027156569, -0.02664785, 0.03953039, -0.005072219, 0.006325311, 0.005824074, 0.0020554457, -0.02084248, -0.014431136, -0.0076606963, -0.025450869, 0.017461002, 0.017221604, 0.007398856, -0.0070060957, 0.0019320067, -0.008670651, -0.0156356, -0.0071033505, -0.016982207, 0.026333643, 0.006108358, -0.027695213, 0.023939677, -0.023775091, -0.00027469842, 0.0067218123, -0.0066619627, 0.0006494572, 0.018837532, -0.021994578, 0.011902507, 0.009493577, -0.033306073, 0.0019787638, -0.0054612383, 0.008416292, 0.011693035, -0.011678073, -0.024059374, 0.0015990955, 0.018463476, 0.021964652, 0.00040164418, -0.012007244, -0.0015111921, 0.0009688088, 0.011760366, 0.010309023, -0.013353851, -0.010593306, -0.018179191, -0.024313733, 0.00047855973, -0.010211768, 0.019854968, 0.005932551, -0.023565618, 0.011969838, -0.009852673, -0.0032131535, 0.009134483, -0.00253985, -0.019136779, -0.0038079047, -0.013645615, 0.009037227, -0.018987155, -0.00214896, -0.018493399, -0.006785402, 0.008820274, 0.00086126727, 0.011131949, -0.052338116, -0.01237382, -0.0147229, 0.0066470006, -0.0033253706, -0.008416292, 0.004832822, 0.022712767, 0.02800942, -0.010054664, -0.022503296, 0.01660815, -0.005072219, 0.011610743, 0.009336473, -0.00996489, 0.010458645, -0.031420823, 0.013989748, -0.0008112371, -0.0024407248, -0.025510717, 0.012059611, -0.017610624, 0.006344014, -0.006115839, -0.0074287807, 0.02051331, -0.0037218714, 0.011453639, 0.0064711934, -0.0032225049, 0.0036975578, 0.036089063, -0.003229986, -0.006501118, -0.0044924296, -0.026288757, -0.015560789, 0.017341303, 0.027410928, -0.004664496, -0.014094484, 0.007107091, -0.0028895936, 0.0013849477, 0.0059961407, -0.02449328, -0.016054545, 0.024852376, 0.0033365923, -0.025376055, -0.0032150235, 0.0019563204, -0.01283017, -0.020468423, 0.006022325, 0.03764514, -0.043360736, -0.012740396, -0.0068489914, 0.002663289, -0.025391018, -0.000924857, -0.03587959, -0.009882597, 0.011693035, -0.0014447968, 0.0031252499, 0.0047617513, -0.024912225, -0.04207398, -0.024044411, -0.027635364, 0.02820393, -0.021336235, -0.016024621, 0.011087063, 0.008797831, 0.020603083, 0.0026464562, -0.026617927, -0.011012251, 0.019884894, -0.01374287, -0.01777521, 0.012149385, -0.016638074, -0.006598373, 0.00397249, -0.0024313733, 0.030882182, -0.01185762, -0.00009059203, -0.03354547, 0.011393789, 0.02643838, -0.022219012, 0.023939677, 0.010084588, 0.0019123686, -0.012074574, 0.017251529, 0.012052131, -0.0028353552, -0.0010174363, -0.0044886894, -0.016982207, 0.018164229, 0.008004829, -0.011782809, 0.008326518, -0.023012014, -0.044138778, 0.0040024146, 0.02181503, 0.0028447069, 0.023924714, -0.027725138, 0.0016561393, 0.033036754, 0.005360243, 0.007305342, -0.024538167, -0.006845251, 0.01439373, -0.0029382212, 0.008109565, 0.037944388, 0.007997348, -0.0038378292, -0.025061848, 0.015815148, -0.011678073, -0.009912522, 0.014386249, 0.032976903, 0.002077889, 0.035849664, 0.012456113, -0.018867457, -0.0015457923, -0.0027306192, 0.04473727, 0.005098403, 0.020962179, -0.014745344, 0.002519277, -0.030313615, -0.0001559352, -0.018523324, 0.0062841647, 0.009104558, -0.000070720234, -0.0045822035, 0.0055659744, -0.0007705583, -0.0000198718, -0.019301364, 0.009358917, -0.020647971, 0.00840133, -0.005902626, 0.0139448615, -0.019555723, -0.0049263365, -0.013959823, -0.011042176, -0.023236448, -0.0049525206, -0.0014447968, 0.0046345717, 0.0040024146, -0.004346547, 0.006961209, -0.004963742, 0.038572803, -0.0030504384, -0.025391018, 0.007967424, 0.030627823, 0.009605795, -0.01790987, 0.0115883, 0.0026408455, -0.020618046, 0.022159163, -0.008850199, 0.0035872108, 0.0138999745, 0.050961584, 0.065834105, -0.019076928, -0.003439458, 0.012860094, 0.0016234092, 0.014932373, -0.011558374, -0.01406456, -0.002369654, -0.017490925, -0.011423714, -0.025450869, -0.024897262, 0.012486037, -0.011049656, 0.020947216, -0.021874879, 0.003849051, 0.056826804, 0.0043203635, 0.00813949, -0.014962297, 0.014438617, -0.01621913, 0.014603202, 0.010877591, 0.0065946328, 0.021964652, 0.020408574, 0.012613216, -0.020722782, -0.022952164, 0.0068265484, 0.0027044353, 0.021650445, -0.0006148569, -0.0070360205, -0.007440002, 0.01230649, -0.0030448276, 0.018987155, -0.0022780097, 0.017610624, 0.00983771, 0.016069507, -0.001816984, -0.01074293, 0.010077108, -0.0051283273, 0.020393612, -0.000119113916, -0.0009734845, 0.0017954757, -0.005191917, 0.00017113128, 0.002897075, 0.004133335, -0.0043652505, -0.0042679952, 0.0020367426, 0.0077654324, -0.008895086, 0.003308538, 0.006153245, -0.0015794575, -0.0061644665, -0.013106973, -0.010929958, 0.020543234, 0.012299009, -0.003373998, -0.0071295346, 0.028967008, -0.0231766, -0.0018646764, 0.010166881, -0.0017403022, -0.002481871, 0.0075372574, -0.007787876, -0.019884894, -0.0064038634, -0.015471015, -0.016967244, 0.006362717, -0.008371405, -0.0047056424, -0.0062504997, -0.0064038634, -0.00038060345, 0.00032098804, -0.010638193, 0.007930018, 0.00068358995, 0.014072041, 0.010151919, -0.012688028, 0.002781117, 0.013017199, 0.020872405, 0.0037274824, 0.02084248, -0.000010505753, 0.010593306, -0.0027343598, -0.0025155363, 0.016757773, -0.0056669703, 0.026124172, -0.010009777, -0.006213094, 0.0073240446, 0.03273751, 0.007915055, 0.014535872, -0.0025940882, 0.0003434315, -0.018508362, 0.0049001523, 0.01843355, -0.00064384635, -0.01452091, -0.018343776, -0.020154215, 0.0053826864, 0.0121568665, 0.022772616, -0.007937498, -0.032677658, -0.02292224, -0.012194272, 0.0033908307, -0.004735567, 0.00004579281, -0.010608269, 0.00364706, 0.006362717, 0.012261603, -0.004499911, -0.004544798, 0.004825341, -0.0063776793, -0.015800186, -0.00983771, -0.014760306, 0.014610684, 0.0044774674, 0.0026745107, 0.011782809, 0.0018356869, 0.008079641, -0.010548419, -0.03243826, 0.01068308, 0.010668118, 0.0065123397, -0.0040024146, -0.008416292, -0.01354836, 0.008648207, -0.009643201, -0.0059063667, -0.0057717063, 0.003628357, -0.023879826, 0.024014488, 0.015381241, 0.032139014, -0.008064678, 0.021081878, -0.011161874, 0.008887605, -0.0010249174, -0.005719338, 0.00053116155, -0.013720427, -0.007391375, 0.0037087793, -0.0069462466, 0.014431136, 0.008625764, 0.006310349, 0.0016552041, -0.0088801235, 0.0013709205, -0.021246463, -0.0039163814, -0.011274091, -0.009284105, -0.008910048, 0.0048552654, -0.0006143893, -0.0078103193, -0.01653334, -0.011161874, -0.013077048, -0.0035423238, 0.019630535, -0.001765551, 0.00820682, -0.0050048884, 0.0060335463, 0.019047005, -0.009321511, 0.013593247, -0.018403625, 0.010338947, -0.007062204, 0.005105884, 0.020737745, -0.055659745, -0.011947394, 0.003158915, -0.016982207, 0.006168207, 0.01354836, -0.0002188236, -0.011895026, 0.025869813, -0.0033160192, 0.014880004, -0.017012132, 0.010443684, 0.010054664, 0.015171769, 0.007589625, -0.0017449779, 0.0248823, 0.020857442, -0.0010529717, 0.0004970288, -0.040428128, 0.00035301672, 0.0052704695, 0.009777862, 0.02845829, 0.01901708, -0.013922418, 0.0006246759, -0.023550656, -0.01204465, -0.012216716, -0.0028690204, 0.016503414, 0.007802838, -0.014603202, -0.003282354, 0.0070509827, 0.0048664873, -0.000029442412, 0.021126764, -0.0064225662, -0.0005236804, 0.0048216004, 0.011506007, -0.016668, -0.012957349, 0.0135782845, -0.011483563, 0.011760366, 0.0023135452, 0.0073689315, 0.0061794287, -0.00021309585, -0.0071332753, -0.00892501, -0.004728086, -0.005150771, -0.007847725, 0.014505947, -0.015261543, -0.0029962, 0.01393738, 0.041924357, 0.02148586, -0.029655274, -0.0029718864, 0.0054986444, 0.003998674, 0.009740456, -0.030208878, 0.0030635304, -0.010982326, 0.004058523, -0.005158252, 0.018702872, 0.0020236508, -0.010847665, 0.006351495, 0.038722426, 0.013077048, -0.0027175273, -0.013630653, -0.0044512833, 0.0024089299, 0.0021171651, -0.02618402, -0.0073090824, 0.0044512833, 0.013795238, 0.0009828359, 0.0028035606, -0.00041520374, 0.012890019, 0.026797475, -0.0037761098, 0.008827755, 0.009994814, 0.014775269, 0.0027175273, 0.010309023, 0.011775328, 0.004226849, -0.020094365, -0.014505947, 0.01934625, -0.002377135, 0.023760129, -0.020812556, 0.014490985, -0.020857442, 0.000053770756, -0.012568329, -0.012987274, -0.006362717, 0.021126764, -0.019436024, -0.015201694, -0.013466068, -0.02768025, 0.015860036, -0.0052592475, 0.0028091713, 0.010032221, 0.019705346, 0.00983771, -0.026393492, 0.03166022, -0.013802719, 0.015785223, -0.013705464, -0.013039642, 0.0051993984, -0.0033328517, 0.006976171, -0.0036825954, -0.010234212, -0.012067093, -0.0026745107, 0.020483386, 0.001517738, -0.018643022, -0.0060597304, -0.0017487186, -0.012104498, -0.0120895365, 0.00080983434, 0.002747452, -0.008326518, -0.0074212993, -0.009732975, -0.017864984, -0.0049525206, -0.004193184, -0.015785223, -0.004772973, 0.015276506, -0.006927544, -0.0049712234, -0.000354887, 0.0009323382, -0.0061120987, -0.016204167, 0.0020704078, -0.013466068, 0.014767787, -0.019735271, 0.01159578, 0.022413522, -0.007151978, -0.0014550834, -0.013840125, -0.010570863, 0.009725493, -0.005943773, -0.0008285372, 0.010929958, 0.018283928, 0.00011093141, -0.00794498, -0.009643201, 0.007802838, -0.010032221, -0.01946595, -0.011693035, 0.015104439, 0.004032339, 0.036029212, -0.01752085, -0.003901419, 0.0014906189, 0.006785402, 0.0035460645, 0.006703109, -0.014797712, -0.0015205435, 0.027964534, -0.00029644053, -0.00859584, 0.020064441, 0.003003681, 0.015014665, -0.005775447, -0.021470897, -0.0056707105, 0.02598951, 0.021216538, 0.010361391, 0.027635364, -0.010413759, -0.0024930928, -0.0009398193, -0.010107032, 0.0061008767, 0.029655274, 0.0056482675, 0.0075110733, 0.0026932135, 0.030971956, -0.0136007285, -0.0059624757, -0.0054275733, -0.0073951157, 0.023790052, 0.0065609673, -0.009703049, 0.008416292, -0.004167, -0.009553427, 0.010181843, -0.016264018, -0.006160726, -0.010406278, 0.035939436, 0.021530746, 0.015381241, -0.004305401, -0.0061457637, 0.019421062, 0.013750351, 0.017550774, -0.0089025665, -0.014363806, -0.000351614, 0.009987334, 0.02721642, -0.024912225, 0.0014644349, 0.011049656, -0.018373702, 0.014027154, -0.0012016596, 0.0020273912, 0.002573515, 0.019316325, -0.0014419914, -0.010660637, 0.016144319, 0.0056520076, 0.015283987, 0.0075971065, -0.0076681776, 0.0012082055, -0.0065871514, 0.019914817, 0.013024679, -0.0066769253, 0.04030843, 0.005853999, 0.005087181, -0.0069649494, 0.011498526, -0.020348724, -0.02507681, 0.006022325, -0.0044400617, -0.00048019624, -0.022413522, -0.0066806655, 0.020543234, -0.0041408157, 0.018717835, -0.00060597307, -0.01452091, -0.00892501, 0.015336355, 0.0106905615, -0.007496111, 0.019735271, -0.0045373165, -0.0019638014, -0.005457498, -0.002663289, -0.0065160803, -0.0033141489, -0.015515902, 0.0025005739, -0.0027661547, 0.02181503, -0.0023621726, -0.0070883883, 0.010914996, 0.008079641, -0.0013625042, 0.008132009, 0.035191324, 0.012695509, 0.019840006, -0.0031439527, 0.014737863, 0.008319037, -0.0013166822, 0.020094365, 0.010166881, 0.0063926415, -0.0008037559, 0.02181503, -0.0071594594, 0.0054986444, -0.0015373761, 0.0012484167, -0.0066208164, 0.016697925, -0.00723053, 0.0057567437, -0.011902507, 0.0021134245, -0.007974904, 0.014094484, -0.000032993034, -0.01217931, 0.012456113, 0.0001625981, 0.03028369, -0.023909751, 0.005491163, -0.007002355, 0.007604588, 0.025570566, -0.010443684, 0.035340946, 0.008760425, 0.0008486428, 0.007451224, 0.014543353, -0.007267936, 0.0146780135, 0.016204167, 0.0024407248, -0.0016982207, 0.021081878, 0.013376294, 0.007698102, 0.008820274, 0.008999822, 0.018493399, 0.006089655, -0.0031177688, -0.0027381005, -0.00036190057, 0.0077355076, -0.0044138776, -0.00018013203, 0.01934625, 0.0074325213, -0.0066282977, -0.0019039523, 0.0032917054, 0.0020498347, 0.014550834, -0.00351614, 0.009912522, -0.020633008, 0.013316445, 0.008954935, -0.016907396, 0.006400123, -0.0023659132, 0.0054275733, -0.0017730322, 0.0070996103, -0.0088801235, -0.0009912523, -0.01478275, 0.0077205454, 0.009171888, 0.0099574085, 0.013593247, -0.00015792238, 0.005640786, 0.0028016903, -0.009209294, -0.0240893, -0.00057932147, -0.02455313, 0.018523324, 0.0143338805, -0.011206761, 0.013653097, -0.015336355, -0.0000029332823, 0.0004937558, -0.021470897, 0.009613276, -0.014363806, -0.015426128, -0.01855325, -0.021321274, -0.017640548, 0.00989756, 0.015560789, 0.018164229, -0.008363924, 0.0041894433, -0.0022948424, 0.030448275, -0.013877531, -0.011610743, 0.017176718, -0.012411226, -0.014012191, 0.0028708908, -0.003968749, 0.01934625, 0.01452091, 0.024283808, -0.027740099, 0.0051358086, 0.0011988541, 0.0149997035, 0.033036754, 0.018538287, -0.0065273023, -0.03426366, 0.008296594, -0.00015172704, 0.0061195795, 0.0016888693, 0.019825043, 0.015052071, -0.0286528, 0.00031865019, -0.008782868, 0.0061794287, 0.013249114, 0.007047242, -0.011992281, 0.035281096, -0.022637956, -0.0072791576, -0.005719338, -0.009747936, -0.008356443, 0.016907396, -0.010241693, 0.00247439, -0.019091891, -0.002631494, -0.0015009055, -0.023296297, -0.0076681776, 0.004735567, 0.019690383, 0.00944121, -0.011610743, -0.010099551, -0.0036115246, -0.004316623, -0.020752706, 0.028548064, 0.0026801215, 0.009067153, -0.00043390662, 0.010047182, -0.0000071122054, -0.0046121283, 0.0071744216, 0.02904182, -0.0059624757, 0.01165563, -0.016234092, 0.004167, -0.013301482, -0.012897501, -0.0085359905, -0.0030897143, -0.0037162607, 0.012927425, 0.024074337, -0.0021265165, -0.0019245255, -0.007742989, -0.0075335167, -0.0031028064, -0.016578225, 0.0062504997, -0.013264077, -0.015800186, -0.009059671, -0.0039163814, 0.004436321, -0.005060997, -0.00038481157, -0.027410928, -0.007832763, -0.0012951739, 0.010107032, -0.012515962, -0.009396323, 0.00052601827, -0.0056520076, 0.00018363883, 0.012942387, -0.018478436, -0.0070247985, -0.010892552, -0.008296594, -0.016967244, 0.0022144201, 0.015216656, 0.0014597591, 0.0027212678, 0.011850139, 0.010084588, 0.00911952, 0.00046453258, -0.0058203335, -0.021979615, -0.015620639, 0.0037162607, 0.0000622455, 0.005977438, 0.009628238, 0.015283987, -0.022772616, -0.020408574, -0.0027193977, 0.0024725196, -0.00410341, 0.0024108002, 0.0041258535, -0.0063402737, -0.0053377994, -0.030762482, 0.0064824154, 0.018747758, 0.043510363, -0.0011595781, 0.0075447382, 0.0048178597, 0.0068415105, -0.013316445, 0.028084232, 0.0019525798, 0.00696869, -0.01406456, -0.02233871, 0.0059811785, -0.0015841332, -0.03920122, -0.0054799416, 0.002240604, 0.028099194, -0.014468541, 0.004918855, 0.0036021732, -0.007062204, 0.015770262, -0.012860094, 0.0012521573, -0.0032786133, -0.0032991865, -0.013338888, -0.01413189, -0.014109447, -0.00950854, -0.015164289, 0.008304075, 0.014042116, 0.011535931, -0.007638253, -0.008004829, -0.010249173, -0.01113943, 0.0024463355, 0.00044138776, 0.023296297, -0.014805193, -0.009695569, -0.007021058, 0.014498466, 0.011895026, 0.009516021, -0.0056669703, 0.028862271, 0.027261306, -0.013832644, 0.004544798, -0.004780454, 0.012104498, -0.02350577, 0.017116869, -0.0061382824, -0.001406456, 0.02292224, -0.0033515545, -0.0022593068, 0.0038714944, 0.009905041, 0.01660815, -0.009815267, 0.012231678, 0.0044886894, 0.004720605, -0.0143338805, 0.002702565, 0.0064076036, 0.03100188, 0.0031626555, -0.009785342, 0.0124336695, -0.019645497, 0.00775047, 0.014962297, 0.005060997, 0.000107483065, 0.0057679657, -0.0018730926, -0.041295942, -0.0060859146, 0.008117046, 0.016712885, 0.010413759, 0.0026520672, -0.019002117, -0.011760366, 0.0036190057, -0.016308904, 0.003308538, -0.015396204, -0.009807786, 0.0075971065, -0.02012429, -0.0055771964, 0.0015009055, 0.01361569, 0.00031233794, 0.0076158093, 0.026543116, -0.0074287807, -0.01765551, 0.001445732, 0.021590594, -0.002852188, 0.01270299, -0.022054426, 0.003342203, 0.0025155363, -0.0014476023, 0.0071893837, -0.017431077, -0.02690221, -0.027156569, 0.024463356, 0.015665526, 0.00113994, 0.020797594, 0.0077654324, 0.00050357485, 0.021470897, -0.008117046, 0.019106854, 0.007604588, 0.0121568665, -0.011146911, 0.002625883, -0.011707998, -0.00917937, 0.008588359, -0.0044886894, 0.0015214786, 0.003927603, -0.008004829, -0.0021863657, -0.012321452, 0.010832704, 0.01061575, 0.010241693, -0.007698102, 0.012029687, 0.018014606, 0.024074337, 0.005580937, -0.019256476, 0.01967542, 0.012471075, -0.0075447382, 0.00032613132, -0.01732634, 0.011184317, -0.002364043, 0.0016963505, -0.0157553, 0.008296594, 0.005105884, 0.00827415, 0.014827637, 0.019091891, 0.017760247, 0.00036049786, 0.011977319, 0.00703228, -0.0031645258, -0.018119343, -0.03183977, -0.0049412986, 0.0006101812, 0.005640786, 0.0039313436, -0.0017758376, 0.0052293227, 0.008371405, 0.0048552654, -0.01921159, 0.0061943913, -0.017057018, -0.0037368338, 0.011895026, -0.01413189, 0.016264018, 0.021650445, 0.011019732, -0.0031570448, -0.030852256, 0.011161874, -0.0005868026, 0.0036115246, 0.007058464, -0.004376472, -0.0150221465, 0.013563323, 0.004253033, 0.033336, 0.019406099, 0.014939854, 0.0034955668, -0.019555723, -0.006549746, -0.0095683895, 0.008251707, 0.024238922, 0.0013176174, -0.00872302, -0.0031046767, -0.0021339976, 0.015014665, 0.00042549032, -0.00079113146, -0.0072978605, -0.012994755, -0.013308964, -0.0028746314, 0.010331466, -0.013510955, 0.012560849, 0.017116869, 0.010436202, -0.010316504, -0.0076681776, -0.00032098804, -0.0024631682, -0.0034562906, 0.015590714, -0.0056894138, -0.005940032, -0.011580818, -0.015119402, -0.010727967, 0.02012429, 0.011244167, 0.0028091713, -0.005966216, -0.0005638916, 0.017685436, 0.005880183, 0.012575811, 0.022159163, -0.029131593, -0.004507392, -0.0032449483, 0.0068415105, -0.006695628, 0.01348103, 0.019495873, 0.032946978, -0.011348902, -0.003237467, -0.022802541, -0.0042343303, -0.0071407566, -0.0110571375, -0.010181843, -0.020363687, -0.006400123, 0.005966216, 0.0022200309, -0.014341362, 0.001621539, 0.013039642, 0.005165733, -0.0034880855, -0.0063140895, -0.0073502287, -0.006549746, 0.027710175, -0.014341362, -0.03647808, -0.012890019, 0.010256655, 0.005973697, 0.018702872, 0.0050909217, 0.010698043, -0.0018955361, -0.0046121283, -0.0047580106, -0.021141727, -0.0044924296, -0.0059063667, 0.013712945, -0.013226671, -0.007885131, 0.02084248, -0.008423774, -0.019810082, 0.020214064, -0.00820682, 0.002513666, -0.022667881, 0.019226553, -0.014371286, 0.003667633, -0.0041595185, -0.003920122, -0.020034516, -0.0048627467, -0.014476023, 0.0066470006, -0.0026202723, 0.01960061, -0.01862806, 0.035939436, -0.0017057019, -0.0018123082, 0.0007429716, 0.018867457, -0.00045027165, 0.009112039, -0.0045672413, -0.0054088705, -0.006291646, 0.002964405, -0.012284046, 0.015919885, -0.010376353, -0.0012446761, 0.016817622, 0.00007954565, -0.020767668, 0.007398856, -0.011775328, 0.00071024155, -0.00027914037, -0.015441091, 0.0019581907, 0.012725434, -0.011251648, 0.011169355, -0.0027437112, -0.0368671, -0.0073128226, -0.0368671, 0.0032991865, -0.008393849, 0.0009239219, -0.0035741187, -0.018643022, 0.0076681776, -0.0053228373, -0.01901708, -0.015201694, 0.027141608, -0.006231797, 0.004421359, 0.008558434, 0.0050460347, -0.010929958, 0.00006849927, -0.021351198, 0.008034754, -0.022952164, 0.010907515, 0.011453639, 0.01159578, -0.02344592, -0.0024332437, 0.010525976, 0.009695569, -0.0032842243, 0.0012596385, 0.014087003, 0.013630653, -0.023041938, 0.022712767, -0.00983771, 0.010653156, 0.011827696, 0.015134363, -0.017969718, -0.014498466, -0.004589685, -0.0007074361, 0.005853999, 0.010914996, 0.009403804, -0.013323925, -0.012807727, 0.006912581, 0.019061968, -0.009261662, 0.017251529, -0.0035909514, 0.0061831693, 0.015560789, -0.026707701, 0.012650622, 0.010608269, 0.0041408157, 0.012882538, -0.013226671, -0.009792823, 0.013121935, 0.005281691, 0.027066795, 0.021904804, -0.025645377, 0.0030298652, -0.0037143903, 0.007802838, 0.0021059434, 0.0077803945, -0.004541057, 0.0014476023, -0.018912343, 0.0028821125, -0.011483563, -0.0059811785, -0.0010239822, -0.0020610564, -0.018328814, -0.0012502869, 0.005614602, 0.0035516752, -0.013391256, 0.021336235, 0.01674281, 0.0030990657, -0.009037227, -0.012904981, -0.035789814, 0.0073390068, -0.0036246164, 0.0077055832, -0.0024781304, -0.01152845, 0.0042642546, -0.0017057019, 0.0053490214, 0.008446217, -0.0071295346, -0.0022667882, -0.016922358, 0.0061831693, -0.01967542, -0.00332163, 0.008558434, -0.008506066, 0.0092466995, 0.0015897441, -0.0010333337, 0.03339585, -0.0014990352, -0.023071863, 0.010907515, -0.0061495043, 0.0106905615, -0.0078252815, -0.0120895365, -0.021022027, -0.028742572, -0.0165483, -0.013204227, 0.012059611, -0.030852256, -0.023730204, -0.04485697, -0.017864984, 0.0023341184, 0.014288994, 0.019436024, -0.015037109, -0.0033534248, -0.005853999, -0.023341184, -0.01608447, -0.0024594276, 0.014685495, -0.022518257, -0.0051694736, 0.0008065613, -0.0026913432, 0.004507392, -0.00080515863, 0.015605676, -0.011902507, 0.0028409662, -0.018702872, -0.00056763215, -0.022129238, -0.012994755, -0.016697925, -0.020363687, 0.00076401234, -0.012897501, -0.02012429, 0.02091729, 0.003145823, 0.01777521, -0.007698102, 0.00042899713, 0.025450869, -0.015126883, -0.015007184, 0.0009449626, 0.0011109506, -0.003185099, -0.020154215, 0.0092466995, 0.007959942, 0.025735151, -0.014386249, 0.012119461, -0.0076831398, -0.0076606963, -0.0027137867, -0.030523086, -0.011049656, -0.010114513, -0.0063290517, 0.007529776, -0.0025884775, -0.0013681151, 0.018867457, -0.017864984, -0.008655689, 0.0010062145, 0.02129135, -0.027500702, -0.01583011, -0.0012671195, 0.033964414, 0.015171769, 0.023341184, -0.013840125, -0.0070696855, -0.0128675755, 0.045694858, 0.002364043, 0.0028671501, 0.016159281, -0.0012914332, 0.0021545708, 0.0175807, 0.0024856117, -0.019989628, -0.0018609357, -0.007698102, -0.0005484617, -0.0027362301, 0.013009718, -0.003138342, 0.0073277852, 0.010271617, 0.006766699, -0.0019581907, 0.024508243, 0.02416411, -0.0046682367, 0.0010146308, 0.010885071, 0.02260803, 0.0017982811, 0.0074287807, 0.019421062, -0.0060597304, 0.01367554, 0.002762414, -0.008491104, 0.008102084, 0.006635779, 0.012201753, 0.006321571, -0.0068003642, 0.0068115857, 0.0027661547, -0.005633305, -0.0110721, 0.018194154, -0.004903893, 0.019495873, 0.0039463057, 0.0012325193, 0.005745522, 0.01946595, -0.009373879, 0.052278265, -0.0010557771, 0.0021770142, -0.005296653, 0.0011932432, -0.0016280849, -0.000062713065, -0.004937558, 0.0025473312, -0.004930077, 0.01244115, -0.02194969, -0.017475963, -0.004421359, 0.0025454608, -0.0055584935, -0.0073090824, -0.019735271, 0.024463356, 0.021515783, -0.00067938183, -0.00029737566, -0.015351317, -0.019854968, 0.011797772, 0.023086825, -0.015874997, -0.025031924, 0.0071669403, 0.0024238923, -0.007967424, 0.00057932147, -0.0036358382, 0.008685614, -0.010151919, -0.012007244, -0.008453698, -0.012067093, -0.008057198, 0.028697686, -0.0038527916, -0.022997051, 0.033784866, 0.02441847, 0.019899856, 0.004956261, -0.018224077, -0.004683199, 0.013593247, 0.003764888, 0.0057343002, -0.014887486, 0.013129416, 0.010219249, -0.008835237, 0.0114012705, -0.006609595, 0.010413759, 0.0017122478, -0.0043839533, -0.0057717063, 0.034772377, 0.03863265, 0.0017047668, -0.002891464, -0.00064291124, -0.013473549, 0.009538464, -0.008304075, 0.0011838918, -0.03145075, 0.002481871, 0.0061008767, -0.0064188256, 0.02610921, 0.0070547233, -0.0046719774, -0.009830229, 0.017700398, 0.003680725, -0.002350951, -0.007380153, 0.0045485385, 0.006759218, 0.012254122, 0.011393789, 0.0036620223, -0.026079284, -0.002760544, 0.0022144201, -0.0023210263, 0.015313911, -0.0023303777, 0.022622993, 0.02859295, 0.004769232, -0.018957231, -0.014707938, -0.0030429573, 0.021530746, -0.007713064, -0.0025286283, -0.016518377, 0.0014634997, 0.0044699865, 0.008199339, 0.0050497754, 0.002663289, 0.019525798, 0.016234092, -0.011004769, -0.0075971065, -0.0002403319, 0.014079521, -0.01946595, 0.031091655, 0.021216538, -0.0010165011, 0.014288994, -0.0054986444, -0.0067629586, -0.0085135475, 0.013032161, 0.013017199, -0.005255507, 0.025720188, 0.026064321, 0.01588996, -0.0078252815, 0.011064619, -0.0055173473, 0.000088078836, -0.0050198506, 0.0018936658, 0.000729412, -0.0045934254, -0.003463772, 0.0041408157, 0.026139133, 0.013062086, -0.011715479, 0.0026614186, 0.0040959287, -0.029625349, -0.009351436, -0.0072828983, 0.004619609, -0.0031102875, 0.006160726, -0.027994458, 0.00093374087, 0.003431977, 0.012261603, 0.0032842243, -0.015396204
2288
- ]
2289
- }
2290
- ],
2291
- "sources": [
2292
- {
2293
- "name": "source-https-ptbk-io-aa226da0e61396b9c9ae"
2294
- }
2295
- ],
2296
- "preparationIds": [
2297
- 1
2298
- ]
2299
- },
2300
- {
2301
- "name": "natural-language-programming-future-unveiled",
2302
- "title": "Natural Language Programming: Future Unveiled",
2303
- "content": "The company's vision is centered on natural language programming, where users write specifications in plain English that are then translated into working code.",
2304
- "keywords": [
2305
- "Natural language programming",
2306
- "specifications",
2307
- "plain English",
2308
- "code translation",
2309
- "user-friendly programming",
2310
- "code generation"
2311
- ],
2312
- "index": [
2313
- {
2314
- "modelName": "text-embedding-3-large",
2315
- "position": [
2316
- -0.010388855, 0.02246194, -0.014707818, -0.02152811, -0.0125316605, 0.025797045, 0.023262365, 0.028365076, -0.022211805, 0.023879359, 0.043623187, 0.01634202, -0.02924888, -0.0028640223, -0.023229012, 0.04002127, -0.036952972, 0.018943401, 0.006249155, -0.017359227, 0.013607233, 0.017034054, -0.017926194, 0.0078124856, 0.023212338, 0.01604186, -0.012631714, -0.0054820804, -0.012089759, -0.015858429, 0.006249155, -0.005536276, -0.01171456, -0.00794589, 0.003962523, -0.0048484104, 0.0034101459, -0.047591962, -0.029932575, 0.02831505, 0.007762459, -0.010655664, 0.0020062746, 0.02988255, 0.0061240885, -0.0057238755, 0.02372928, -0.017192472, -0.019777179, -0.034751803, 0.0050776987, 0.0051527387, 0.0346851, 0.025430184, 0.007203829, -0.011389387, -0.008066787, -0.0006227268, 0.027698055, -0.0033080082, -0.05319494, 0.014616102, 0.0053028185, 0.0027931512, 0.022945529, -0.015149719, 0.012523323, -0.012715092, -0.00850452, 0.06276669, -0.009088164, -0.04068829, -0.0032037862, 0.03361787, 0.0041501224, 0.030799704, -0.0046941615, 0.0012913113, 0.003939594, -0.015825078, 0.010063683, -0.045757655, 0.014557738, -0.039154146, 0.024929916, -0.027014358, 0.024946593, -0.060865685, 0.022078402, 0.0027598003, -0.003685292, 0.022295183, -0.0068744873, -0.03178356, 0.027798109, 0.022878828, -0.02331239, -0.0067410828, -0.037653346, 0.021761566, -0.016842285, -0.0044148467, -0.019827206, -0.025430184, 0.0045899395, 0.002503414, 0.033817973, 0.024913242, -0.027347868, 0.042355847, -0.0042209937, -0.026113879, -0.011989706, 0.015691673, -0.0072913757, 0.0024784007, -0.009596768, -0.05292813, 0.022895502, 0.023495821, 0.0017936617, -0.045090634, -0.00013757312, -0.046458025, -0.010889121, 0.001115176, 0.000921323, -0.0034664257, -0.0009833352, 0.023662576, -0.018659918, 0.056863558, 0.025847072, 0.012056408, 0.04912611, 0.058897972, 0.0228288, -0.020194067, 0.023795981, 0.02813162, -0.032717388, 0.01473283, -0.010889121, -0.04345643, 0.0037728387, 0.008587898, 0.0055487826, 0.04912611, -0.010797406, -0.044290207, -0.043222975, -0.049893185, -0.004706668, -0.0010119962, -0.0065826653, 0.004502393, -0.016792258, 0.0031016485, -0.005523769, 0.046458025, -0.0064701056, -0.023445794, -0.03133332, 0.00634087, 0.0010359673, 0.0056238226, -0.006307519, 0.04068829, -0.040188026, 0.024529705, 0.0012996491, 0.03745324, 0.03220045, -0.045490846, -0.010522259, 0.001327789, 0.013548868, -0.008779666, 0.025413508, 0.00012018107, 0.003435159, -0.004250176, 0.034451645, -0.0076123793, 0.02864856, 0.0072496864, 0.040388133, 0.017109094, 0.037053026, -0.030049305, 0.014707818, 0.024479678, -0.009379986, 0.005173583, 0.02174489, -0.025613613, -0.021828268, -0.0037957674, -0.041788876, 0.037586644, -0.01637537, -0.048692547, 0.021794917, 0.013081953, 0.0040625758, 0.02786481, -0.028915368, 0.0044398597, 0.010355504, 0.010755717, 0.06169946, -0.006428417, -0.027031034, -0.0052736364, -0.017859492, -0.021978348, -0.03168351, -0.038553827, -0.0010776562, -0.033634543, 0.0027785602, 0.0030078487, 0.038520474, -0.02801489, 0.020961141, -0.003312177, -0.028982071, 0.017042391, 0.024896566, 0.015908455, -0.009254919, 0.07417276, 0.018860023, -0.013924068, -0.014574413, -0.035418827, 0.039854515, -0.043923344, -0.057130367, 0.017892843, 0.011356036, 0.0046274597, 0.0007071467, -0.04999324, 0.04659143, -0.0048442413, -0.0015737531, 0.016733894, 0.009521727, -0.012598363, 0.005215272, 0.012148123, 0.011397725, 0.014599427, -0.042422548, 0.02566364, 0.042355847, 0.012840158, -0.012306541, 0.018426461, -0.02629731, 0.00006657184, 0.04308957, 0.020610955, -0.043022867, -0.036852922, -0.000017310633, -0.022311859, -0.00017835, 0.004689993, 0.05039345, -0.003585239, -0.0107390415, -0.009963629, -0.015366501, -0.0031058174, -0.018776646, 0.03341776, 0.037986856, -0.008646262, -0.006420079, -0.009646794, 0.04338973, 0.010088695, -0.002532596, -0.019727152, 0.0013600979, -0.0061074127, -0.020460876, -0.022028375, -0.0077999793, 0.004268936, 0.028882017, 0.024296246, 0.011097565, 0.04218909, 0.024412977, -0.040054623, 0.0025221738, 0.0026493247, -0.00033663725, -0.042589303, -0.0053028185, -0.009688483, 0.031733535, 0.030232735, 0.013040264, 0.076907545, -0.004148038, 0.012314878, 0.026714198, -0.02092779, 0.0011360205, 0.0040229717, 0.01607521, 0.042355847, -0.0018228439, -0.0034601726, -0.019226886, 0.013340424, 0.0004885409, 0.00029182178, -0.078108184, -0.02189497, 0.04592441, 0.06286675, -0.009204892, 0.026914306, 0.041655473, -0.023562524, -0.0122148255, -0.04058824, 0.003160013, 0.021311328, 0.0040229717, -0.04255595, 0.013065278, -0.000982814, 0.022128427, -0.023362417, 0.018976754, -0.009846901, 0.014682804, 0.0012975647, 0.021094546, -0.036952972, -0.00047030207, -0.01999396, 0.0150663415, 0.004298118, 0.0009244497, 0.0011985537, 0.018259706, -0.017676061, -0.01884335, 0.036052495, 0.018793322, -0.041955635, 0.011814613, 0.05532941, 0.02469646, -0.027064385, 0.025797045, 0.01860989, 0.020127365, 0.0093132835, 0.0314167, 0.0042251623, 0.031766884, 0.005340338, 0.016325343, 0.04685824, -0.0087880045, -0.021911647, -0.016283656, 0.003883314, 0.002701436, 0.003933341, 0.02436295, 0.021928322, 0.02973247, 0.010764055, -0.004460704, 0.01361557, -0.0059781773, -0.017425928, -0.009888589, -0.03501861, 0.01369061, 0.025230076, -0.015124706, -0.01126432, -0.047058344, -0.028114943, 0.034518346, 0.037253134, -0.028715262, -0.009321622, 0.02011069, -0.0045190686, -0.026013827, -0.018526513, 0.012081421, -0.0065409765, -0.015133044, -0.04372324, -0.014357631, -0.031650156, 0.04432356, -0.0065576523, -0.023295715, -0.04315627, -0.032317176, 0.038186964, 0.03260066, -0.02789816, -0.0033893015, 0.038853984, -0.017826142, 0.011856302, 0.031850263, -0.002055259, -0.013557206, 0.0050485167, -0.02958239, -0.005286143, 0.0073163887, 0.01860989, -0.014132512, -0.06276669, 0.016733894, 0.0013528024, 0.014874573, -0.018459812, -0.0018655749, -0.012439946, 0.01790952, 0.020227417, -0.030249411, 0.030916432, -0.030899758, -0.019677125, -0.01921021, -0.031650156, -0.042622656, 0.012815145, -0.008829693, -0.004689993, 0.033701245, -0.030799704, 0.023962736, 0.0022095076, -0.01727585, -0.010772392, 0.0014017867, -0.05729712, -0.05452898, -0.006845305, 0.019977285, -0.037653346, 0.016233629, 0.001979177, 0.006019866, 0.016558802, 0.0015820909, 0.008275231, -0.017034054, -0.004994321, 0.016925663, 0.032700714, -0.038320366, -0.012865172, 0.047425207, -0.006157439, -0.0010516006, -0.0010531639, 0.031566776, -0.031249942, -0.009304945, 0.029865874, 0.043222975, -0.021394705, 0.010497246, -0.037586644, 0.014007445, -0.0071204514, 0.062733345, -0.018793322, 0.016133575, -0.014574413, -0.0016050198, 0.007666575, -0.015950145, -0.012064746, -0.0020021058, -0.027397895, -0.037720047, 0.0027598003, 0.016058534, 0.0024638094, -0.015925132, 0.033301033, 0.008754653, 0.039220847, -0.04248925, 0.01581674, -0.024713134, 0.021094546, 0.0033017548, 0.03054957, 0.0013079869, -0.030682975, -0.006028204, -0.0032663194, 0.0026826758, -0.0107890675, 0.024379624, -0.010588962, 0.012414932, 0.0032121239, 0.007595704, 0.013148655, 0.015883442, -0.006882825, 0.03126662, 0.01966045, 0.03054957, 0.015466554, -0.0012715091, 0.0027973203, -0.0027139424, 0.031500075, 0.0037770076, 0.012539999, -0.013265384, 0.010772392, 0.011847964, 0.032917496, 0.032984197, -0.005523769, -0.0010427417, 0.0052361162, -0.001969797, 0.022778774, -0.00024257685, -0.023495821, 0.0039083273, -0.013198682, -0.0009473785, 0.0019020527, -0.013824014, 0.0050860364, 0.025079997, -0.01100585, -0.003222546, -0.007378922, -0.00045128152, -0.008050112, -0.028932044, -0.019226886, 0.018659918, 0.012181475, 0.019093482, 0.005402872, 0.030249411, 0.005002659, 0.020260768, -0.011222632, -0.047391854, -0.027514623, -0.011180943, 0.001081825, 0.019426992, 0.0127984695, 0.007858343, 0.023445794, 0.021094546, -0.004406509, 0.024229545, -0.013965757, -0.0027243646, 0.0055487826, -0.0150663415, -0.001460151, -0.0075706905, 0.027131086, 0.0032433905, -0.03488521, 0.033651218, -0.020427523, -0.0034914392, 0.020660982, 0.021678189, -0.00086191646, 0.0025951294, 0.0019937681, -0.014616102, 0.01007202, 0.018459812, -0.040121324, -0.00913819, 0.008512858, 0.048225634, 0.0078124856, -0.0136405835, 0.015733363, 0.01126432, -0.023112284, 0.02883199, 0.0066952254, -0.032450583, -0.0019677125, 0.013182007, -0.010005318, 0.0034622569, -0.022261832, -0.015916793, -0.020544253, -0.017809466, 0.022111753, -0.020160716, -0.01424924, -0.0009379985, -0.02077771, 0.020877764, 0.0013486334, -0.0018916305, -0.030566247, 0.019910583, 0.006094906, -0.005461236, -0.008216867, -0.029549038, -0.005607147, 0.005502925, -0.0057697333, -0.0086796135, 0.033034224, 0.019076806, -0.0107390415, -0.032400556, -0.024012763, -0.014491036, 0.06750254, -0.015574945, -0.03992122, 0.006561821, 0.032300502, 0.045824356, -0.022628695, 0.0024950763, -0.01186464, 0.03721978, 0.025596939, 0.022111753, 0.017792791, 0.007670744, -0.005294481, 0.0005143359, 0.011631182, 0.012565012, 0.0029640754, 0.00025899181, 0.02327904, 0.0066035097, -0.027514623, -0.017125769, 0.004068829, -0.0107890675, 0.011856302, 0.015224759, -0.0073455707, -0.001346549, -0.016758908, -0.009054813, -0.022278508, -0.0032329683, -0.0031495907, -0.035118666, 0.06673547, 0.012840158, -0.007929214, 0.031566776, 0.010205424, -0.039454304, -0.008829693, -0.0054487293, -0.0044565354, -0.007729108, -0.024879891, -0.047892123, 0.015366501, 0.005923982, -0.012748443, 0.04315627, 0.019977285, 0.005611316, -0.011664533, 0.02533013, -0.000113667185, 0.02536348, -0.0050193346, -0.027431246, -0.024262896, 0.010697353, 0.035919093, 0.013632245, -0.018643243, -0.010797406, -0.005565458, 0.021461407, 0.035385475, 0.031099863, 0.0033997237, 0.013982432, 0.00712462, 0.028565183, 0.006595172, -0.06496786, 0.005002659, 0.021578135, 0.01984388, -0.00063888123, -0.012281528, -0.009871914, -0.030349465, 0.031700183, 0.0019968946, 0.026797576, -0.0055112625, 0.0085211955, -0.027798109, -0.029015422, 0.008458663, -0.0053361696, -0.026830928, -0.01432428, -0.0299159, -0.01760936, -0.0188767, 0.024896566, 0.0063325325, 0.015291461, -0.004535744, -0.0029703288, -0.0031349997, -0.020877764, 0.004494055, -0.008704627, 0.0102637885, 0.01700904, -0.015416527, -0.0023449964, -0.051093824, -0.019577073, 0.030532895, -0.0066160164, 0.0027702225, -0.014691141, -0.016592152, 0.012031395, 0.019643774, -0.019927258, 0.011456089, 0.023812657, -0.027164439, -0.003495608, -0.023946062, -0.0004916676, -0.015499905, 0.035985794, -0.017325876, 0.045123983, 0.01951037, -0.02883199, -0.0068953317, -0.009805212, -0.0049067745, 0.0068036164, -0.017075744, -0.009488377, -0.011764586, -0.017292524, 0.022662045, -0.0017352974, 0.00018799055, 0.028848667, -0.020727683, 0.0124816345, 0.004181389, 0.026847603, -0.012615038, 0.0029244712, 0.028998746, 0.006357546, -0.014340956, 0.017075744, -0.04852579, -0.005919813, -0.0029828355, 0.048025526, 0.031700183, -0.01566666, -0.040821698, 0.007745784, -0.044156805, 0.014107498, -0.03114989, 0.003958354, 0.04055489, -0.006432586, 0.004145954, 0.0021844944, 0.020994492, 0.014716155, 0.0023283209, -0.025079997, 0.04465707, -0.013790663, -0.004464873, 0.014449347, -0.015850091, 0.036586113, 0.025263429, -0.01641706, 0.01857654, 0.03353449, 0.014457684, -0.01201472, -0.021811593, -0.026113879, 0.0030391153, -0.04625792, -0.014557738, -0.008696289, 0.029649092, 0.0056530046, 0.0072496864, -0.003872892, -0.013307073, -0.059698395, 0.001842646, 0.033451114, -0.0053445073, 0.016892312, 0.010047006, -0.015975157, 0.009046475, -0.026364014, -0.00999698, -0.012990238, 0.012915198, 0.036019143, 0.020244094, -0.028565183, 0.023779305, 0.02849848, -0.018176328, 0.00054143363, -0.02472981, -0.0009463363, -0.03681957, 0.04472377, -0.016858961, -0.0033934703, -0.031349998, -0.0039708605, -0.01566666, 0.006878656, -0.009129853, -0.018326407, -0.018193003, -0.014265915, 0.023996087, 0.03290082, 0.00049427315, -0.02663082, -0.0012089759, -0.0022407742, 0.016842285, 0.02047755, 0.008762991, -0.033150952, 0.0019468681, 0.023245689, -0.0036165055, 0.018643243, -0.012398257, 0.0013819846, -0.0018634904, 0.015391514, 0.009880251, -0.029065449, -0.00095727964, 0.009730171, 0.007629055, -0.021461407, 0.009013124, 0.009179879, -0.028031565, -0.009346634, -0.035452176, -0.03581904, -0.00055289804, -0.025813721, -0.006094906, 0.007091269, 0.0094717005, -0.0007879188, 0.0053736893, -0.051727492, 0.0036165055, 0.021828268, -0.039487656, -0.0070037227, -0.0074039353, -0.040188026, 0.047158398, -0.01171456, -0.0051277257, 0.02864856, 0.05026005, 0.037386537, 0.00007360683, -0.017809466, 0.043623187, 0.010088695, -0.015925132, 0.025830396, -0.033701245, -0.004266851, 0.016183602, 0.033968054, 0.015800064, 0.033868, -0.02361255, 0.036085848, 0.0068327985, -0.016858961, -0.008712964, -0.0077874726, -0.007579028, -0.0034976923, -0.0031308308, -0.018109625, 0.0053736893, 0.02029412, -0.019326938, 0.0041313623, 0.013740636, 0.001686313, 0.016058534, 0.019793853, 0.0006764012, -0.008008423, -0.000045987985, 0.0037957674, -0.018309731, -0.011272659, -0.0023449964, 0.010922472, 0.007820823, 0.019076806, -0.019060131, 0.02988255, -0.011706222, -0.0031391685, -0.016016847, 0.028381752, 0.024079464, 0.00044997875, 0.0027097736, -0.02883199, 0.031716857, 0.008946422, -0.03018271, -0.034918558, 0.009113177, 0.0017175796, 0.008296076, 0.04812558, -0.04655808, -0.010747379, 0.02391271, 0.022411913, -0.037720047, 0.011172605, 0.02861521, -0.041388664, 0.014382645, 0.004790046, 0.02472981, -0.019560397, -0.018776646, -0.005277805, -0.0003207434, 0.024479678, -0.00050886424, -0.010522259, -0.017025717, -0.00043434545, -0.022261832, -0.031833585, 0.0061824527, 0.008796342, -0.006036542, 0.014966288, 0.021511434, -0.053962015, 0.015783388, 0.022261832, 0.015208083, -0.0032350528, -0.013607233, -0.01891005, -0.01123097, -0.013540531, -0.0330509, 0.020427523, 0.013198682, 0.0012933958, 0.014124174, -0.00073684996, -0.0376867, -0.003084973, 0.017159121, -0.018109625, 0.03715308, 0.06420079, 0.0035956611, -0.019093482, -0.0050318413, -0.002353334, 0.00951339, 0.019193536, 0.01917686, 0.01936029, -0.060932387, -0.0058364356, 0.011789599, 0.022228481, 0.0052111032, -0.001799915, 0.027964864, 0.011289334, -0.04275606, -0.01936029, 0.0036415188, -0.004677486, 0.0010859938, -0.00029885676, 0.019110158, 0.032283828, -0.002805658, 0.0055279383, -0.020360822, -0.0082043605, 0.009379986, -0.005748889, 0.03745324, 0.006657705, -0.023112284, -0.0010000106, -0.027214466, 0.006957865, 0.009229906, -0.024829865, -0.010338829, 0.013540531, -0.017175796, 0.00048020316, 0.03301755, 0.013632245, -0.016350357, -0.01447436, 0.018193003, -0.012723429, 0.015483229, 0.013332086, -0.0042147404, 0.003741572, 0.0041730516, 0.0017217485, 0.020677658, -0.021494757, -0.015825078, -0.015016315, 0.018593216, 0.025880422, 0.004798384, -0.02017739, 0.021094546, -0.024079464, -0.024329599, -0.035752337, -0.017876169, 0.004039647, 0.04435691, 0.0011172605, -0.001596682, 0.018309731, 0.0010985006, 0.0007311178, 0.03084973, -0.020544253, 0.01376565, -0.016667193, -0.0010135595, 0.033317707, -0.012506647, 0.00089630974, -0.0122148255, 0.009655132, 0.017259173, -0.013515517, 0.023512498, -0.043556485, -0.024796514, 0.04068829, -0.018409785, -0.0026722536, -0.0008884931, -0.017192472, -0.008913071, -0.023795981, -0.015875105, 0.006244986, 0.0057655643, 0.0053736893, 0.0027889824, -0.009555079, -0.00081553764, 0.007032905, 0.0060115284, 0.025063321, 0.00817101, -0.018393109, 0.026113879, 0.0046691485, -0.0091548655, 0.024679784, -0.014190876, 0.009029799, 0.0076915883, -0.0067577586, 0.00036112944, -0.015691673, -0.004331469, -0.0016873552, -0.03235053, 0.0030620443, 0.00951339, 0.02137803, -0.005215272, 0.0065784967, 0.0048150592, 0.021911647, -0.0030537064, 0.008262725, -0.008079294, -0.053661857, -0.008362778, 0.007262193, 0.0021949166, -0.017067404, -0.029148826, -0.0074081044, -0.0027327025, 0.0037582475, 0.023545848, 0.033434436, -0.00012591328, -0.04212239, 0.011130916, 0.0019197704, -0.019126832, 0.018409785, 0.012506647, 0.022511965, -0.025146699, 0.01652545, -0.004706668, -0.005627991, -0.009846901, -0.013307073, -0.00943835, 0.007441455, -0.0016811019, -0.0017029885, 0.042355847, 0.0040771673, -0.0072205043, 0.016858961, 0.025163375, -0.0074956506, 0.02391271, -0.0055571203, -0.000633149, 0.006570159, 0.009404999, -0.03902074, 0.025446858, -0.0003236095, 0.009088164, -0.0042168247, 0.027164439, 0.021361353, -0.0043940023, 0.015858429, 0.0015820909, 0.010880783, 0.0010333618, -0.014466022, 0.015933469, 0.024429651, 0.0079959165, -0.0039145807, -0.0069662025, 0.01854319, 0.01212311, 0.003760332, -0.030566247, 0.011356036, 0.025696991, 0.006666043, -0.021628162, -0.015950145, 0.023695927, 0.014566075, -0.0038583006, -0.020377498, 0.00283484, -0.0032183772, 0.011422738, -0.010455557, 0.0074247797, -0.006920345, 0.007808317, -0.011506116, 0.0055946405, 0.004685824, -0.02629731, 0.023078933, -0.023329066, 0.032617338, -0.0013642667, -0.020327471, 0.007187153, 0.010280464, -0.017392578, 0.0069245137, 0.027764758, 0.01824303, -0.008971435, -0.015950145, 0.008596236, 0.001133936, 0.032700714, 0.021211274, -0.0073205577, -0.021761566, -0.030916432, 0.017509306, 0.010905797, 0.00358107, -0.005607147, 0.008571222, 0.0017446773, 0.0091548655, -0.031349998, -0.00365611, 0.014941275, 0.008162672, 0.017826142, 0.005419547, 0.004389833, -0.0026951826, -0.004010465, -0.01604186, 0.011130916, 0.01600851, 0.02783146, -0.0021949166, -0.01212311, 0.024879891, -0.017325876, 0.05326164, -0.03129997, 0.02924888, 0.013507179, -0.036352657, 0.035118666, 0.016358694, -0.029448986, -0.0065784967, 0.015166394, -0.027097736, -0.010764055, -0.00094998407, -0.010455557, -0.010522259, 0.0149079235, -0.009338297, -0.019493695, 0.015616634, -0.0063742213, -0.03200034, 0.022061726, -0.02518005, 0.012990238, -0.0068327985, 0.021628162, -0.0026368182, -0.018559866, -0.022962205, -0.002670169, 0.034651753, 0.0010135595, 0.029715795, -0.011089227, 0.0275313, -0.008475338, -0.009713496, 0.0040417314, -0.011180943, 0.027064385, 0.025380157, -0.012223164, 0.019677125, 0.013890716, -0.0006175157, 0.008275231, -0.0076457304, -0.0061782836, -0.031916965, 0.01148944, 0.00634087, 0.021061195, 0.0063783904, -0.014674466, 0.018993428, -0.023345742, -0.00030432842, 0.025747018, 0.020227417, 0.00026133683, -0.0034539192, -0.013582219, 0.004785877, -0.020010635, -0.052294463, 0.000103114704, -0.009004786, 0.008191854, -0.017409254, 0.0016404552, -0.023012232, 0.0003230884, -0.0004043816, 0.023529172, -0.011147591, -0.032450583, -0.031049836, -0.017042391, 0.014524386, -0.014807871, -0.015691673, -0.010755717, 0.009279933, -0.017576009, -0.009505052, 0.025947124, 0.004431522, -0.0017582262, -0.005311156, -0.0036394345, 0.007991748, -0.02372928, 0.0082835695, -0.021911647, -0.008141828, -0.013015251, 0.012748443, -0.011247645, -0.020761035, -0.001738424, -0.014741168, -0.022361886, -0.011397725, -0.03051622, -0.0134321395, 0.005398703, -0.0052402853, 0.005711369, -0.039154146, 0.00962178, -0.011022525, 0.0060407105, 0.0003991705, 0.022662045, -0.016733894, -0.010205424, -0.010005318, 0.014340956, 0.0069787093, -0.007483144, -0.004373158, 0.0037811764, 0.0009369563, -0.007308051, -0.015283124, -0.026230609, 0.0017686484, 0.023178987, 0.010947485, 0.0016612996, 0.004685824, 0.005602978, 0.010722366, 0.023645902, -0.02267872, 0.002390854, -0.0021428056, 0.005815591, -0.0019562482, -0.045090634, -0.009813549, 0.012765118, -0.0037394876, -0.032884143, 0.023045583, 0.0134821655, 0.012514985, -0.004765033, 0.024763161, 0.015858429, -0.010997512, -0.026580794, 0.01854319, -0.008300245, 0.020460876, 0.0026764225, -0.013273722, -0.0128484955, 0.007925046, -0.017092418, -0.026614146, -0.010338829, 0.015041328, -0.0021553123, -0.024012763, 0.009346634, -0.023445794, 0.0032433905, 0.011981368, -0.010980836, -0.0044231843, 0.029065449, -0.00417722, 0.005778071, 0.009096501, 0.007912539, 0.015908455, -0.004610784, 0.02107787, 0.014841221, 0.003651941, -0.009696821, -0.012856834, 0.02689763, 0.013824014, 0.009129853, -0.0024763162, 0.016758908, -0.02879864, -0.0064784433, 0.008246049, -0.013240371, 0.006132426, 0.004298118, 0.018409785, -0.012256514, 0.004431522, 0.003349697, -0.0072580245, -0.027914837, 0.022712072, 0.032984197, 0.0025826227, 0.004706668, 0.022561992, 0.00895476, -0.031716857, 0.003160013, 0.020577604, 0.0075998725, 0.027114412, -0.022511965, -0.011506116, 0.0017707328, 0.014382645, 0.021995025, -0.0015393598, -0.014999639, -0.022845477, -0.00022277466, -0.0057697333, 0.012923536, 0.018293057, 0.02502997, -0.035152018, -0.021127896, -0.009404999, -0.005944826, -0.007554015, 0.009530066, 0.007991748, 0.019260237, -0.0038395408, 0.0033330214, 0.019326938, -0.03003263, -0.04278941, 0.01384069, -0.005277805, 0.0361859, -0.001119345, -0.0076165483, 0.009229906, 0.007595704, 0.010822419, 0.00006657184, 0.0058614486, 0.014224227, 0.008562884, 0.0028786133, 0.021778243, -0.024412977, 0.010163736, 0.0036019145, 0.0067994474, 0.023896035, 0.020260768, 0.008350272, 0.00031058173, -0.012323217, 0.02264537, 0.0050776987, -0.011222632, -0.0012162714, 0.013340424, 0.009213231, 0.0010891205, 0.00999698, 0.005644667, -0.0055571203, -0.00013965757, 0.00032960228, -0.005611316, -0.0075581837, -0.0011266405, -0.0027952357, -0.009571754, 0.003979198, -0.018659918, -0.0161169, 0.010063683, 0.013457153, 0.01227319, 0.012431608, 0.008854707, 0.038253665, -0.0009817719, 0.015975157, 0.0001905961, 0.027631354, -0.0024846538, -0.011989706, -0.0054070405, -0.0030933109, 0.0029911732, 0.0101553975, 0.03715308, 0.0041730516, -0.0069662025, 0.0018384772, 0.0028702756, -0.015091355, 0.0022136767, -0.011964693, 0.0064784433, 0.0025284272, 0.0012454536, -0.016066873, 0.011747911, 0.015274785, -0.015850091, 0.026780901, -0.012640052, -0.009463363, 0.016692206, 0.019860556, -0.0131153045, 0.0063450392, 0.010488909, -0.005040179, 0.0042272466, 0.0064409235, -0.024179518, -0.009063151, 0.022228481, 0.005923982, 0.020711008, -0.005081868, -0.00011132219, 0.011356036, -0.0028035734, -0.0062574926, -0.022228481, 0.019043455, -0.0017259173, -0.004827566, 0.02014404, -0.00090256304, 0.01827638, 0.0011870892, 0.012031395, -0.012631714, 0.008637925, -0.00074518775, 0.015574945, -0.017792791, -0.014224227, 0.015483229, 0.0037915986, -0.01126432, 0.006370052, -0.002518005, 0.014632777, -0.009555079, -0.014632777, 0.00723718, 0.008946422, 0.024513029, 0.0061240885, -0.024629757, -0.0067285765, 0.011347698, 0.006912007, 0.0051360633, -0.0065284697, 0.013732299, -0.011839626, -0.009221568, 0.014140849, -0.006136595, -0.0018384772, 0.022478614, 0.00072955445, 0.01570001, 0.007962566, -0.011289334, -0.006203297, 0.010864108, -0.011247645, -0.02062763, 0.014466022, -0.01626698, -0.0013257046, 0.005102712, 0.008279401, -0.0045232377, -0.011439414, -0.017475955, -0.0021448901, -0.014024121, 0.018993428, 0.002701436, 0.0014997554, 0.006991216, -0.014257578, -0.0051277257, -0.00017326917, 0.02267872, 0.016283656, -0.021511434, 0.0051610763, 0.008979773, 0.00039760716, 0.0020073168, -0.0006597256, 0.0036832076, -0.02436295, 0.012748443, 0.02629731, -0.02017739, 0.014340956, -0.023962736, -0.0055279383, -0.004927619, 0.0061866217, -0.014899586, -0.0050151655, -0.0008613953, -0.0016644263, -0.024629757, 0.015283124, -0.002480485, 0.0057739024, -0.0037624165, -0.0069078384, -0.015441541, 0.016592152, 0.003745741, 0.0063950657, -0.014849559, 0.014224227, -0.00058989687, -0.0078875255, -0.014174201, 0.0032058705, -0.005853111, 0.009930278, 0.00507353, -0.0015153887, 0.0023408276, 0.005840604, 0.015566607, -0.013240371, -0.029932575, 0.02186162, -0.006774434, 0.019226886, -0.011197618, -0.010805744, 0.00012754175, 0.0017050729, -0.0029328088, -0.014124174, 0.02659747, -0.021211274, 0.009096501, -0.017259173, 0.0079667345, 0.011431076, -0.004752526, -0.010113709, -0.0033225992, -0.0029974265, 0.0026972669, -0.011706222, -0.0003712911, -0.0151163675, -0.0102221, 0.0033955548, -0.012606701, 0.004114687, -0.017709414, -0.0023887698, 0.020010635, 0.0013215358, -0.0036394345, 0.003230884, -0.009196554, 0.00019085665, 0.0116895465, -0.022061726, -0.009780198, -0.0011745826, -0.01589178, 0.016842285, -0.022311859, 0.0034560035, 0.016091887, -0.010980836, 0.01029714, -0.01376565, -0.04058824, 0.019276913, -0.010505584, -0.00051511754, -0.014682804, 0.0020114859, 0.0070579182, 0.0027056048, -0.0059990217, -0.005490418, 0.01727585, 0.003372626, -0.0053361696, -0.024479678, 0.0036290123, -0.049359567, -0.0188767, -0.0028119113, 0.009204892, 0.012581687, 0.024196194, 0.016225291, -0.022128427, 0.010488909, -0.0012537914, -0.0007019356, -0.00073476555, -0.012740104, -0.0063992348, 0.0026180581, 0.0021448901, -0.018960077, 0.015141381, 0.002791067, -0.005023503, -0.002357503, 0.009746848, 0.007554015, -0.010097033, 0.016250303, 0.010455557, 0.019193536, -0.011889652, 0.009821887, -0.029082123, -0.013123642, 0.011747911, -0.003745741, -0.008871382, 0.007491482, 0.004681655, 0.0010646284, 0.012806807, 0.02267872, -0.00003546807, 0.0012277359, -0.006028204, -0.0076332237, -0.0037061365, -0.011030863, 0.025413508, 0.008291908, 0.011497778, -0.022311859, -0.009304945, -0.0150663415, -0.009963629, -0.014307605, 0.024162842, -0.0071121133, -0.016567139, -0.008308583, -0.008304414, 0.00211675, 0.0007879188, -0.00880468, -0.0076332237, 0.015508243, 0.004935957, -0.02454638, -0.011872977, 0.012448283, -0.018359758, -0.008421143, 0.026997684, -0.016392047, 0.00977186, -0.003760332, -0.028148295, 0.0010656706, 0.00958843, -0.014132512, 0.013665597, -0.010997512, 0.017142445, -0.0032037862, -0.016150251, -0.0032287994, -0.00447738, 0.0057613957, 0.010922472, -0.021344678, -0.020660982, 0.0057238755, 0.004250176, 0.011831288, -0.01424924, 0.015341488, 0.005961502, -0.00034002448, -0.024513029, 0.00936331, 0.028781965, 0.00992194, -0.025580263, -0.013715623, 0.024979943, 0.017017378, 0.013782325, -0.011314347, 0.0012590025, -0.018776646, 0.0025617783, -0.02928223, 0.0074331174, 0.0060823997, 0.0069036693, 0.004460704, -0.008871382, -0.017259173, -0.013373775, 0.000087351116, 0.007370584, -0.013682272, -0.01540819, 0.01070569, -0.02331239, 0.008687951, -0.0030828887, 0.0045649265, 0.014174201, 0.0002446613, 0.03975446, -0.0026493247, 0.016875636, 0.007128789, -0.016125238, -0.020277444, -0.0024033608, 0.009338297, -0.011839626, -0.01637537, -0.01607521, 0.005898969, 0.0010073063, -0.010647326, 0.000081553764, 0.012298203, -0.006061555, -0.011289334, 0.0019572903, 0.006324195, -0.016158588, 0.017000703, 0.010363841, -0.0057739024, -0.017359227, -0.0141158365, -0.03081638, -0.011280996, -0.0017550995, -0.007383091, 0.0018145061, -0.0058947997, 0.0021699034, -0.0149079235, -0.006420079, -0.00032282784, -0.01346549, -0.009338297, 0.008258556, 0.009796874, 0.00007712433, 0.008629587, -0.015391514, 0.007816655, 0.00007530044, 0.0022595343, -0.009046475, 0.015283124, 0.0013402958, -0.007554015, -0.011172605, -0.015941806, 0.0065117944, 0.0014205467, -0.014290929, -0.028882017, 0.0013913645, -0.0040896735, -0.004133447, -0.01369061, 0.0035685634, 0.013648922, 0.021594811, 0.013940743, -0.024463002, -0.012281528, 0.010655664, -0.0104222065, 0.000441641, 0.0014445178, -0.0038583006, -0.017375901, 0.0006456557, 0.009896927, 0.0039124964, 0.014666129, -0.0021886632, 0.019577073, 0.011497778, 0.022028375, 0.029482337, 0.027247816, -0.012765118, -0.00021912689, 0.007866682, -0.028515156, 0.02958239, -0.0157417, -0.004373158, 0.005490418, 0.012298203, 0.011772924, 0.022912178, 0.017809466, -0.02783146, -0.00046404873, 0.022712072, -0.0018874615, 0.0032058705, 0.015074679, 0.006870318, -0.00943835, 0.0083919605, -0.020260768, -0.021244625, 0.00028009678, 0.030582922, 0.01406581, 0.01488291, -0.008254387, 0.001195427, 0.006674381, -0.0039145807, -0.012881847, 0.002749378, 0.0019677125, 0.0013309157, -0.009396661, 0.014649453, -0.007383091, -0.0060782307, 0.006069893, -0.004250176, -0.004890099, -0.003547719, -0.0039124964, 0.005611316, -0.006036542, -0.009296608, 0.0037499098, 0.0049109436, -0.013515517, 0.01902678, 0.014849559, -0.013974094, 0.007016229, -0.006094906, 0.019777179, -0.0025159207, -0.01186464, 0.0058614486, 0.011439414, 0.016241966, 0.016016847, -0.0034497501, -0.0010734872, -0.010572286, 0.025346806, 0.0019228971, 0.00943835, -0.018676594, -0.004965139, -0.02406279, -0.014365969, 0.0050860364, -0.0017926195, -0.008604573, 0.014090823, 0.0031266618, 0.015441541, -0.0020521325, 0.012865172, 0.018459812, -0.014182538, -0.008241881, 0.013999107, -0.012656727, 0.020961141, -0.0017332128, -0.010597299, 0.009896927, 0.014074148, 0.0038332874, -0.0041355314, 0.019527046, 0.0075706905, -0.013332086, -0.017442605, 0.03346779, 0.015533256, -0.0054112095, -0.010572286, -0.0012715091, 0.0031975328, -0.01581674, 0.013015251, -0.0068327985, -0.023295715, 0.010939147, -0.0004049027, -0.0013027758, 0.03715308, 0.013307073, -0.028181646, 0.01473283, 0.0059865154, -0.012631714, -0.008662938, 0.0011495693, -0.0030537064, -0.006136595, 0.002782729, 0.012106434, 0.012665065, 0.013207019, -0.0034643414, 0.04025473, 0.0071496335, -0.028298374, 0.013448815, 0.009346634, 0.00072590663, -0.0077166012, 0.017225822, 0.011989706, -0.0028285868, -0.007449793, -0.012890184, 0.009029799, 0.012915198, 0.015149719, -0.009813549, 0.021127896, -0.02081106, -0.006536808, -0.003458088, 0.009004786, 0.011406062, 0.011956355, 0.01133936, -0.011781262, 0.004581602, 0.0030391153, -0.009163204, -0.0038770607, -0.013582219, -0.007591535, 0.004902606, 0.0016508774, 0.004181389, 0.0014090823, 0.021944998, -0.023245689, 0.00649095, 0.020043988, -0.008446156, -0.024312923, -0.021611487, -0.0155916205, 0.009029799, -0.0021657345, 0.02958239, 0.008483676, -0.0016258642, -0.03018271, -0.0012131447, 0.0044273534, -0.003353866, 0.0051235566, 0.0042543444, 0.0027639691, -0.0054487293, -0.0064242478, -0.0038228652, 0.020310795, 0.00712462, -0.020577604, -0.005840604, 0.012514985, 0.008341934, -0.013673934, 0.027631354, 0.008729639, 0.024262896, -0.008129321, 0.0061532706, 0.017626036, -0.007016229, -0.047425207, -0.01227319, -0.00034497504, -0.001960417, -0.008621249, 0.0028515155, -0.005711369, -0.005711369, 0.012189812, -0.008829693, -0.008854707, -0.025146699, 0.00943835, -0.00943835, -0.020160716, 0.00086608535, -0.014641115, -0.0044273534, 0.023962736, -0.015983496, 0.016575476, 0.015474891, 0.02246194, 0.019627098, -0.007166309, -0.00039343827, 0.0029473999, -0.010497246, -0.003670701, -0.00039656495, 0.017392578, -0.011239307, -0.012023057, 0.0036415188, 0.025863746, 0.0077999793, -0.01705073, -0.018176328, 0.020060662, 0.004614953, 0.020961141, -0.02011069, 0.019426992, 0.010880783, 0.009079826, -0.020544253, -0.0086546, -0.021344678, 0.023379093, -0.013173669, -0.034318242, -0.009430012, 0.0049484633, -0.001648793, -0.02174489, -0.019827206, 0.0036957143, -0.0082043605, 0.018626567, 0.0054445607, 0.01794287, -0.0102637885, -0.023379093, -0.017259173, 0.009905265, -0.011214294, 0.012698416, 0.008729639, -0.01495795, -0.0000074176796, 0.005432054, 0.0081251515, 0.024746487, 0.01063065, -0.027881486, -0.0034914392, 0.016833948, -0.014132512, -0.0026868447, 0.013565543, -0.00003709654, 0.018593216, 0.0030078487, -0.0155916205, -0.00068838673, -0.037720047, 0.022028375, -0.0026680848, -0.014199214, -0.019560397, 0.017692737, -0.0087880045, -0.013982432, -0.01884335, -0.0039604385, -0.002626396, 0.0034309903, -0.005890631, 0.0081543345, 0.005923982, -0.01827638, 0.032400556, -0.0029515687, -0.027214466, -0.011381049, -0.0014684888, 0.004066745, 0.028781965, -0.0048150592, 0.0055529512, -0.006144933, -0.00086295867, -0.007824993, 0.007733277, 0.0063992348, -0.017826142, -0.004977646, 0.0055279383, 0.030349465, 0.0067994474, -0.012715092, -0.002920302, -0.015508243, 0.013098628, -0.010413868, -0.002593045, -0.013557206, -0.027014358, 0.025446858, 0.0061824527, 0.009346634, -0.0018124216, -0.027281167, -0.009880251, 0.0021970011, 0.005703031, -0.014974626, -0.012723429, -0.00038301607, 0.0055863024, 0.0032329683, 0.02883199, -0.0036790387, 0.0011057961, -0.0096301185, -0.01570835, -0.012931873, -0.013648922, 0.01148944, 0.008029267, -0.0000880025, -0.015466554, -0.010672339, -0.0028952889, -0.04905941, -0.0010146018, 0.0105305975, 0.017676061, -0.0065159635, 0.017242499, 0.008938084, -0.011923004, 0.015641646, -0.0153831765, 0.002286632, -0.0029182178, -0.0010479528, -0.004469042, -0.002693098, 0.00080615765, -0.012514985, 0.0026826758, -0.007979241, 0.016183602, 0.015266447, 0.016967352, 0.009721834, -0.0029265555, -0.017209146, 0.003633181, 0.015483229, 0.00070975226, 0.035852388, 0.009730171, -0.0061157504, 0.022561992, 0.0032204618, 0.013940743, -0.016183602, -0.0020198235, -0.004118856, -0.005736382, -0.0061616083, 0.0069078384, 0.014932937, -0.008087632, 0.005315325, -0.0045607574, -0.0051193875, -0.005277805, -0.0010135595, -0.0010333618, -0.008266894, 0.010797406, 0.018359758, 0.0022595343, 0.004081336, 0.0043064556, -0.016050197, -0.015099692, 0.0010714028, -0.0074247797, 0.0029974265, 0.0038395408, -0.013849027, 0.008533702, -0.019593747, 0.026864279, -0.024463002, -0.020327471, 0.022278508, 0.007595704, 0.011973031, -0.014541062, -0.0037311497, -0.008813018, 0.0102637885, -0.00061178353, -0.023112284, -0.0031204086, -0.016617166, -0.019643774, 0.011764586, -0.024196194, 0.0010594173, -0.0022511964, -0.0007029778, 0.010864108, -0.006549314, -0.0019354037, 0.013782325, 0.0037957674, -0.0147995325, 0.02309561, 0.024346273, -0.015758377, 0.006065724, 0.0030870575, -0.012406594, 0.00041402213, -0.0050443476, -0.0067702653, 0.0097885365, -0.013932405, 0.0054820804, -0.0016519197, 0.00028713178, -0.020210743, 0.00020596886, -0.010939147, 0.002570116, 0.03235053, 0.0155916205, 0.012748443, 0.008041774, -0.00069880893, 0.003745741, -0.007037074, 0.002574285, -0.017626036, -0.0029473999, 0.014024121, 0.006128257, 0.012640052, 0.011981368, 0.0016654686, -0.01954372, 0.019193536, -0.03992122, -0.0093132835, -0.0048192283, -0.004293949, -0.020977817, -0.019577073, -0.029849198, 0.017826142, 0.025847072, 0.012373243, -0.002607636, -0.012548336, 0.011381049, 0.0006196002, -0.0134821655, 0.0019875148, 0.028548507, -0.001997937, -0.0020385836, -0.0086546, 0.01794287, 0.018159652, 0.003958354, -0.018426461, 0.016917326, 0.010922472, 0.0017686484, 0.0008238754, 0.021644838, 0.009813549, -0.001346549, -0.014007445, 0.0144326715, 0.0073747532, -0.0017373818, -0.008537872, -0.0034497501, -0.012081421, -0.0017363395, 0.010672339, 0.013540531, 0.0024304586, 0.0074206106, -0.021928322, -0.0010239817, 0.0030245243, 0.007520664, 0.01996061, 0.025780369, -0.024863215, -0.0042168247, 0.0015602043, -0.0044231843, -0.005928151, 0.0188767, 0.01148944, -0.01700904, 0.025246752, -0.013532192, 0.016350357, 0.0009239286, 0.024312923, 0.014415995, -0.017125769, 0.010839094, 0.001294438, 0.03992122, 0.0086546, 0.0050568543, -0.006457599, -0.01936029, -0.0036790387, 0.0059698396, -0.0033225992, -0.0016717219, -0.002738956, -0.012514985, 0.0028932043, -0.009296608, 0.011739573, -0.011856302, -0.012523323, -0.017709414, -0.000010870035, -0.010438882, 0.011072552, 0.002140721, 0.009538403, -0.008087632, -0.0023324897, -0.00999698, 0.010747379, -0.003274657, -0.0026972669, -0.016517112, -0.01037218, 0.006432586, -0.008300245, -0.004206402, -0.023028906, 0.007516495, 0.008137658, 0.015825078, 0.0035372968, -0.020460876, 0.00008455015, 0.008454493, -0.017926194, 0.015399852, 0.010313815, -0.008304414, -0.006836967, 0.0017592685, -0.021361353, -0.008629587, -0.0004049027, -0.006032373, -0.008821355, -0.0037728387, 0.0003822344, 0.012931873, -0.000101486236, 0.028598534, 0.0026680848, 0.0136405835, -0.009179879, -0.0084711695, -0.011539467, -0.006870318, -0.004435691, 0.003991705, 0.022912178, -0.0408884, 0.010430544, 0.013899054, 0.004748357, 0.0018916305, 0.022578668, 0.020077338, 0.017242499, -0.0010416996, 0.0009098586, -0.009871914, 0.018042924, -0.00013496757, -0.013223696, 0.019777179, -0.015658323, 0.009955292, -0.005498756, -0.01156448, 0.013048602, 0.0034018082, -0.015541594, 0.0076790815, -0.0114144, -0.013307073, 0.02249529, -0.010772392, 0.004539913, 0.011097565, -0.019927258, 0.00951339, -0.023495821, -0.004931788, -0.00072278, 0.01055561, 0.014165862, 0.010455557, -0.0028306711, -0.0030828887, -0.00030589176, 0.034068108, -0.004510731, -0.008621249, -0.013507179, -0.0062991814, -0.005248623, 0.008187685, -0.019743828, 0.0077874726, -0.021928322, 0.0016185687, 0.014140849, -0.0026055516, -0.009129853, -0.008712964, 0.007412273, 0.0057697333, -0.012148123, -0.004581602, 0.023946062, -0.0049859835, -0.003945847, -0.006611848, -0.025430184, -0.018826673, -0.009555079, -0.027464598, -0.0030349465, 0.015533256, 0.001894757, -0.0043940023, -0.012615038, -0.005794747, -0.02264537, -0.013523854, 0.003570648, -0.003260066, -0.0005367436, -0.002920302, -0.01219815, 0.0010828673, 0.015574945, 0.0014518133, 0.01313198, 0.017359227, 0.0020583856, -0.010163736, -0.0009838563, 0.01951037, 0.0017373818, -0.012306541, 0.005915644, 0.0054862495, -0.036019143, -0.007958396, -0.015016315, 0.006666043, -0.0029411465, 0.0018780816, -0.04255595, 0.015358163, 0.010397193, -0.009580092, -0.019443668, 0.0034976923, 0.031850263, 0.005507094, 0.024813188, 0.021094546, 0.015341488, -0.013665597, 0.02943231, 0.00943835, 0.025446858, 0.0044565354, 0.018142976, 0.014916262, 0.019043455, 0.033934705, -0.00962178, 0.007353909, 0.004068829, 0.029832523, -0.0045315754, 0.006028204, -0.02264537, 0.021194598, 0.024079464, -0.0064242478, 0.0134821655, -0.008462831, 0.01667553, 0.01705073, 0.0026618314, -0.016475424, 0.006853643, 0.0023887698, 0.0061949594, 0.010638988, -0.006886994, 0.008904733, -0.0070412424, 0.0070871003, 0.026397364, -0.035118666, -0.017209146, 0.010088695, 0.0012610869, 0.0029077956, -0.0013204935, 0.016033523, 0.00656599, -0.011397725, -0.007641562, -0.0008337765, -0.007478975, -0.024296246, -0.0021761567, -0.0043147933, 0.0016883974, -0.008587898, -0.027848136, -0.027347868, 0.025747018, -0.010247113, -0.023162311, -0.0016185687, 0.0054695737, 0.007791641, 0.029815847, 0.0083919605, -0.014849559, 0.0037999363, 0.0014684888, -0.0155916205, 0.03256731, 0.032617338, -0.026864279, 0.025680317, -0.01634202, 0.0023846007, 0.0005239764, -0.01857654, -0.020394173, 0.0006597256, 0.000044392084, -0.0036977988, 0.00144556, -0.0057322136, -0.0091548655, -0.02424622, -0.0043064556, 0.0042439224, 0.011130916, 0.011306009, -0.0072747, 0.0032037862, 0.0020771457, 0.0017134107, 0.014449347, 0.0039187497, 0.0034976923, -0.000044359516, -0.018259706, -0.025713667, 0.007066256, 0.011406062, 0.0072413487, 0.0007728066, -0.0026326494, 0.00794589, -0.007729108, 0.028048242, -0.0040750825, -0.026847603, -0.009855238, -0.0058030845, 0.007416442, -0.027164439, -0.013782325, 0.011956355, 0.010080358, -0.0067577586, -0.019610424, 0.006553483, 0.017242499, -0.004902606, 0.008929746, 0.008846369, -0.009163204, -0.018293057, 0.0042585135, 0.018593216, -0.0136405835, 0.011422738, -0.01085577, 0.006636861, 0.02312896, -0.021294652, 0.013573881, -0.0043773265, -0.000817101, -0.017792791, 0.0068661496, -0.0060407105, -0.009805212, -0.012548336, 0.010989174, -0.004685824, 0.0075581837, -0.02059428, 0.0002092258, -0.021844944, 0.021811593, -0.0012016804, 0.0075290017, -0.0028890355, -0.004129278, -0.019043455, -0.027397895, -0.0052319476, 0.052427866, 0.009863576, -0.0022470276, 0.0024096142, -0.0031829418, -0.008425311, -0.00440234, -0.0021699034, -0.017859492, 0.008596236, 0.0004742104, -0.024479678, 0.011956355, 0.009029799, 0.0045315754, 0.0074247797, 0.006532639, -0.015524918, -0.0097885365, -0.0050318413, 0.020094013, 0.025013294, -0.0021824099, 0.011914666, 0.00936331, -0.00043382435, 0.011272659, 0.00020870467, 0.0013090291, 0.003812443, 0.017067404, -0.010522259, -0.013423801, 0.008712964, 0.04469042, 0.011422738, 0.0026097205, 0.015800064, -0.0047733705, -0.005736382, 0.0016039775, 0.0064034034, 0.0059364885, -0.0027285335, -0.01824303, -0.00046326706, -0.005490418, 0.0275313, -0.0105305975, 0.018443136, -0.020310795, -0.00936331, 0.020861087, -0.0068744873, -0.008746316, 0.0015768798, -0.0014299267, 0.0012079336, 0.0075873663, 0.022561992, -0.0048442413, 0.005081868, -0.012373243, -0.01369061, -0.01346549, 0.017075744, -0.003533128, -0.011155929, 0.017792791, -0.012765118, -0.009938615, -0.013540531, -0.021761566, -0.010764055, -0.009113177, -0.0114144, 0.017892843, -0.013523854, 0.0057280445, -0.011289334, -0.017776115, -0.014374306, -0.016583815, -0.017292524, 0.001913517, 0.015291461, -0.015283124, -0.008070957, 0.002980751, 0.015299799, -0.0034560035, -0.0007769755, -0.00813349, 0.003585239, 0.014899586, -0.010814081, 0.007816655, 0.02246194, 0.00028139955, 0.0075373393, 0.00015893864, 0.0050318413, -0.0014778689, 0.004689993, 0.009455025, 0.0020208657, -0.0058739553, -0.016258642, -0.0060407105, -0.015149719, 0.012139786, 0.02111122, 0.0077166012, 0.037953507, 0.019393642, 0.0060115284, 0.025096672, -0.0000066767257, 0.021211274, -0.0018051261, -0.010997512, 0.011764586, -0.010388855, 0.0012506647, 0.012940211, -0.0077207703, 0.00077489106, 0.017475955, -0.0010573328, 0.01495795, -0.013965757, -0.012189812, 0.009813549, 0.0040167184, -0.0018541105, -0.020844413, -0.0055487826, 0.011597831, -0.005252792, 0.012890184, 0.000514857, 0.026997684, -0.0019343614, -0.008604573, -0.018476486, -0.013982432, -0.025696991, 0.007203829, 0.03039949, 0.024379624, -0.0065868343, -0.0019260237, -0.009980305, 0.0018739126, 0.0029348934, -0.011781262, -0.019760503, 0.029832523, 0.01924356, -0.0031329151, -0.017826142, 0.0040000426, 0.019410316, 0.0056863558, 0.014265915, 0.023362417, -0.012881847, 0.0053695207, -0.0002767096, -0.0024763162, -0.0005534192, -0.0022699565, -0.0064742747, -0.014024121, 0.019493695, 0.02029412, 0.010413868, 0.009146528, -0.006461768, -0.009546741, -0.017325876, 0.0173092, -0.007804148, 0.022361886, -0.043356378, -0.0093132835, 0.0093132835, -0.017175796, 0.008025099, -0.0034893546, -0.013732299, 0.003831203, -0.0006977667, -0.016258642, -0.008854707, 0.0021146657, -0.03308425, 0.0039041585, -0.03233385, 0.010013656, -0.000108456086, -0.005598809, -0.02424622, 0.008596236
3171
+ 0.0023182528, -0.023037398, -0.025802497, -0.033181187, 0.025710836, -0.02740656, 0.013015824, 0.027635712, -0.0055645704, 0.042316705, 0.013428298, 0.0025607718, -0.038711384, -0.0078981, -0.048396867, 0.022487434, 0.00008694641, -0.0288273, -0.014054646, -0.017400263, -0.0021807617, -0.035411596, -0.026428845, -0.035289384, -0.0070196847, -0.0044226306, -0.013527596, -0.0052781305, -0.0157962, 0.01707945, 0.017064173, 0.009471609, -0.008654301, -0.003952869, -0.016498933, -0.0217847, -0.0021158352, -0.024794228, -0.025191424, -0.019829273, 0.0028395732, 0.009005668, 0.026810765, 0.02227356, -0.013619257, -0.045708153, -0.021280568, -0.020638943, -0.011029841, 0.029591141, 0.013054016, -0.0021139258, 0.050352298, -0.014352543, 0.023908176, 0.022747139, 0.009509801, 0.012504052, -0.0062443875, -0.07497848, -0.010426409, -0.018805727, 0.017675245, -0.008348765, -0.0050642556, 0.02878147, 0.0032138545, 0.009280649, -0.02846066, 0.025344193, -0.018546022, 0.004858019, 0.016575316, 0.047358047, 0.034006134, 0.018164102, 0.021280568, 0.0076918635, 0.018484915, 0.025771944, 0.02441231, -0.008547364, -0.044088814, -0.013222061, 0.06501801, -0.03764201, 0.004430269, -0.054415923, 0.034220006, -0.018897388, -0.009723676, -0.028338443, -0.0140852, -0.0009977653, 0.038375296, 0.000794393, -0.025084488, 0.008829984, -0.011778404, 0.030003615, 0.020440344, 0.029606417, 0.022059683, -0.04900794, 0.0057975417, -0.018148826, 0.042713903, 0.028628703, -0.018240485, 0.014955977, 0.008226551, -0.0052284813, 0.005789903, 0.014596972, -0.028918961, 0.016666977, -0.022686033, -0.020043148, 0.0068172673, -0.016728085, 0.008509171, 0.009020944, -0.03406724, -0.033272848, -0.01041877, 0.007859908, 0.021647211, -0.005789903, 0.02436648, 0.023342934, 0.000008205307, 0.07901155, 0.01746137, 0.013695641, 0.016621146, 0.027284345, 0.00051845604, 0.054874226, 0.004602133, 0.011679105, -0.039047472, -0.022945737, -0.051177245, -0.018057166, -0.005239939, 0.011304824, 0.0059579476, 0.04873296, -0.010227811, -0.0087841535, -0.055363085, -0.025619175, 0.01261099, -0.018530745, 0.024351202, 0.0034582831, -0.01474974, 0.019539014, -0.0025111223, 0.05481312, 0.009486886, -0.024427585, 0.0139859, 0.01251169, 0.021250013, 0.0113659315, 0.011885342, 0.0139477085, -0.04253058, 0.043813832, 0.0043118736, 0.0062673027, 0.001146714, -0.028292613, -0.027223239, 0.039719652, -0.019294584, -0.0042851395, 0.008952199, 0.03165351, -0.0020986488, -0.009670207, 0.052399386, -0.03125631, 0.02887313, 0.014314352, 0.05224662, 0.03021749, 0.026810765, -0.03125631, -0.018652959, 0.00034038594, -0.013008186, -0.0046632397, 0.030538302, -0.03425056, -0.058112904, -0.012748481, -0.020562558, -0.010999288, -0.0052934075, -0.003782915, -0.0049229455, 0.008684855, -0.010922904, 0.021815255, -0.013115124, -0.015101106, -0.0028567596, -0.008509171, 0.045127634, 0.018118272, -0.020898648, -0.029698078, -0.036511526, -0.017476646, -0.025160871, -0.06721787, -0.05062728, -0.0069967695, -0.012389476, 0.0143754585, 0.034525543, -0.047785796, -0.015979521, -0.0290259, 0.0027708276, 0.018087719, 0.052063297, 0.002673438, 0.021341674, -0.0038841236, 0.024244264, 0.0043997155, 0.018530745, -0.002835754, 0.02231939, -0.025160871, -0.05551585, 0.032081258, -0.015299704, 0.00032630266, -0.019951487, -0.041980617, 0.048182994, -0.005728796, 0.003922316, 0.044455457, -0.00041271202, 0.015154575, 0.009586185, 0.018591853, 0.0065346467, -0.005209385, -0.001732006, 0.0030610866, 0.049496796, 0.019477906, 0.008631386, 0.009303564, 0.023404041, -0.013649811, -0.007157176, 0.038405847, -0.03715315, -0.021204183, 0.03834474, -0.034403328, 0.0010455053, 0.03605322, 0.045035973, -0.017064173, 0.01746137, 0.021647211, 0.00045472317, 0.006133631, -0.0120763015, 0.03035498, 0.023816515, -0.017201664, -0.017201664, -0.020669496, 0.057501834, 0.00856264, -0.007222102, -0.04158342, -0.035228275, -0.0044799186, 0.0123589225, -0.008791792, -0.037275366, 0.015024723, 0.0036549717, 0.0448221, 0.03253956, 0.038528062, 0.0142608825, -0.033700597, -0.0046708784, 0.014826124, -0.014642802, 0.0056027626, -0.004705251, -0.004911488, -0.0001494261, 0.02245688, 0.026688552, 0.047999673, 0.0020337226, 0.0041323714, -0.0037981917, -0.0217847, -0.019355692, -0.02040979, 0.05576028, 0.038986366, -0.01727805, 0.01793495, -0.026734382, -0.007890462, -0.0015897409, 0.007630756, -0.10834299, 0.011579806, 0.06697344, 0.013405383, 0.033517275, 0.03078273, 0.030935498, -0.008448064, -0.034983847, -0.028613426, -0.026994087, 0.026612166, 0.017446093, -0.016376719, -0.036236543, 0.008936922, -0.00077625184, 0.026932979, -0.009196627, -0.007435977, -0.0123589225, 0.0132297, 0.012664458, -0.03611433, -0.017919675, 0.019340415, -0.01883628, -0.0018742711, 0.0009180395, 0.00008557389, 0.023449872, -0.0139859, 0.015643433, 0.013031101, 0.021326398, -0.04662476, -0.0508106, -0.008188359, 0.009280649, -0.015406642, 0.010922904, 0.046777528, 0.023633193, -0.015070553, 0.0043042353, 0.003467831, -0.027803756, 0.032631222, 0.0046059517, 0.05414094, 0.020608388, 0.038986366, 0.0054652714, -0.009120243, -0.010227811, -0.0038191972, 0.015024723, 0.017247494, -0.0005824276, -0.006099258, -0.004067445, 0.025466407, 0.03525883, 0.0045066527, 0.031088267, -0.0002618537, 0.0057402537, -0.015024723, -0.013710918, -0.0140622845, -0.031714614, -0.038100313, 0.013550512, -0.03987242, 0.008226551, -0.005239939, 0.007730055, -0.016162843, 0.03030915, -0.0062023764, 0.0023717214, 0.013634535, -0.02726907, -0.0066301264, 0.0055263783, 0.02297629, 0.036847614, 0.019309862, -0.0046556015, -0.061259925, 0.009013305, 0.034220006, 0.005728796, -0.019966763, -0.031378526, 0.026627444, -0.00870777, -0.03096605, -0.020058423, -0.005239939, 0.024748398, -0.020638943, 0.004816008, 0.028674534, -0.016926682, -0.017950227, -0.009234819, 0.023419317, 0.025726113, 0.007409243, 0.002322072, -0.040941793, -0.03877249, 0.036847614, 0.018576575, -0.0004917217, -0.016575316, 0.0020394514, -0.024335925, -0.005705881, 0.020638943, -0.023847068, -0.02878147, -0.008875814, -0.0050833514, -0.011816597, 0.04592203, -0.04115567, -0.01503236, -0.0075009037, -0.040697366, -0.01146523, 0.034403328, -0.009250096, -0.02612331, 0.015246236, 0.012496414, -0.038008653, -0.0073863277, 0.04344719, 0.04534151, 0.014635164, -0.018714067, -0.032600667, -0.032753438, -0.0051788315, 0.01184715, -0.008807069, 0.0029102284, 0.018164102, 0.016605869, 0.022090238, 0.00036688164, -0.0053736106, 0.031134097, -0.013420659, -0.032722883, 0.017247494, 0.04583037, -0.023679024, 0.003435368, -0.011289547, -0.02231939, -0.0022170441, 0.010288917, 0.008386957, 0.032906204, -0.015857307, -0.01678919, -0.024259541, -0.014321989, -0.032692328, 0.0061870995, -0.04583037, -0.0059350324, -0.0045142914, 0.03186738, -0.0037466325, -0.01698779, -0.026581613, -0.01193881, 0.000559035, -0.04576926, 0.011648552, 0.0061107157, -0.014688632, 0.004766358, 0.015108745, -0.003582407, 0.021952746, -0.021051416, 0.0264594, 0.00456776, -0.0051941085, 0.011824234, -0.0032558658, 0.025527515, 0.0035575824, 0.017400263, 0.017614137, -0.02322072, -0.026062202, 0.005889202, 0.014520588, 0.01622395, -0.012916525, 0.008555002, -0.027757926, -0.01060973, -0.004243128, -0.022609647, -0.020730603, -0.024091497, 0.009876444, 0.027987078, 0.019798718, -0.013741472, -0.0021673944, -0.043936044, 0.003001889, 0.008898729, 0.030507747, 0.005747892, 0.012992909, 0.02612331, -0.027437113, -0.032600667, -0.013313722, -0.042500027, 0.013367191, 0.0012192788, 0.010647922, 0.004766358, -0.022517987, -0.01883628, -0.04304999, -0.019340415, 0.00086409337, -0.01503236, 0.024580354, 0.018133549, 0.005419441, 0.012068664, 0.008616109, 0.020806987, -0.010227811, -0.014948338, -0.023923451, -0.00073901465, 0.035900455, 0.029591141, -0.004800731, -0.011045119, 0.0030935497, 0.014879593, -0.039475225, -0.006828725, -0.008906368, -0.0023659926, -0.023342934, -0.0064964546, 0.014528226, 0.033425614, 0.045127634, -0.028720364, -0.033272848, 0.002944601, -0.007672767, 0.028338443, 0.012068664, -0.011755489, 0.0046899742, -0.0008860538, -0.0066339457, 0.028231507, 0.01460461, -0.024870614, -0.046746977, -0.0030267138, 0.012458222, 0.051177245, 0.0008426104, -0.030935498, 0.013611619, 0.043874938, -0.010854159, 0.049802333, -0.0033169729, -0.028475935, 0.007107526, 0.031409077, 0.0049802335, -0.01541428, -0.014887231, -0.0009003758, -0.0026066022, -0.02403039, 0.025451131, 0.004953499, -0.023465147, -0.0010340477, -0.029148113, 0.0040712645, 0.014169222, -0.0027861043, -0.034372777, 0.017216941, 0.014894869, -0.0043080547, 0.00975423, -0.016819745, 0.000417486, 0.010502793, -0.0070731533, -0.0124734985, 0.049221814, -0.00026066022, -0.016193397, -0.0023373486, 0.030125828, -0.0099757435, 0.079500414, -0.008547364, -0.013649811, 0.024442863, 0.00685164, 0.04164453, -0.015528856, -0.038466956, 0.004010157, 0.018775174, 0.0422556, 0.005320142, -0.020547282, -0.019798718, 0.016208673, 0.001508583, 0.004006338, -0.012381838, 0.01261099, 0.0074627115, 0.024152603, 0.02231939, -0.0058968407, 0.014971253, -0.0117631275, 0.0018723615, 0.03593101, -0.0038421124, 0.00015694514, -0.016850298, -0.008532086, -0.0021349313, -0.026932979, 0.03895581, -0.0053583337, -0.026627444, -0.0059082983, -0.024152603, -0.020440344, 0.021005586, -0.018607128, -0.06349034, 0.0008860538, 0.009074413, -0.017507201, -0.0043271505, 0.0013099847, -0.016498933, -0.010319471, 0.033822812, 0.0075429147, 0.018927941, -0.024748398, 0.0052132043, -0.025496962, 0.01355815, -0.009463971, -0.014849039, -0.03006472, -0.021937469, -0.01827104, 0.0039605075, 0.0027536412, 0.004078903, -0.003336069, -0.027727373, -0.017553031, 0.005969405, 0.042561136, 0.008906368, -0.0028987709, 0.022013852, 0.040330723, 0.016575316, -0.017171111, 0.0015735093, 0.042041723, 0.012122132, -0.012290177, -0.0050642556, 0.0058968407, 0.008807069, 0.00079630263, -0.0038230165, -0.016239228, -0.015948968, -0.020333406, 0.01698779, -0.0271163, 0.033028416, 0.0022590552, 0.029300882, -0.03253956, 0.008776516, 0.01698779, 0.012481137, -0.021204183, 0.04454712, 0.0020757336, -0.006798171, -0.01365745, 0.025374746, -0.0009834433, 0.019539014, -0.008639025, -0.030125828, -0.0010235449, 0.01707945, 0.00951744, 0.0138636865, -0.019875104, -0.03568658, 0.022090238, -0.0069394815, 0.019798718, -0.047694135, -0.0063093137, 0.0037561806, 0.009211903, 0.00050747587, 0.012259623, 0.029728632, -0.034097794, 0.00023881918, -0.0069471197, 0.025176149, 0.005075713, 0.0039051292, 0.011068034, 0.015124021, -0.011022204, -0.008364042, 0.014505311, 0.02587888, -0.0046135904, -0.0011553072, -0.012129771, -0.00951744, 0.043997154, -0.036083777, 0.023801237, 0.017171111, 0.012947079, -0.028918961, -0.0217847, 0.047296938, 0.029392542, 0.022869354, 0.02288463, 0.013901878, -0.011549253, 0.026291354, -0.0045753983, 0.028537042, -0.007764428, -0.0004401625, -0.0031565665, 0.048885725, 0.006171823, -0.009807698, -0.011686744, 0.0060534277, -0.010625007, -0.0194168, -0.0018332147, -0.010059766, 0.026566336, -0.000563809, 0.02850649, 0.0050069676, 0.027345452, -0.002488207, -0.004609771, 0.0032081257, 0.005304865, 0.004300416, -0.00866194, 0.021631934, -0.021402782, 0.0066301264, -0.008104336, 0.004502834, 0.034525543, 0.028582873, 0.047785796, -0.008211275, -0.009502163, 0.0034506447, -0.017614137, -0.017384985, 0.009150797, -0.009654931, 0.037611455, 0.018775174, 0.02592471, 0.015597601, -0.016941959, -0.007416881, -0.017048897, -0.008616109, 0.010441685, 0.004258405, 0.0017119552, 0.003572859, 0.026688552, 0.011969364, 0.009364672, 0.0078981, -0.0035881358, 0.007451254, 0.012190877, -0.0071686334, 0.0052934075, -0.0030152563, -0.008058506, -0.0035709494, 0.024045667, -0.019752888, -0.00870777, 0.00104646, -0.006821086, -0.031317417, -0.006504093, 0.011289547, -0.020287575, 0.0033704415, 0.009227181, -0.011801319, 0.0057097, -0.005068075, 0.0010942001, 0.00030792278, -0.0070769726, -0.0015038089, 0.005117724, 0.011549253, -0.009005668, -0.011679105, 0.0031527474, -0.0057822648, 0.0059312135, 0.03892526, -0.0054576327, -0.01937097, -0.017155834, -0.01146523, 0.0012526967, 0.00073662767, 0.002165485, 0.007084611, -0.034036685, 0.009234819, -0.013489405, 0.0067599793, -0.015994798, -0.005705881, 0.0052170237, 0.012328369, -0.006003778, -0.030523024, -0.02241105, 0.045585938, 0.0070731533, 0.00866194, 0.008180721, 0.021937469, -0.0028395732, -0.013306083, 0.043752722, 0.010105596, -0.020654218, -0.00632841, -0.01888211, 0.004078903, 0.009005668, 0.022762416, -0.029560586, 0.048274655, 0.014795571, 0.01436782, 0.011740212, -0.01869879, 0.023862345, 0.011396484, 0.0035002944, 0.002297247, -0.0011486235, -0.0076192985, 0.03593101, 0.019737612, 0.0008674352, 0.022731863, 0.005969405, -0.023770684, -0.007302305, -0.0005222752, 0.0022323208, 0.007722417, -0.028903686, -0.009273011, -0.043294422, -0.032753438, -0.02697881, -0.00837168, 0.015360812, -0.009761868, -0.008096699, -0.017690523, 0.001850401, 0.012924164, -0.009219542, -0.018561298, 0.0077185975, -0.0029694259, -0.010647922, -0.03602267, 0.014237967, -0.0154524725, 0.01541428, -0.001027364, -0.0034735599, 0.030706346, -0.009357033, -0.004682336, -0.019768165, -0.010899989, 0.0001262722, -0.035197724, 0.004586856, 0.009738953, 0.034708865, 0.019523736, -0.019523736, -0.027757926, 0.011090949, 0.02716213, -0.026153862, 0.019920934, -0.025848327, -0.047969118, -0.011900619, -0.009677846, -0.007921015, -0.0026218789, -0.021677764, -0.047358047, 0.016926682, 0.004766358, 0.01593369, -0.02031813, -0.030156381, 0.03397558, 0.014146307, 0.039719652, -0.0131304, 0.022991568, -0.023297103, -0.0020623666, -0.04534151, -0.026230248, 0.04992455, -0.0052284813, 0.018393254, 0.004296597, 0.024244264, -0.031195203, 0.047938563, -0.009311203, -0.019095987, 0.015979521, -0.01084652, -0.024152603, 0.03635876, -0.0036435141, -0.005732615, 0.04201117, -0.018530745, 0.00038526152, 0.06184044, 0.020913925, 0.02155555, 0.0030725442, 0.02445814, -0.0044799186, 0.010380578, 0.019279309, 0.0066301264, 0.0076422137, 0.005560751, 0.0026868053, 0.001660396, 0.023297103, -0.0031279225, -0.0044837375, -0.07393966, 0.010105596, 0.01831687, -0.009402864, -0.0048656575, -0.005320142, -0.0077185975, -0.023801237, -0.02126529, 0.0009294971, 0.00076336204, 0.017430816, -0.018484915, -0.0077185975, 0.018118272, 0.008501533, -0.018209932, 0.0052590347, -0.021524996, 0.01351232, -0.020868095, 0.041094564, 0.0035594918, -0.003311244, -0.026627444, -0.017568307, -0.02868981, -0.017216941, -0.011236078, -0.009158435, -0.022288835, -0.013313722, -0.0049000303, -0.01917237, -0.0006836363, 0.0071686334, -0.0066454033, -0.0020910106, -0.0236943, -0.025038658, -0.013076931, -0.01874462, -0.010831243, -0.0131304, 0.011396484, -0.011854788, 0.0024786592, -0.009463971, -0.008027953, -0.02783431, 0.016621146, 0.0071342606, -0.008463341, -0.019401522, 0.008738323, -0.017522477, 0.008967475, -0.005927394, 0.008593194, 0.012947079, 0.04705251, -0.02079171, 0.016498933, 0.0069242045, -0.034464438, 0.011870065, 0.008799431, -0.0060114167, 0.017659968, -0.01946263, -0.00091517513, -0.007615479, -0.014826124, -0.04081958, -0.036939275, -0.008402234, 0.010999288, 0.007730055, -0.005999959, -0.0136650875, -0.016071182, 0.023755407, -0.0074207005, 0.008967475, -0.021662487, -0.0060457895, 0.01727805, -0.017568307, 0.018041888, 0.00096864393, -0.0013882782, 0.008929283, 0.012855418, -0.0010311833, -0.014497673, 0.010663199, -0.02121946, 0.011870065, -0.0013577247, 0.012633905, 0.014253245, 0.017186388, 0.020806987, -0.018821005, -0.039200243, -0.0062825796, -0.0034009952, 0.02079171, -0.03739758, 0.011969364, -0.0020585475, -0.027437113, -0.022136068, -0.01642255, 0.029193943, 0.024641462, 0.010579176, 0.018637683, 0.016010076, 0.019309862, 0.0024519246, 0.030141106, 0.014383097, -0.040025186, -0.004063626, -0.013321361, 0.015093468, 0.0073252204, 0.0005881564, 0.023556808, -0.014001178, 0.0034735599, 0.03953633, 0.0008020314, 0.005812818, -0.026108032, 0.001693814, 0.0063666017, 0.012137409, 0.0061107157, 0.012977633, 0.04815244, -0.026337184, -0.00042918228, -0.0027440933, 0.013008186, -0.0028605787, -0.049191263, 0.0016594413, -0.0010235449, -0.011236078, 0.0015735093, 0.0009968105, 0.013695641, -0.011106226, 0.017522477, -0.0044226306, 0.0132678915, 0.035992116, -0.011923534, 0.0009796241, 0.016957236, 0.025985818, -0.026291354, 0.037519794, 0.00039480953, 0.044363797, -0.005320142, 0.024442863, 0.011969364, 0.01669753, 0.0006654951, -0.004716709, 0.021524996, 0.0038879428, -0.0020470899, 0.015024723, 0.0157962, 0.0011915895, -0.0037810053, -0.014642802, 0.001436973, -0.014627526, 0.009143158, 0.0015945148, 0.031531293, 0.0060725235, -0.008906368, -0.028155122, 0.02887313, -0.00956327, 0.02245688, 0.005133001, -0.0035079326, -0.026016371, 0.002121564, 0.04476099, 0.015009445, -0.013810217, 0.027788479, -0.017384985, -0.0122749, -0.0060228743, -0.018362701, -0.01946263, 0.0012087759, 0.0011934992, 0.06471248, -0.0070960685, -0.026062202, 0.034097794, 0.009502163, -0.01903488, 0.0064773588, 0.028812025, 0.0043080547, -0.010296556, -0.035808794, 0.005912117, 0.004300416, 0.009677846, 0.010785413, -0.010617369, -0.019645952, -0.02416788, 0.017782183, 0.012801949, -0.030293873, -0.0038172877, -0.007615479, -0.00004001206, 0.013474128, -0.007245017, -0.017828014, 0.002436648, -0.035564367, 0.022105513, 0.010220172, 0.026230248, 0.0048121884, -0.029805016, -0.047846902, -0.0043195123, 0.027742648, 0.032111812, -0.004716709, -0.027207961, 0.0112819085, -0.00447228, 0.0405446, -0.01727805, 0.01084652, -0.0019315591, -0.003148928, 0.0015028542, 0.0096931225, -0.009288288, -0.01289361, 0.009349395, -0.011702021, -0.013160954, 0.012404753, 0.0123589225, -0.03134797, 0.016773915, -0.0027612797, -0.035075508, -0.007546734, 0.0118777035, -0.01151106, 0.00076813606, -0.008386957, -0.0083029345, -0.010334748, 0.026321908, 0.008791792, 0.0050489786, -0.022747139, 0.02526781, 0.042500027, 0.0026657998, -0.0075352765, 0.018729344, 0.0014713458, 0.0071533564, 0.010227811, 0.017690523, -0.016529486, 0.0038669372, -0.013191507, -0.020684773, 0.0071189837, -0.0005294362, 0.0074397963, 0.0011648552, 0.0074779885, -0.0076383944, -0.008005038, 0.009784783, 0.010739583, 0.029820293, 0.0060687046, -0.013107485, 0.0008306754, -0.016162843, -0.00024944133, -0.0038612084, 0.017446093, 0.004224032, 0.002373631, -0.03877249, 0.025970541, -0.01736971, -0.059457265, -0.005919756, -0.0052513964, 0.025710836, -0.008111975, -0.016544763, -0.013160954, 0.006740883, 0.013726195, 0.022731863, -0.0005346876, -0.03217292, -0.029988337, -0.0129547175, 0.016804468, 0.025909435, -0.016101737, -0.014833762, -0.03202015, -0.010434047, 0.025481684, -0.009632016, 0.00018081513, 0.012649181, -0.003410543, -0.005553113, 0.000006172628, 0.0087841535, 0.022533264, -0.019829273, 0.0014856678, 0.007836993, 0.016712807, -0.02146389, 0.0007313763, -0.0003052971, -0.009020944, -0.005480548, -0.0033284305, 0.0039337734, 0.020012593, -0.011457592, 0.02326655, 0.008669578, 0.003221493, -0.0070922496, -0.009357033, 0.01436782, -0.0060954387, 0.021570826, 0.016254503, -0.019661227, 0.025038658, -0.009219542, 0.021097247, 0.009906998, -0.01784329, 0.00794393, -0.011129141, 0.00019346621, -0.015399003, -0.009020944, -0.007867547, 0.02612331, -0.016544763, 0.0011438496, -0.0029235955, 0.0018628135, -0.012244347, -0.0144594805, 0.015421919, 0.01746137, 0.004602133, -0.009028583, 0.0061870995, -0.012504052, 0.00074378867, -0.031179927, -0.010984011, 0.003087821, 0.0245498, 0.02040979, 0.0023087047, -0.01423033, 0.003744723, -0.012992909, -0.0024538343, -0.0019162822, 0.017950227, -0.005770807, 0.02592471, 0.008768877, -0.017507201, -0.016636424, 0.012580436, -0.011640914, -0.042133383, -0.0038497509, 0.04466933, -0.026948256, -0.0009366581, 0.007623118, -0.0056065815, -0.0022876991, 0.013550512, -0.01746137, -0.0262608, 0.018546022, -0.013336637, 0.009998659, 0.0219833, -0.012427668, -0.020501452, -0.02801763, 0.017507201, 0.034097794, -0.03962799, 0.0021521177, 0.020501452, 0.0035232096, 0.030049445, -0.012771396, -0.04191951, -0.01712528, 0.008539725, -0.011732574, 0.009937552, -0.011052757, -0.016880851, -0.011205525, -0.000024660676, -0.015635794, -0.0031011882, 0.005396526, -0.026581613, -0.016483655, -0.000110637375, 0.034708865, -0.009204266, 0.031714614, 0.007344316, -0.017782183, 0.003922316, 0.004915307, 0.018729344, 0.008264743, -0.006695053, -0.006362783, 0.010594454, 0.012603351, 0.005912117, -0.0047930926, 0.0010235449, 0.016300334, -0.019997317, -0.027956525, 0.0028032907, -0.0066874144, 0.038497508, -0.01732388, 0.017537754, 0.033120077, 0.010793052, 0.0020279938, -0.036511526, -0.020913925, -0.017659968, 0.0030190754, -0.0009815337, 0.0040177954, 0.025909435, -0.0077262362, -0.017186388, 0.021433335, -0.026046926, 0.006943301, -0.003658791, 0.01946263, 0.0064735394, 0.020180639, -0.0202723, -0.023281828, -0.017537754, -0.0023850887, 0.025542792, 0.0013911426, 0.025542792, -0.019111263, 0.010762498, -0.044363797, -0.0069012893, 0.00214066, -0.006870736, -0.00012114016, 0.016880851, 0.0009949009, 0.0051864698, -0.0060457895, -0.009456333, -0.013710918, 0.010877074, -0.014711548, -0.016712807, 0.00061870995, -0.009891721, -0.0048274654, -0.010899989, -0.019722335, 0.01203811, -0.012221431, -0.0018093447, -0.009746592, 0.010877074, 0.0051864698, -0.008493895, -0.0093799485, -0.0016021533, 0.034617204, -0.0032959674, -0.014864316, -0.010861797, 0.03525883, -0.009433418, 0.00012400457, 0.0067332448, -0.0064238897, 0.0007800711, 0.0095785465, 0.0061259926, -0.010411132, 0.0151698515, 0.043997154, 0.040177956, -0.014253245, -0.008929283, 0.008600832, -0.0033589841, -0.0024442864, -0.010739583, 0.001494261, 0.017110003, -0.0002883494, -0.023235997, -0.041705634, -0.02207496, 0.00064448954, -0.023587363, 0.016880851, 0.0023468968, 0.016010076, 0.03611433, 0.029193943, 0.006794352, 0.0146580795, -0.006561381, -0.012397114, 0.02121946, -0.0041896594, 0.0028911324, 0.030599408, 0.025665006, 0.0005275266, -0.0035804973, -0.017522477, 0.018347424, 0.012908887, -0.0015124021, 0.020119531, -0.013924793, -0.010686114, 0.013222061, 0.0095785465, 0.020715326, -0.00737487, 0.03168406, 0.032906204, -0.0049993293, -0.017018342, 0.025985818, 0.00756583, 0.005018425, 0.015483025, -0.03739758, 0.007760609, 0.0034372776, -0.0046326863, 0.020501452, -0.010731945, 0.020440344, 0.0092653725, 0.0020757336, -0.002136841, -0.0034697407, 0.0036950733, -0.010403493, 0.005980863, 0.015635794, 0.008379319, -0.0007108481, -0.0072335596, 0.014925423, 0.0073481356, 0.0040139765, -0.002698263, 0.0035461248, -0.026108032, 0.004544845, 0.016040629, 0.008348765, 0.017766906, 0.0038783948, -0.0044188113, -0.005014606, -0.00022950988, -0.016101737, -0.009219542, 0.011572168, -0.015307343, 0.002050909, -0.005152097, -0.01822521, 0.016391994, 0.0010264093, -0.01423033, -0.008677216, 0.0014933061, 0.008188359, -0.0006468765, -0.011220802, -0.019600121, 0.007237379, 0.011236078, 0.0024290094, -0.013840771, 0.0041476483, -0.0057937223, -0.0043768003, -0.015475388, -0.0034907463, 0.0008249466, 0.01455878, -0.012756119, -0.007245017, 0.011640914, 0.009059136, 0.017904397, 0.0032730522, -0.014398374, 0.006775256, 0.000021095098, 0.010281279, -0.008814707, -0.016926682, -0.0070922496, -0.010785413, -0.0040979986, 0.0245498, 0.003907039, 0.01436782, -0.0016833112, -0.024992827, -0.002354535, 0.012580436, 0.0005953174, 0.0039375923, -0.0063818786, -0.007103707, 0.00073185365, -0.0045601213, -0.017140558, -0.009441055, -0.01669753, -0.0071877292, -0.01622395, 0.0005991366, -0.009448694, -0.014902508, 0.0010646012, -0.0004131894, 0.011220802, 0.0061259926, -0.0137491105, 0.019905657, -0.010113235, -0.018561298, 0.012412392, 0.0022953376, 0.000823037, 0.0104646, -0.0051444587, -0.00866194, 0.008333488, 0.00086122897, -0.013099846, 0.0018198475, 0.000074355, 0.010411132, 0.002564591, 0.008493895, 0.019905657, -0.002150208, 0.0017978871, -0.01208394, 0.014306713, -0.026810765, -0.001522905, 0.0013071203, -0.008295297, -0.009639654, -0.01151106, -0.0013758658, 0.0065346467, 0.002136841, 0.014826124, -0.016728085, -0.013252615, -0.0070769726, 0.0018847738, 0.006389517, -0.013107485, -0.0023965463, 0.009028583, -0.0009815337, 0.007260294, -0.00029718128, 0.00066644995, -0.00575553, -0.013481766, 0.00088414416, 0.00899039, -0.004395896, 0.010701391, 0.012404753, 0.0067103296, 0.008333488, -0.0021750329, 0.012122132, -0.023480425, 0.00804323, 0.0044035343, -0.015994798, 0.011579806, -0.046166457, -0.014680995, 0.010075042, 0.0040979986, -0.0059503093, 0.012832503, 0.0061680037, -0.026016371, 0.03107299, -0.0068745553, 0.031149372, 0.011213163, -0.00031818688, 0.010304194, 0.011350654, 0.0106555605, -0.015345534, 0.0071724523, -0.000429421, -0.0028510308, 0.011404123, -0.010243087, -0.020990308, 0.008310573, -0.005354515, 0.020287575, 0.02650523, -0.00908969, -0.007829354, -0.030523024, -0.010388217, -0.010334748, -0.0021196546, 0.011258993, 0.009838252, -0.010930543, 0.00059293036, -0.0008889182, 0.017736353, -0.000024601, 0.003952869, -0.0059541287, -0.011640914, 0.019813996, 0.0120763015, -0.008524449, 0.003017166, 0.012099217, -0.009196627, 0.017965505, 0.0049573183, 0.0069776736, 0.011457592, -0.010976373, 0.000026600112, -0.009922274, -0.006504093, 0.0067905327, -0.009188988, 0.0023335295, -0.021769425, -0.012259623, 0.011174971, 0.035900455, 0.02155555, -0.021754147, 0.008761238, 0.0014484306, 0.0023812696, 0.015383727, -0.008631386, 0.013390106, -0.0030916403, -0.00094477396, -0.022777693, 0.0120457485, 0.00048503806, 0.004414992, 0.001250787, 0.015689263, 0.030767454, -0.005010787, -0.004357704, -0.006057247, 0.007974484, 0.011274271, -0.024305372, -0.007416881, 0.0039051292, 0.032234024, 0.008005038, 0.012519329, 0.0074818074, 0.0002768918, 0.0026199694, 0.015108745, -0.00528195, 0.0064162514, -0.0006822041, -0.006133631, 0.014902508, 0.027956525, 0.012175601, -0.010686114, -0.013336637, 0.031271588, -0.015536495, 0.012481137, -0.022594372, -0.00012543677, -0.010877074, 0.003725627, -0.0027765564, -0.004162925, -0.0031050073, -0.01293944, -0.01827104, -0.018240485, -0.005511102, -0.028445382, 0.010197257, -0.006740883, 0.0034372776, 0.0015792381, 0.015001807, 0.010189618, -0.013642172, 0.015024723, -0.0064811776, 0.021631934, -0.019645952, -0.026810765, 0.030232767, -0.0071304413, 0.021998577, -0.0017988419, -0.015948968, 0.003250137, 0.0084709795, 0.035289384, 0.020150084, -0.009525078, 0.0014828034, -0.0019726155, 0.007413062, -0.020150084, -0.007241198, 0.0055492935, -0.029957784, -0.010716667, 0.0017854747, -0.008814707, 0.0040139765, -0.022426326, -0.018576575, -0.008379319, 0.023923451, -0.005675327, -0.008027953, -0.00067217875, -0.0053506955, -0.014008815, -0.023373488, 0.0014207414, -0.017476646, -0.008058506, -0.0012288267, -0.006061066, 0.020501452, -0.01289361, -0.017659968, 0.0067332448, -0.0050833514, 0.0013481766, 0.00036425595, -0.003074454, 0.017155834, -0.00537743, 0.005610401, -0.0027765564, -0.017873844, 0.007145718, -0.0140852, -0.023449872, -0.009891721, 0.007493265, -0.0024748398, 0.03226458, -0.011526338, -0.002136841, 0.0032711425, -0.017140558, -0.016896129, 0.029102283, -0.013840771, -0.004380619, 0.02835372, -0.0096625695, -0.01732388, 0.0015964245, 0.0048656575, 0.019523736, -0.010602091, -0.042652797, 0.0012775215, 0.006347506, 0.034342222, -0.0064773588, 0.014589334, -0.007416881, 0.008539725, 0.018714067, -0.021387504, 0.00433097, 0.0048465612, 0.014192137, 0.013260253, 0.002864398, 0.013962985, -0.013886602, -0.024946997, -0.024824783, -0.020913925, 0.009104966, -0.00006397156, 0.009471609, 0.007531457, -0.00023141949, -0.0054270793, 0.017293325, -0.012190877, -0.0072526555, 0.0071609947, 0.013344276, 0.016758638, 0.036419865, -0.004338608, 0.0042278515, 0.009173712, 0.0034372776, -0.0003971965, 0.004010157, -0.021524996, 0.004495195, 0.023327658, 0.029377265, -0.0077491514, -0.0008344946, -0.0059350324, -0.034983847, 0.008700131, 0.0057020616, 0.008020314, 0.00941814, 0.004667059, 0.0008034636, -0.0023564447, -0.004414992, 0.0041400096, 0.0021903096, 0.005438537, -0.008180721, -0.013588704, -0.016208673, 0.01827104, 0.021952746, -0.010831243, 0.022166621, -0.02378596, 0.0054920055, -0.00870777, 0.019905657, 0.0013376739, -0.026306631, 0.0091813505, -0.014108115, 0.0024461958, 0.0008416556, 0.0025149414, 0.019386245, 0.013168592, 0.017721076, -0.005724977, -0.008020314, 0.0040559876, 0.022349942, 0.01327553, -0.011786043, 0.01674336, -0.00050699845, -0.009158435, -0.0023946366, -0.0041476483, 0.0021005585, 0.00014357794, 0.001465617, -0.0062596644, 0.00013033011, -0.008310573, 0.009792422, 0.0019630673, 0.020975031, 0.00727939, -0.008532086, 0.0027173588, 0.03944467, -0.005927394, -0.0074054236, -0.009486886, -0.0038172877, -0.009043859, 0.009143158, 0.019829273, 0.026474675, -0.00228388, 0.009899359, 0.013642172, -0.010976373, 0.027727373, -0.0058739255, 0.009601462, 0.0013204875, 0.001322397, -0.013237338, -0.006523189, -0.007829354, 0.012885972, -0.010815967, -0.0111673325, 0.009318842, 0.00090992375, -0.0034239104, -0.015735094, 0.029591141, -0.022670755, 0.0157962, -0.0104875155, -0.008822346, 0.025145594, -0.021097247, 0.03354783, 0.008035591, -0.002740274, -0.009211903, -0.0058089993, -0.010052127, 0.004961137, 0.019111263, -0.0083029345, -0.005411803, 0.020852817, -0.0044570034, 0.0034907463, 0.0023354392, 0.0073404973, 0.015750369, 0.03253956, -0.027727373, -0.010197257, 0.013840771, 0.0054308986, -0.0058815638, 0.006950939, 0.0262608, -0.0022495072, -0.00017687658, -0.012885972, -0.0071953675, 0.0040903604, 0.0128706945, 0.007206825, 0.00913552, 0.0011839512, 0.0040177954, -0.0015104925, 0.00092185877, -0.009273011, -0.011686744, 0.018805727, -0.0070349616, -0.0023679023, -0.0069814925, -0.005094809, -0.007649852, 0.011549253, 0.0016518028, 0.0149407, 0.019477906, -0.009471609, -0.010472239, 0.00030004568, 0.001898141, -0.0046365056, -0.00008927374, -0.018255763, 0.010204895, -0.004651782, -0.0032444082, 0.007359593, -0.018927941, -0.008730685, 0.0098611675, -0.023617916, 0.0078751845, -0.016865576, -0.02036396, -0.014833762, 0.012068664, -0.006664499, 0.013756748, 0.01417686, -0.0006053428, 0.006721787, 0.023113782, -0.021005586, 0.01937097, -0.012962355, -0.024672015, 0.021494443, -0.0020776433, 0.0013768206, -0.007489446, 0.010502793, 0.010059766, 0.021524996, 0.023006845, -0.03235624, -0.0054920055, -0.0002737887, -0.00093474856, 0.030125828, 0.010097957, -0.0029044996, -0.03177572, -0.010945819, 0.0044646417, -0.0132297, -0.002169304, 0.010510431, -0.0020661857, -0.030339703, -0.0016823563, -0.000842133, -0.0033265208, -0.0026562517, -0.00285485, -0.006332229, 0.010525708, -0.02407622, -0.016880851, -0.006026693, -0.014864316, -0.01727805, 0.017797459, -0.014719186, -0.016193397, -0.008027953, -0.0063589634, -0.014077561, -0.022579094, 0.0041896594, -0.0024251903, 0.00035088876, 0.005175012, -0.007237379, -0.006271122, 0.009387587, 0.006794352, -0.01793495, 0.020348683, 0.008547364, 0.015047638, 0.008875814, -0.0057937223, -0.000007440721, -0.008600832, 0.015383727, 0.011915895, -0.0061794613, -0.0016680345, -0.014673356, 0.011358293, -0.010113235, -0.013382467, -0.0077988007, 0.00813489, -0.010739583, 0.003582407, 0.010296556, -0.025985818, 0.00394905, -0.021494443, 0.003744723, -0.009463971, -0.020241745, 0.0014694361, -0.0047778157, -0.030507747, -0.005495825, -0.0078981, -0.006420071, -0.0004282275, 0.018683514, -0.007982123, -0.031286865, -0.02293046, 0.012580436, -0.026642721, -0.016529486, 0.015223321, 0.007936292, 0.009746592, 0.015994798, 0.0040177954, -0.022334665, -0.012710288, 0.00051320466, -0.025053935, 0.018973771, -0.008654301, 0.022747139, -0.0017043168, 0.026383014, 0.017064173, -0.015612879, 0.00020265616, 0.017201664, -0.017598862, -0.0039375923, -0.010953458, 0.0010731944, 0.0034277295, -0.0098611675, 0.013344276, -0.017721076, -0.0011820416, -0.0032043066, 0.012633905, -0.0020394514, 0.014283798, 0.013176231, -0.0033647127, -0.0013405383, -0.004117095, -0.0061107157, 0.0071724523, 0.029056452, -0.0166517, 0.022762416, 0.005129182, 0.0014407922, 0.0010942001, 0.008165444, 0.008386957, -0.005453814, -0.012236708, -0.00428132, 0.023297103, 0.0032806904, -0.039841868, -0.0025397663, 0.0019353782, 0.01707945, -0.015353173, -0.020669496, -0.0041476483, -0.008287658, 0.012626266, -0.010938181, 0.015001807, 0.0020528187, -0.0024862974, 0.015994798, 0.0055874856, -0.012595712, -0.009494524, 0.00051463686, -0.016025351, 0.0064582624, 0.011243717, 0.016055906, -0.035197724, -0.00009333163, -0.0070158653, -0.0038077396, -0.0028185677, 0.010097957, 0.005052798, -0.004006338, 0.0035766782, 0.013237338, -0.0010006297, 0.02160138, -0.004796912, 0.0099757435, 0.045097083, -0.024763675, 0.01151106, 0.0012479227, 0.016285058, 0.00033943116, -0.0012517419, 0.008524449, -0.0036148701, 0.033150632, 0.0006888877, 0.0033016962, -0.008050868, 0.0004945861, 0.010059766, 0.00646972, 0.011648552, 0.0052284813, -0.006171823, -0.0375809, -0.008203636, 0.007859908, 0.024228988, 0.010449324, -0.01678919, 0.0083029345, -0.017018342, -0.0048503806, 0.0052323, -0.006213834, -0.0025989637, -0.006618669, -0.0044493647, -0.02616914, -0.005400345, -0.019294584, -0.00031532248, -0.005320142, -0.0060954387, -0.02126529, -0.009188988, -0.0064964546, 0.003368532, -0.0006253935, -0.0103729395, -0.0041972976, 0.0014980801, -0.019294584, -0.0077720666, -0.008386957, 0.017522477, 0.0051368205, 0.0065766578, 0.017201664, 0.0016966783, -0.019707058, -0.026444122, 0.021631934, -0.009425779, 0.006408613, -0.009143158, -0.009555631, -0.0037676382, 0.003074454, 0.004338608, -0.0075620105, 0.000609162, -0.015376088, 0.025603898, -0.002050909, -0.0029140476, 0.030629963, 0.021020861, 0.0035136614, 0.007546734, -0.011014565, 0.016040629, 0.018301593, 0.0087536005, -0.006133631, 0.004273682, -0.0068172673, 0.005671508, 0.014321989, 0.009456333, 0.0023659926, -0.027330175, -0.0008631386, -0.0018313051, -0.0024805686, 0.007821716, 0.0076918635, 0.012420029, -0.0060075973, 0.005503463, 0.019294584, 0.015704539, -0.011770766, -0.0076613096, 0.015391365, 0.010984011, -0.0071533564, -0.0037409037, -0.016911406, 0.003706531, 0.0018580395, 0.024946997, -0.015689263, 0.028949516, 0.010701391, -0.0074207005, 0.025298363, 0.020822264, 0.006714149, 0.005071894, 0.004816008, 0.006171823, -0.0019382426, -0.016957236, -0.014039369, 0.0024156424, 0.0053506955, 0.0015324529, -0.008211275, 0.0019974401, 0.0033150632, 0.0018819094, 0.01474974, -0.0004043575, -0.0007203961, -0.022151344, -0.019432075, -0.010510431, 0.0032272218, 0.017186388, 0.041888956, 0.015589964, -0.011793681, -0.023801237, -0.0059579476, 0.008555002, -0.0029694259, 0.0090667745, -0.0042316704, -0.0111673325, -0.00646972, 0.013833133, 0.02383179, 0.0022342305, 0.033700597, 0.0041132756, -0.020990308, -0.011533976, -0.022640202, 0.016605869, 0.0049840524, -0.010357663, -0.008692493, -0.0033437072, -0.010540985, 0.018805727, -0.001227872, 0.0039337734, -0.02526781, -0.014436565, -0.020715326, 0.00018379887, 0.02231939, 0.004124733, 0.0031584762, 0.02616914, 0.008623747, -0.02421371, -0.00053707464, 0.013603981, 0.004239309, 0.004976414, 0.01355815, -0.010808328, -0.02121946, 0.00011576942, 0.010502793, -0.02702464, -0.0011963636, -0.012450583, 0.00053564244, 0.003639695, -0.017537754, 0.03345617, -0.0072335596, 0.003263504, 0.008921645, -0.021968022, 0.00019501777, 0.012908887, 0.022472156, 0.015521218, 0.009540355, 0.009364672, 0.037030935, -0.004491376, 0.0023335295, -0.019645952, 0.008791792, -0.019844549, -0.011274271, -0.0117631275, -0.031057712, 0.01355815, 0.016193397, 0.010678476, -0.0032749616, -0.0024423767, 0.010617369, 0.00037714574, 0.009082051, 0.010151426, -0.0031431993, -0.024442863, 0.024809506, -0.013695641, -0.022655478, -0.012817226, -0.00023273233, -0.002845302, 0.026474675, -0.0004167699, 0.01937097, -0.014955977, 0.014933062, -0.0077109593, -0.012236708, 0.0065652, -0.014810847, 0.012878333, -0.017965505, -0.00080394105, 0.00623293, 0.019691782, -0.008012676, -0.0020184459, -0.015628155, -0.007107526, 0.0077529703, 0.0055836663, -0.0065881154, 0.0049840524, 0.00018475366, 0.021204183, -0.011274271, -0.0038287453, -0.005029883, 0.0038325645, 0.031134097, 0.01883628, 0.0048121884, 0.012519329, -0.009188988, -0.017110003, 0.00011278567, 0.012122132, -0.00851681, -0.00026352462, -0.011870065, -0.022792969, 0.0090667745, 0.0045906752, -0.022777693, 0.006420071, -0.0010101777, 0.0056600505, 0.007680406, 0.00047167088, 0.009463971, -0.005266673, -0.016040629, 0.00090562715, -0.007764428, -0.03096605, 0.0151392985, 0.00087268656, -0.008539725, 0.010586815, -0.0068630977, -0.016941959, 0.0035671303, -0.001703362, -0.018423807, 0.0032004872, 0.015314981, 0.010411132, -0.008195997, 0.009257734, 0.008493895, -0.013909517, -0.002631427, 0.0061527267, -0.01222907, 0.008898729, 0.0019821634, 0.0047549005, 0.0011247536, 0.011060395, -0.023495702, 0.004323331, -0.015261512, 0.0038077396, -0.0070769726, 0.013115124, -0.018439084, 0.003987242, 0.021020861, 0.00851681, -0.0035881358, -0.008341127, -0.0060687046, 0.00975423, 0.015658708, 0.011144417, -0.015979521, 0.022594372, -0.0019306042, 0.00021053325, -0.01089235, -0.009998659, -0.009013305, 0.0059006596, 0.020959755, 0.004510472, 0.013802579, 0.0016374808, 0.007107526, 0.006714149, 0.026535783, -0.0040483493, 0.0024385576, 0.0099757435, 0.0065155504, 0.013015824, -0.0071724523, 0.005266673, -0.005560751, 0.0149407, 0.021051416, -0.021204183, 0.008501533, 0.01746137, 0.005190289, 0.007550553, 0.014833762, -0.011671467, 0.010388217, -0.017201664, -0.017919675, 0.0008335398, -0.0009729405, 0.00010765362, -0.0045601213, 0.004701432, -0.004216394, -0.011098587, -0.0013959166, -0.0047281664, -0.0013978262, -0.024442863, 0.000068387504, -0.0006239613, 0.014948338, -0.02387762, 0.018912666, 0.015223321, 0.0031107361, -0.015009445, -0.012129771, -0.01308457, 0.015246236, -0.021662487, -0.0065957536, 0.004445546, -0.022609647, 0.012427668, -0.012794311, -0.0077147787, 0.0037981917, 0.010831243, -0.0052170237, -0.0068669165, 0.02450397, -0.020761156, 0.002988522, 0.001974525, -0.0066683185, 0.0087841535, 0.008700131, 0.010831243, 0.030660516, 0.0039337734, -0.018591853, 0.010350024, -0.0054079834, 0.012588074, -0.0080737835, -0.011335378, 0.0028720363, -0.01118261, -0.001218324, -0.0053888876, 0.012618627, 0.0002240198, -0.022808246, -0.023067951, 0.0019353782, 0.0072259214, 0.0095785465, 0.011396484, -0.015498303, 0.011770766, -0.008776516, -0.020532005, -0.008005038, 0.0032272218, 0.0010569629, -0.011312462, -0.0035671303, -0.0060305125, 0.008608471, 0.017965505, 0.011648552, 0.002640975, -0.025160871, 0.010762498, -0.02231939, 0.021876361, -0.010785413, -0.004128552, -0.009983381, -0.026841318, 0.00551874, -0.0066874144, -0.011572168, 0.007065515, -0.0042316704, 0.001974525, 0.0052743116, -0.0024633822, 0.005591305, -0.00074378867, 0.00040626712, 0.009937552, 0.0118777035, -0.039078027, -0.005190289, 0.016346164, 0.022686033, 0.00271163, 0.0005394616, 0.018912666, -0.0074054236, -0.016758638, 0.006908928, -0.017201664, -0.016254503, 0.010082681, 0.003824926, 0.003549944, -0.008463341, -0.006442986, 0.012404753, -0.016605869, 0.0032272218, 0.01451295, 0.007997399, -0.027284345, -0.014787932, -0.0012956627, 0.013993539, 0.015009445, 0.0057937223, -0.0073404973, -0.0058319145, 0.0065537426, 0.039139133, -0.0085855555, 0.009624377, 0.0031852105, -0.011388847, 0.012152686, -0.00081539864, -0.014879593, 0.0058968407, 0.011060395, -0.0016909495, -0.029010622, 0.013336637, -0.0002945556, -0.02659689, 0.011961726, 0.0014150126, 0.0019859825, 0.0020337226, 0.02493172, 0.0013281258, -0.0011810868, 0.0049802335, 0.013000548, 0.012481137, -0.0023468968, -0.01617812, 0.00433097, 0.010006296, 0.033945024, 0.0013567698, -0.007008227, -0.005786084, -0.003553763, 0.016330888, 0.026321908, 0.0018685423, 0.010976373, -0.001056008, -0.0018456271, -0.037794776, 0.030095275, -0.016865576, 0.007508542, 0.0040483493, 0.00014166835, 0.010166703, 0.0063818786, -0.021968022, 0.0200737, -0.00019513711, 0.007214464, -0.010793052, 0.010502793, -0.007646033, 0.0029369628, 0.004544845, 0.013420659, -0.005537836, 0.005595124, -0.013649811, -0.017216941, -0.004552483, -0.013817856, -0.009838252, 0.01246586, -0.011977003, 0.015047638, -0.0017195935, 0.003922316, -0.01161036, -0.011686744, -0.03134797, -0.0041743824, -0.006672138, -0.012962355, -0.003435368, 0.009143158, -0.012129771, -0.0021845808, -0.009402864, -0.01546011, 0.017553031, -0.015948968, -0.02117363, -0.011900619, -0.016285058, -0.015826754, 0.016208673, 0.0028319347, -0.017293325, 0.029102283, 0.00030959368, 0.031027159, 0.009143158, -0.007722417, -0.0069203856, 0.0055263783, 0.0041896594, 0.01989038, -0.019523736, 0.023159612, 0.0120457485, -0.022151344, 0.002730726, -0.011381208, 0.0046326863, 0.0037657286, -0.020638943, -0.0087841535, 0.031409077, 0.020180639, -0.0014589333, 0.0012670187, -0.009410502, -0.01593369, 0.0077529703, -0.002883494, 0.00018749872, -0.01451295, 0.0047892733, -0.0026810765, -0.018591853, 0.02317489, 0.012618627, -0.0022781512, -0.017629415, 0.0011199797, 0.02150972, 0.011152056, -0.01041877, -0.0035174808, 0.0150552755, 0.0042851395, 0.0036186895, 0.0024672016, -0.01993621, 0.009250096, 0.0021998577, 0.0044035343, 0.0050986283, 0.00073615025, 0.029377265, 0.032692328, -0.009547994, -0.0068058097, -0.022487434, 0.014344905, 0.036847614, -0.0068325438, 0.004021615, 0.001156262, -0.017430816, -0.005866287, 0.007573468, 0.012091579, 0.019187648, -0.010013935, 0.03192849, -0.007913377, -0.015811477, -0.0030037987, -0.0033704415, -0.008975114, 0.00941814, 0.015238597, 0.0027803755, 0.019340415, -0.0083029345, -0.009769507, -0.0200737, 0.022533264, 0.006672138, 0.018439084, 0.015498303, 0.019141817, 0.028582873, 0.006263484, 0.023281828, 0.00035423055, 0.014520588, -0.008486256, -0.010586815, -0.0058739255, -0.012824864, 0.0031088267, -0.0020470899, -0.0076345755, 0.0018513559, -0.0039414116, 0.023327658, -0.019905657, -0.02497755, -0.008486256, -0.0073977853, 0.009456333, 0.0012574707, -0.021250013, -0.009227181, -0.014589334, 0.011617999, -0.0076040216, -0.023679024, -0.00091565255
2317
3172
  ]
2318
3173
  }
2319
3174
  ],
@@ -2327,25 +3182,22 @@ function getTemplatesPipelineCollection() {
2327
3182
  ]
2328
3183
  },
2329
3184
  {
2330
- "name": "revolutionizing-prompts-with-human-concepts",
2331
- "title": "Revolutionizing Prompts with Human Concepts",
2332
- "content": "Promptbook promotes the use of human-understandable concepts like personas, knowledge, and actions in place of traditional programming elements such as loops, variables, and tokens.",
3185
+ "name": "democratizing-programming-technology-meets-creativity",
3186
+ "title": "Democratizing Programming: Technology Meets Creativity",
3187
+ "content": "The tool is positioned as a bridge between technology and people, making programming more accessible to non-technical users. It is described as transforming programming into a creative process that can be accessed by everyone.",
2333
3188
  "keywords": [
2334
- "Promptbook",
2335
- "personas",
2336
- "knowledge",
2337
- "actions",
2338
- "human-understandable concepts",
2339
- "traditional programming",
2340
- "loops",
2341
- "variables",
2342
- "tokens"
3189
+ "Artificial intelligence",
3190
+ "programming accessibility",
3191
+ "non-technical users",
3192
+ "creative process",
3193
+ "technology bridge",
3194
+ "democratization of coding"
2343
3195
  ],
2344
3196
  "index": [
2345
3197
  {
2346
3198
  "modelName": "text-embedding-3-large",
2347
3199
  "position": [
2348
- 0.016719207, -0.0018952144, -0.031563066, -0.028162012, 0.003552037, 0.006591532, -0.026572734, 0.008462907, -0.017799918, 0.010083971, 0.040335882, 0.009090672, -0.034900554, 0.03146771, -0.048886202, 0.004215561, -0.011005753, 0.0006496175, -0.028162012, -0.004970468, -0.015757695, -0.018356165, -0.06274471, -0.028750045, 0.013969757, -0.007930499, 0.004060606, -0.0037268577, -0.032103423, 0.0025944968, 0.017434383, -0.015288858, -0.020342764, -0.029099686, -0.0074338494, -0.025905237, 0.014955109, 0.0062816227, -0.023203464, -0.0023580918, -0.016417244, 0.011514322, -0.013739311, -0.00039905787, -0.031324677, -0.008836388, -0.015288858, -0.009662813, -0.01730724, 0.00007958808, 0.026954161, -0.024903992, 0.062204354, 0.0008929758, 0.017672775, 0.0104653975, 0.0069371997, -0.04186159, 0.012499674, -0.025571488, -0.012118247, -0.024760956, -0.0070722885, -0.015090197, 0.008725138, 0.008351658, -0.0130479755, -0.01050513, 0.022392932, -0.0036871256, 0.014088952, 0.02050169, 0.026858803, 0.08474032, 0.025619166, 0.040335882, 0.08187962, 0.0012773825, 0.0036692463, 0.009305225, 0.02089901, 0.0011740794, 0.004930736, -0.0027494514, 0.059629723, -0.016353674, 0.028797723, -0.050984047, 0.02763755, -0.03184914, -0.016258318, -0.0156146595, -0.01821313, 0.0056101526, -0.016941708, 0.0072312164, 0.0072709485, 0.008709245, -0.0013777056, 0.026223093, 0.0008403309, 0.0022547885, -0.008359604, -0.058771513, 0.060615074, 0.0006635237, 0.028416296, 0.0336927, -0.051492617, 0.04586657, 0.012563245, 0.005153235, -0.0070762616, 0.018880626, -0.035377335, 0.016909922, -0.0009615134, -0.020771869, 0.019532232, 0.014653146, -0.005439305, 0.01935741, -0.015574927, -0.014955109, -0.014422701, 0.009289332, 0.0034070155, 0.024284173, 0.029512899, 0.040590167, -0.013659847, 0.049426556, 0.019961337, 0.043895867, 0.021105615, 0.038238037, 0.029147364, 0.018292593, 0.0034566803, 0.018308487, -0.033088773, -0.014128684, -0.026636304, -0.0042910515, -0.011267983, -0.0036632866, 0.02460203, 0.04640693, -0.023044536, 0.0055664475, -0.01125209, -0.04122588, 0.010060132, -0.026032379, 0.02277436, -0.0023203464, -0.03014861, 0.020708296, 0.013508866, 0.04672478, 0.0005239652, -0.025444346, -0.007775544, 0.033819843, 0.012841369, -0.017259562, 0.01764099, 0.0372209, -0.024935776, 0.03569519, -0.014851806, 0.011554053, 0.017672775, 0.012976457, -0.045612287, 0.038873747, 0.007874874, -0.024617922, -0.03820625, 0.0031745834, -0.00039781624, -0.01946866, 0.052319042, -0.03065718, 0.04402301, 0.033851627, 0.035758764, 0.01213414, 0.02147115, -0.050602622, -0.0031586906, 0.0035957422, -0.010377987, -0.0065557733, 0.014343237, -0.0007261015, -0.04745585, -0.047042638, -0.01935741, -0.014096899, -0.012436103, -0.04586657, 0.024697386, -0.017466169, -0.013016189, 0.04898156, -0.034932338, 0.004446006, 0.026652198, 0.00015954864, 0.044976577, -0.0050260928, -0.02746273, -0.004199668, -0.025317203, -0.04430908, -0.030593608, -0.019262053, 0.005045959, -0.03356556, 0.022710787, -0.02261543, 0.04523086, -0.029528791, 0.0015654392, -0.0070762616, -0.013318152, 0.028908974, 0.017116528, 0.024824528, 0.016798671, 0.051587973, 0.027812371, -0.023282928, 0.015813319, 0.0015177608, -0.0012167912, -0.00221903, -0.04402301, 0.026525056, -0.013485027, 0.0012118247, -0.011450751, -0.011418965, 0.039477672, 0.017021172, -0.025507918, 0.02523774, -0.01125209, 0.014033328, 0.012157979, 0.03100682, 0.00762059, -0.005423412, -0.020215621, 0.028908974, 0.051460832, 0.010314416, -0.0014273706, 0.042529088, -0.0029997628, 0.019659372, 0.008502639, -0.008240408, -0.020358656, -0.034328412, 0.038015537, -0.06023365, 0.0039135977, 0.0037228845, 0.07520465, -0.013127439, 0.019564016, 0.018070094, 0.024315959, 0.006635237, 0.0017531726, 0.012348693, 0.020422226, -0.023537213, -0.026620412, -0.012165925, 0.00076434354, 0.009980668, -0.001724367, -0.017291348, -0.015781533, 0.012499674, 0.0030275753, 0.002033283, -0.032278243, 0.014057167, 0.012539406, 0.033343058, 0.03598126, 0.052160114, 0.0075212596, -0.012531459, 0.011514322, -0.0007762631, 0.01070379, 0.00014899485, -0.007946392, -0.028018977, 0.037093755, 0.019262053, 0.021089723, 0.028448083, 0.0007598737, -0.017656881, 0.025889345, -0.0063610864, -0.00636506, -0.04036767, 0.039064463, 0.020755975, -0.014812074, -0.01609939, -0.00596774, -0.014963055, -0.051683333, -0.02380739, -0.089698866, -0.018562771, 0.061536856, 0.027113087, 0.006102829, 0.017625097, 0.03512305, -0.002362065, -0.043768726, -0.023855068, -0.0058604637, 0.0215824, 0.029449327, -0.052446187, -0.0071398327, 0.026636304, 0.0047400226, -0.010234953, -0.006142561, 0.0018147572, 0.013341991, -0.03442377, 0.012269229, -0.03569519, -0.00062677165, 0.0025587382, -0.013127439, -0.0058763567, 0.0009615134, 0.022694895, 0.035440907, -0.0043744887, 0.028654689, 0.0121977115, 0.049998697, -0.029497005, -0.026159521, -0.00665113, 0.0065200143, -0.027224338, 0.030577715, 0.02078776, 0.018705806, -0.034391984, 0.0034109887, 0.00173132, 0.01946866, 0.015932515, -0.008637728, 0.032993417, -0.0023898773, 0.0016796686, -0.0084788, 0.0018187304, -0.02426828, -0.0045532826, 0.0015555061, 0.027430944, 0.010513077, 0.0018068108, 0.019007768, 0.015749749, -0.007286841, -0.004569175, 0.013755204, 0.0051254225, 0.02175722, -0.034964122, -0.047137994, -0.0015058413, -0.05556117, -0.03153128, 0.031197533, -0.0048751114, -0.02449078, -0.034455553, -0.0020422228, 0.01992955, 0.01098986, -0.029989682, -0.0024872206, 0.018578663, 0.0045771217, -0.022583645, -0.012261283, 0.009495938, 0.01173682, 0.021852577, -0.015710017, -0.016925814, 0.015249126, 0.029147364, -0.00090787525, -0.005014173, -0.03614019, 0.053749394, -0.026095951, -0.041066952, 0.005351895, 0.012054676, -0.0369984, 0.0046248, 0.0043744887, 0.026397914, -0.012825476, -0.025603274, -0.010616379, 0.017164206, 0.027097195, 0.020120263, 0.022106862, -0.031451818, -0.03483698, 0.008939691, -0.0057889465, 0.004116231, -0.019675266, 0.0067464863, -0.016051712, -0.013445294, 0.018658128, -0.009599241, -0.005200913, 0.0035063452, -0.027399158, -0.030053252, 0.03693483, -0.004279132, -0.008407283, -0.039827313, -0.031451818, 0.03043468, 0.028257368, -0.0117606595, 0.009583348, -0.011720927, 0.022599539, -0.07787464, -0.005518769, 0.020708296, 0.03912803, 0.006186266, 0.0027852103, -0.012142086, 0.0010151515, 0.014192255, -0.011101109, 0.023108106, 0.027573979, 0.0104733445, -0.002860701, -0.016107336, -0.031261105, -0.008892012, 0.015344482, -0.0003623058, 0.008947637, -0.010282631, 0.015892783, -0.05419439, -0.003236168, -0.0015972247, -0.020946689, -0.01638546, 0.02968772, 0.028130226, 0.043609798, -0.016027872, -0.007604697, 0.0026163494, -0.044340864, -0.008101346, 0.016687423, -0.0495537, -0.055688314, -0.0049466286, 0.038555894, 0.009742276, -0.011832178, -0.0027633577, 0.009400581, 0.034709837, -0.05626045, 0.004422167, -0.011204412, -0.0027315721, -0.00067196676, -0.017084742, -0.027256124, 0.026652198, -0.0012902954, 0.010004507, -0.0006883562, -0.019023662, 0.013087707, -0.004906897, 0.03362913, -0.00039806456, 0.0050380123, 0.021344008, -0.018530985, -0.006500148, -0.015582874, 0.009925043, 0.029655933, 0.007727866, -0.028432189, -0.038746607, -0.0064604166, -0.0032997392, -0.021677757, -0.048886202, -0.028654689, 0.0023719978, 0.024474887, 0.04745585, -0.012650656, -0.00663921, -0.013135386, 0.027573979, 0.0063332743, 0.012285122, 0.004970468, 0.0010717696, 0.021932041, -0.024474887, -0.02638202, -0.0057134554, -0.013214849, 0.042179447, 0.003877839, 0.01598814, 0.019166697, -0.04151195, -0.039890885, -0.022488289, -0.00006316761, 0.00887612, 0.008129159, 0.025301311, 0.016401352, 0.015058412, 0.017513847, 0.01878527, 0.015527249, 0.009710491, -0.01098986, -0.026858803, 0.023155786, 0.019611694, 0.012491727, 0.0006848796, -0.02975129, 0.007604697, 0.0027653442, -0.027415052, -0.0028169958, 0.001415451, -0.019532232, -0.016290102, 0.0014790222, 0.001322081, -0.004002995, 0.07755678, -0.003917571, -0.017895274, -0.009178082, 0.0011174614, 0.034964122, 0.021089723, 0.0087648695, 0.005479037, 0.010107811, -0.010552808, 0.0063769794, -0.017799918, -0.0018942211, -0.04961727, 0.02546024, 0.010250845, 0.02512649, -0.003764603, -0.04265623, -0.027033625, 0.032643776, -0.023680247, 0.035599835, 0.010449505, -0.03362913, 0.008486746, 0.0074497424, 0.002801103, -0.017958846, -0.031165749, -0.0050101997, 0.0010876624, -0.00026471418, 0.049490128, 0.009098618, -0.037761252, 0.020644726, -0.021042045, 0.009972721, 0.007668268, 0.004002995, -0.0290679, 0.016305996, 0.014835914, -0.027844157, 0.008375497, -0.023267034, -0.0068021114, 0.01193548, 0.030275753, -0.03146771, 0.05937544, 0.019436873, -0.0011224279, -0.011411019, 0.035313763, -0.008208622, 0.04825049, -0.009122457, -0.00074547087, 0.023664355, 0.019484552, 0.020914903, -0.044849433, 0.0070762616, -0.012205658, 0.023584891, 0.04122588, 0.0015396134, -0.009297278, -0.020517584, -0.024061674, -0.023568997, -0.014231987, -0.011554053, 0.00944826, 0.028591117, 0.012165925, 0.000115471004, -0.006249837, -0.0184992, -0.01724367, 0.00003414465, 0.0491087, 0.012976457, 0.011919588, -0.021661863, -0.014780289, -0.034582697, 0.005423412, 0.019532232, -0.024697386, -0.022456503, -0.005248592, -0.030196289, -0.028670581, 0.01861045, -0.019659372, -0.0079066595, -0.016592065, -0.010807092, -0.02433185, -0.014343237, 0.020136157, -0.020247405, -0.002003484, 0.0002448482, 0.032230563, 0.033851627, -0.032278243, 0.018530985, -0.031165749, 0.020120263, 0.0001465116, 0.0043824348, -0.0279713, -0.046788353, 0.0044499794, 0.013842614, 0.003116972, 0.006047204, -0.0046526124, -0.034296628, -0.035599835, 0.024077566, 0.06306256, -0.006289569, 0.038905535, 0.023092214, 0.026683982, 0.011355394, -0.0070246104, -0.026397914, 0.014351184, -0.0027971298, -0.032611992, 0.0072153234, 0.015058412, 0.004891004, 0.009241654, 0.022535967, -0.027653443, 0.027017731, -0.0064405506, -0.0004929246, -0.03779304, 0.017434383, 0.0070047444, 0.010950128, -0.0022706813, -0.017942952, 0.02935397, 0.014390916, -0.0029282453, 0.04259266, -0.0060591237, 0.012388425, -0.009718437, 0.009297278, 0.011109056, 0.03375627, 0.021963827, -0.016290102, 0.015408053, -0.015098144, 0.00019791482, 0.013922079, -0.024109352, -0.033088773, 0.02477685, -0.0069332267, 0.012777798, -0.02614363, -0.004096365, -0.018832948, -0.023330607, -0.015527249, 0.018403843, 0.0009178082, -0.012944672, -0.009368796, -0.018292593, 0.009480045, -0.018832948, -0.014891538, 0.0027196526, 0.016170908, 0.017291348, -0.01843563, -0.015288858, -0.0071716183, -0.013206903, -0.0042076143, -0.015344482, -0.021614185, 0.017942952, -0.016067604, 0.025762202, 0.033025205, -0.00085076055, 0.0032838464, -0.018975982, 0.01821313, 0.01713242, 0.020469906, -0.0016200705, 0.028877188, -0.0029262588, 0.03289806, -0.034550913, 0.00905094, 0.0043585957, -0.0050380123, 0.019595802, 0.021932041, 0.013159225, -0.008145051, 0.0014790222, 0.026080057, -0.01741849, -0.014367077, -0.034741625, -0.014899485, 0.04157552, -0.008812549, 0.022392932, -0.02404578, 0.017195992, 0.0058763567, -0.016576173, -0.013715472, 0.01946866, 0.009329064, 0.0048949774, 0.011673249, -0.0076364824, 0.023394177, -0.0056578307, -0.028622903, 0.029449327, 0.037475184, 0.047646564, -0.007954338, -0.0021077804, 0.0104653975, 0.023712033, -0.035568047, 0.0113315545, -0.011887802, 0.04202052, -0.0051214495, -0.013349938, 0.021661863, -0.0065835854, -0.028082548, -0.016719207, -0.002777264, 0.026827019, -0.020469906, 0.022106862, 0.007898713, 0.018944198, -0.013977703, -0.011879856, 0.03135646, -0.0010548835, 0.028479869, 0.01416047, -0.01999312, -0.024220603, 0.0033136453, 0.015193501, -0.0029302319, 0.003107039, 0.0021792979, -0.004767835, -0.013485027, -0.012157979, -0.024745064, -0.028479869, 0.041543737, -0.018880626, 0.017052956, 0.0020720216, -0.027939513, -0.00221903, -0.00064316107, 0.012253336, 0.0074815275, -0.024792742, -0.017625097, 0.00026446584, -0.0029878432, 0.010735575, -0.0062458636, -0.008820495, -0.008971476, -0.0065120677, 0.02250418, -0.009106565, 0.024315959, -0.031054499, -0.018149558, 0.011816285, 0.024872206, 0.006388899, 0.018832948, -0.03966839, -0.0062855957, -0.02957647, 0.008097373, -0.008288086, -0.005844571, 0.0066670226, -0.0033414578, -0.0096071875, -0.029449327, -0.0262072, 0.021534722, -0.0016349701, 0.011887802, 0.008955583, 0.009344957, -0.004076499, 0.012380478, 0.010600487, 0.0041122576, -0.03614019, -0.0070087174, -0.0323736, -0.029719505, -0.0015207407, 0.011554053, 0.007127913, 0.017116528, 0.0076007238, 0.045326218, 0.014486272, -0.002302467, 0.006921307, 0.023139892, 0.023108106, 0.004124177, -0.00066600693, -0.009376742, 0.016528495, 0.024888098, 0.0057094824, 0.006329301, 0.025380775, -0.028305046, -0.01398565, 0.007974204, -0.015026626, 0.016083498, -0.020581154, 0.007827195, -0.020167941, -0.021455258, -0.012666549, 0.005947874, 0.017863488, 0.0030613474, 0.0051015834, -0.026223093, -0.026827019, -0.023568997, -0.02129633, -0.001674702, 0.012348693, -0.0064206845, -0.0058723832, -0.022790251, 0.023918638, -0.010417719, 0.008002017, 0.0077437586, -0.0020978474, 0.02129633, -0.016480817, -0.008558264, -0.017339027, -0.0169576, 0.011911641, -0.018229023, 0.016639745, 0.012634763, 0.02580988, 0.027685229, -0.019214375, -0.035822332, 0.012293068, 0.011824231, 0.0007275915, 0.023648461, -0.044944793, -0.030196289, 0.00865362, -0.026223093, -0.008931744, 0.00090886856, 0.01070379, -0.0052843504, 0.0155987665, 0.002820969, 0.0038083082, -0.006408765, -0.007219297, 0.047996204, 0.012444049, 0.017656881, -0.013167171, 0.020708296, -0.032166995, -0.030339323, -0.039191604, -0.027415052, 0.028670581, -0.015288858, 0.031038607, 0.02477685, 0.020692404, -0.04761478, 0.03442377, -0.01367574, -0.011585839, 0.013318152, -0.013612169, 0.0008398343, 0.01567823, -0.01147459, -0.022313468, 0.014025381, 0.0067107277, -0.00084778067, 0.05851723, 0.009329064, 0.000031770047, 0.003399069, 0.011426911, 0.0015525263, 0.004791674, 0.013381723, -0.013008243, -0.012253336, -0.0036473938, -0.005173101, 0.028956652, -0.0032580206, 0.02341007, -0.032739133, -0.10540094, -0.012722173, 0.017148314, 0.00953567, 0.009932989, 0.00064663764, -0.029433435, 0.005292297, -0.020454012, -0.0030295618, -0.013826721, 0.0026203226, 0.013405562, 0.00094115076, 0.015026626, 0.024760956, -0.031880923, 0.00035386276, -0.0076603214, -0.0015882851, -0.00999656, 0.010377987, 0.010290577, -0.0010062119, -0.034550913, 0.0077159465, -0.014033328, 0.009344957, 0.010091918, -0.011299769, -0.0161868, -0.010401826, 0.0035480638, -0.017434383, 0.005745241, -0.00014837403, -0.0035401175, 0.0038023484, -0.018546877, -0.018689914, -0.008629781, -0.010695843, -0.023886854, -0.02660452, -0.00023193531, -0.020962581, 0.01578948, -0.011625571, -0.008597996, -0.015066358, 0.022106862, 0.012920833, -0.019166697, -0.021232758, 0.0198183, -0.023282928, -0.0053201094, -0.008248354, 0.012539406, 0.0054154657, 0.038460534, 0.011172627, 0.003877839, 0.005065825, -0.030053252, -0.0008780763, 0.01510609, -0.0074378224, 0.024013996, -0.020120263, 0.0075768842, -0.00799407, -0.000337225, -0.038015537, -0.0336927, -0.0054512247, -0.007465635, 0.00011534684, 0.00722327, -0.02204329, -0.02387096, 0.031388246, 0.008542371, 0.018832948, -0.034550913, 0.0031567041, -0.02472917, -0.03614019, 0.039350532, 0.016830457, 0.026525056, -0.011633517, 0.033597343, 0.0035381308, 0.0010077017, 0.0030295618, -0.022980964, 0.015360375, -0.0075768842, 0.0036374608, 0.015479571, 0.0010896489, 0.007044476, -0.009154243, 0.0041082846, 0.006229971, 0.008037775, 0.019103125, -0.021566506, 0.01021906, 0.022249896, -0.016321888, -0.034010556, -0.01706885, 0.008462907, -0.0007737799, 0.017227776, 0.020644726, 0.0062975152, 0.027367372, -0.013286367, 0.0035381308, 0.0010826959, -0.055879027, -0.0108865565, -0.0047797547, -0.0063769794, -0.0009476072, -0.028018977, 0.02655684, -0.019627588, -0.0034566803, 0.024856312, 0.022027398, 0.0029659907, -0.024919884, 0.008208622, -0.003911611, -0.009289332, -0.004199668, -0.004465872, 0.018308487, -0.054671176, 0.015582874, 0.011776553, 0.016941708, -0.0051492616, -0.014963055, -0.010211113, -0.015837159, -0.0027534247, 0.022377038, -0.0014492231, -0.01821313, -0.006170373, 0.004787701, 0.017291348, -0.017482061, 0.031833246, -0.013230742, -0.0008328812, -0.009631027, 0.029433435, -0.014096899, 0.014835914, -0.007465635, 0.039064463, -0.01261887, -0.003206369, 0.012873154, 0.025666846, 0.016155014, 0.0025666845, 0.011728874, -0.023108106, -0.016369566, 0.015574927, 0.00038688994, -0.0016270237, 0.017227776, -0.0069610393, 0.02433185, -0.00549493, 0.0023302794, 0.020565262, 0.027049517, 0.01204673, 0.0028726205, -0.019389195, 0.017450277, -0.016480817, 0.021900255, 0.0032898062, -0.014629307, -0.009225761, -0.0047559156, 0.05400368, 0.013485027, -0.004279132, -0.011140841, 0.017100634, -0.02706541, -0.025555596, -0.00999656, -0.01462136, 0.0246656, -0.0012773825, 0.04653407, 0.0071596988, -0.01184807, 0.017942952, 0.0014482299, 0.003977169, 0.0013270474, 0.032993417, 0.009003262, 0.005379707, -0.008597996, 0.003053401, -0.0058127856, -0.001697548, 0.015296804, -0.023108106, 0.0056538577, -0.0107912, 0.027049517, 0.0010121716, -0.012038783, -0.0034765464, 0.01264271, 0.0121977115, -0.000365534, -0.017100634, -0.017211884, 0.03900089, 0.0062220246, 0.024474887, 0.004906897, 0.024395423, -0.012229497, -0.028066656, -0.033883415, -0.0016329834, 0.0060829627, 0.027494514, -0.0059518474, -0.029369863, -0.0067584063, 0.0067464863, 0.01625037, -0.006233944, 0.0035699164, 0.0015753722, 0.011069324, -0.0017670789, -0.0091860285, -0.015161715, -0.017513847, 0.02677934, -0.010107811, -0.013318152, 0.016544387, 0.0025130464, -0.00471221, 0.025682738, -0.023839176, -0.008133132, -0.001232684, 0.015646445, -0.01621064, -0.031149855, -0.0010826959, -0.0054114927, -0.028940758, 0.038873747, 0.011728874, -0.0038579733, 0.00549493, 0.0077874637, 0.03464627, 0.027812371, 0.0080934, 0.0035798494, -0.0010727629, 0.004116231, 0.010751468, 0.002223003, -0.023139892, -0.0057055093, -0.00044723286, 0.013167171, 0.003989089, 0.0016002046, -0.0024157031, -0.010123703, 0.013771097, -0.026270771, -0.015892783, 0.021995611, -0.00015718956, -0.0011482536, -0.017323134, -0.0056856433, -0.005896223, -0.002332266, -0.00023479103, -0.0051492616, 0.00999656, -0.0005433345, -0.018975982, -0.010536916, 0.021502936, -0.008145051, -0.04523086, -0.020740082, -0.002322333, 0.022535967, -0.03378806, -0.005622072, -0.027081303, 0.0035738896, 0.0069650123, 0.015622606, 0.0074100103, -0.041098736, -0.033438414, -0.015821265, 0.0034606536, -0.001020118, -0.026811125, -0.014367077, -0.00510953, 0.0046963175, 0.031054499, 0.011148787, -0.006818004, 0.0015604727, -0.008550317, -0.024697386, 0.010934235, 0.004616854, 0.030673072, -0.034519125, 0.0017064876, 0.0047002905, 0.045485146, -0.014986895, -0.0058922493, 0.0018097907, -0.013437348, -0.0032182885, -0.0011949387, -0.008868173, -0.0026123764, 0.02140758, 0.041194092, 0.0029759237, 0.0046764514, 0.0055227424, -0.011029592, 0.007986124, -0.018181344, 0.026254877, 0.027113087, -0.022424717, 0.0023302794, 0.023124, -0.013183064, -0.0067345668, -0.0011532201, -0.0035103185, 0.013969757, -0.02477685, -0.0091939755, -0.0130559215, 0.007711973, -0.011609678, -0.0091939755, -0.010266738, -0.0011899722, 0.024061674, -0.01021906, 0.002634229, 0.0143193975, 0.004120204, -0.0016339768, -0.016337782, 0.0005622072, -0.0042036413, 0.00645247, -0.026238985, -0.008085454, -0.0042274804, 0.03642626, -0.00040625926, 0.017021172, -0.016043765, 0.01644903, -0.009591294, -0.027796477, -0.007954338, 0.020342764, -0.0008115253, 0.023648461, 0.008637728, 0.018530985, 0.0011552067, 0.016242424, 0.00596774, -0.023219356, -0.023902746, 0.034010556, 0.0063332743, 0.011856017, 0.021105615, -0.0075013936, 0.017195992, 0.008121212, -0.00016066611, -0.00095704355, 0.018372057, -0.004362569, -0.0008825461, 0.006496175, 0.01264271, 0.029544685, -0.034010556, 0.0052803773, 0.010513077, -0.005824705, -0.0049466286, 0.009829686, -0.0198183, 0.021677757, 0.009257547, -0.023648461, -0.027144874, -0.025841666, 0.009074779, 0.011069324, -0.018483307, -0.0038003619, -0.0184992, -0.01896009, 0.008041749, -0.009376742, 0.011124948, -0.005173101, -0.015090197, 0.0037149382, 0.04186159, -0.0068497895, -0.006778272, -0.0020442093, -0.011824231, -0.0053280555, 0.011418965, 0.008590049, -0.018038308, -0.013739311, -0.019262053, 0.0077636247, -0.011871909, 0.004668505, 0.021391686, 0.0069371997, 0.002568671, -0.019865979, -0.019532232, 0.011236198, -0.009686652, 0.011196466, 0.014017435, -0.010107811, 0.0113474475, -0.0042314534, 0.020517584, -0.025968809, -0.001405518, -0.02677934, 0.01213414, -0.008053668, -0.008502639, 0.026254877, 0.006857736, -0.021216866, -0.0041678823, -0.004747969, 0.01867402, 0.022599539, -0.027844157, 0.0050181462, -0.00009504629, -0.001558486, -0.019230267, -0.01724367, -0.012960564, 0.007568938, 0.007080235, 0.018038308, -0.010751468, -0.010171382, -0.024204709, 0.002209097, 0.020136157, -0.004930736, -0.011037538, -0.001907134, 0.0058803298, 0.0021197, 0.012412264, -0.0048353793, -0.012491727, 0.007843088, -0.001126401, -0.015423946, -0.012944672, -0.02175722, -0.011458697, 0.012094408, -0.0104653975, 0.0125950305, -0.0143352905, -0.011180573, -0.001625037, 0.017466169, -0.010632272, -0.0011383207, -0.021232758, 0.005606179, 0.030704858, 0.007417957, 0.0074139833, -0.026811125, 0.024506671, 0.0035500505, 0.003621568, 0.0083278185, 0.01821313, 0.013993596, -0.020279191, 0.014700824, -0.018578663, -0.010457451, 0.022583645, 0.020565262, -0.0023461722, 0.022901502, -0.0063531403, 0.0029421516, -0.031261105, 0.019087233, -0.002362065, 0.00558234, 0.019611694, -0.016639745, -0.01601198, -0.02347364, 0.01204673, -0.004863192, 0.00030096958, 0.0041837753, 0.025364881, 0.0068497895, 0.038683034, -0.0071517527, 0.0077477316, -0.008168891, -0.012253336, 0.007866927, 0.0012386438, 0.00020685451, 0.006126668, 0.035568047, -0.0035401175, 0.0051055565, 0.0058922493, 0.020883117, 0.027764693, -0.008399336, 0.023219356, 0.0032917927, -0.0069689853, -0.0038857856, 0.0184992, 0.02849576, -0.03283449, 0.0030315483, 0.023219356, -0.016592065, -0.042274803, 0.025317203, -0.0048115402, 0.01730724, -0.0057770265, -0.021042045, 0.007735812, 0.019834194, 0.015980193, 0.004235427, -0.006814031, 0.020040799, 0.002286574, 0.0073226, 0.00068388635, 0.010664058, 0.0022408825, 0.008454961, 0.021169188, 0.005089664, 0.0130241355, -0.0038957186, -0.0068736286, 0.011411019, 0.013143332, -0.009233708, 0.007525233, -0.0018425696, -0.011728874, 0.008860227, 0.00014017931, -0.004465872, 0.026763447, 0.0034308545, 0.0025110599, 0.022122754, -0.0033911227, 0.000121803285, -0.0100680785, 0.0013419469, -0.004883058, -0.0027732907, -0.003339471, -0.0032679536, 0.013564491, 0.008534425, 0.012722173, 0.021630079, -0.0037944021, 0.0068696556, -0.00070424896, -0.0051889936, -0.004950602, 0.012944672, -0.005137342, 0.00009076269, -0.011426911, 0.011291822, -0.007644429, 0.006631264, 0.010362094, -0.00030245952, 0.013341991, 0.0015783521, -0.021820791, 0.0020918876, 0.0026421752, -0.028861294, -0.0060432306, 0.009583348, -0.0056498847, -0.0035738896, -0.0056657773, -0.009591294, -0.021042045, -0.029036116, -0.012658602, -0.0063134083, -0.013286367, 0.017005278, 0.0022369092, -0.0047201565, -0.00472413, -0.0018534958, -0.008152998, 0.0139061855, -0.0059319814, -0.001714434, -0.0021137402, 0.018467415, -0.007938446, -0.0125950305, -0.028511653, 0.00905094, -0.016321888, -0.0034268815, -0.0074338494, -0.002781237, -0.02380739, 0.0012187778, 0.0147564495, -0.007771571, -0.008415229, 0.019007768, -0.00722327, 0.02655684, -0.010195221, 0.005498903, 0.004549309, -0.0005711469, -0.0117606595, -0.0060193916, 0.0030255886, -0.007549072, 0.0063769794, -0.0070285834, -0.032611992, 0.016043765, -0.0060630967, 0.016266264, 0.008264247, -0.008017909, 0.0034169485, 0.004775781, -0.0075609917, -0.0033573504, 0.0076563484, -0.0064683626, 0.00074547087, 0.015233233, -0.023155786, 0.0012485768, -0.014184309, 0.0007549072, -0.011705035, -0.0007102087, -0.0020054707, -0.011593785, -0.0056141256, -0.008375497, 0.013485027, -0.0009898224, -0.018308487, -0.010743521, 0.006901441, 0.0014800155, 0.012213604, 0.01656028, 0.021963827, -0.005113503, -0.011339501, 0.008931744, 0.0049386825, -0.008931744, -0.013707526, 0.0013429401, 0.0034685999, -0.0072073773, 0.0213599, 0.022377038, -0.029401649, 0.0009679698, -0.000101316495, -0.014271719, -0.005661804, -0.053717606, -0.0071517527, 0.007811303, 0.019945443, -0.0014770356, 0.0143352905, 0.017720453, -0.022138648, 0.0035778629, -0.027573979, 0.02085133, 0.025317203, -0.010433612, 0.0025865505, 0.015876891, 0.02061294, -0.018928304, 0.016234478, -0.018880626, -0.032580204, 0.02792362, 0.018372057, -0.010242899, 0.009742276, -0.0006987858, 0.026095951, 0.026763447, -0.020565262, 0.0036374608, -0.007469608, -0.004124177, 0.0027077328, -0.011434858, -0.00046958207, 0.009456206, -0.002362065, 0.0050618513, 0.000026927713, 0.012555298, -0.000029007433, 0.0034705866, -0.006011445, -0.01775224, 0.018832948, 0.0019627588, -0.00026620412, 0.017942952, -0.007084208, -0.020406334, 0.009917097, -0.011395126, 0.0014839886, -0.003571903, 0.015090197, -0.003206369, -0.0096071875, 0.00063173816, 0.008240408, -0.0020382495, -0.00020561289, -0.008319872, -0.011538161, 0.0025726443, 0.018356165, -0.0070484495, -0.007382198, 0.0071398327, -0.022679001, 0.010624326, 0.005085691, -0.00043357498, 0.030402895, -0.017513847, 0.0030990927, -0.017148314, 0.0031209453, -0.02186847, 0.015312697, 0.011403072, 0.0061822925, 0.024570243, -0.009456206, -0.00015930033, 0.009042994, -0.0000587288, 0.015829213, -0.019961337, -0.013119493, -0.0031586906, 0.010870663, 0.0018842882, -0.001455183, -0.006086936, -0.020628832, -0.0023600783, -0.0061505074, -0.004775781, 0.00038614497, -0.008534425, -0.0016041779, 0.015559034, 0.016925814, 0.0006848796, -0.0010876624, -0.0057929195, 0.0061306413, -0.02232936, 0.0010886557, -0.011299769, -0.01070379, -0.006007472, 0.0063571134, 0.011498429, -0.02089901, -0.0044539524, -0.018181344, -0.021995611, -0.0062617566, -0.012102354, -0.01678278, -0.0005140322, -0.013151278, 0.0001646393, 0.011204412, -0.009511831, 0.022106862, 0.018133666, -0.0045810947, 0.0025726443, 0.03448734, -0.0056101526, -0.016202692, 0.013008243, 0.004263239, 0.020136157, -0.00007288331, -0.01087861, 0.011021645, 0.011196466, 0.014780289, 0.01059254, 0.021089723, 0.018530985, 0.008152998, 0.009209868, -0.016266264, 0.013556544, -0.0011889789, -0.015511356, -0.008661567, 0.011434858, -0.007886793, 0.019119019, -0.019373303, 0.010258792, 0.014573682, 0.012491727, 0.0077238926, -0.00742193, 0.012587084, -0.0027415052, 0.012269229, -0.00085374044, 0.02112151, 0.008296032, -0.011697088, 0.018149558, -0.007886793, 0.0065239877, -0.00046759547, 0.0027792505, 0.0076325093, 0.0020342763, 0.01565439, -0.0042473464, 0.006210105, 0.010330309, -0.00022920374, 0.0121897645, -0.008097373, -0.0025031134, 0.008558264, -0.004883058, -0.003013669, -0.0032123288, 0.007350412, 0.0026560815, 0.0015108077, -0.0039612763, 0.017037064, 0.013548598, -0.031706102, -0.01424788, 0.016814565, 0.0023541185, -0.010147542, 0.024983454, -0.010648165, -0.009853526, -0.005848544, -0.009106565, 0.015257072, 0.0037030184, -0.017958846, 0.013238689, -0.008447015, 0.02433185, 0.0009495938, -0.004465872, -0.004259266, 0.010600487, 0.029306293, -0.0134691335, 0.021200974, -0.028098442, 0.0046724784, 0.02050169, 0.011132895, 0.0014720691, -0.008923798, -0.009901204, -0.011244144, -0.014351184, 0.018006524, 0.0016667556, 0.021677757, 0.0063412203, 0.004465872, -0.009988614, -0.0035361443, 0.0030514144, -0.0039056514, 0.014676985, 0.01273012, -0.0013737325, 0.008693352, 0.0010171381, -0.002149499, -0.011379233, -0.011792446, 0.012698334, 0.00022100902, 0.0069491193, -0.003037508, -0.008351658, 0.0117527135, -0.008288086, -0.015265019, -0.013532705, 0.0036056752, -0.007000771, 0.010528969, 0.00799407, -0.01730724, -0.010497184, 0.0073186266, 0.0037328175, 0.0068497895, -0.0045532826, 0.010616379, 0.000501616, -0.013365831, -0.000059411694, -0.023251142, 0.024967562, -0.003774536, -0.01598814, 0.00472413, -0.02015205, 0.01213414, 0.0057293484, 0.01889652, -0.013087707, -0.0062021585, 0.022313468, 0.013882346, 0.0066908617, -0.005784973, -0.0072073773, 0.011339501, 0.0065796124, 0.013643955, -0.0070285834, 0.0000013968266, 0.009567455, 0.015638499, 0.018991876, -0.0045413626, 0.00692528, 0.016147068, -0.020088479, -0.005336002, 0.0026143629, 0.0047360496, 0.003710965, -0.0039950483, -0.015368322, 0.0046327463, -0.0213599, 0.00800599, -0.019230267, 0.02546024, -0.0068060844, -0.015408053, -0.015813319, 0.024506671, -0.016305996, 0.014017435, -0.0016528495, -0.0015247139, 0.0023600783, 0.014184309, 0.0056578307, 0.011140841, 0.0012088448, 0.0054551978, 0.0066272905, -0.01730724, 0.025094705, -0.008550317, -0.017863488, 0.01050513, 0.0033136453, -0.015725909, 0.0016935747, 0.0014780288, 0.006428631, 0.0019210402, -0.0065359073, 0.00015396134, 0.0036454073, -0.0048790844, -0.02495167, 0.017227776, -0.0070762616, -0.01484386, -0.0010519036, -0.008836388, 0.017021172, -0.00047827346, 0.03199217, 0.0052605113, 0.012118247, -0.02924272, -0.020485798, -0.0052326987, 0.010695843, -0.0029640042, -0.00027837203, 0.026334342, -0.0039135977, -0.020946689, -0.012150032, -0.0009232714, 0.008049695, 0.013922079, 0.03327949, -0.023712033, -0.011665303, -0.00043357498, -0.007549072, 0.004442033, 0.020708296, -0.0046565854, -0.0068100574, 0.00762059, -0.0035460773, -0.002934205, -0.002979897, -0.022631323, 0.008486746, 0.012976457, 0.006794165, -0.015034573, -0.0026660145, -0.003977169, 0.00432681, -0.021773113, 0.009678705, -0.01625037, 0.010179328, -0.008852281, 0.010433612, -0.012666549, 0.031483606, 0.020167941, 0.017037064, 0.015439839, -0.02387096, -0.009273439, 0.00075639714, 0.005916089, 0.0014740557, -0.008947637, 0.0003844067, 0.012467888, -0.0058564907, -0.01330226, 0.01764099, -0.009782008, -0.0077238926, 0.019039555, -0.008439068, 0.020660618, -0.009042994, -0.017195992, -0.007060369, 0.0041718557, 0.0065637194, 0.0029640042, -0.002030303, -0.00663921, -0.0087887095, 0.018594556, -0.001568419, 0.0107912, -0.023314713, -0.025587382, 0.012308961, 0.015360375, 0.026080057, -0.0027534247, 0.011093163, -0.006547827, 0.0056339917, 0.010250845, -0.019691158, 0.00066004717, 0.025158277, 0.000093990915, -0.0037566565, 0.003043468, -0.006901441, -0.002544832, -0.0074934475, 0.01678278, -0.028177904, -0.0029719505, 0.005355868, -0.007688134, -0.029147364, -0.00625381, -0.008685406, 0.002668001, -0.004521497, -0.00093221106, -0.004569175, 0.019691158, -0.02649327, -0.0063054617, -0.008264247, -0.029385757, -0.027939513, 0.013747257, -0.00025378788, -0.025746308, 0.001800851, 0.0096071875, -0.002515033, -0.0398591, 0.006861709, -0.011887802, -0.016337782, -0.0077477316, -0.0069888514, 0.008423175, 0.018006524, -0.0045810947, -0.0010191248, 0.026652198, -0.006214078, -0.008447015, -0.004362569, -0.005578367, -0.0000051139377, 0.0014859752, 0.0070722885, 0.013143332, 0.001581332, -0.0031884897, -0.01843563, 0.0062617566, 0.0054830103, -0.00084778067, 0.024999348, 0.018117772, -0.000025034238, -0.0008760897, -0.000116712625, -0.011879856, -0.01625037, -0.008844334, 0.02501524, -0.0012684427, -0.019627588, -0.0062657297, -0.0075609917, -0.02186847, -0.014104845, -0.015376268, -0.022249896, -0.013167171, 0.016242424, 0.0025130464, -0.005904169, -0.022424717, 0.010004507, -0.007147779, -0.005622072, 0.014414755, 0.012682441, 0.020104371, 0.009948882, 0.014128684, -0.00942442, -0.022234004, 0.020342764, -0.01550341, 0.007533179, -0.012237444, 0.015980193, 0.004179802, 0.020914903, 0.0079225525, -0.0065398803, -0.023584891, -0.008013936, -0.0038420805, -0.00828014, 0.014796182, -0.006921307, -0.009789955, -0.01975473, -0.0024713278, -0.01781581, 0.0044738185, 0.008359604, -0.0035679298, -0.019452767, 0.030593608, 0.020740082, -0.008240408, 0.006571666, 0.0004978911, -0.0063571134, -0.013175118, 0.018944198, 0.001378699, 0.019277947, 0.006456443, -0.015670285, 0.009853526, -0.005312163, 0.01816545, -0.014907431, -0.0009312178, 0.010123703, -0.0006714701, -0.0027613712, -0.014820021, -0.016059658, -0.013143332, 0.0080934, 0.0011979186, -0.011919588, -0.000103054765, -0.0046128803, 0.014033328, -0.014510111, 0.03636269, -0.006229971, -0.020485798, 0.009718437, -0.013183064, -0.0037824824, 0.0032699401, -0.0026699875, -0.016035818, 0.0030355216, 0.0032103423, 0.0151537685, -0.028289154, -0.0043148906, -0.0048393523, -0.006349167, -0.008852281, -0.01290494, -0.0009972722, -0.003136838, 0.0076166163, 0.00071318867, -0.0063968454, 0.010330309, -0.0065041217, 0.0031288918, 0.027669337, -0.01398565, -0.013357884, 0.0009714464, 0.01821313, 0.006186266, -0.022933286, 0.005049932, -0.01706885, 0.02118508, -0.0062855957, 0.009686652, -0.0033076855, -0.0069848783, 0.008868173, -0.010107811, 0.0021892309, 0.0051452885, -0.007175592, -0.03842875, -0.005618099, 0.004934709, 0.009654866, 0.028177904, -0.013310206, 0.0113315545, -0.018658128, -0.009058886, -0.0025726443, -0.004545336, -0.00034765463, 0.02415703, 0.008558264, -0.0138743995, -0.013842614, -0.016909922, -0.008629781, 0.016528495, -0.013540652, -0.009082725, -0.020517584, -0.026175413, 0.0121897645, -0.014684931, 0.0037626165, 0.0013111546, -0.0055505545, 0.00856621, 0.00025254625, 0.0023004804, 0.008029829, 0.0018495227, 0.0025865505, -0.0051452885, 0.006384926, -0.009599241, -0.025714524, 0.0151537685, -0.018244915, 0.017609203, 0.013437348, -0.0096230805, 0.020867225, -0.0022170432, 0.016862243, -0.0024971536, 0.004195695, -0.016798671, 0.0050976104, -0.0026004566, -0.0017094675, 0.0072272434, 0.0033275515, 0.012388425, 0.009273439, -0.021804899, 0.0028527547, 0.0031328648, 0.004827433, -0.0143273445, 0.027510408, 0.00022063653, -0.013747257, 0.014065113, 0.02226579, -0.011093163, -0.044118367, 0.016051712, -0.024999348, 0.008109293, -0.0032997392, -0.0031348516, 0.015082251, -0.017863488, 0.0001580587, 0.015265019, 0.0372209, -0.010544862, -0.003907638, 0.0023263062, -0.002777264, -0.010544862, -0.0071716183, -0.0044738185, 0.0035679298, -0.0041281506, 0.018085988, 0.0020183835, 0.0046963175, -0.008987369, 0.023060428, 0.0011522268, 0.025825772, 0.0031884897, 0.01396181, 0.009178082, 0.013922079, 0.003921544, 0.0042870785, -0.0057690805, -0.0041321237, 0.000110318266, 0.0011413005, -0.0083437115, 0.0074934475, 0.0058405977, -0.010242899, 0.010449505, 0.020056693, 0.0056856433, -0.008923798, -0.00549493, -0.02318757, 0.008844334, 0.005272431, 0.021264544, 0.03072075, -0.036680546, -0.010544862, -0.0031606774, 0.015336536, -0.0121897645, 0.025746308, 0.026032379, -0.009750223, 0.004887031, 0.010854771, 0.0100362925, 0.0060392576, 0.03003736, -0.003399069, -0.0017213871, -0.007839115, -0.014875645, 0.023839176, -0.009901204, -0.017497955, -0.009368796, -0.02528542, -0.0052128327, 0.008208622, 0.0064604166, 0.015336536, -0.02770112, -0.0044102473, -0.012269229, 0.014724663, 0.0021057937, -0.00942442, -0.016862243, 0.010258792, -0.0050340393, -0.017609203, -0.013429401, 0.017720453, 0.021693649, 0.0012018917, -0.006587559, -0.004771808, -0.025603274, -0.0071636722, 0.021375794, -0.0062657297, -0.02855933, 0.00031661405, 0.020072585, 0.013747257, -0.024347745, 0.010743521, -0.0032778867, -0.007119967, 0.0043784617, -0.0066431835, 0.009829686, 0.009877365, 0.011816285, 0.023902746, -0.0024971536, 0.011109056, 0.023251142, 0.015304751, -0.026350236, -0.023378285, 0.0057333214, -0.017386705, -0.009750223, -0.019707052, -0.006229971, 0.021773113, 0.029878432, 0.02832094, -0.002554765, -0.0032560339, -0.021439364, -0.011466643, 0.021550614, 0.013604223, 0.00038639328, -0.02175722, -0.011863963, -0.01350092, 0.0037586433, -0.0032341813, 0.025666846, 0.007266975, 0.026302556, -0.018292593, -0.016592065, -0.012157979, 0.035758764, -0.020660618, 0.0020183835, -0.002554765, -0.0042513194, 0.010584594, -0.021947933, -0.0014512098, 0.012142086, 0.03483698, 0.0021057937, 0.0070126904, 0.0017859516, -0.0045413626, 0.011307715, -0.020024907, -0.002544832, -0.004159936, 0.0076007238, 0.02032687, -0.0012704293, 0.010242899, -0.0087569235, 0.019961337, 0.037665896, 0.01021906, 0.0065279608, 0.00596774, -0.0050101997, -0.016576173, 0.0072073773, 0.011728874, -0.0055227424, -0.009178082, -0.0010260778, -0.022059184, 0.024633814, 0.019373303, -0.019420981, 0.0025925103, -0.013747257, -0.009543616, 0.0028885133, -0.0037506968, -0.0014780288, -0.013771097, 0.0019279933, -0.008049695, -0.014565736, -0.008987369, 0.015471624, -0.0070484495, -0.0077159465, -0.0026540947, -0.006992825, -0.0073226, -0.008454961, 0.016107336, -0.012698334, 0.013334045, 0.006456443, 0.0027077328, 0.0030017495, 0.0050578783, -0.0028865268, -0.0053280555, -0.0071596988, -0.021614185, 0.0029421516, 0.018944198, -0.00018140122, 0.012849315, 0.01867402, 0.0013330072, -0.017593311, -0.004505604, -0.010060132, -0.0072153234, -0.0062180515, 0.024395423, -0.002109767, -0.0027395184, 0.02129633, 0.009098618, -0.02820969, 0.004863192, -0.025539704, 0.018372057, -0.016814565, 0.020009015, -0.0016160974, 0.011283876, 0.0002659558, -0.0021117537, 0.0005860464, 0.00064216775, 0.018229023, 0.009011208, 0.008780763, 0.0156067135, 0.022917394, 0.0151537685, 0.042147662, 0.0004147023, 0.012865208, -0.013349938, -0.005339975, 0.011887802, 0.02050169, 0.012038783, 0.0038222144, 0.0067425133, -0.012571191, 0.02341007, 0.008454961, -0.011037538, -0.015694123, 0.0016627825, 0.026525056, -0.0022647216, -0.020422226, -0.009567455, 0.015439839, -0.009257547, -0.035091266, 0.0025269527, 0.0026978, 0.0013409536, 0.0007737799, 0.029099686, -0.0025845638, -0.00067544327, 0.0008522505, -0.0068895216, 0.023886854, 0.0035460773, -0.00028035862, -0.011554053, -0.004104311, -0.024633814, 0.0011909654, 0.010282631, 0.0011720927, -0.036807686, -0.0046327463, 0.0057531875, 0.015376268, -0.008931744, -0.018197237, 0.009631027, -0.011021645, 0.004104311, -0.009321118, -0.019850086, 0.015741803, 0.0013101613, -0.021773113, 0.002322333, 0.026811125, -0.000113484406, 0.0063134083, -0.01792706, 0.000896949, 0.0017422463, 0.003917571, -0.00006260887, 0.028972544, 0.025746308, -0.025190061, 0.021502936, -0.012928779, 0.010187274, 0.000072572904, -0.019500446, 0.011283876, 0.033374846, -0.0053280555, 0.010608433, -0.010457451, 0.018244915, -0.00471221, 0.0010027353, -0.011800392, 0.022202218, 0.0013677727, -0.005701536, -0.012483781, 0.029512899, -0.012396371, -0.020295084, -0.018944198, -0.0042076143, 0.010401826, -0.009368796, -0.011633517, -0.020374548, 0.0050817174, -0.00017866965, 0.01656028, -0.015002787, -0.026159521, 0.0043705152, -0.008168891, 0.021630079, -0.0043506497, -0.0065796124, -0.016766887, -0.0013727392, 0.0057492144, 0.0060352846, -0.0017025144, 0.006321355, 0.0027156794, -0.015225287, -0.00839139, -0.0003985612, -0.0022885608, 0.00298387, -0.010584594, 0.0046963175, 0.003438801, -0.026254877, 0.0117527135, -0.008597996, 0.0017819783, -0.018928304, 0.011951373, 0.0008239415, 0.011927534, -0.01213414, 0.0117686065, 0.012388425, -0.010163435, 0.021709543, -0.0067107277, 0.00009858492, 0.0037228845, -0.008677459, -0.0035639566, -0.015400107, -0.0031765702, -0.00003814889, 0.00024522067, -0.011546107, -0.03779304, -0.004100338, 0.006289569, 0.0026719742, -0.0031785567, -0.0079106325, -0.00058455643, 0.016941708, 0.05003048, 0.02085133, 0.012285122, 0.019452767, 0.0012237444, -0.02917915, -0.0071398327, -0.017847596, -0.008359604, 0.012062622, -0.0036275277, -0.02404578, 0.0054114927, -0.009742276, -0.021852577, 0.010719682, -0.0025130464, 0.005351895, 0.024522565, 0.009090672, -0.009925043, 0.015487517, -0.02649327, 0.010711736, 0.017466169, -0.0011293809, -0.003542104, -0.0014661093, 0.016687423, -0.015805373, -0.00762059, 0.00008163676, -0.003226235, -0.009368796, 0.041066952, 0.014804128, -0.012936725, 0.007044476, -0.006674969, -0.012809583, -0.03312056, -0.0043705152, -0.00953567, -0.014502165, -0.002914339, -0.015431893, 0.024745064, -0.022965072, -0.041925162, 0.00529627, 0.0020243432, -0.005423412, 0.016655637, -0.01224539, -0.0076801875, 0.0032520609, -0.011585839, 0.025571488, 0.0027037598, 0.009845579, -0.01416047, 0.0069689853, -0.003023602, -0.007199431, 0.0057293484, 0.00942442, 0.000056897406, -0.01501868, -0.006102829, -0.0046565854, -0.023712033, -0.015964301, -0.025094705, -0.0096389735, -0.0037328175, -0.0037169247, 0.017323134, -0.0035579968, -0.013707526, -0.0005915095, -0.0067623793, 0.007402064, 0.00042115877, -0.009861472, 0.009082725, -0.0123328, -0.008804602, -0.021820791, 0.0004646156, 0.015535195, -0.0011174614, 0.00779541, -0.017052956, 0.016512603, 0.021487042, -0.0011532201, 0.001079716, 0.0045572557, -0.006496175, 0.008605942, -0.010044239, 0.025889345, 0.012308961, -0.0060591237, 0.0069371997, -0.024172923, 0.013643955, 0.007199431, -0.020040799, -0.005538635, -0.00018450528, 0.014168416, 0.0063014887, 0.007982151, -0.0028746072, -0.005987606, 0.016035818, 0.01638546, 0.030625394, 0.009654866, -0.010576648, 0.007525233, -0.018832948, 0.0002349152, 0.0020422228, -0.0063014887, -0.014216094, -0.010552808, 0.015257072, 0.012173872, -0.016067604, -0.004366542, 0.0064643896, -0.015805373, -0.015272965, -0.03181735, -0.009011208, -0.0027514382, 0.020247405, 0.032341816, -0.0044062743, 0.029830754, -0.010211113, 0.0038599598, -0.0032719267, -0.008152998, -0.010377987, -0.0044340864, 0.03842875, 0.016139122, 0.0012515567, 0.015495463, -0.0063332743, 0.000993299, -0.0068259505, 0.007179565, -0.01407306, -0.009766116, 0.0121818185, -0.0046963175, 0.012006998, 0.014263773, -0.008677459, 0.014081006, 0.0032977525, 0.009162189, -0.0107912, -0.0022031371, 0.003701032, -0.013143332, -0.0063014887, 0.001960772, -0.0045969877, 0.010362094, 0.027160767, 0.0035738896, 0.008117239, 0.0018743551, 0.013659847, -0.017609203, 0.013922079, 0.007020637, -0.014438594, 0.010735575, -0.032611992, -0.003438801, -0.0008060621, -0.038015537, -0.008176837, 0.008645674, -0.0092496, -0.014311451, 0.012722173, -0.01147459, -0.004573148, 0.01975473, -0.009011208, 0.007870901, 0.0011482536, 0.004732076, 0.024443101, -0.015058412, -0.033851627, 0.0066908617
3200
+ -0.05341359, -0.0145786945, -0.021789998, -0.01755999, 0.0067781564, 0.007546894, 0.013782642, 0.02328845, -0.015242072, 0.02008863, 0.014063601, -0.008694147, -0.0023862077, -0.008249293, -0.007636645, 0.025333213, -0.0398963, -0.0066181654, -0.03440197, -0.047669522, -0.015468401, -0.026004395, -0.07123893, 0.0003821737, 0.020010585, 0.0036622335, 0.008725364, -0.004542184, -0.01128522, 0.0114335045, 0.005904059, -0.015608881, -0.021774389, -0.012135904, 0.012807086, -0.012323211, -0.0023491364, -0.0016877102, -0.021680735, 0.019136487, 0.000767274, -0.005248486, 0.026925318, 0.017450728, -0.0008219051, -0.024365462, -0.006138192, -0.035057545, -0.014508454, -0.02314797, 0.038397845, 0.01325194, 0.035369724, 0.025301995, -0.00885804, 0.016779546, 0.022695312, -0.009622875, 0.0030164162, -0.014648934, -0.0025930253, -0.0072932495, 0.014797219, -0.011363265, 0.02634779, -0.00899852, -0.012978784, 0.010161381, 0.023725498, 0.049605023, 0.009334111, -0.024474725, 0.010504777, 0.030250011, 0.002516932, 0.017794123, 0.03349666, -0.01562449, -0.02079103, 0.00982579, -0.006770352, 0.008054182, -0.002308163, -0.029610047, -0.001098475, -0.012034447, 0.041457187, -0.049074322, 0.045796454, 0.01003651, -0.0040544067, 0.023959631, -0.020712985, 0.0036115048, -0.011441309, 0.017310249, 0.01198762, 0.021805607, -0.023616236, 0.041738145, -0.008975106, 0.022351917, -0.010184795, -0.039053418, 0.0009784817, -0.017044898, 0.029812962, 0.019276967, -0.003459318, 0.019542318, 0.0051548327, -0.01574936, -0.013064633, 0.025286386, -0.000033656648, 0.04642081, -0.0033383493, -0.012588562, -0.005459206, 0.0044797487, 0.018793091, 0.00801516, -0.022086566, 0.0013228526, -0.009279479, 0.004409509, -0.016014712, -0.01311146, 0.029984659, 0.06543243, -0.013134873, 0.03683696, 0.030827539, 0.03917829, 0.059313744, 0.025863916, 0.011293025, -0.0057011438, 0.0016233235, 0.04389217, -0.00871756, 0.013969948, -0.028080376, -0.013556313, -0.03138946, 0.01527329, 0.013720206, 0.044110697, -0.02733115, 0.020322762, -0.021259295, -0.024505943, 0.01854335, -0.006067952, 0.015772773, -0.017638035, -0.008639515, 0.009935052, -0.02775259, 0.04514088, -0.0050221574, -0.008186858, 0.047981698, 0.030047094, -0.0043743886, -0.020260327, 0.010231622, -0.018153127, -0.07011509, 0.02538004, -0.01464113, 0.017731689, 0.012120295, -0.019479882, -0.033527873, 0.017747298, -0.025895134, -0.016233236, -0.0039666067, -0.04532819, -0.022180218, -0.03140507, 0.00039631923, 0.0041987887, -0.0011531061, 0.064433455, 0.06949074, 0.034620497, 0.028845211, -0.027846243, 0.017497554, -0.01713855, -0.005654317, -0.010629647, 0.011698856, -0.011386679, -0.017778514, -0.037804708, -0.002198901, 0.012814891, -0.031966988, -0.030577797, 0.004202691, -0.00074678735, 0.0061264858, 0.05381942, -0.0057128505, -0.012159318, 0.010676474, -0.0216183, 0.05797138, 0.03624382, 0.009373133, 0.014531868, -0.010067728, -0.036306255, -0.01137107, -0.014321147, -0.03596286, -0.005794797, 0.048293877, -0.0026164385, 0.000086824395, -0.044672616, 0.0043002465, -0.0012028593, -0.008069791, 0.010816954, 0.025426866, 0.036087733, -0.01938623, 0.05603588, 0.029610047, 0.00088385283, 0.0027783806, 0.013033415, 0.043174163, -0.038272973, -0.042424936, 0.046764206, -0.025192734, 0.0060484414, -0.046233505, -0.038023233, 0.0275965, -0.018324826, 0.04304929, 0.008709756, 0.01407921, -0.0134080285, 0.01771608, 0.052196097, 0.036618434, 0.023928413, -0.024989817, 0.038553935, 0.022149002, 0.0005189953, 0.028376944, 0.01701368, -0.005388966, 0.016561022, -0.03496389, 0.032435253, -0.005104104, -0.0010692083, 0.0140011655, -0.036899395, 0.007464947, 0.0055801747, 0.037117917, 0.007972236, 0.043548778, 0.016920026, 0.02105638, 0.034682933, 0.014945503, 0.040208478, 0.035244852, -0.03636869, 0.020416416, -0.000019404399, 0.07073945, 0.05463108, 0.007621036, -0.016123973, 0.015827404, -0.03805445, -0.011714465, -0.008795604, -0.04770074, 0.02386598, 0.0015374747, 0.026004395, 0.029485175, 0.039958734, 0.0032739628, -0.0078083426, -0.01826239, 0.011175958, 0.03160798, -0.03280987, 0.008257098, -0.02578587, 0.022367526, 0.0451721, 0.033278134, 0.024193766, -0.025676608, -0.0027022874, 0.06193604, -0.01938623, -0.017419511, 0.01755999, 0.0077146892, 0.01882431, -0.013915317, -0.018512132, -0.034776587, -0.00030266595, -0.055005696, -0.02801794, -0.08022965, 0.022523614, 0.044173133, 0.013634357, 0.0021071988, -0.008740973, 0.045109663, -0.01643615, -0.009903834, -0.04142597, 0.0023979142, 0.010184795, 0.0052718995, -0.07617134, -0.02147782, 0.032154296, 0.0351512, 0.021306122, -0.005775286, -0.022289481, 0.013478268, -0.026441444, 0.016514195, -0.062560394, -0.008389773, 0.02175878, 0.005654317, 0.035494596, 0.0009970173, -0.030577797, 0.0031998204, -0.0075703072, -0.011012065, 0.016092755, 0.048887014, -0.0030729983, -0.021774389, 0.02815842, 0.059032787, -0.00071947183, 0.057253372, 0.01784095, -0.015554249, -0.016233236, -0.009724333, -0.038585152, 0.000620453, -0.012627584, 0.0029208118, 0.009872617, -0.016217627, 0.00015779602, -0.0055918815, 0.03440197, -0.02353819, 0.03162359, -0.0067352317, 0.023819152, -0.011386679, 0.010606234, -0.0148674585, 0.039240725, 0.017216595, -0.0063411077, 0.019183313, -0.047170036, 0.02719067, 0.011488136, -0.013314375, -0.0049011884, -0.042924423, -0.04139475, 0.018324826, 0.00920924, 0.023912804, -0.04738856, 0.026722403, 0.003634918, -0.0122529715, -0.020322762, 0.0007609329, 0.0076873736, -0.008538058, -0.025301995, -0.026441444, -0.015031352, 0.005174344, -0.035525814, -0.009833595, -0.036087733, 0.010754518, 0.029812962, -0.0026144874, 0.000401197, 0.0044017043, 0.058065034, -0.0142587125, -0.019495491, 0.053476024, 0.03580677, 0.006551828, 0.021368558, -0.024896163, 0.0013891903, 0.009295088, 0.0005619197, -0.018652612, -0.042393718, 0.01596008, -0.0100052925, -0.024037676, -0.0055762725, 0.027440412, 0.0050221574, 0.037586182, -0.001905259, -0.012783673, 0.03471415, -0.020869073, -0.039084636, 0.0022652387, -0.013665575, -0.05534909, 0.018043866, -0.028236466, -0.029329086, 0.01840287, -0.054037943, -0.011597398, -0.024209373, -0.045390625, -0.000616063, -0.009326306, -0.044391654, 0.011815922, 0.025988786, 0.00082092953, -0.03596286, -0.010754518, 0.013634357, 0.03246647, -0.0054904236, 0.032716215, -0.009224849, -0.017060507, -0.015070374, 0.015999103, -0.0030359272, -0.011456918, -0.0290013, 0.03053097, 0.02077542, -0.032747433, 0.029235434, 0.018746266, -0.043548778, 0.008444404, -0.014633326, 0.0057167523, -0.016373716, 0.009295088, -0.022929445, 0.021290513, 0.009466786, 0.042705897, 0.0019608657, 0.036961827, -0.0018320923, 0.0058611347, -0.02369428, 0.0076873736, -0.009014129, 0.0012467593, -0.030640233, -0.0657446, -0.0140167745, 0.0072776405, 0.028938865, -0.023132361, -0.0029832474, -0.05478717, 0.034370754, -0.029032517, 0.009622875, -0.04407948, 0.04770074, 0.020229109, -0.0042143976, 0.014063601, -0.003670038, 0.021430993, 0.0061420943, 0.021540254, -0.0042846375, 0.007304956, -0.0034241981, -0.009942857, -0.0061655077, 0.008701951, 0.0088502355, 0.0069732675, 0.015374747, -0.006934245, 0.011058892, 0.0014213837, 0.0063840323, -0.016607849, -0.021914868, -0.019027226, 0.00920924, -0.023304058, 0.004979233, -0.030218793, -0.009084368, 0.011355461, 0.0054357927, 0.000425342, 0.0088346265, -0.022383135, 0.030047094, -0.0140011655, 0.014773806, 0.014196277, 0.004468042, 0.0069693653, -0.024771294, -0.011800313, -0.007976138, -0.009583852, 0.026644358, 0.043267816, 0.03305961, 0.019823277, -0.0069537563, -0.01184714, -0.0012682215, -0.017544381, -0.021040771, 0.013501681, -0.0050767884, 0.03231038, -0.024443507, -0.01478161, -0.006805472, 0.025832698, -0.0026691186, -0.044828705, 0.000056551704, -0.004647544, -0.011308634, 0.008467818, 0.015437183, -0.0023979142, -0.0046241307, 0.003759789, -0.0328723, -0.014648934, -0.012401256, 0.013977752, 0.018059475, 0.008967302, 0.017325858, 0.026753621, 0.039584123, -0.013236331, 0.00009694578, -0.019339403, 0.009357524, -0.010926216, -0.003599798, 0.0151250055, 0.008147836, 0.000057222398, 0.015210854, -0.011136936, 0.00961507, -0.015835209, -0.020697376, 0.0249586, 0.0011579838, 0.037679836, -0.0009106806, -0.02413133, 0.0065752408, 0.020572504, -0.03149872, 0.026519489, 0.0008540984, -0.021680735, 0.009591657, 0.0437673, -0.0024232788, -0.018215563, -0.020010585, -0.0077732224, 0.002799843, -0.0025657096, 0.015530836, -0.029344695, -0.021992913, 0.02202413, -0.00975555, 0.015421574, 0.006224041, -0.016280062, -0.016514195, 0.0137124015, 0.02886082, 0.006095268, 0.032934736, -0.014422606, -0.020650549, -0.014422606, 0.019682799, -0.024896163, 0.06711818, -0.016561022, -0.020291544, -0.033090826, 0.0026574119, 0.013384615, 0.06536999, 0.00064093963, 0.009162413, 0.029703699, 0.00961507, 0.025551738, -0.017731689, -0.026894102, -0.017325858, 0.029610047, 0.04214398, 0.0031978693, -0.0013082193, 0.03945925, -0.00652061, -0.028095985, 0.03067145, -0.03418345, 0.0077185915, 0.02564539, 0.013634357, -0.018996008, -0.025551738, 0.010575017, 0.0017374635, -0.0148518495, 0.025130298, -0.0052562905, -0.001949159, -0.0012848059, 0.010473559, 0.016904417, -0.0052406816, 0.006719623, 0.011246199, 0.011378874, 0.023241622, -0.010239426, 0.01701368, -0.020978335, -0.014040188, 0.009903834, -0.0077459067, -0.02703458, -0.00008359287, 0.0015725947, 0.005794797, -0.03583799, 0.009014129, -0.009732137, 0.04492236, 0.037180353, 0.013704597, -0.020104239, -0.051322, 0.0337464, -0.03755497, -0.0066571874, -0.021368558, -0.027705763, -0.012729042, 0.0037500334, 0.058783043, 0.013915317, -0.015569858, -0.047170036, -0.019448666, 0.033683963, 0.036337472, -0.016280062, 0.017372685, 0.00564261, -0.012674411, 0.02441229, 0.03917829, -0.021633908, 0.05463108, 0.00219695, 0.007371294, 0.0032407937, -0.03808567, -0.012853913, -0.0034495625, 0.016202018, -0.018793091, 0.029453957, -0.017169768, 0.0024759586, -0.00891267, -0.015999103, -0.009380938, -0.003207625, -0.013915317, 0.015296703, 0.0025618074, -0.014703565, 0.003069096, 0.037305225, -0.01158179, -0.012721238, -0.0036641846, 0.0037988112, -0.04529697, -0.0021910965, 0.023132361, -0.013064633, -0.021430993, 0.011815922, -0.024615204, -0.0011823727, -0.01965158, 0.0056972415, 0.024505943, -0.0018750167, 0.0035334604, -0.015882036, 0.01471137, 0.01632689, 0.01093402, -0.020759812, 0.030640233, 0.013688988, 0.013002197, 0.0036661357, -0.013735815, -0.0044485307, -0.0020662255, 0.030640233, -0.005068984, 0.055723704, 0.021352949, -0.029734917, 0.022617267, -0.008030769, -0.026238529, -0.02299188, -0.020681767, -0.005907961, 0.016888808, -0.017606817, 0.007094236, -0.011121327, -0.0018730656, 0.010637452, -0.0026320475, 0.030593406, -0.013985557, 0.019838886, 0.0039236825, 0.010465754, 0.028142812, 0.0071917917, -0.013829468, -0.00638013, -0.020884681, 0.0005682608, -0.024974208, 0.03209186, 0.0034437093, -0.018793091, -0.00044119477, 0.037586182, -0.038397845, 0.017653644, -0.055754922, -0.0012194437, 0.03458928, 0.021696344, 0.0041363533, -0.019901322, 0.022492398, 0.0024544965, -0.02678484, 0.029594438, 0.020182282, 0.0032154294, 0.0012301749, 0.034495626, -0.01632689, 0.02007302, 0.018387262, 0.001878919, 0.010894999, 0.048855796, 0.02133734, -0.000008269353, -0.009240457, -0.020416416, 0.005685535, -0.031561155, -0.024053285, -0.012494909, 0.024287418, -0.029360304, -0.012065665, 0.023741107, -0.01386849, -0.06234187, -0.017169768, 0.007074725, -0.006348912, -0.00094823947, 0.01596008, -0.022351917, 0.02105638, 0.03305961, 0.007414218, -0.008428795, 0.018465305, 0.001488697, 0.008327338, -0.0437673, 0.030406099, 0.04295564, -0.031826507, 0.013751424, -0.0023101142, 0.036212604, -0.012619779, 0.019635972, -0.00071459403, -0.004663153, -0.020588113, 0.01311146, 0.004327562, -0.00016974658, 0.027612109, -0.028829603, 0.0013599237, 0.010894999, 0.018434089, 0.024911772, -0.000806784, -0.018465305, -0.0015130858, -0.00801516, 0.011597398, 0.01852774, 0.027861852, 0.005088495, 0.016514195, 0.0005726508, 0.022695312, -0.016670285, 0.0063254987, 0.00961507, -0.015679121, 0.008007356, 0.014648934, -0.020759812, -0.04585889, -0.00606405, -0.007621036, -0.0041402555, 0.026800448, -0.019963758, -0.037742272, -0.011698856, -0.012440278, -0.01093402, -0.035619464, 0.018793091, 0.010848172, 0.012096883, 0.015593272, 0.018246781, -0.0019306234, -0.024505943, 0.003634918, -0.027268713, -0.008982911, 0.0011940794, -0.020869073, -0.00090385176, 0.022164611, 0.0235538, -0.0151406145, -0.008452209, 0.0390222, 0.045109663, -0.021040771, -0.016607849, 0.021352949, -0.0016447857, 0.016014712, 0.017887777, -0.0052250726, 0.005041668, 0.013540704, 0.041176226, 0.0045460863, 0.023397712, -0.005248486, -0.006469881, 0.02105638, -0.010122359, -0.022710921, -0.036743306, -0.0068327873, -0.018980399, -0.0033051805, -0.019417448, 0.0043002465, 0.005907961, 0.009334111, -0.017497554, 0.0418318, -0.0005970397, -0.024224982, -0.010301861, -0.008350751, -0.035494596, -0.0011706661, -0.008499036, -0.012666606, -0.02914178, 0.0038534424, 0.019994976, 0.010013097, 0.0028993494, -0.01798143, 0.044797488, -0.009178022, -0.01421969, -0.025723435, 0.015999103, 0.031701636, -0.017700471, 0.01632689, 0.001870139, 0.017794123, 0.056285623, -0.026191702, -0.020244718, 0.022710921, -0.0021852432, 0.0007677618, 0.027627718, -0.010762323, 0.005424086, 0.013298766, 0.012034447, 0.0017423413, -0.0009497028, 0.016217627, -0.018137518, 0.039240725, -0.018059475, -0.021509036, 0.004998744, -0.0014740636, 0.022008521, 0.029048126, 0.013985557, 0.026457053, -0.0058260146, -0.021727562, -0.030140748, -0.026441444, -0.026659967, 0.024271809, 0.0122685805, 0.031436287, -0.00043241476, 0.0070435074, -0.05197757, 0.03458928, 0.003687598, 0.029656872, 0.0058260146, -0.019448666, -0.005525544, 0.026987754, -0.0054006726, 0.00620453, 0.022710921, -0.0028271584, 0.009435568, -0.010208208, 0.014539672, -0.015320117, 0.0013882148, 0.015078179, 0.0119954245, 0.021649517, 0.026519489, 0.005868939, -0.025473693, 0.017325858, 0.0050221574, 0.0014038237, 0.01414945, -0.01254954, 0.0054201838, -0.07242521, -0.014758197, 0.009583852, 0.008303924, 0.025208343, -0.016202018, 0.02483373, 0.0035412647, -0.019136487, -0.019433057, 0.020166673, -0.008054182, 0.027346758, 0.0024720565, 0.026878493, 0.005673828, -0.04058309, -0.022149002, -0.011051088, -0.01351729, -0.005053375, 0.01896479, 0.027971113, -0.014492845, -0.031998206, 0.004659251, 0.0048894817, 0.021555863, 0.0012360283, -0.0014418704, -0.0033363982, 0.020244718, 0.004116842, 0.023756716, 0.012666606, -0.0054006726, 0.007652254, -0.0010087239, -0.005482619, -0.037149135, 0.0041246465, 0.01826239, 0.0048855795, -0.037711054, -0.01269002, -0.01840287, 0.0242562, -0.02703458, -0.021103207, -0.0048270463, 0.0065167076, -0.0060874633, 0.00400758, -0.019355012, 0.036087733, -0.011175958, -0.00662597, -0.010731106, -0.025177125, -0.01024723, 0.058377214, -0.036961827, 0.030031485, -0.010372101, -0.028127203, -0.031358242, -0.0053577484, 0.008186858, 0.015577663, 0.0077771246, -0.028095985, 0.026706794, -0.0058065034, -0.019042835, -0.0027042385, -0.0013384615, 0.008218075, 0.00623965, 0.0035354113, -0.038366627, -0.023241622, 0.02509908, 0.009256066, -0.0038066157, 0.019698408, -0.004167571, 0.0058416235, -0.031124108, -0.045421842, 0.017934604, 0.0005980152, -0.008483427, 0.004967526, 0.008655124, 0.0059430813, 0.019433057, -0.022554832, -0.008733168, -0.0061069746, -0.007652254, 0.00014584548, -0.009864813, 0.0020135455, -0.003882709, -0.0013004149, 0.011964207, 0.0041207443, 0.0020935412, -0.0024915675, -0.004179278, 0.03010953, -0.0066220677, 0.007835658, 0.009646288, 0.0035783357, 0.0049714283, 0.021524645, 0.024911772, 0.004881677, 0.009037542, 0.0045655975, 0.01673272, -0.002216461, -0.048762143, 0.00040217256, -0.005814308, -0.004062211, -0.0031490917, -0.01852774, 0.0035061447, 0.0061772144, 0.009060955, 0.026535098, 0.029219825, 0.027674545, -0.016935635, -0.012050056, -0.00961507, -0.010832563, -0.0031393361, 0.018090693, 0.040801615, -0.027097017, -0.0056270016, 0.012494909, -0.011534963, -0.018871136, 0.0019852545, -0.00094287394, 0.00017462435, -0.0036173582, 0.006505001, 0.007410316, 0.012471495, 0.0055957837, 0.0065830452, 0.021509036, 0.03543216, 0.034651715, -0.008897061, 0.004483651, -0.022102175, -0.007960529, -0.011386679, 0.0036915003, -0.021306122, 0.024599595, -0.027705763, 0.017341467, 0.013696793, -0.016264454, 0.00006420371, -0.012705629, 0.0209159, -0.0076834713, -0.00975555, 0.016202018, 0.007051312, 0.022710921, -0.0047099795, -0.011105718, 0.0075859157, -0.0002931543, -0.017856559, -0.012596367, -0.0015764969, 0.019854495, 0.028829603, -0.0033285937, 0.017638035, 0.01527329, -0.00414806, -0.005143126, -0.03499511, -0.022336308, -0.0077185915, 0.029719308, 0.0057674814, -0.023444539, 0.0055177393, 0.017481945, -0.0003097387, -0.016654676, -0.0094433725, -0.034495626, 0.04098892, -0.015616685, 0.03318448, -0.013649966, -0.015249876, 0.015640099, 0.006290379, 0.0122685805, 0.008381968, 0.045921326, 0.0018925768, 0.0075429915, 0.0043002465, 0.008920475, 0.0050806906, 0.01123059, 0.0060601477, -0.01101987, -0.026332181, -0.018621394, 0.0069420496, -0.003968558, -0.0028388652, 0.01966719, -0.0050455704, 0.010114554, 0.016092755, -0.009107782, 0.0000309129, -0.00449926, 0.0036602826, 0.01798143, 0.017513163, -0.010957434, 0.0145786945, -0.007078627, -0.016061539, -0.015577663, 0.034526844, 0.012588562, -0.0041987887, -0.021430993, -0.00926387, -0.005529446, 0.05772164, -0.031561155, 0.017778514, 0.009318502, -0.009388742, 0.022320699, 0.014648934, -0.015882036, -0.015936667, 0.008428795, -0.015686926, 0.010379906, 0.02061933, -0.012674411, -0.0031627493, 0.0036271135, 0.0021169544, -0.0068132766, 0.0047411975, 0.015195245, -0.013610944, -0.00024608374, -0.014352365, 0.0023471855, 0.00871756, 0.01548401, -0.016779546, -0.0024018164, -0.022008521, 0.003492487, 0.014321147, 0.000425342, 0.005989908, -0.025739044, 0.013049024, 0.020728594, -0.02676923, -0.003865149, -0.0015472303, -0.014664543, 0.020463243, -0.037679836, 0.017263422, -0.011175958, -0.0007282518, 0.0061225835, -0.010083336, -0.02147782, -0.025192734, -0.009544831, -0.00871756, 0.028127203, 0.01478161, -0.013977752, 0.016654676, -0.016779546, -0.00023974264, 0.020837855, 0.0049480153, -0.005939179, -0.017216595, 0.0045460863, 0.040614307, -0.015351334, -0.029172998, 0.0023413321, 0.015015743, 0.01443041, -0.02063494, -0.013571922, 0.005377259, -0.008951693, 0.0188087, 0.01910527, 0.00009353134, -0.037835926, -0.030718276, -0.010130163, 0.021446602, -0.009833595, -0.007316663, -0.009240457, -0.0122685805, 0.03126459, 0.001970621, 0.013298766, 0.023803543, 0.002075981, 0.031327024, -0.022242654, 0.007141063, -0.019682799, 0.0054865214, 0.00652061, -0.009060955, -0.020541286, 0.003014465, 0.0158196, 0.0013121215, -0.013314375, -0.010192599, 0.00926387, -0.01471137, -0.030093921, -0.013127068, -0.008538058, 0.026862884, -0.0000015014401, -0.0094433725, 0.012167122, -0.03209186, 0.0117066605, 0.0036037003, 0.011378874, -0.0049714283, -0.045390625, -0.0048426553, 0.032528907, 0.011058892, -0.010793541, -0.0122685805, -0.008530254, -0.011823727, -0.0071293563, -0.021150034, -0.005654317, -0.01553864, 0.022757748, -0.0066181654, 0.002395963, 0.0017345368, 0.0249586, -0.015788382, 0.026316572, -0.03755497, 0.015523031, -0.0091389995, -0.003049585, 0.01713855, -0.0074259248, 0.0045968154, -0.01784095, 0.008553666, -0.019729625, 0.024474725, 0.030874366, -0.009724333, 0.013369006, 0.0048465575, -0.004647544, -0.0047411975, -0.0027510652, 0.014399192, -0.019417448, 0.020463243, 0.033933707, -0.0026105852, 0.028423771, 0.021821216, -0.009817986, -0.027534066, -0.022227045, 0.018309217, -0.023491366, -0.0042143976, -0.0001269441, 0.020666158, -0.016186409, -0.023101144, 0.009482395, -0.008655124, 0.02578587, -0.0042885398, -0.0013238281, 0.00043924365, -0.034121014, -0.0142587125, -0.02957883, 0.025817089, -0.0043704864, 0.02775259, -0.014734783, -0.019167705, 0.013447051, 0.004514869, 0.006965463, -0.028236466, 0.0030047095, -0.028470598, -0.0012857815, -0.014141645, 0.0053577484, -0.02397524, 0.0018896501, -0.034370754, -0.015640099, 0.007987845, -0.0035861402, -0.0351512, -0.00053899415, 0.0023705987, 0.020416416, -0.019963758, 0.0016847835, -0.00564261, -0.000092372866, -0.017700471, 0.021946086, 0.0047958284, 0.015249876, 0.025270777, -0.0042300066, -0.020119848, -0.016982462, 0.013478268, 0.019370621, -0.024271809, -0.008311729, -0.03530729, -0.036743306, 0.027440412, 0.0028954474, 0.010239426, 0.030702667, -0.01596008, -0.0033051805, 0.00871756, -0.015640099, -0.0013706548, -0.005377259, -0.024053285, 0.022835793, 0.0021579277, -0.016342498, 0.013735815, 0.0075078714, -0.02661314, 0.015281094, -0.0061459965, 0.020962726, -0.01685759, -0.004877775, -0.012401256, -0.0011960304, -0.010715497, -0.010192599, -0.0027374073, 0.002946176, 0.0036583315, -0.0030671451, 0.024084503, -0.02107199, -0.031826507, -0.019979367, -0.0034690737, 0.0039822157, 0.016607849, 0.004397802, 0.0117222695, -0.01436017, 0.014352365, 0.017965822, -0.0015189392, 0.0070083872, 0.015405965, 0.0079839425, -0.008733168, -0.0050923973, -0.02300749, 0.015780577, 0.014742588, -0.011207176, -0.005744068, -0.0077146892, 0.0047607087, 0.015843013, -0.0034690737, -0.0037422292, -0.025270777, 0.0033168872, 0.03262256, 0.016576631, 0.012104686, 0.011074501, -0.005974299, 0.036743306, -0.0027159452, -0.010333079, -0.009084368, 0.011488136, 0.016342498, -0.021165641, 0.01311146, -0.011456918, -0.0024525453, 0.02063494, 0.04757587, -0.003065194, -0.0055060326, 0.0041753757, 0.013345593, 0.012978784, 0.003974411, -0.02817403, 0.0041948864, 0.015921058, -0.0063411077, -0.0018994056, -0.0014389437, 0.002089639, -0.0022067055, 0.016935635, -0.0005575297, -0.0010906705, 0.024193766, 0.0066376766, -0.011503745, -0.01729464, -0.0027959407, -0.018465305, 0.011207176, 0.003970509, -0.0004272931, -0.020010585, 0.02703458, 0.01852774, -0.0032915226, -0.012526127, -0.014555281, 0.017372685, 0.004912895, -0.0075976225, -0.012432474, -0.003794909, 0.0077068848, -0.0028271584, 0.01938623, -0.012034447, 0.014828436, 0.00091897283, 0.00602893, -0.007074725, -0.002749114, 0.00047216864, 0.011839336, -0.010426732, -0.0047060773, 0.0053811613, -0.003244696, 0.0033637139, 0.004834851, -0.004468042, 0.017809732, -0.004951917, 0.00045899863, -0.0029422739, 0.0094277635, 0.0056972415, 0.0048114373, 0.016514195, 0.0053148237, -0.0020428123, -0.015444987, 0.015117201, 0.022195827, 0.015983494, -0.000060545382, -0.021649517, 0.012221754, -0.007328369, -0.015686926, 0.021352949, 0.0016974658, -0.0009462884, 0.013649966, -0.011956402, 0.004483651, -0.009763354, 0.008116618, -0.02413133, 0.009490199, -0.016639067, -0.0074844584, -0.0072191074, 0.0033988338, 0.0052406816, -0.015725948, -0.024880556, 0.008319533, -0.025723435, 0.019807668, -0.00004972282, -0.0068132766, -0.016264454, -0.0019959856, 0.0069966805, 0.009552635, 0.017076116, -0.0013511437, -0.010496972, 0.013033415, -0.00069508294, 0.018839918, -0.013220722, -0.0161708, -0.0074337292, 0.0019657435, -0.016295671, 0.022086566, -0.008397577, 0.007125454, -0.0075390893, 0.020229109, 0.013837272, 0.0040427, -0.016248845, -0.005548957, -0.012081274, -0.00641525, -0.024537161, 0.024864947, -0.0043158554, 0.0122997975, -0.009607266, -0.0033539583, 0.010059924, 0.009248261, 0.019604754, 0.005950886, -0.008584884, 0.022976272, -0.0004446092, -0.0020876878, 0.0028135008, 0.0027959407, -0.0015667414, -0.010770127, 0.02385037, -0.009521417, -0.0016018613, 0.0140011655, 0.034932673, -0.0003604676, -0.012073469, -0.0018691635, -0.00044412143, 0.023819152, -0.012611975, -0.012393451, -0.006067952, 0.018293608, -0.0035919936, -0.0026379009, 0.00034754147, 0.010395515, 0.007753711, -0.002411572, 0.004752904, 0.008990715, 0.0061967256, 0.006200628, 0.004058309, 0.007933213, 0.008381968, 0.0075390893, -0.0076600583, 0.00014401632, -0.0008355629, 0.014758197, -0.018621394, 0.011175958, -0.00641525, -0.015546445, 0.018902354, 0.020057412, 0.0018535545, -0.012018838, 0.0052367793, -0.0067625474, -0.019433057, 0.008210271, -0.0051314193, -0.0134236375, -0.013969948, -0.008381968, -0.0063254987, 0.010145772, 0.010200404, 0.012455886, 0.02079103, -0.0022086566, -0.028220857, 0.011675443, -0.0015882036, 0.00083409954, -0.000020974434, -0.01590545, 0.02592635, -0.013845077, 0.00079507736, -0.004807535, -0.012385647, 0.02467764, 0.008920475, -0.012362233, 0.0007750785, -0.034464408, -0.031888943, 0.0027374073, 0.022164611, 0.004553891, -0.0047450997, 0.0108403675, -0.012096883, 0.003810518, -0.014188472, 0.019292576, -0.016966853, -0.0018759923, 0.012494909, 0.031576764, 0.0019150146, 0.016217627, 0.008561471, 0.030718276, -0.017325858, -0.0060055167, 0.026597532, 0.0055060326, -0.0076834713, -0.02174317, 0.015936667, 0.03496389, -0.0009926272, 0.01254954, -0.015936667, -0.0024310832, 0.0046826643, -0.01233882, -0.0128305, -0.0050104507, -0.009857008, 0.01311146, -0.011519354, 0.00891267, -0.000026339985, -0.0068327873, 0.016373716, 0.002058421, 0.006216237, 0.0033949316, -0.0021559766, 0.00956044, -0.0016145436, -0.0040387977, 0.007445436, -0.020478852, 0.03176407, -0.00794492, 0.021633908, 0.000102494254, 0.012401256, 0.007519578, -0.010122359, 0.010504777, -0.014844045, -0.012518322, -0.00034193203, 0.013759228, 0.002729603, -0.0052679973, 0.017918995, 0.0040114825, -0.010606234, -0.008889257, 0.010356492, 0.011261807, 0.014133842, -0.012814891, -0.0017608769, 0.0022125589, -0.0028700829, 0.014204081, 0.004222202, -0.003472976, 0.023491366, 0.01923014, 0.0042963442, -0.013064633, -0.008881453, 0.009622875, 0.01588984, -0.03359031, -0.0029305674, 0.004979233, 0.00588845, 0.0013004149, -0.027690154, 0.02186804, 0.0042261044, -0.0050962996, -0.0019628168, 0.02608244, 0.023678672, 0.0023335277, -0.007340076, 0.0006360619, 0.015967885, -0.014531868, 0.015039156, 0.0016155192, 0.008678538, -0.003137385, 0.011097914, 0.003952949, 0.007359587, 0.010653061, 0.009123391, 0.006949854, -0.010731106, -0.013361202, 0.0075234803, 0.0060913656, 0.013813859, 0.0035861402, -0.010145772, 0.022086566, 0.0000020997297, 0.010660865, 0.0013677281, -0.0033539583, 0.012182731, 0.022102175, 0.01923014, -0.005529446, -0.0069381474, -0.021040771, -0.009232652, -0.011105718, 0.012713433, 0.017700471, 0.0047568064, -0.008733168, -0.0202135, 0.0029988561, 0.0005877719, -0.0041714734, -0.0028798385, -0.00885804, 0.002448643, 0.0053850636, 0.010481363, 0.010169186, -0.01966719, -0.011425701, 0.0048465575, 0.007621036, 0.005935277, -0.0019286723, -0.0069966805, -0.008132227, 0.0004775342, 0.0032564027, -0.0075234803, -0.022710921, 0.023787934, 0.008046377, -0.01966719, 0.01938623, 0.024365462, -0.0069069294, 0.009279479, 0.0028135008, -0.010059924, 0.016139582, 0.0044602375, -0.00478022, -0.024864947, 0.005377259, -0.004690469, -0.0026671675, 0.0054748147, 0.0048894817, 0.0059860055, 0.008397577, 0.0025832697, -0.029157389, -0.010543799, -0.008897061, -0.006227943, -0.0005726508, 0.0009433617, -0.0062786723, 0.025005426, -0.0073634894, 0.009287284, 0.009053151, -0.003685647, 0.007898093, 0.0148518495, 0.020744203, -0.0051509305, 0.016264454, -0.0053616506, -0.037117917, -0.0005624075, 0.00006834982, -0.012081274, 0.003707109, -0.010473559, 0.017762907, -0.013228526, 0.0025481498, 0.0151718315, 0.02008863, -0.022070957, -0.0114335045, -0.002872034, -0.014102624, 0.028767167, -0.013384615, -0.008132227, 0.013813859, 0.014648934, 0.0069381474, -0.00048094863, -0.005158735, -0.0125573445, -0.004979233, 0.0066571874, 0.0047411975, -0.004628033, 0.007531285, -0.006333303, 0.0042300066, 0.0063879346, 0.0048894817, -0.027565284, -0.001436017, 0.017591208, 0.011051088, 0.009458981, 0.0036056514, -0.007976138, -0.0039431932, 0.0122685805, 0.009599461, -0.021118816, 0.0034515136, 0.0015921058, -0.0023979142, 0.0019637924, -0.0043158554, -0.008990715, -0.0040387977, -0.00015743019, -0.00086873176, -0.010450145, -0.00045192588, -0.015764968, 0.00039070979, 0.012752456, 0.00411294, 0.01743512, -0.002587172, 0.011901772, -0.017091725, 0.007847365, -0.012221754, -0.0026203408, 0.0175756, 0.0072815428, -0.014508454, 0.027221888, -0.0044017043, -0.006579143, -0.0025013231, -0.0052992147, -0.015257681, -0.008374165, 0.008210271, 0.0037188157, 0.012736847, -0.029313477, -0.013564117, 0.005068984, 0.011425701, 0.0060211257, 0.01685759, 0.0010087239, -0.007023996, 0.014797219, 0.0046241307, -0.026816057, -0.007180085, 0.013205113, 0.0018096545, -0.018075084, -0.003227136, -0.00920924, 0.013049024, -0.009552635, -0.001019455, -0.008584884, -0.00007847121, 0.008865844, -0.01868383, 0.0074376315, -0.019542318, 0.010692083, -0.019557927, 0.023382103, 0.009365329, 0.0033617627, 0.0038534424, 0.007144965, 0.0068562008, -0.021306122, 0.008467818, 0.008132227, 0.005365553, 0.0063528144, -0.012362233, 0.005353846, 0.012065665, 0.0038495401, -0.030484144, 0.013579726, 0.017731689, -0.009365329, 0.0024603498, -0.0019111123, 0.003775398, 0.004249518, 0.0071332585, 0.0102784475, -0.008358556, -0.0060874633, 0.008093204, 0.015179636, -0.00009267773, -0.0073478804, 0.011823727, 0.0073127607, -0.0012467593, 0.006114779, 0.01574936, 0.000611673, 0.008584884, -0.010887194, 0.0075742095, 0.0006633774, -0.000890194, -0.008101009, -0.007039605, 0.0023705987, 0.008475622, -0.008327338, 0.004967526, 0.002819354, 0.012003229, 0.026800448, 0.0066181654, -0.017856559, 0.008819018, 0.009256066, -0.0030300738, -0.0019998879, -0.0035529714, 0.00680157, -0.014929894, 0.0022457277, -0.010098945, -0.003917829, 0.008319533, -0.035588246, 0.0026281453, 0.0071917917, 0.0029988561, -0.02411572, -0.016467368, -0.01198762, 0.01464113, -0.00850684, 0.005439695, 0.0028681317, 0.010200404, 0.002852523, -0.0041597667, -0.023101144, 0.018277999, 0.012167122, 0.010645256, -0.001594057, -0.01031747, -0.0033363982, 0.003900269, 0.040083606, -0.0175756, -0.019355012, 0.008038574, 0.011347656, -0.020057412, -0.021727562, 0.01729464, 0.008389773, -0.008943888, 0.013509486, 0.0017677057, 0.025255168, -0.018996008, -0.023522584, -0.011917381, -0.006157703, -0.0048660687, 0.032997172, 0.005728459, -0.021961695, 0.017169768, 0.0058260146, -0.0033110338, 0.0030612918, -0.019682799, 0.0061459965, 0.02246118, 0.011456918, 0.022180218, -0.013134873, -0.006824983, 0.0068835164, 0.02857986, 0.011652029, -0.0027764295, 0.012432474, 0.009271675, 0.015593272, 0.0142743215, 0.001745268, -0.010379906, -0.013962144, -0.0009199484, 0.023085535, -0.0010418928, -0.006438663, 0.022008521, -0.00084190397, -0.012003229, -0.017450728, -0.008701951, 0.020853464, 0.0032134783, 0.015085983, -0.020978335, -0.013571922, -0.020182282, -0.0015247925, -0.011261807, -0.020010585, -0.0017228302, -0.0030788516, -0.029188607, -0.0042104954, 0.005279704, -0.0046709576, -0.004737295, -0.03724279, 0.0028310607, 0.015577663, 0.021243686, 0.0128305, -0.015967885, 0.00940435, -0.0007702007, -0.021899259, -0.01527329, 0.010543799, -0.037024263, 0.016810764, 0.011730074, 0.012541736, -0.000008719023, -0.00045070643, 0.003986118, -0.008982911, 0.008241489, -0.0025559543, -0.0020857367, 0.002216461, 0.01414945, -0.01290074, 0.013946535, 0.019370621, 0.00091897283, -0.007531285, -0.0052875085, -0.001550157, -0.012994393, 0.012135904, 0.02274214, 0.011051088, -0.01149594, 0.019152096, -0.00899852, -0.024552768, -0.023678672, 0.008631711, -0.017091725, -0.008865844, 0.003314936, 0.02186804, -0.0012331016, -0.0011443261, 0.031966988, 0.004557793, -0.009724333, 0.025442475, 0.0019754989, 0.020588113, 0.026831666, -0.0029891005, -0.0019725722, -0.0079995515, 0.020182282, 0.0056270016, 0.022695312, 0.007519578, 0.014539672, 0.00982579, -0.00055216416, 0.016888808, -0.0033949316, -0.016404934, 0.006227943, -0.0035295582, 0.0028915452, -0.0024057187, -0.0075586005, -0.011519354, -0.008943888, 0.021977304, -0.011480331, -0.002146221, -0.004409509, -0.019776452, -0.011269611, 0.011027674, 0.026816057, 0.000418757, 0.0070318007, -0.013673379, 0.008600493, -0.013938731, 0.022539223, -0.011800313, -0.012580758, -0.019994976, -0.0036758913, -0.024459116, 0.010075532, 0.007023996, 0.023475757, 0.013626553, -0.0075234803, 0.020182282, 0.01574936, -0.010785736, -0.011745683, 0.0082727065, -0.0008677562, -0.015398161, 0.015616685, 0.0012457838, -0.0037558868, 0.025301995, 0.005482619, 0.024771294, -0.0074181203, 0.009544831, -0.0039217314, 0.002023301, -0.008077595, -0.0070864316, -0.0125729535, 0.0072464226, 0.0026691186, 0.009396546, 0.01826239, -0.014609912, -0.02107199, 0.0022827988, -0.0051080063, -0.00013901659, -0.0039451444, -0.004834851, -0.0014194326, 0.018449698, 0.008374165, -0.010379906, 0.021930477, -0.0038768556, -0.0014526014, 0.012112491, 0.0042846375, 0.007921507, 0.0043158554, 0.0028993494, -0.010122359, -0.0073127607, -0.008740973, -0.0069966805, 0.022258263, -0.012370038, 0.013548508, 0.008499036, 0.0019784255, 0.019355012, 0.01450065, -0.00074678735, 0.009201435, -0.027237497, -0.021415384, 0.006294281, -0.008413186, -0.0040661134, 0.0030105629, -0.014469433, 0.0053421394, -0.011566181, 0.0063684233, -0.0028564252, -0.0114491135, -0.0077888314, 0.030062703, 0.016826373, -0.00920924, -0.001799899, 0.0070591164, 0.021368558, 0.0062123346, -0.009927248, -0.025504911, -0.012908544, 0.00057411415, 0.0069420496, -0.03037488, 0.0040505044, -0.012081274, 0.011199372, 0.00038314925, -0.018371653, -0.030905584, -0.0044914554, -0.025348822, 0.009217044, 0.0002453521, 0.0034163937, -0.010340883, -0.00058484526, 0.02246118, 0.010075532, -0.022679703, -0.0006833763, -0.011956402, 0.008943888, 0.0018535545, 0.0188087, 0.0067508407, -0.01080915, -0.013173895, -0.0013413882, 0.012104686, 0.011542767, -0.010957434, -0.019167705, 0.021274904, 0.014094819, 0.0032915226, 0.011511549, 0.0004707053, 0.027097017, -0.0013550459, 0.020151064, 0.012315406, 0.022367526, 0.0067079165, 0.0003041293, 0.016701503, -0.015788382, 0.027674545, -0.023787934, 0.00070239964, 0.012565149, 0.0003516876, -0.0048738727, -0.04654568, 0.0071527692, 0.019823277, 0.023803543, 0.0035178515, -0.0037714958, -0.00815564, -0.010894999, -0.010153577, -0.0045499885, -0.0043158554, 0.0140011655, -0.008428795, -0.013205113, 0.0036583315, 0.030843148, -0.016358107, 0.00024583988, -0.0070083872, 0.0035041936, 0.015015743, 0.008210271, -0.002852523, -0.000096031195, 0.016607849, 0.00013621188, -0.022227045, 0.0057674814, -0.0005448475, -0.023210404, 0.0122997975, -0.0048153396, 0.0017989235, 0.0022964566, -0.003158847, 0.0073986095, 0.009014129, -0.020978335, -0.005548957, -0.02928226, -0.005939179, -0.005669926, 0.018153127, 0.013876295, -0.012565149, -0.00038071035, 0.0004731442, -0.0142587125, -0.010785736, -0.0061928234, 0.026472662, -0.02149343, 0.0054514017, -0.004292442, 0.003190065, 0.0053460416, 0.026238529, -0.00400758, -0.024505943, 0.011410092, 0.0108559765, 0.032716215, 0.017232204, 0.005833819, -0.013915317, 0.006477685, 0.0030944606, -0.0097009195, -0.0062474543, -0.009942857, -0.02648827, -0.0070278984, -0.010777932, -0.006739134, 0.0102940565, -0.015647903, 0.0002514493, 0.017731689, 0.0021520744, -0.020837855, 0.014110428, 0.018043866, 0.013220722, -0.009857008, 0.0007692251, -0.0008267829, 0.0014750392, -0.0056348057, -0.00025169319, -0.020151064, -0.011901772, -0.013860686, -0.0060757566, -0.009817986, -0.029891007, 0.011589594, 0.0131504815, 0.017591208, 0.011698856, -0.027487239, 0.008865844, -0.00449926, 0.027346758, 0.011347656, 0.009786768, -0.013376811, -0.002696434, 0.008553666, -0.013735815, -0.03249769, 0.0024935186, 0.006255259, -0.008249293, 0.008764386, 0.011035479, 0.008561471, 0.0091389995, 0.016826373, 0.023413321, 0.0007945896, -0.012986588, -0.024474725, 0.0024525453, 0.009334111, -0.009552635, 0.00592357, 0.014617717, -0.0037558868, -0.0011901772, -0.012729042, 0.006477685, -0.017107332, 0.023663063, 0.002462301, 0.012619779, 0.0020350078, 0.0077381027, -0.014953308, 0.012533931, 0.008608297, -0.011043283, 0.010473559, -0.016826373, 0.006840592, 0.008163445, 0.0097009195, 0.01219834, 0.028517425, 0.0067664497, -0.0034554158, -0.014750392, -0.0009940906, -0.00801516, 0.0054123793, 0.014883067, 0.004019287, -0.02592635, -0.0041012336, 0.00096238503, 0.013837272, 0.018324826, 0.014890872, 0.01729464, 0.011613007, 0.003847589, -0.0114491135, 0.00068044965, 0.01184714, -0.0122841885, -0.005744068, -0.0023510875, -0.009654093, 0.0057128505, 0.0077068848, -0.013626553, 0.006465979, -0.0077576134, 0.014968917, 0.033090826, -0.0014965014, -0.0058767437, -0.014953308, -0.019698408, -0.013049024, -0.0044056065, 0.0056816326, 0.024318635, 0.0066454806, -0.00035558981, 0.0032876204, -0.012182731, -0.016888808, -0.000846294, -0.009490199, -0.013907513, -0.0048855795, -0.0067313295, -0.003492487, -0.017044898, 0.011355461, -0.013642161, -0.016654676, -0.0033598116, 0.0048582642, 0.0012955371, 0.013275353, 0.0041051353, 0.00766396, 0.027346758, -0.00200379, 0.0009218995, 0.004058309, -0.0003272987, -0.010465754, -0.0051821484, 0.0032915226, -0.008233684, -0.005548957, -0.0013696792, -0.011121327, -0.02036959, 0.0024447409, -0.019183313, 0.017200986, 0.0017481946, 0.010309665, -0.01782534, 0.01436017, -0.002819354, 0.005759677, -0.009115586, 0.009950661, 0.025504911, 0.011714465, 0.007023996, 0.015632294, 0.027846243, -0.005307019, 0.008842431, -0.0049597216, -0.002674972, -0.018277999, 0.008218075, 0.006614263, 0.008694147, 0.0071605737, -0.00926387, 0.016951244, 0.0085458625, 0.023491366, -0.010988652, -0.01436017, -0.01868383, 0.004167571, 0.022867009, -0.0031764072, -0.015109397, -0.00801516, 0.024146939, 0.021555863, 0.0008897062, 0.002552052, 0.005217268, -0.019838886, 0.01506257, 0.028330117, -0.008553666, 0.005798699, 0.010044315, -0.0038866112, 0.02747163, 0.0027217986, -0.014313343, 0.0076444494, -0.009295088, -0.013478268, 0.015827404, 0.0044485307, 0.0009799451, 0.0025032742, -0.01673272, -0.011386679, 0.0099896835, -0.03305961, -0.025582954, -0.0009575073, 0.027690154, -0.004514869, -0.016966853, -0.016795155, 0.015257681, 0.02342893, -0.012370038, -0.0056933393, -0.003387127, -0.005338237, 0.035931643, -0.0036583315, 0.009576048, -0.0021032966, -0.012354429, -0.0059313746, 0.020712985, 0.025286386, -0.020182282, 0.006360619, -0.017310249, 0.010676474, -0.006477685, -0.021946086, -0.008108813, 0.008311729, -0.014406997, 0.0100052925, -0.008553666, -0.0014438215, -0.012331015, -0.023101144, -0.014453824, 0.0061498987, 0.013376811, 0.015554249, 0.0030573895, -0.0068210806, -0.006243552, -0.021696344, 0.0015423525, -0.0032564027, -0.0010535994, 0.0033188383, 0.0022086566, -0.0102940565, 0.0151250055, 0.009849204, 0.00934972, -0.006879614, -0.0061342902, 0.010411123, -0.0071488675, 0.030827539, 0.01882431, -0.00202135, -0.016123973, -0.016482977, 0.017466336, 0.007500067, -0.0028817896, 0.0033246914, 0.002749114, 0.015117201, -0.0039666067, 0.0050260597, -0.000925314, -0.008936084, 0.0005516764, 0.0052094636, 0.034682933, -0.016420541, -0.009084368, 0.016639067, -0.010309665, -0.0041363533, -0.013579726, -0.00638013, 0.042424936, 0.010777932, 0.010863781, 0.0014399192, -0.0072776405, -0.015444987, 0.003439807, 0.010785736, -0.0035919936, 0.00043973143, -0.016295671, -0.013283158, -0.0037773491, 0.009833595, -0.0021150033, -0.013821663, -0.015671317, -0.0014613814, 0.019339403, 0.0077459067, -0.0029871494, 0.008889257, -0.0042261044, -0.015725948, 0.04642081, -0.00004036359, -0.0056933393, 0.0059313746, 0.0019501345, -0.019823277, -0.0023159676, 0.0058767437, -0.028049158, -0.013361202, -0.0014126037, -0.000064264685, -0.0076171337, -0.007375196, -0.011378874, 0.034526844, 0.018480914, 0.010559408, -0.015608881, -0.009857008, -0.0060055167, -0.01553864, 0.00069459516, 0.012190536, 0.027221888, -0.0013209016, 0.010013097, -0.0028174028, 0.010660865, 0.025411258, -0.004897286, 0.0054006726, -0.017918995, -0.00194233, 0.02386598, 0.005619197, 0.0017745346, 0.024178157, 0.004019287, 0.0010409172, -0.012892935, -0.0067781564, -0.002961785, -0.010356492, -0.008639515, -0.01421969, 0.008748777, 0.01826239, 0.0048270463, -0.0027198475, -0.02299188, -0.0009111684, -0.011168154, -0.008569275, 0.0038885623, 0.0044212155, -0.01685759, 0.004663153, -0.0035529714, 0.018199954, 0.004592913, 0.0020720789, -0.0027198475, -0.005217268, -0.0021306123, -0.009412155, 0.0014633326, -0.0021345145, 0.019261358, -0.0049050907, -0.018231172, -0.022929445, -0.016951244, -0.017965822, -0.0063723256, -0.021290513, -0.006934245, 0.00669621, -0.008982911, -0.01782534, -0.034682933, 0.0057713836, -0.022055348, 0.00046070587, -0.0009638484, -0.022492398, -0.022351917, -0.0134236375, 0.0066337744, -0.0049948418, -0.0041090376, 0.010653061, 0.00082531956, 0.017762907, 0.0063372054, 0.0002396207, -0.0023549898, 0.003262256, 0.0013472415, 0.0017950212, -0.010379906, 0.015093788, -0.00027778928, 0.0025832697, 0.02942274, 0.0038495401, 0.011675443, -0.0052875085, -0.0008877551, -0.025770262, -0.005307019, 0.004897286, -0.00030534872, 0.027861852, 0.010894999, 0.0071293563, 0.030281229, 0.00021608543, 0.012775869, -0.01603032, -0.005217268, 0.010372101, 0.012424669, -0.0051392238, -0.009763354, 0.0047763176, 0.006805472, 0.007898093, 0.014586499, 0.023678672, -0.024771294, -0.017684862, 0.010801345, -0.0016418591, -0.0069966805, -0.015203049, -0.005849428, 0.011324243, 0.014547477, 0.0066064587, 0.0012506616, 0.015288899, 0.0094433725, 0.0065713385, 0.005880646, 0.00059947855, -0.032965954, -0.0052914103, 0.03123337, 0.005494326, -0.0025266875, 0.0052718995, 0.0026008298, 0.00025047376, 0.0008414162, 0.018590176, -0.01518744, 0.000056185872, -0.00085312285, 0.011051088, -0.00546701, -0.0077381027, -0.000767274, 0.0003755887, 0.013314375, 0.016482977, 0.016342498, 0.01478161, 0.00090385176, 0.016779546, -0.0075273826, 0.008756582, -0.007355685, -0.0039217314, -0.006824983, 0.0142743215, 0.0054357927, -0.008959497, 0.0082727065, -0.0030456828, 0.004132451, -0.00008670245, 0.002749114, 0.009341915, -0.0052992147, -0.0016721013, -0.0010409172, -0.007917604, 0.027143843, -0.005689437, -0.009880422, -0.012174927, 0.011464722, -0.0029812963, 0.0029208118, 0.0045070644, -0.0070278984, 0.0010116505, 0.0008077596, 0.00602893, -0.0056348057, -0.015007938, -0.019557927, 0.0032427448
2349
3201
  ]
2350
3202
  }
2351
3203
  ],
@@ -2359,13 +3211,14 @@ function getTemplatesPipelineCollection() {
2359
3211
  ]
2360
3212
  },
2361
3213
  {
2362
- "name": "ai-engineer-revolutionizes-tech-leadership",
2363
- "title": "AI Engineer Revolutionizes Tech Leadership",
2364
- "content": "Pavol Hejný is mentioned as the CTO and Co-founder, described as an AI engineer and developer.",
3214
+ "name": "promptbook-cto-pavol-hejny-s-journey",
3215
+ "title": "Promptbook CTO: Pavol Hejný's Journey",
3216
+ "content": "Pavol Hejný is mentioned as the CTO and Co-founder of Promptbook, with a background as an AI engineer and developer.",
2365
3217
  "keywords": [
2366
3218
  "Pavol Hejný",
2367
3219
  "CTO",
2368
3220
  "Co-founder",
3221
+ "Promptbook",
2369
3222
  "AI engineer",
2370
3223
  "developer"
2371
3224
  ],
@@ -2373,11 +3226,7 @@ function getTemplatesPipelineCollection() {
2373
3226
  {
2374
3227
  "modelName": "text-embedding-3-large",
2375
3228
  "position": [
2376
- -0.03903736, -0.02921377, -0.02855696, -0.048204146, 0.029085262, -0.021646176, -0.0012484746, 0.008017366, 0.0008236898, 0.031012857, -0.001099443, 0.008981164, -0.034039896, 0.010623189, -0.020875137, 0.012372303, 0.0009816454, 0.00020045646, -0.045776807, -0.024716048, -0.0019615062, -0.039494272, -0.06282531, -0.01314334, 0.013600252, -0.011893974, 0.0031037845, 0.009359543, -0.021846073, 0.047347438, 0.0011226455, 0.011337113, 0.014949568, -0.02675787, 0.028799692, -0.0057042525, 0.027571743, 0.0033679362, 0.03135554, 0.010580353, 0.0640247, 0.010666024, -0.025372857, -0.00206681, -0.022588555, -0.013321822, -0.03689559, -0.024773162, -0.022859845, 0.016277466, 0.04449174, -0.008752708, -0.029142376, 0.023730833, -0.031155642, 0.0023363163, 0.04046521, 0.058655992, 0.03869468, 0.0050867083, -0.012515088, 0.011565568, 0.005118835, 0.0036053162, 0.04394916, -0.02628668, 0.020503897, -0.004622658, 0.0025879743, 0.019975593, -0.0049796198, -0.028971035, 0.032155138, -0.0037016957, -0.0058863033, -0.014435543, 0.023630884, -0.0125793405, -0.018362125, -0.027800199, -0.017334074, 0.0033393793, -0.031783894, -0.022474326, 0.0394086, -0.03726683, 0.025501365, -0.04140759, -0.004422759, 0.006693037, -0.01896182, 0.028328503, -0.023045465, -0.020232605, 0.008824101, 0.016977113, 0.03221225, 0.013371796, -0.017205568, -0.0017973036, -0.0017964112, -0.024516148, 0.010387594, -0.010730278, 0.03295473, 0.017105618, 0.0005372278, 0.040322427, 0.017505417, 0.030555947, 0.0021382023, -0.007049999, -0.02365944, 0.011279998, -0.012008201, 0.023716554, -0.047747236, -0.025886884, -0.008859796, -0.068422474, 0.028599795, -0.042235743, 0.010344759, -0.00070723094, 0.036610022, -0.018176503, -0.013107644, 0.010094885, -0.0025308605, 0.02891392, -0.030413162, 0.02854268, 0.0016536264, 0.03992263, 0.0010360822, 0.010194834, 0.024273414, 0.049060855, -0.009737923, 0.028899642, 0.021760402, 0.0024326958, -0.005400835, -0.030641617, -0.024930226, 0.03195524, -0.011951087, 0.026058225, -0.006807265, 0.015420758, -0.02047534, -0.019690024, 0.00041675312, -0.003400063, 0.0042335694, -0.02234582, 0.031326983, -0.020018429, -0.016448809, 0.036495794, -0.017619643, -0.0061111893, -0.015520707, 0.029527895, -0.0022559997, 0.0062218476, -0.0017874872, 0.027614579, -0.043320905, 0.018447796, 0.003164468, 0.03135554, 0.0017053859, -0.013564556, -0.05125974, 0.008003088, -0.005379417, -0.017890934, -0.018462073, 0.02168901, -0.034782376, -0.025015896, 0.008567087, -0.017291239, -0.0046904804, 0.004544126, 0.07367695, -0.007910278, 0.013607391, -0.010059189, 0.069164954, -0.01869053, 0.005500784, -0.036181666, 0.009409518, -0.021203542, 0.039779842, -0.029056706, -0.0060612145, -0.021003643, -0.031412654, -0.034953717, 0.04026531, 0.020032706, 0.01634886, 0.035267845, -0.026215289, 0.03126987, 0.0013466391, -0.017762428, -0.0025112275, 0.018733365, 0.039380047, 0.026029669, -0.027400402, 0.003323316, 0.008895493, -0.013407492, 0.025587035, 0.055114932, 0.0058541764, 0.04640506, 0.024801718, -0.010915898, -0.0041478984, -0.019018935, -0.030698732, -0.01869053, -0.015920505, -0.0025469237, 0.0030127591, 0.011565568, 0.022617111, 0.009737923, -0.01014486, -0.048946626, 0.023145415, -0.040151086, -0.020246884, -0.030870073, 0.01662015, 0.0139286565, -0.011936809, -0.0132147325, 0.03858045, 0.0030252528, -0.024973061, -0.010059189, -0.048832398, 0.017948048, 0.014849619, -0.0017214492, 0.011415645, -0.009402378, -0.01746258, 0.027828757, 0.038466223, -0.014585467, 0.022231592, 0.02938511, -0.015006682, -0.03335453, -0.025958275, 0.0074033914, -0.05060293, 0.0058291894, 0.008559949, -0.009152506, 0.010815948, -0.012450834, 0.063739136, 0.01332896, 0.055143487, -0.010016353, 0.013371796, -0.018305011, -0.018119391, 0.0113085555, 0.012472251, 0.024073517, 0.019133162, -0.022131642, 0.06493852, 0.030070478, -0.015592099, -0.0037231136, -0.010094885, 0.0028378477, -0.014000049, 0.015063796, -0.0049474933, 0.013293264, -0.010608911, 0.017548252, -0.005857746, 0.027543187, -0.012079594, -0.027614579, 0.023031188, -0.02929944, 0.008531392, -0.030441718, -0.04403483, 0.006471721, -0.015106631, 0.0008107499, 0.016477365, 0.034611035, -0.043435134, 0.00049037655, 0.0138501255, 0.005900582, 0.019290226, 0.0071606576, -0.013164758, 0.014621163, -0.024987338, -0.00015048179, -0.00816729, -0.010558936, 0.03298329, 0.0025879743, -0.01896182, -0.010159138, 0.04374926, 0.018447796, -0.016748656, 0.028985314, 0.0032965438, -0.0057899235, 0.01136567, -0.028785415, 0.020632403, 0.012843492, -0.0076961005, 0.0077603534, -0.009031138, 0.016020454, -0.012001062, 0.02817144, -0.04029387, -0.020389669, 0.015792, 0.03889458, -0.026700757, -0.037038375, -0.012786378, 0.009716505, 0.06665194, 0.043977715, 0.0006465474, -0.006789417, 0.03306896, 0.0040550884, -0.0031662527, 0.00044397148, -0.01980425, -0.023602327, -0.0019097467, -0.0035749744, 0.029984808, -0.03195524, 0.011344252, 0.03455392, 0.0135716945, 0.016277466, 0.010002075, -0.0144641, -0.021374883, -0.024558984, 0.0018419238, 0.012714986, -0.0332403, 0.027343288, -0.007199923, -0.02273134, -0.02929944, 0.013650226, -0.021817517, 0.013828707, -0.012779239, 0.013814429, -0.033554427, 0.0051973667, -0.005229493, -0.036867034, 0.03700982, -0.027343288, -0.0024273414, 0.04463453, -0.024344807, 0.014878175, 0.0018490631, -0.020775188, 0.02131777, -0.01879048, 0.008924049, 0.03295473, 0.024087794, -0.043178122, -0.030784402, 0.004387063, -0.0013671644, -0.030841516, 0.010794531, -0.027257618, 0.004619088, -0.037352502, -0.0077032396, -0.013543137, 0.018247897, 0.006553822, -0.036410123, 0.0011770822, 0.02572982, 0.022274427, -0.0035410628, 0.02995625, -0.0074033914, 0.031498324, -0.00045668823, 0.03455392, 0.018676251, 0.019175997, -0.042435642, 0.0073891133, 0.017776707, 0.011529872, 0.033868555, -0.0122223785, -0.04169316, -0.0147496695, 0.02310258, -0.018576302, -0.013578834, -0.009273873, 0.019590074, 0.014435543, 0.003060949, -0.004608379, -0.024401922, -0.0054508094, 0.02178896, 0.009345265, -0.01670582, -0.015178024, -0.00052741135, -0.009330986, 0.00007652373, 0.0031591135, 0.007317721, 0.005368708, -0.02855696, -0.010687442, -0.029242326, -0.040151086, -0.025943996, 0.034011338, -0.010194834, -0.023345314, -0.01616324, 0.0057006828, 0.025001617, -0.02601539, -0.007896, 0.0044763032, -0.021660453, -0.08498551, 0.020346833, 0.013250429, 0.056028754, -0.040693667, 0.12130996, 0.014442682, 0.04083645, -0.0082601, 0.024159187, -0.015749162, -0.04514855, 0.012158126, -0.004808278, 0.01126572, 0.035467744, -0.015849112, 0.031069972, -0.004087215, 0.03218369, -0.025001617, 0.00017279192, 0.0076032905, -0.010216252, -0.008274379, -0.012079594, -0.02206025, -0.024844553, -0.049689107, 0.021446276, -0.03866612, -0.004808278, -0.0077960496, -0.013914378, -0.044577412, -0.021717567, 0.007089265, -0.05597164, -0.0036981262, 0.016177516, -0.004497721, 0.0105018215, 0.03246926, 0.017848099, 0.021460555, 0.015420758, 0.0032804806, 0.006264683, 0.001998987, 0.008310075, 0.0028378477, -0.0089526065, 0.0043799235, 0.024644656, 0.0056864046, 0.022203036, 0.010394733, 0.024644656, 0.022402935, -0.029984808, 0.00929529, 0.00060549675, -0.08018794, -0.01981853, -0.020261163, -0.011144353, 0.024430478, -0.036495794, -0.004044379, -0.012850631, 0.02967068, 0.009402378, -0.044377513, -0.0189761, -0.0045976704, 0.021746125, 0.0010539303, 0.023702275, 0.013835846, 0.0027254047, -0.0003067642, -0.0030377465, 0.0044120504, 0.010209112, -0.024116352, 0.0008455537, 0.008624202, 0.024930226, 0.02722906, 0.011387087, -0.013093365, -0.009530885, -0.018661972, 0.017790986, 0.0032037338, 0.006535974, -0.02187463, -0.012336606, 0.0011440632, -0.0041657463, 0.03209802, -0.036181666, -0.010351897, -0.01614896, -0.030927187, -0.0034571767, 0.02253144, 0.03935149, 0.037323944, 0.0062468345, 0.0011262151, 0.0037802274, -0.007496202, 0.0266722, 0.010102024, -0.014878175, -0.013321822, 0.014228505, 0.012358024, 0.022288706, -0.02618673, -0.023873618, -0.0011681581, -0.00422286, 0.010309062, -0.005361569, 0.034953717, 0.00920248, -0.016691543, 0.015806276, 0.0398084, 0.004922506, -0.0006452088, -0.029613566, 0.012993416, -0.000414299, 0.045491237, 0.0037052655, 0.017062783, 0.025572756, 0.013393214, 0.0049617714, -0.040122528, 0.016034732, 0.016934277, -0.00059032586, 0.03126987, 0.021831796, 0.031127086, -0.00028490028, 0.0059398473, -0.04591959, 0.02975635, 0.00088348094, 0.040893566, -0.02224587, -0.024159187, 0.005233063, 0.00314662, -0.0023024047, -0.022845566, -0.000019005436, 0.022045972, -0.034725264, 0.017319795, -0.0018936833, 0.008524252, -0.0068215434, 0.0049153664, 0.020075543, 0.04489154, 0.030670173, -0.01981853, 0.004533417, 0.0026593667, -0.007021442, 0.042207185, -0.015720606, -0.0064645815, -0.0009807531, -0.0375524, 0.0140214665, -0.027900148, -0.020875137, 0.016877163, -0.0065109865, 0.009266733, 0.01013772, 0.0047475942, 0.012943442, 0.012914885, 0.020418225, 0.0024666074, 0.0013359302, -0.028057212, -0.027329009, 0.018319288, 0.011579847, 0.02581549, 0.026343795, -0.002170329, -0.0006666265, -0.011794024, -0.0010012784, -0.011279998, -0.017362632, -0.009816455, 0.017662479, -0.017105618, 0.0019632909, 0.023887897, -0.025115846, 0.012343746, -0.0030502402, -0.011893974, -0.018833315, 0.008217265, -0.02535858, 0.0082386825, 0.007995948, 0.021146428, 0.00975934, -0.03840911, -0.04009397, -0.008581366, -0.011030125, 0.017234124, 0.01596334, 0.0074033914, -0.012914885, -0.0043156706, -0.012400859, -0.022559997, 0.0050403033, -0.01267929, 0.010715999, -0.0050295945, -0.0093881, 0.02290268, 0.0034268352, -0.0068036956, -0.011044404, -0.003549987, 0.023074023, 0.0060112397, -0.0030181136, -0.0041907337, 0.02630096, 0.007164227, 0.012379441, 0.010151999, -0.020803744, 0.024815997, 0.014978125, 0.015249416, 0.015806276, -0.024830276, -0.018519187, 0.0013832276, 0.017234124, -0.0069536194, -0.010494682, 0.0066751894, -0.028399896, 0.010823088, 0.033297416, 0.01295772, -0.029185211, -0.025244351, 0.018704807, -0.031326983, 0.061454576, 0.0058291894, 0.035524856, -0.0019008226, 0.006628784, -0.041007794, -0.007867442, -0.03195524, 0.004451316, 0.0005898797, -0.0016696897, 0.03155544, 0.010958733, 0.03729539, 0.017334074, 0.012857771, 0.0008129809, 0.003680278, -0.020032706, -0.0057863537, -0.003201949, 0.0066894675, 0.008995442, 0.0042835437, -0.019590074, 0.045234222, 0.042321414, -0.011144353, 0.0199042, -0.030213263, -0.0022327972, -0.011158632, 0.00817443, -0.025472807, -0.002648658, 0.018604858, -0.017662479, -0.022045972, -0.011237163, 0.00025924365, 0.009188201, -0.027628858, -0.0039015946, -0.0061540245, -0.04017964, -0.00039221198, -0.013635948, 0.013286125, 0.035667643, -0.0024059238, 0.027971542, 0.018162226, 0.019004656, 0.014028606, -0.014214226, 0.017062783, -0.014149973, -0.0045119994, -0.01680577, -0.028199997, 0.015906226, -0.015192302, 0.0131219225, 0.02254572, 0.013371796, -0.02958501, -0.0063432143, -0.043320905, -0.0074605057, -0.032155138, -0.016919998, 0.023887897, 0.011672657, -0.00657167, 0.034325466, 0.05351574, 0.009152506, 0.029813465, -0.042835437, 0.04029387, -0.018262176, -0.015991896, 0.0035446326, -0.0018472783, -0.011786885, 0.002132848, 0.010915898, 0.0018205062, 0.006882227, 0.018447796, 0.0046262275, -0.021931745, -0.0014796074, 0.005511493, -0.009366683, -0.003708835, -0.036581464, -0.005079569, 0.0058791637, 0.008195847, -0.0021274935, -0.0026272403, -0.006485999, 0.006485999, -0.034725264, 0.016477365, 0.018804757, 0.00052741135, -0.036381565, -0.022988351, 0.009095391, -0.020946529, 0.007496202, 0.00040738287, 0.010209112, -0.0028539111, 0.020818023, 0.022574276, 0.018490631, 0.003351873, -0.0001258291, -0.025144402, -0.006875088, -0.005118835, -0.007860303, -0.023673719, -0.015734885, -0.021346327, 0.007189214, -0.033554427, -0.0006117436, 0.006093341, -0.00422286, -0.00976648, 0.020903694, -0.00281643, -0.0104090115, -0.0098664295, -0.0138501255, 0.04377782, 0.014635442, 0.022945516, 0.013257568, -0.0027682402, -0.0007005379, 0.010794531, 0.047490224, -0.03729539, -0.0062682526, -0.018176503, -0.014506935, 0.04500577, 0.017548252, 0.0230883, 0.010530379, -0.02300263, 0.042664096, 0.01914744, -0.012022479, 0.0057149613, -0.025558477, 0.005682835, 0.01352172, -0.006171873, -0.032240808, 0.027857313, 0.022759896, -0.010737416, 0.013714479, -0.004487012, 0.013978631, 0.0016286391, -0.02995625, 0.0015581391, -0.003014544, -0.034154125, -0.050003234, 0.013842986, 0.011993922, 0.011786885, -0.020232605, -0.03312607, 0.048746727, 0.036038883, -0.014949568, -0.020589568, -0.020875137, 0.01642025, 0.003408987, -0.014078581, -0.016291745, -0.020860858, -0.017976606, 0.021731846, 0.007724657, 0.0021471262, 0.008417164, -0.005322303, -0.019775694, 0.05362997, -0.010416151, -0.036038883, -0.013793011, -0.031326983, 0.030870073, 0.018147947, 0.011065821, -0.009545163, -0.029842023, -0.054029766, -0.0379522, 0.0036588605, 0.04797569, -0.020803744, 0.031412654, 0.0065573915, -0.011765467, 0.01670582, -0.0005742626, -0.026358074, 0.011594125, 0.019133162, -0.000971829, 0.007717518, -0.031498324, -0.011572707, -0.006621645, 0.011194328, 0.025515642, 0.005504354, 0.008388607, 0.011329973, -0.022988351, 0.004872531, 0.010666024, -0.017533973, 0.02855696, -0.007653265, -0.021360606, -0.0051116957, -0.02995625, 0.014214226, 0.0018918986, 0.009459493, 0.017919492, 0.023987845, 0.04057944, -0.017691037, -0.048404045, -0.015249416, -0.041436147, -0.00017569223, -0.018704807, -0.0065038474, 0.0028788985, -0.043806374, 0.0074390876, 0.009238176, 0.015749162, -0.025872605, -0.019304505, -0.01577772, -0.018162226, 0.007064278, 0.00009928005, -0.034239795, 0.001694677, 0.045319892, 0.017205568, -0.0014510505, -0.05034592, 0.046148047, 0.030841516, 0.0075675943, -0.010958733, -0.040151086, -0.0022363667, -0.010480404, 0.017077062, 0.016034732, 0.013964353, 0.0076175686, 0.013671644, 0.020917973, 0.026914934, 0.006800126, -0.0010378669, 0.024587542, 0.010073467, 0.025144402, 0.018419238, 0.012643593, -0.047832906, 0.014542631, 0.021746125, -0.015420758, -0.005586455, -0.002439835, -0.0134931635, -0.036295895, -0.013900099, 0.034125566, 0.008509974, 0.0064253155, -0.008888354, -0.009002581, 0.0030645186, -0.027628858, -0.0021471262, 0.030356048, 0.043549363, 0.0034536072, -0.00572567, 0.0059791133, 0.009438075, 0.0074390876, 0.00713924, 0.020403948, -0.0010708859, 0.0048689614, 0.0016054366, -0.0021863922, -0.0004145221, -0.0014376644, -0.005639999, -0.008138733, 0.009066834, 0.002329177, 0.008131594, 0.004622658, -0.023545213, 0.00044174047, 0.006621645, -0.0036767086, 0.00422286, 0.003773088, 0.017762428, 0.004572683, -0.016848605, -0.0045584044, 0.0028021515, 0.0050295945, -0.007917417, -0.016762935, -0.019561516, 0.020775188, -0.016634429, -0.0034696704, -0.024587542, 0.017448302, 0.013043391, 0.0020989366, -0.02855696, 0.0010137721, 0.0014126771, 0.027257618, -0.037438173, -0.006439594, -0.01437129, -0.021717567, 0.0017437593, 0.005971974, -0.0010209113, 0.004404911, 0.00021462339, -0.0010387594, 0.020618124, 0.016877163, 0.010616049, -0.009223898, -0.01399291, -0.0008482309, 0.027671693, -0.0048582526, 0.0062825307, -0.007110683, 0.017919492, 0.0047368854, -0.017019948, -0.019647188, 0.024501871, 0.012308049, -0.007810328, -0.034011338, -0.017691037, -0.014706834, -0.022317264, 0.01502096, -0.030356048, -0.0031626832, 0.0130291125, 0.027471794, -0.001564386, -0.013107644, -0.030099034, -0.017776707, -0.026700757, 0.0028556958, -0.015206581, -0.025344301, -0.013835846, 0.0135859735, -0.015335087, -0.010815948, 0.016919998, -0.0021399872, 0.0025665567, 0.030470274, 0.02630096, 0.019947035, -0.008717012, 0.0032965438, -0.028614072, 0.018147947, 0.037352502, 0.017191289, 0.019204555, 0.0009459493, 0.008702734, -0.0064645815, -0.013014834, 0.010187695, -0.034896605, -0.028871085, -0.013800151, -0.0116797965, -0.012457973, 0.018176503, 0.021089314, -0.022374377, 0.011372809, 0.03195524, 0.0075675943, -0.0025201517, -0.012436556, 0.0090454165, 0.0144641, 0.015178024, -0.0029824174, -0.03129843, 0.03700982, 0.017034225, 0.004715468, 0.0062218476, 0.0061647333, -0.03212658, 0.018619137, -0.007767493, 0.0020418225, -0.02591544, 0.013557416, 0.0044584554, -0.002291696, 0.040893566, 0.018904706, -0.0013841201, -0.0055329106, -0.012622176, 0.00011478559, 0.0032322907, 0.0025861897, 0.047747236, -0.025044452, 0.034810934, -0.026900655, 0.03164111, 0.009637973, 0.018262176, 0.008459999, -0.019647188, -0.00047252842, -0.0030377465, 0.015420758, 0.0017544682, 0.023302479, 0.016934277, -0.010901619, 0.008895493, 0.03652435, -0.037124045, 0.0036374426, -0.011808302, -0.024944503, 0.021703288, -0.0026147466, -0.01296486, -0.020489618, -0.0152922515, -0.00234881, 0.057799283, 0.0018883289, 0.011629822, 0.013264707, -0.01267929, 0.016405974, 0.024658933, 0.0032733413, 0.010658885,
2377
- 1.8475572e-7,
2378
- 0.008766986, 0.0447202, 0.020018429, -0.013400353, -0.008010227, 0.025130123, -0.0038980248, 0.04769012, -0.007107113, -0.011044404, -0.0030091896, 0.0041443286, -0.002214949, -0.003466101, -0.008410024, -0.0013627023, 0.0026165314, 0.01653448, -0.020075543, -0.0046797716, 0.028471287, 0.00469762, 0.0048189866, -0.022217315, -0.05662845, 0.02290268, 0.013892961, 0.018476352, 0.018847592, -0.00929529, -0.007353417, 0.016020454, 0.02611534, -0.021760402, 0.023702275, -0.021517668, 0.022217315, -0.015906226, -0.009987797, -0.00985215, -0.005736379, 0.026957769, 0.006646632, -0.009687948, 0.036552906, 0.006835822, 0.022460049, 0.008709872, 0.008945467, 0.06333934, -0.032240808, -0.009530885, 0.010887341, -0.021046478, 0.03298329, 0.022602834, -0.025387136, 0.007192784, -0.028571237, -0.021431997, 0.0051795184, 0.0015161961, 0.0004850221, 0.00023916452, 0.020689517, -0.010630328, 0.012058176, 0.0036838476, -0.005136683, -0.020703794, -0.009359543, -0.009316708, 0.03175534, -0.006393189, 0.00043527051, 0.014906732, -0.0064752903, -0.018676251, -0.0049510626, -0.006311088, -0.015206581, 0.0023595188, -0.0014555125, 0.016834328, -0.015906226, -0.00647886, -0.0052651893, -0.013957214, -0.0090596955, 0.029813465, -0.024587542, 0.02234582, 0.009716505, 0.02357377, -0.0048047085, -0.0011592341, -0.009730783, -0.024901668, 0.013721619, 0.0019168858, 0.015620656, -0.018005162, -0.0036767086, 0.021132149, -0.02254572, -0.00023961073, 0.043635033, -0.017077062, -0.0018080125, -0.0017973036, -0.0045905313, 0.008916911, -0.027643137, -0.012557923, -0.007560455, -0.001229734, 0.0061183283, -0.016363138, 0.008667037, -0.0013261138, 0.02618673, 0.037438173, 0.014078581, -0.00028289238, -0.0221602, 0.008131594, -0.01944729, -0.012186682, 0.013179037, 0.0068572396, -0.029270884, -0.022602834, -0.025344301, -0.0089668855, 0.0023398858, -0.012015341, -0.0017446517, 0.008759847, -0.01473539, 0.007164227, -0.0021167847, 0.020917973, -0.018433517, -0.055229157, 0.004451316, 0.01998987, 0.0094166575, -0.03426835, -0.015406479, -0.023959288, 0.044577412, 0.0071213916, -0.016734378, 0.01690572, -0.007910278, 0.00085358537, 0.0049903286, 0.004733316, 0.0034982276, 0.0030377465, 0.010694581, 0.02355949, 0.017948048, 0.0028021515, -0.018519187, 0.03321174, -0.008331493, -0.0113228345, 0.011501315, 0.0116441, 0.014792505, 0.0074248095, 0.009423796, -0.009166784, 0.0038480503, 0.01634886, 0.017776707, 0.021032201, 0.015720606, 0.0017500061, -0.03880891, 0.0050295945, 0.036038883, -0.023488099, -0.0114941755, -0.017419744, 0.0020436074, -0.012936302, -0.012886328, 0.033468757, 0.024073517, 0.006960759, 0.015149467, -0.001394829, 0.008024505, -0.02592972, -0.0065788096, -0.012793518, -0.030870073, -0.0000720617, -0.0056114425, 0.013257568, -0.019875644, -0.002891392, -0.006917923, 0.0015670632, -0.014792505, -0.014321315, -0.0060326573, -0.0005693544, 0.0034678858, 0.01436415, 0.010194834, 0.0015947276, 0.002686139, 0.01616324, -0.032926172, 0.004401341, -0.012822075, -0.01634886, 0.0033018985, -0.005015316, 0.015563543, -0.004404911, 0.0058791637, 0.02084658, -0.009916404, -0.008252962, -0.012479391, 0.017762428, 0.0008678638, 0.010773113, -0.016977113, -0.0068608094, -0.020946529, 0.009795037, -0.011001568, 0.0041657463, 0.011808302, 0.027329009, -0.027600301, 0.013671644, -0.011794024, 0.00076791446, -0.011001568, 0.034496807, -0.0041907337, 0.008302935, -0.0069500497, 0.00014702372, 0.03032749, -0.004187164, -0.006432455, 0.01502096, 0.015220859, -0.012329467, 0.0024344807, 0.0035142908, -0.020403948, 0.029327996, -0.016934277, 0.02488739, 0.015792, 0.015249416, 0.016263189, -0.010366176, -0.0140357455, -0.01943301, 0.0034393286, -0.0026504428, -0.0034018478, 0.039208703, -0.023173973, 0.0069500497, -0.0110801, 0.0056150123, -0.026715035, 0.015006682, -0.03389711, 0.0029253035, -0.0003237199, 0.010166277, 0.007531898, 0.01756253, -0.012072454, -0.035296403, -0.0026254554, -0.022959795, -0.022517161, 0.007021442, -0.0019347339, 0.016662985, -0.012622176, -0.011237163, -0.013400353, 0.02488739, -0.00080227206, 0.00093970244, 0.015135189, 0.014678277, -0.008531392, 0.027843036, -0.009452353, 0.0039408603, -0.0014135694, -0.0043156706, 0.011794024, 0.00033576737, -0.008131594, -0.019318782, 0.007917417, 0.010437569, -0.0058755944, 0.0070928345, -0.011951087, 0.0014055378, 0.0045476956, 0.010666024, -0.037609514, -0.018319288, 0.01933306, -0.009452353,
2379
- 9.551522e-7,
2380
- 0.0068322523, 0.007624708, 0.0060683535, 0.00026147466, -0.0131219225, 0.014042884, 0.002573696, 0.03258349, 0.0030109743, -0.02891392, 0.009031138, -0.01023767, -0.011001568, -0.007881721, 0.01869053, 0.007624708, 0.0028039364, -0.011901112, -0.018362125, -0.0072713154, -0.0055757463, 0.016919998, -0.027400402, -0.008381467, -0.014478378, 0.009730783, 0.022845566, -0.042121515, -0.014128556, -0.0067287334, 0.009359543, 0.011072961, 0.007221341, -0.0035410628, -0.025572756, 0.01596334, 0.026929213, 0.030413162, 0.012443695, -0.0063360753, 0.016034732, 0.0105018215, 0.016177516, 0.012629315, 0.0022542148, -0.014414125, 0.016177516, 0.011151493, 0.0001619715, 0.010473264, 0.0034571767, -0.004140759, -0.008788404, -0.0031787464, 0.017762428, -0.005718531, -0.0027878731, -0.0005515063, -0.011372809, -0.007096404, -0.0056649866, 0.010880201, 0.008131594, 0.0040693665, 0.024915947, 0.0025629872, -0.006403898, -0.031041414, 0.0035553414, 0.0047761514, 0.0033447337, -0.0076389867, 0.014406986, 0.00014568512, 0.014763948, -0.005054582, -0.002516582, -0.006703746, -0.021060757, 0.00816729, 0.011422783, 0.00845286, 0.017533973, 0.011751189, 0.004180025, 0.010794531, -0.011708353, -0.020975087, 0.005051012, -0.010701721, 0.0024487593, 0.02600111, -0.00816729, -0.0017366201, 0.008331493, -0.011651239, -0.010751695, 0.026043946, -0.009752202, 0.0060540754, 0.0005586455, 0.004162177, 0.020589568, -0.0055293413, 0.0019864934, -0.01258648, 0.011558429, 0.00290924, 0.001178867, 0.0013502088, 0.00798881, 0.0038087843, 0.0020632404, -0.0022078098, -0.008702734, 0.000830829, 0.010566074, 0.021203542, 0.018533466, -0.013364657, -0.00619686, -0.014992404, 0.021332048, 0.019461567, -0.020446783, -0.0074319486, -0.004744025, -0.005961265, 0.028856806, -0.021017922, 0.015206581, 0.0029324428, -0.006075493, 0.0015429682, -0.0010119872, 0.000030983185, 0.02375939, -0.012229518, -0.0003765949, 0.0046619237, 0.0066359234, -0.010266227, -0.018533466, -0.012743543, 0.018661972, -0.017077062, -0.020361112, -0.002272063, 0.0041086324, -0.003285835, -0.013386074, -0.012600758, 0.015449314, -0.0026415186, 0.010373315, -0.0043049618, -0.017476859, -0.0016188226, 0.022417212, -0.005579316, 0.00009582198, 0.015163745, -0.010002075, 0.004030101, 0.01606329, 0.011872556, 0.0029913415, 0.014192808, 0.013486024, -0.018647695, 0.00025879743, 0.0045012906, 0.00038685754, 0.012829213, -0.0199042, 0.022460049, 0.00056043034, 0.008552809, 0.0014912087, -0.004337088, 0.01727696, 0.0042371387, -0.009937822, 0.004383493, 0.024073517, 0.013486024, 0.0076961005, -0.0030538097, 0.016577315, 0.010851644, -0.0061825817, -0.014506935, -0.017291239, 0.014778227, -0.022474326, -0.00479043, -0.020518174, 0.013093365, -0.0061183283, 0.0009611201, 0.0076461257, -0.0028681895, 0.0062111383, 0.012593619, -0.012736403, 0.0062504043, 0.0030502402, -0.030984301, 0.00563286, -0.0033929236, -0.00506886, -0.006518126, -0.017890934, 0.021546226, -0.03312607, 0.008181569, 0.017990883, 0.0019275948, 0.01296486, -0.0021846073, 0.007531898, 0.006928632, -0.0074676448, 0.001553677, -0.015377922, 0.017805263, -0.0055828854, -0.0010860568, 0.0024326958, 0.0013154049, 0.00929529, 0.006029088, 0.0018740505, -0.029813465, -0.002600468, 0.0004491028, 0.0038444805, -0.008859796, 0.003644582, -0.018904706, 0.018105112, -0.01821934, 0.015906226, 0.0013832276, -0.008574227, -0.0013394998, -0.025786934, -0.0064253155, 0.004312101, -0.0017678542, 0.0021578353, -0.034325466, 0.01709134, -0.0019311643, 0.010451847, 0.025315745, 0.0044191894, 0.012022479, 0.021574782, 0.0002668291, -0.0035249996, -0.01042329, -0.0039123036, -0.01342891, -0.022331541, -0.0056578475, 0.018276453, 0.00816729, 0.012051037, -0.0062753917, 0.004265696, -0.000030258107, -0.0004524493, 0.0043049618, -0.005579316, 0.0054293917, -0.0009062372, 0.0165202, 0.014064303, -0.0018722656, -0.0028503414, 0.009530885, -0.008003088, -0.0065466827, 0.005993392, 0.0003971202, 0.00816729, 0.0152922515, 0.005904151, -0.016820049, 0.0189761, -0.025215795, -0.023616605, 0.002902101, -0.004422759, 0.02066096, 0.002439835, 0.0058720247, -0.026743593, -0.0012359809, 0.011351391, -0.0045227082, -0.013136202, -0.010009214, -0.010873063, -0.020361112, -0.009366683, 0.008131594, -0.004958202, 0.0051224045, 0.021260656, 0.018947542, 0.011415645, -0.011537012, 0.0016152529, 0.00290924, -0.013957214, 0.0071321004, -0.012914885, -0.010373315, -0.003858759, 0.019661466, 0.0029520756, -0.024587542, 0.006485999, -0.019218834, 0.00657524, 0.009609417, 0.019832809, -0.0017223416, 0.0073034423, -0.0134788845, 0.0025772655, 0.008509974, 0.0062111383, 0.01267929, -0.006139746, 0.014906732, -0.021660453, -0.004112202, -0.017519694, -0.007838885, 0.008367189, 0.0031252021, 0.03746673, 0.0031198477, -0.009330986, -0.0075533157, -0.018062277, 0.002468392, -0.00090400624, 0.00032907433, 0.022017416, -0.023745112, -0.0062039993, -0.005200936, -0.01417853, -0.00038194933, 0.0056542777, 0.008038784, -0.02084658, 0.010823088, -0.0061932905, -0.02902815, 0.017633922, -0.00043817083, 0.0010280506, -0.006518126, 0.0011601264, -0.015849112, -0.016206075, 0.012943442, 0.008895493, -0.013678784, 0.009659391, 0.0093238475, -0.02338815, -0.026957769, 0.017519694, -0.034953717, 0.016677264, 0.018176503, -0.00008857119, -0.01906177, -0.017205568, -0.016306024, -0.039208703, -0.021988858, -0.0056971135, -0.008667037, 0.0039372905, -0.0051402524, -0.0027807339, -0.00966653, 0.012272353, 0.020104099, -0.015449314, -0.0036767086, -0.0117583275, 0.021032201, -0.0028931769, 0.012572201, 0.014421265, 0.020575289, -0.0014662214, 0.005325873, -0.002375582, 0.008631341, -0.012236657, 0.00021863922, 0.0077817715, -0.009987797, 0.019018935, 0.008524252, 0.0005559683, 0.0025237212, -0.0063325055, 0.009152506, 0.0076604043, 0.0046797716, -0.0020810885, -0.023402428, -0.005368708, -0.021060757, 0.0026914934, 0.0010780252, -0.031184198, 0.00007836431, 0.016320301, -0.00031524204, -0.0127649605, -0.009002581, 0.0044727335, -0.0093881, 0.010294784, 0.021703288, 0.007239189, -0.008681316, 0.007681822, -0.00088615814, 0.016177516, -0.0100520495, -0.032640602, 0.011615543, 0.002862835, 0.010530379, 0.01182972, 0.03146977, 0.021646176, 0.00094416447, 0.014706834, -0.011101518, 0.01926167, -0.011537012, 0.005004607, 0.021160707, -0.01267929, -0.00081476575, -0.004383493, 0.0026272403, -0.01680577, 0.007539037, 0.013750176, -0.0058648856, 0.019861365, 0.009887847, -0.009887847, 0.0042585563, 0.006621645, 0.017062783, 0.02046106, -0.008524252, 0.031069972, -0.0019775694, -0.010751695, 0.013293264, -0.016662985, -0.005193797, 0.0013270061, -0.0230883, 0.0010646391, -0.0029984806, 0.008417164, -0.0053508603, 0.025901161, -0.0019936326, -0.0009950316, 0.012051037, 0.021746125, -0.006864379, -0.01502096, -0.0007750537, 0.008959746, 0.0140214665, -0.0028342782, -0.0036874174, 0.002214949, 0.0034286198, -0.00038730376, 0.012322328, -0.004312101, -0.006743012, 0.02337387, 0.012507948, -0.0023059745, -0.021232098, -0.0005894335, 0.0032305059, 0.00047877527, -0.01653448, 0.004365645, -0.0143927075, 0.0051402524, 0.009930682, -0.0023202528, 0.0049474933, 0.007142809, 0.00985215, -0.014064303, 0.012907745, -0.0013671644, -0.0052437717, 0.014064303, -0.007724657, -0.02018977, -0.022774175, -0.011658379, 0.003887316, 0.016577315, 0.014906732, -0.008381467, 0.016491644, 0.008103037, -0.0045405566, 0.013421771, 0.037523843, 0.008574227, 0.0018597719, -0.009966379, 0.014406986, 0.004176455, -0.0020328986, -0.0053008855, -0.017948048, 0.014142834, -0.008417164, -0.026957769, 0.018804757, -0.02150339, 0.0016366707, -0.02921377, -0.011294277, -0.003594607, -0.005961265, 0.0006286993, -0.00460124, -0.017048504, 0.0049510626, -0.010944455, 0.0054293917, 0.0067465818, 0.00007300988, -0.026215289, -0.011422783, -0.025344301, -0.013814429, -0.016463086, -0.013778733, 0.0041550375, -0.013543137, 0.016120404, 0.00033286706, -0.004833265, 0.010359037, 0.016034732, 0.0062289867, -0.0287283, -0.0027557465, 0.015049517, -0.0074676448, -0.0062218476, 0.008945467, -0.009438075, -0.016277466, -0.018362125, 0.011165771, -0.018533466, 0.022659946, 0.0005581993, 0.00413362, 0.0008027183, 0.013864404, -0.010601771, 0.00080093346, -0.013621669, 0.021060757, 0.022617111, -0.015820555, 0.020603845, -0.010651746, -0.0051723793, 0.016448809, 0.0005198259, 0.0059112906, 0.003492873, 0.0063717715, 0.019490125, -0.0076389867, -0.0070571383, -0.014949568, -0.009994935, -0.0038623286, -0.007531898, -0.011529872, 0.023616605, -0.0008178892, -0.0056150123, 0.007192784, 0.00657524, 0.009309568, 0.004926075, -0.0059291385, -0.0230883, -0.01296486, -0.01906177, -0.008745569, 0.0024451895, 0.007896, 0.008859796, -0.014107138, 0.020389669, 0.02037539, 0.0033393793, -0.020075543, 0.0011708353, 0.013014834, 0.011537012, 0.00013832276, -0.012850631, 0.018376403, -0.003624949, 0.011222885, -0.0061540245, 0.005804202, 0.021289213, -0.009802176, 0.008724151, 0.010873063, -0.008552809, 0.010273366, 0.0020810885, -0.006750151, -0.020989364, -0.003107354, 0.0065573915, -0.000026800037, 0.008752708, 0.012622176, -0.024744606, -0.013200454, 0.030927187, 0.009088252, 0.022759896, 0.0117583275, -0.007021442, -0.0070464294, 0.018833315, -0.003483949, 0.006114759, 0.014121416, 0.01662015, 0.017662479, -0.032440707, -0.012665011, -0.0038016452, -0.017533973, -0.0032144426, 0.012479391, -0.041950174, 0.016505923, -0.01623463, -0.030841516, 0.0031144933, 0.00008304944, 0.018747643, 0.00122081, -0.0014349872, -0.00873129, -0.011744049, 0.0050295945, 0.009309568, -0.031498324, -0.005850607, -0.010530379, -0.015235137, 0.010901619, -0.013771594, 0.005108126, -0.005183088, -0.009216758, -0.00025656642, -0.0062039993, -0.035896096, 0.003726683, 0.02056101, 0.01305767, -0.0000057762304, 0.018819036, -0.0016812909, 0.008909771, 0.019233111, -0.03032749, 0.012086733, -0.0013511011, -0.0028556958, -0.010701721, 0.0013760885, -0.00040002054, -0.017334074, 0.012436556, 0.04534845, 0.0025772655, -0.017833821, 0.0018106897, 0.008060202, -0.013657366, 0.008388607, 0.033754326, 0.012115289, -0.0031680376, -0.0033500881, -0.015435036, -0.011344252, -0.02084658, 0.015634935, -0.0050295945, -0.0005523987, -0.002770025, 0.011908252, -0.007967392, 0.0029128098, 0.018362125, 0.015649214, -0.0035428477, -0.008552809, 0.012714986, 0.0017107403, -0.007089265, 0.009430936, 0.006082632, -0.006910784, -0.008367189, 0.000828598, 0.01324329, -0.011279998, 0.013271847, 0.0051795184, 0.0024166326, 0.014071441, -0.00061932905, 0.021489112, -0.04055088, 0.0046619237, -0.017077062, 0.00403724, 0.015906226, -0.0102233915, 0.0065966574, -0.002996696, -0.00081833533, -0.015049517, 0.010930176, -0.020589568, -0.005772075, -0.00873129, 0.014663998, -0.008431442, 0.002730759, 0.025601314, -0.015520707, 0.0002320253, 0.0061897207, 0.0012368733, 0.0031037845, -0.015906226, 0.005279468, 0.00023559491, -0.00031925787, 0.001474253, 0.020432504, -0.014314176, -0.015363644, -0.034382578, 0.013514581, -0.004197873, -0.0093881, -0.00967367, 0.0005158101, -0.011101518, 0.016734378, -0.01427848, 0.023902174, 0.00025634334, -0.007974531, -0.016548758, -0.008866936, -0.01118005, 0.0028539111, 0.004826126, -0.018362125, 0.018676251, 0.01709134, -0.013635948, 0.00008795766, -0.0047832904, 0.008631341, 0.019033212, -0.0002523275, 0.007296303, 0.0015420758, 0.015449314, -0.014442682, 0.013957214, 0.004758303, 0.0023166833, -0.0023166833, 0.04563402, 0.007710379, 0.0034678858, 0.019290226, -0.0032840504, -0.019090327, -0.018133668, 0.010173417, -0.01850491, -0.009823594, -0.007192784, -0.017619643, -0.01604901, -0.025315745, 0.024216302, 0.012693568, 0.017291239, 0.0046262275, -0.004847544, -0.008231543, 0.007924556, -0.02864263, -0.0257441, 0.010544657, 0.01914744, 0.012272353, 0.010701721, -0.01004491, -0.0064003286, -0.010944455, -0.0029734934, 0.02355949, -0.0015813416, 0.00751048, -0.0354963, 0.017119898, 0.02320253, -0.0011422783, 0.0055257715, -0.01361453, 0.0070357206, 0.008766986, 0.021246377, 0.0001725688, -0.010587493, -0.017676758, -0.0018954681, 0.007199923, 0.0023202528, 0.014535492, 0.0058541764, 0.01464972, -0.005861316, 0.002338101, -0.008138733, -0.01634886, -0.018719086, -0.0054044044, -0.014949568, 0.008281518, 0.010416151, -0.0073891133, 0.03315463, 0.00751048, -0.009659391, 0.015506429, -0.010573214, 0.013507442, -0.0062825307, 0.011015847, 0.023145415, 0.009181063, 0.0020739492, 0.022331541, -0.0070821256, -0.009894987, 0.0030341768, 0.015235137, -0.007817468, 0.002355949, -0.017434023, 0.014949568, 0.01746258, -0.015220859, -0.008459999, 0.00817443, 0.008538531, 0.028871085, 0.008060202, -0.017990883, 0.0002895854, -0.011072961, -0.008881214, 0.0016063289, 0.0075747333, 0.004826126, 0.009709366, -0.0031216326, 0.010901619, -0.012343746, -0.0037016957, 0.008831239, -0.0052651893, 0.0018633415, 0.0114941755, 0.026772149, -0.0059791133, 0.010930176, 0.0154778715, 0.012236657, -0.022103086, 0.013179037, 0.0016429175, 0.012043897, -0.0077032396, 0.023116859, -0.027486073, 0.0069036447, 0.02320253, -0.026043946, 0.002450544, 0.01502096, 0.029699238, -0.007860303, -0.01567777, -0.013628809, 0.002600468, -0.005297316, 0.0032340756, -0.0057470878, 0.017291239, -0.007474784, 0.004365645, -0.00046048095, 0.005550759, 0.0065431134, 0.02535858, -0.0005225031, 0.0051723793, -0.029356554, -0.008759847, -0.006618075, -0.0011931454, 0.0015170884, 0.032897618, 0.011901112, 0.00657167, -0.003748101, 0.011115796, -0.02938511, 0.0023309619, -0.013785872, 0.002968139, -0.028885365, 0.009830733, 0.0127649605, 0.0077817715, 0.006168303, 0.004469164, -0.0033679362, -0.0013118353, 0.0126721505, -0.017319795, 0.011122935, -0.025615592, -0.013364657, -0.006507417, 0.010530379, 0.012507948, 0.0076604043, -0.009687948, 0.010830226, -0.01961863, 0.00061665184, -0.014242783, 0.00021562735, 0.01887615, -0.015934784, -0.010209112, -0.011672657, 0.0054329615, -0.012265214, -0.00007869896, -0.01653448, -0.013043391, -0.0075176195, -0.0045476956, -0.009366683, -0.0024576832, 0.00286462, -0.009730783, 0.00023827213, 0.0061004804, -0.014528353, -0.013071948, 0.023902174, 0.01746258, 0.033582985, -0.004533417, 0.0255442, 0.02938511, 0.0060969107, 0.017248403, -0.008995442, -0.0074033914, -0.01267929, -0.0050010374, -0.0095094675, 0.0030163287, 0.0030448858, -0.008567087, 0.017034225, 0.011515594, 0.01756253, 0.0025397844, 0.0021453416, 0.014328454, 0.0040800753, -0.008974024, -0.013864404, 0.0144641, -0.010787391, -0.017933771, -0.013785872, 0.008802682, 0.015249416, 0.0034143415, 0.037066933, 0.011629822, 0.020204049, 0.0011226455, -0.002413063, -0.00029962495, -0.0007188322, 0.00863848, 0.0003074335, -0.00034268352, 0.018819036, 0.006600227, -0.028014377, 0.00020960362, -0.01127286, -0.020632403, 0.008538531, -0.017962327, 0.0073462776, -0.03232648, 0.0037124048, 0.0053472905, 0.014399846, -0.015006682, 0.0026468732, -0.010009214, 0.0021542655, -0.005097417, 0.0014233859, -0.018105112, 0.008959746, 0.005147392, 0.009409518, 0.013643087, 0.0066252146, -0.002280987, 0.017819542, -0.012729265, 0.0028556958, -0.0051402524, 0.011237163, 0.011986784, -0.0000028724285, 0.00013207593, 0.003887316, 0.01690572, -0.009966379, -0.0076961005, 0.002600468, 0.00647886, 0.006939341, -0.0067215944, -0.026557973, 0.025087288, 0.014042884, -0.010980151, 0.017933771, -0.041778833, -0.036838476, 0.010494682, 0.0024291263, 0.0011235379, 0.008324354, -0.012857771, -0.01117291, 0.017676758, 0.0072998726, 0.0070000244, -0.006257544, 0.009002581, 0.026529415, -0.0013466391, -0.008160151, -0.004629797, -0.0027468225, -0.0015974048, -0.011194328, -0.001760715, -0.012193821, 0.0042799744, 0.0021149998, -0.008474277, 0.019647188, 0.010651746, -0.01437129, 0.012750682, 0.0029003161, 0.007824607, -0.009930682, 0.000268837, 0.014792505, -0.03061306, -0.009652252, -0.002884253, 0.017519694, 0.0009521961, 0.010587493, -0.004126481, -0.003951569, 0.0021756834, -0.006568101, 0.0036767086, 0.015549264, -0.022759896, 0.009216758, 0.0025968985, -0.018333567, 0.034953717, -0.010109164, -0.015706327, 0.013685922, 0.008295797, 0.029327996, 0.0012823859, 0.0116797965, 0.0020168351, -0.001033405, 0.0034518223, -0.011608404, -0.010373315, 0.010844505, 0.02300263, 0.0035892527, -0.023231085, -0.0006751044, 0.007938835, 0.012750682, 0.0149352895, 0.012400859, 0.01746258, -0.005193797, 0.018047998, 0.0092310365, -0.007867442, 0.005718531, 0.01324329, 0.006307518, 0.0006452088, -0.012757821, -0.017305518, 0.0061040497, 0.013436049, -0.0099449605, 0.009695088, -0.003307253, -0.00021796991, -0.0054293917, -0.017676758, -0.020818023, -0.0167201, 0.009116809, -0.009302429, -0.0062861005, -0.0025130124, 0.004872531, -0.004490582, 0.0010369746, 0.0005639999, 0.0002884699, -0.015163745, -0.002507658, 0.013107644, 0.012279492, 0.016848605, 0.010351897, -0.0026093922, -0.0255442, 0.006846531, 0.008231543, 0.022959795, 0.010865923, -0.0099521, 0.014228505, 0.012150986, -0.0072998726, -0.00966653, -0.03746673, -0.02355949, -0.024687491, -0.016477365, -0.020075543, 0.0026593667, -0.01690572, -0.02206025, -0.021132149, -0.00957372, 0.01117291, 0.012665011, 0.01614896, -0.0016348859, 0.020532453, -0.011415645, 0.0066787587, -0.0024523288, -0.012150986, -0.014806783, 0.005782784, -0.00049573096, -0.009166784, -0.00967367, 0.012565061, -0.0028092908, -0.014414125, -0.012722125, 0.012829213, 0.009823594, -0.0054365313, 0.012986277, 0.01924739, -0.010680303, 0.0062039993, -0.0045512654, -0.025886884, -0.008517113, 0.00572924, -0.007860303, 0.008410024, 0.0069464804, 0.0036767086, 0.018362125, -0.026715035, 0.00039221198, 0.01624891, 0.020118378, -0.007192784, -0.012008201, 0.0032572781, -0.013036252, 0.012800657, -0.021589061, 0.011472758, -0.00281643, -0.027186224, 0.010373315, 0.013807289, 0.01042329, -0.017919492, -0.003708835, 0.0022185186, -0.008110177, 0.012043897, 0.03172678, 0.017048504, 0.0011958226, 0.0062218476, 0.03652435, -0.038180653, -0.0046440754, -0.0077603534, -0.016177516, -0.0025951136, 0.012415138, 0.010430429, -0.032355033, -0.01699139, 0.0400083, -0.020104099, 0.01821934, -0.008995442, -0.0011565569, 0.005379417, 0.026415188, -0.0038230629, -0.008124455, 0.026615085, 0.006271822, 0.0018829745, -0.0061468855, 0.02301691, -0.001774101, 0.0038194933, 0.0011931454, 0.0015153036, -0.002770025, -0.009359543, 0.015706327, 0.0115869865, 0.0013832276, 0.016563036, 0.006125468, -0.008317214, 0.00049126893, 0.017848099, -0.016734378, -0.022945516, 0.0099449605, -0.009994935, -0.042035844, -0.00014456961, 0.033097517, 0.004176455, -0.009159644, 0.0037873667, 0.007710379, -0.028756857, -0.016762935, 0.028114326, 0.017962327, 0.00003511056, 0.029784909, -0.0017794555, -0.007410531, -0.0060612145, 0.013186175, -0.0019043921, -0.017362632, -0.0018294302, -0.000035389436, 0.009209619, -0.0013966138, -0.017105618, -0.033925667, -0.015792, -0.019233111, -0.007674683, 0.0074390876, 0.013507442, 0.004579822, -0.007817468, -0.004215721, -0.002179253, -0.028571237, -0.0048975185, 0.025943996, 0.012172404, -0.008567087, 0.012372303, 0.004701189, 0.0074248095, -0.027114833, -0.012700708, -0.0072070626, -0.03446825, 0.0050938474, -0.01840496, 0.002047177, 0.012015341, -0.016877163, -0.01869053, -0.01906177, -0.009181063, 0.012543644, -0.025315745, 0.025230072, 0.0028199996, -0.0038087843, -0.0020061263, 0.0022542148, 0.0061433157, 0.0012083163, -0.0054722275, 0.0051116957, -0.011487037, -0.004469164, 0.022702781, 0.0032233668, 0.024373364, -0.011958227, 0.00033353636, 0.012714986, -0.0018901137, -0.0071963537, -0.016220354, -0.01643453, -0.011115796, -0.00582205, 0.0116441, 0.022231592, 0.015649214, 0.0039694174, 0.008759847, 0.017848099, 0.00019610599, -0.00026147466, -0.025901161, 0.0013207593, -0.004290683, 0.013535999, 0.017548252, 0.003633873, -0.0017089555, -0.0006684113, 0.009245316, -0.02884253, 0.018019442, -0.012879188, -0.010537518, 0.03155544, 0.0028592655, 0.016834328, -0.012729265, -0.031069972, 0.010830226, 0.000654579, 0.022031695, -0.011030125, -0.00910967, -0.0058006323, 0.016577315, 0.017933771, -0.008809822, -0.016962834, -0.00816729, -0.0043299487, -0.041750275, -0.028242832, 0.012008201, 0.018547745, 0.04095068, 0.0034411135, 0.0074676448, 0.0072142016, 0.0000019242482, 0.034582477, -0.0071606576, -0.00006637262, -0.00040448256, -0.0008754493, 0.007157088, 0.012429416, 0.020646682, -0.00027129112, -0.02283129, -0.0015581391, 0.021217821, -0.015435036, 0.03195524, -0.016477365, -0.006778708, 0.022402935, 0.0055721765, 0.010259087, 0.008852657, -0.0054508094, -0.01089448, 0.014763948, 0.0077603534, 0.024973061, -0.00065681007, 0.012936302, 0.0020453923, -0.0043799235, 0.000233587, 0.025144402, 0.0031430502, 0.007974531, 0.0033590123, -0.016391695, 0.007099974, -0.01662015, -0.021389162, -0.008374328, -0.031127086, 0.0051866574, 0.0140357455, -0.024587542, -0.011665517, 0.007410531, -0.024758883
3229
+ -0.024500476, -0.037831828, -0.0230399, -0.052981745, 0.028696058, -0.022739192, 0.012636862, 0.01245787, -0.003008862, 0.043874614, 0.0027636425, 0.002956954, -0.054299127, 0.0095725125, -0.03682947, 0.012887452, 0.010324281, -0.0076465546, -0.03680083, -0.003941412, 0.000223293, -0.051062945, -0.04765493, -0.040495235, 0.010130969, -0.01058203, 0.0049509294, 0.016238188, -0.014663056, 0.04456194, 0.011577227, 0.003357897, 0.0008036758, -0.023168774, 0.02229529, -0.009092813, 0.016094996, 0.017784683, 0.013932767, 0.008355364, 0.032361824, 0.03213271, 0.0032379723, -0.0116559835, -0.0052552163, -0.023741549, -0.021006545, -0.023598356, -0.011068889, 0.041182566, 0.052437607, -0.0038304368, 0.0007942787, -0.0051621404, -0.011792018, 0.009386361, 0.018371778, 0.04487697, 0.038490523, -0.026848856, -0.007847026, 0.0037946384, -0.005262376, -0.017541254, 0.053468604, 0.0045786253, 0.012035448, -0.0006859883, 0.0041633626, 0.010360079, 0.0045893644, -0.034624286, 0.030271191, 0.0067838114, 0.01220728, -0.019316858, 0.03800366, 0.0036460748, -0.008240809, -0.024557754, -0.0063792886, -0.007209813, -0.0432732, -0.025030294, 0.015321747, -0.0578217, 0.02798009, -0.042614505, -0.013775254, 0.0035368893, -0.009107132, 0.013746615, -0.02750755, 0.0013325983, -0.0009934077, 0.0026007593, 0.03548345, 0.019087747, -0.006712214, 0.013109402, 0.012672661, -0.037488163, 0.029082682, -0.028610142, 0.04742582, 0.011999649, -0.004746878, 0.041411676, 0.002042303, 0.027836895, 0.016982798, -0.009314763, -0.006465205, 0.02656247, -0.004277918, 0.0107323835, -0.04393189, -0.020505367, -0.0027654322, -0.04768357, 0.005470007, -0.03244774, -0.010195406, -0.0024718847, 0.055587873, 0.0020494629, -0.0071704346, 0.0074818814, 0.022982622, 0.03032847, -0.021765474, 0.04255723, -0.0055093854, 0.03763136, 0.014004364, 0.020090105, 0.021078143, 0.06655653, -0.004020169, 0.012192961, -0.0020548324, 0.0044067926, 0.0073458473, -0.034423813, -0.02702069, 0.016238188, 0.013818212, 0.012830174, -0.00799022, 0.015450622, -0.028696058, -0.039177854, 0.007539159, 0.003241552, 0.01197817, -0.023798827, 0.020720158, -0.00987322, -0.020977907, 0.03387968, -0.0043853135, -0.025187807, -0.035540726, 0.03267685, -0.010753863, -0.006558281, -0.016553216, 0.024958698, -0.031932242, 0.019145025, 0.0069019464, 0.036743555, -0.009966296, -0.008333885, -0.066327415, 0.014849208, -0.021192698, -0.030958522, -0.021994583, 0.024342963, -0.029225877, -0.03952152, 0.016080676, -0.028681738, 0.007567798, 0.0068625677, 0.06248982, -0.002255304, 0.005348292, -0.022882385, 0.017197588, -0.01666777, -0.0026598268, -0.031932242, -0.0051549803, -0.03290596, 0.009823102, -0.041010734, 0.0020727317, -0.018701123, -0.00916441, -0.018443374, 0.024958698, -0.0065475414, -0.0009943027, 0.038118217, -0.017240547, 0.0098016225, 0.002137169, 0.006504583, 0.018629527, 0.012873132, 0.06300532, 0.02560307, -0.04040932, -0.0016556795, -0.008749148, -0.01431939, 0.037201777, 0.028366713, 0.0072491914, 0.053182214, 0.010868417, -0.023841785, 0.014906486, -0.0072133928, -0.031588577, -0.013016326, 0.018758401, -0.004564306, 0.00039713935, 0.018028112, 0.02040513, 0.020734478, -0.014040162, -0.03826141, 0.028094644, -0.03430926, -0.0058065127, -0.022911025, -0.0015348596, 0.006790971, -0.0098087825, -0.0051227617, 0.044103723, 0.008978258, -0.0032129132, 0.008613113, -0.037889108, 0.0040953457, 0.026447915, 0.005001047, 0.022581678, -0.0016852133, -0.012944729, 0.038375966, 0.044103723, 0.0033650568, 0.0056311004, 0.032218628, -0.026118567, -0.030815328, -0.030729411, -0.00092002086, -0.03969335, 0.006067842, 0.011613025, -0.02230961, 0.010682265, -0.0007356587, 0.05727756, -0.011598706, 0.055330124, 0.0034885616, -0.007589277, -0.018930234, -0.015479261, 0.013402949, -0.011598706, 0.0018525711, 0.00105695, -0.013467386, 0.062088877, 0.025660347, -0.015694052, 0.0040702866, 0.014075961, 0.010646467, 0.0051585604, 0.028767655, -0.014541341, 0.0050475853, 0.004979568, 0.039550155, 0.014935125, 0.036915388, -0.0032612411, -0.024357283, 0.01973212, -0.028252156, 0.01363206, -0.024085214, -0.02657679, -0.022953983, -0.03387968, -0.0068768873, 0.0151069565, 0.03519706, -0.043187283, 0.005774294, 0.006769492, -0.008247969, 0.016882561, -0.0044067926, 0.005989085, 0.021550683, -0.015536538, -0.00680887, -0.037430886, -0.012880292, 0.030901244, -0.0015894524, -0.032562293, -0.0071310564, 0.05796489, 0.01880136, 0.009751505, 0.019345496, 0.017584212, -0.0057635545, -0.015078318, -0.03270549, 0.0132740745, 0.030614857, -0.012500828, -0.004417532, -0.020276258, 0.008169212, -0.01292325, 0.04699624, -0.049230065, -0.025703305, 0.020576963, 0.043616865, -0.01762717, -0.041411676, -0.011004452, 0.017512614, 0.0464521, 0.018643847, 0.00060812663, -0.00050431106, 0.033736482, 0.008820744, 0.00540915, 0.010682265, -0.010288482, -0.018371778, -0.022209374, -0.019202303, 0.029311793, -0.047053516, 0.0062933723, 0.03992246, 0.02773666, -0.0020727317, -0.009722866, -0.017312143, -0.038862824, -0.02417113, 0.009923338, 0.016982798, -0.021693876, 0.03731633, -0.024686629, -0.00894246, -0.03267685, 0.026433595, -0.012099884, 0.0178706, -0.026032653, 0.023340607, -0.0077825887, 0.01126936, -0.00017876863, -0.021393169, 0.039807905, -0.039550155, -0.011090368, 0.016066356, -0.04539247, 0.022051862, -0.0062181954, -0.030643495, -0.0004461385, -0.040609792, -0.005584562, 0.043359116, 0.038375966, -0.03453837, -0.018872956, -0.0019689163, 0.008076136, -0.008169212, 0.0077611096, -0.018987512, -0.005094123, 0.00085424114, -0.0048972317, -0.0035995368, -0.0033435777, -0.002700995, -0.021178378, 0.0027081547, 0.015149915, 0.016023397, -0.008083296, 0.026548149, -0.013231116, 0.010381558, 0.0065833395, 0.007911463, 0.007940102, 0.017770363, -0.019374136, 0.019374136, 0.011462672, 0.0059819254, 0.033707846, 0.0005884374, -0.022023223, 0.0007705622, 0.014863527, -0.029082682, -0.0024092374, 0.011598706, 0.007804068, 0.01973212, 0.018443374, 0.0076680337, -0.027178204, -0.013682177, 0.026548149, 0.021307252, -0.014978082, -0.0056239404, -0.013252595, -0.025903778, 0.030242553, -0.009837422, 0.022467123, 0.0075248396, -0.013832531, 0.0052480567, -0.0057241763, -0.03619942, -0.032275908, 0.03493931, -0.014505543, -0.024930058, -0.045048803, 0.013567623, 0.017483976, -0.023870423, -0.018615207, -0.00657618, -0.015436303, -0.05515829, 0.023383565, 0.025173489, 0.06134427, -0.020075785, 0.07869937, 0.0005101283, 0.034681562, -0.016109314, 0.02606129, -0.015192873, -0.031187633, 0.015794288, -0.004367414, -0.017254865, 0.033507373, -0.00799738, 0.026634065, -0.0040058494, 0.010524752, -0.0063291704, -0.005734916, 0.0071525355, -0.021092461, -0.0091214515, -0.0013782413, -0.017240547, -0.014863527, -0.020261938, 0.00869903, -0.0399511, -0.011161964, -0.009486596, -0.017441018, -0.04018021, -0.013574782, 0.02417113, -0.042156287, -0.009135772, 0.010861258, -0.015006721, 0.016639132, 0.02322605, 0.017713087, 0.02845263, 0.015865885, 0.0001514723, 0.0034957211, -0.00962979, 0.0060069845, 0.0016789485, -0.0056919577, -0.0047289785, 0.03218999, -0.00469676, 0.014254953, 0.007689513, 0.030643495, 0.008484239, -0.006246834, 0.012744257, -0.004528507, -0.063234426, 0.0032272327, -0.019989869, -0.005215838, 0.010195406, -0.032218628, -0.013023485, 0.0028996766, 0.04301545, 0.0061430186, -0.043559585, -0.0357412, -0.007027241, 0.00892814, 0.015464942, 0.041984454, 0.019159345, -0.004492709, -0.006551121, -0.010130969, -0.0063291704, -0.012794375, -0.0021317992, 0.003239762, 0.0262904, 0.026691344, 0.01033144, -0.01386833, -0.031903602, -0.0027797516, -0.022252332, 0.012257398, 0.01058203, 0.0062181954, -0.021779792, -0.002774382, -0.009200208, 0.017097352, 0.01996123, -0.04885776, -0.026118567, 0.0010274162, -0.015336067, 0.01010233, 0.012042607, 0.018672485, 0.040724345, 0.007403125, -0.0017917138, 0.004159783, -0.014512702, 0.016281147, -0.0073458473, -0.014906486, -0.016481617, 0.0076035964, 0.037946384, 0.012708459, -0.03645717, -0.018257223, 0.00013648169, -0.002301842, 0.013553303, 0.004274338, 0.02863878, 0.0039127734, -0.012543786, 0.014254953, 0.02464367, 0.0052194176, -0.0050189462, -0.017727405, 0.0220805, -0.008169212, 0.030471662, -0.013710816, -0.009622631, 0.04112529, 0.014068801, 0.025345322, -0.021593641, 0.004857853, 0.026347678, -0.0016109315, 0.0248871, 0.029469306, 0.007897144, 0.0019331177, -0.0117419, -0.03668628, 0.045249272, -0.0050869635, 0.028151922, -0.012558105, -0.040323403, 0.01600908, 0.020491047, -0.014591459, -0.028323755, 0.0023430102, 0.011111847, -0.026719982, 0.0070809387, -0.018199945, 0.0038590757, 0.007632235, 0.013281235, 0.022066182, 0.029898888, 0.020462409, -0.01431939, 0.0022660436, 0.004295817, -0.006554701, 0.06678563, -0.017569892, -0.008104775, 0.022452803, -0.015135596, 0.014992402, -0.020190341, -0.025803542, 0.0012395222, 0.019818036, 0.015608136, 0.008405482, 0.014126078, 0.0042278, -0.0005942547, 0.015865885, 0.0025434818, 0.014154717, -0.020304896, -0.006887627, 0.0023841786, 0.020147383, 0.03926377, 0.014061641, -0.012171482, -0.004768357, -0.004431851, 0.0025506413, -0.0069663837, -0.023097176, -0.01598044, 0.02770802, -0.018357458, 0.025875138, -0.0026204484, -0.029669777, 0.009909018, 0.008849383, -0.041468956, -0.013660698, -0.00587453, -0.033421457, 0.011018771, 0.011369596, -0.006386448, -0.0020781015, -0.03264821, -0.024285685, -0.007453243, -0.017011436, 0.0357412, 0.0262904, -0.015837247, 0.004764777, -0.013252595, -0.011348117, -0.010947174, -0.007123897, -0.025187807, 0.009329082, -0.009916178, -0.008792106, 0.01432655, -0.006934165, -0.0029981225, 0.002205186, -0.0015312798, 0.022452803, 0.031817686, -0.008562995, 0.005935387, 0.024027938, 0.028953807, 0.018472014, 0.016696408, -0.03124491, 0.035139784, 0.0065403813, -0.012257398, 0.007897144, -0.019388454, -0.007474722, -0.0013675018, 0.008756307, -0.025545793, -0.005470007, 0.0017022175, -0.020462409, 0.021579321, 0.028624462, 0.01761285, -0.01788492, -0.015923163, 0.009178729, -0.011827816, 0.059339553, 0.009035535, 0.035540726, -0.0020244038, 0.008119094, -0.032734126, 0.0033740064, -0.009708547, 0.02302558, -0.0034169646, -0.0084556, 0.027120925, -0.005677638, 0.044504665, 0.013653539, 0.0073136287, 0.0008412642, 0.020820394, -0.017927878, -0.0006953854, -0.0010882737, 0.004249279, -0.0062110354, 0.010889896, -0.02984161, 0.039349686, 0.024314325, -0.024457518, 0.016424341, -0.02770802, 0.005541604, -0.0049043912, -0.0139757255, -0.018285861, 0.00892814, 0.0164673, -0.007925782, -0.037402246, -0.0030178116, 0.004958089, 0.021393169, -0.03780319, -0.01741238, -0.000505206, -0.037659995, -0.025087573, 0.0013970356, 0.022524402, 0.009465117, -0.012157163, 0.033278264, 0.015779968, 0.040896177, 0.023784507, -0.008799265, -0.005731336, -0.002470095, -0.00447123, 0.005938967, -0.010002094, 0.0022588838, 0.0034724523, 0.018615207, 0.03425198, 0.012500828, -0.028696058, 0.013581942, -0.03668628, -0.0064007677, -0.037946384, -0.018400416, 0.03032847, 0.0054198895, 0.0010954334, 0.04461922, 0.0357412, 0.0137251355, 0.017727405, -0.037201777, 0.052924465, -0.01480625, -0.010897056, 0.00446407, 0.0141905155, 0.0011124377, -0.013309874, 0.019445732, -0.003923513, 0.0098159425, 0.013546144, 0.008119094, -0.01526447, 0.00516572, 0.029097002, -0.032533657, 0.0031663752, -0.03966471, -0.013202478, 0.010438835, 0.024600713, 0.010130969, -0.016810965, -0.0044032126, -0.0020029247, -0.040896177, 0.010739543, 0.035053868, 0.016710728, -0.025875138, -0.02040513, -0.01408312, -0.007768269, 0.017426698, 0.009701387, 0.0007781694, 0.000775037, 0.030271191, 0.017312143, 0.0030786688, 0.00399511, -0.0041025053, -0.02322605, -0.007327948, -0.017913558, -0.017913558, -0.02958386, -0.02538828, -0.0018275122, 0.02043377, -0.035053868, 0.011584387, 0.013123721, -0.0028960968, 0.00008546886, 0.01386833, -0.015207193, -0.019187983, -0.020934949, -0.02090631, 0.03829005, -0.0019528068, 0.021550683, 0.0057456554, 0.0039378325, -0.008319566, 0.0063363304, 0.040552516, -0.05355452, -0.009486596, 0.0017013226, -0.007954421, 0.03851916, 0.009622631, 0.03304915, 0.0035046707, -0.025273724, 0.029082682, 0.020820394, -0.0008994367, -0.0032827202, -0.031617213, 0.01925958, 0.010216885, -0.01338147, -0.03525434, 0.0053590317, 0.030872606, 0.006934165, 0.025431238, 0.0040094294, 0.03900602, 0.0026580368, -0.009715706, 0.019087747, 0.0128086945, -0.049430534, -0.057220284, -0.0100522125, 0.011713262, 0.03004208, -0.010209725, -0.044275556, 0.03399423, 0.008119094, 0.006694315, -0.005699117, -0.010854098, 0.016266828, 0.016367063, -0.021880029, -0.019717801, -0.02866742, -0.0192739, 0.020648561, 0.012608224, -0.014247794, 0.014305071, 0.007918623, -0.033793762, 0.033936955, 0.009035535, -0.032247268, -0.0051764594, -0.031559937, 0.032505017, -0.0044748094, 0.007854186, -0.0037158818, -0.02229529, -0.04860001, -0.020720158, -0.012200121, 0.063234426, -0.030929884, 0.028481267, -0.004582205, -0.009436478, 0.0053697713, -0.009035535, -0.018472014, 0.013030645, 0.017541254, -0.01057487, 0.017999474, -0.014469744, -0.0074460832, -0.020118743, 0.0071095773, 0.017168948, 0.0025023136, 0.018242903, -0.0026830959, -0.023383565, 0.0039342525, 0.011935212, 0.0046180035, 0.022051862, -0.012901771, -0.019603245, 0.009987775, -0.0061644977, 0.004646642, 0.007002182, -0.0033919057, -0.01432655, 0.026748622, 0.049974672, -0.021335892, -0.040752985, -0.026276082, -0.032791406, 0.011176284, -0.0234838, -0.003243342, -0.00092002086, -0.04040932, 0.025245085, 0.02656247, 0.04444739, -0.04576477, -0.022066182, -0.036743555, -0.014849208, -0.005094123, -0.013317033, -0.009314763, -0.014655896, 0.05303902, 0.016137954, 0.017698767, -0.048657287, 0.06518187, 0.018744081, 0.008176372, 0.0026616168, -0.05409866, -0.014963763, 0.0010265213, 0.019102067, 0.017942196, 0.0234838, 0.013997205, 0.0016270408, 0.019374136, 0.05289583, 0.0022803629, 0.00023828361, 0.018672485, 0.015708372, 0.018414736, 0.01220728, 0.012264558, -0.021063823, 0.0206772, 0.016868241, -0.0071310564, 0.0050153667, -0.0013334933, -0.012550945, -0.033736482, -0.016309787, 0.028953807, -0.0033793761, 0.005781454, -0.0142048355, -0.009085653, -0.0051299217, -0.029197237, -0.0077396305, 0.020806074, 0.04040932, -0.013581942, 0.010195406, 0.010846938, -0.008355364, 0.007496201, 0.00010549364, 0.018729763, 0.0067838114, 0.0098159425, -0.008634592, -0.011061729, -0.0072527714, -0.006619138, -0.012894611, -0.004507028, -0.0070773587, -0.008477079, 0.014691695, -0.0042600185, -0.01692552, -0.0037731593, 0.0024521956, 0.003152056, -0.009236007, 0.0066835755, 0.008978258, 0.0055129654, -0.020018509, -0.0040094294, 0.0027475331, 0.0015706582, -0.0019814456, -0.02066288, -0.013589102, 0.01622387, -0.020047147, -0.00017955173, -0.02442888, 0.010488953, 0.00963695, 0.0019760758, -0.026032653, 0.00041749972, -0.026204484, 0.027607786, -0.02723548, 0.008849383, -0.025431238, 0.0009549243, 0.00540199, 0.01011665, -0.0017281715, -0.005802933, 0.005896009, 0.0018364618, 0.0144339455, 0.031044438, 0.0049867276, -0.012959048, -0.020576963, -0.012479349, -0.0066620964, -0.006737273, 0.002369859, -0.0131452, 0.016180912, 0.0056454195, -0.023426523, -0.027292758, 0.017498296, 0.0066585164, 0.0009611891, -0.033507373, -0.012235919, -0.010152448, -0.036342613, 0.012293196, -0.022395527, 0.00082068006, 0.014920805, 0.03362193, -0.000405194, -0.008591634, -0.029054044, -0.025416918, -0.02770802, 0.007589277, -0.022137778, -0.013567623, -0.0109543335, 0.012264558, -0.03144538, -0.008978258, 0.01761285, -0.015865885, 0.028080324, 0.026118567, 0.017426698, -0.006594079, -0.0053769313, 0.0010005675, -0.044390112, 0.007220553, 0.038662355, 0.02255304, 0.01386117, 0.008491399, 0.0075606382, -0.0045034485, -0.02842399, -0.004181262, -0.01738374, -0.03829005, -0.009959136, -0.013474546, -0.007381646, 0.012937569, 0.032104075, -0.023125816, 0.011641664, 0.034137428, -0.000066674664, -0.015250151, -0.01502104, 0.012529466, 0.00038013505, 0.0065403813, -0.0039127734, -0.038776908, 0.041010734, 0.022438485, 0.015006721, 0.001079324, 0.01385401, -0.021522043, 0.009987775, -0.0131452, -0.01105457, -0.024615033, 0.016853923, 0.011784858, -0.022467123, 0.0488864, 0.012235919, -0.00063318555, -0.0037624198, -0.0155079, -0.015865885, -0.007832707, 0.00044748094, 0.048714567, -0.037173137, 0.022008903, -0.03287732, 0.047798127, 0.007070199, 0.032991875, 0.0109543335, -0.0009799832, -0.0077969083, -0.008147733, 0.0047540376, 0.0021890767, 0.014763292, 0.0077181514, -0.019703481, 0.0019456472, 0.038834188, -0.042843617, -0.0014015103, -0.018285861, -0.036285337, 0.039063297, 0.0014856368, 0.004514188, -0.02230961, -0.015794288, 0.010660786, 0.049974672, 0.023841785, 0.020304896, 0.011691783, -0.016238188, 0.01925958, 0.034080148, 0.0011715051, 0.0128158545, -0.001927748, -0.007875665, 0.04058115, -0.00047790966, -0.019574607, -0.0011562908, 0.030929884, -0.0028746177, 0.05796489, -0.01715463, -0.007327948, -0.0031842745, 0.010138129, -0.014247794, -0.0026472972, 0.0031377363, 0.012858813, 0.014498383, 0.00028683527, -0.009472277, -0.0009298654, 0.019918272, 0.009085653, -0.013939926, -0.011169124, -0.040552516, 0.013717976, 0.0084198015, 0.02656247, 0.005355452, -0.014863527, -0.008376843, 0.026677024, 0.008176372, -0.0385478, 0.024027938, -0.027750978, 0.021178378, -0.009951976, 0.00469676, -0.007725311, -0.013123721, 0.004038068, 0.0014122499, -0.012049767, 0.04605116, 0.009257486, 0.019588927, 0.0063076913, 0.008906661, 0.047826763, -0.023612674, -0.02278215, 0.009042695, -0.02066288, 0.014605778, 0.0035959568, -0.024958698, 0.0070129214, -0.020118743, -0.010904216, -0.0034473932, -0.0053017545, 0.004678861, -0.0076465546, 0.015550858, -0.016796645, 0.0007271565, 0.001925958, 0.0010229414, -0.0130521245, -0.012887452, -0.0012726358, 0.03124491, 0.005305334, 0.016080676, 0.011999649, -0.008963939, -0.03588439, -0.0073172087, -0.0006685365, -0.015966121, -0.0005888849, -0.0068052905, 0.021693876, -0.0069807027, -0.0009576092, -0.0050475853, -0.01643866, -0.0038662355, 0.028366713, -0.02256736, 0.011720421, 0.0042206403, 0.017569892, -0.00916441, 0.009551033, -0.003125207, -0.007209813, 0.022524402, 0.004796996, -0.0036568143, -0.006790971, 0.0021747574, 0.00493661, -0.012880292, -0.00027609576, 0.03614214, -0.013173839, 0.0064508854, -0.008133414, -0.0039915303, 0.027650744, -0.025259405, -0.028037366, -0.0102670025, 0.00018503338, 0.016796645, -0.014612938, 0.006486684, -0.0005383196, 0.034481093, 0.034223344, 0.01269414, -0.016395703, -0.022467123, 0.006934165, -0.021980265, -0.014734653, 0.0014919015, 0.0019349076, -0.038375966, -0.042385396, -0.024385922, -0.0018597308, 0.01762717, -0.017770363, 0.011570067, -0.0001001798, -0.037516803, 0.0054914863, -0.008376843, 0.022323929, -0.03267685, -0.038490523, 0.0066441973, 0.03594167, 0.009887539, -0.022123458, -0.037259053, -0.027321396, 0.039435603, 0.019145025, -0.010166767, 0.019044789, -0.005584562, 0.002631188, 0.013109402, -0.0013585521, 0.010388718, 0.012887452, 0.01738374, 0.004181262, 0.027364355, -0.0023179513, -0.0073673264, 0.036629003, -0.005938967, -0.013796733, 0.005913908, 0.0010658996, 0.021550683, 0.016768007, 0.0021747574, -0.006325591, -0.007353007, 0.026619747, 0.015951801, 0.018285861, 0.009436478, -0.004865013, -0.022882385, 0.0063112713, 0.028681738, -0.021794112, -0.016524576, -0.013209637, 0.0060069845, -0.012873132, -0.01292325, 0.031044438, -0.007327948, 0.0046394826, 0.013603421, -0.008348204, -0.003169955, -0.0011947742, -0.0012744258, -0.00917157, -0.0206772, -0.013431588, 0.002160438, 0.021980265, -0.01712599, -0.018944554, -0.00823365, 0.0042635985, -0.0015438093, -0.0016664191, -0.020176021, -0.012250238, 0.0027869113, 0.015937481, 0.018271543, 0.013445907, 0.014963763, 0.022739192, -0.017011436, -0.013295554, -0.011777699, 0.0044497508, 0.00062647334, 0.0018847898, 0.022925343, -0.00011282114, 0.009336242, 0.01269414, -0.01151995, 0.0038805548, -0.004410372, 0.013882649, 0.0026204484, 0.01738374, -0.021736834, 0.005820832, -0.016252508, -0.0011929842, -0.011441193, 0.018314501, 0.01996123, 0.029197237, -0.038461883, 0.012486508, -0.01928822, -0.012278877, -0.016266828, 0.021779792, 0.0009781934, -0.00092449563, -0.0027350036, 0.008305246, 0.029698417, -0.0044211117, -0.012801535, 0.0062897922, 0.0048972317, -0.006769492, -0.002908626, 0.01315952, -0.0095796725, 0.013087923, -0.019674843, 0.025445556, 0.020705838, 0.010932854, 0.014906486, -0.023426523, -0.0026884656, -0.02703501, -0.0044819694, -0.0016870032, -0.014677376, 0.027779618, -0.025989695, -0.0042134807, -0.006740853, 0.006014144, -0.021894349, -0.004650222, -0.01503536, -0.011033091, -0.004109665, -0.01056771, 0.0011142276, 0.014047322, 0.0028531386, -0.03617078, -0.003220073, -0.026877496, -0.029984804, 0.011412554, -0.0046144235, 0.015063998, -0.009622631, -0.016166592, -0.019102067, -0.004625163, -0.005659739, -0.0009799832, 0.012493668, 0.017097352, -0.0069449046, 0.03708722, -0.02116406, -0.0033543173, -0.00080949307, -0.0033704266, 0.0018651006, 0.013324193, -0.0020745217, -0.018443374, 0.006794551, 0.013896968, -0.025144849, 0.008441281, -0.015708372, -0.0005973871, 0.005584562, -0.0034635025, -0.02676294, -0.013567623, 0.02913996, -0.005799353, 0.004374574, 0.006465205, 0.003783899, 0.01832882, 0.0055093854, -0.021980265, 0.009472277, 0.012851653, 0.042499952, 0.01855793, -0.0139614055, 0.0071059973, -0.0135031855, -0.004059547, -0.011491311, 0.0102813225, 0.015307428, 0.011792018, -0.009257486, -0.014025843, -0.013639219, 0.001712957, 0.02230961, -0.031903602, -0.008126254, -0.013123721, 0.008541516, 0.016238188, -0.035827115, -0.0017013226, 0.0054163095, 0.016381383, 0.0029533743, -0.014734653, -0.011018771, -0.028724696, 0.008305246, 0.014398147, 0.030500302, 0.007163275, 0.0017800792, 0.0036514446, 0.027951451, 0.016037717, 0.0042456994, 0.00033740065, -0.0178706, 0.028824933, 0.016381383, -0.004886492, -0.0029462145, 0.026934773, -0.0034903514, -0.015779968, -0.010854098, 0.021565001, -0.0015187503, -0.005423469, 0.008863702, -0.011827816, -0.011949532, -0.0011625555, 0.0069449046, 0.021751154, -0.007889984, 0.021779792, 0.026132887, -0.008040338, -0.035798475, 0.021937307, 0.0051836194, 0.010911375, 0.00095939916, -0.0033006195, 0.00042600188, 0.009479436, 0.0055093854, 0.011498471, 0.002276783, -0.012386273, 0.023541078, 0.027851215, 0.008849383, 0.010259843, 0.019087747, -0.0032558714, 0.010703744, -0.012543786, -0.020619921, 0.004818475, -0.014412466, -0.001200144, 0.025717625, 0.012157163, 0.0076393946, 0.002887147, -0.007120317, -0.012200121, 0.017756045, -0.009973455, 0.007725311, 0.005115602, 0.015908843, 0.0076751933, 0.007163275, 0.0049688285, -0.004059547, 0.01433371, 0.010660786, 0.014226315, -0.0019814456, 0.020849032, 0.013116562, 0.006558281, -0.010324281, -0.0037481005, -0.008842223, 0.0067301136, 0.014104599, 0.013431588, 0.0001116465, 0.005448528, -0.011842136, 0.017741725, -0.0111977635, -0.017799003, -0.008398322, -0.011856455, -0.0070522996, 0.0153503865, -0.018185627, 0.013016326, -0.004857853, -0.004600104, 0.008240809, -0.008784946, 0.0010909586, 0.01973212, -0.013352832, -0.0010757442, 0.000962979, -0.0000052963564, -0.025445556, -0.018414736, -0.01715463, 0.006361389, -0.006536802, -0.008584474, 0.020190341, 0.0000459507, -0.004718239, -0.021192698, -0.0068410886, 0.017297823, -0.0006085741, -0.008140573, -0.0019134285, -0.013216797, -0.0009960926, 0.010940014, -0.0070165014, 0.000115450086, 0.016868241, -0.020190341, -0.027793936, 0.026376316, 0.0109686535, -0.00019498983, 0.009014056, 0.0061716572, -0.008577315, 0.00774679, 0.0005821727, 0.003687243, 0.0169112, -0.014863527, 0.024829824, -0.011613025, 0.009307603, 0.0102741625, -0.000120596116, 0.016739367, 0.0068625677, -0.0050619044, -0.006089321, 0.013474546, 0.015880205, 0.021736834, -0.004582205, 0.012644022, -0.004564306, 0.0027403734, -0.010474634, -0.008441281, 0.012185801, -0.02253872, 0.0016091415, -0.0007486356, 0.014312231, -0.013982885, -0.017168948, 0.013002006, 0.009236007, 0.004678861, 0.0064473054, -0.021493405, 0.0044282717, -0.0142048355, -0.018586569, -0.0046896003, -0.004675281, -0.009987775, 0.0016512047, -0.015522219, 0.023526758, -0.016324105, 0.013567623, 0.02371291, -0.011169124, 0.014834888, 0.0026025493, 0.00563468, -0.0019796558, -0.00060230936, 0.0002713972, -0.02349812, 0.013374311, -0.008512878, -0.0111906035, -0.0009110712, 0.010073692, -0.0035601584, 0.00375526, -0.009028376, -0.026748622, 0.006851828, 0.022595998, -0.0047146594, -0.003660394, 0.0050798035, -0.019989869, 0.022266652, -0.017469656, 0.030471662, 0.016639132, -0.008369683, -0.008677551, -0.011104687, -0.0048972317, 0.003404435, 0.006014144, -0.0169112, -0.038834188, 0.029154278, 0.005949707, 0.015092637, 0.020534005, 0.0059998245, 0.0065869195, 0.022395527, 0.0056883777, -0.0084269615, -0.009386361, -0.00012115547, -0.009028376, -0.02491574, -0.0077611096, 0.01503536, -0.0019939751, 0.006322011, 0.0013675018, 0.005856631, -0.00002944984, 0.0050833835, 0.00140867, 0.0000213812, 0.014935125, 0.0057671345, 0.02137885, 0.012951889, -0.0091214515, -0.008319566, 0.014075961, 0.0068768873, -0.000985353, 0.0074317637, -0.0027672222, 0.0073888055, 0.0047361385, 0.013990045, -0.0069628037, 0.011076049, -0.025617389, -0.024385922, 0.0033954855, -0.0032791405, 0.029440667, 0.020934949, 0.0074604023, -0.025961054, 0.011620185, -0.0008108355, 0.0014444685, -0.0051335013, -0.011684623, -0.006837509, -0.007632235, -0.015364706, 0.009622631, -0.012021128, 0.008963939, 0.023569716, 0.02135021, 0.019932592, 0.0025291624, 0.0011777699, -0.0010739543, -0.012264558, 0.008384003, -0.015951801, -0.0062110354, -0.004353095, 0.027894173, 0.0056668986, -0.013402949, 0.014340869, -0.021063823, 0.010496113, 0.015207193, 0.019574607, -0.00068509334, 0.003876975, -0.010166767, -0.017254865, 0.0139757255, 0.0202333, 0.0116631435, -0.004557146, 0.017827641, -0.015679732, -0.0051800394, -0.02160796, -0.016896881, 0.0084269615, -0.013223957, 0.038662355, 0.004367414, -0.007381646, -0.008276608, -0.011484151, 0.0016413601, 0.01198533, 0.01572269, 0.022338249, -0.018214265, -0.0047755167, -0.0060213036, -0.01291609, 0.008040338, -0.0012789005, 0.0062826327, -0.027679382, 0.008126254, 0.009715706, -0.046853047, 0.035426173, -0.0055774027, 0.014491223, -0.008362524, -0.004292237, -0.0022427745, -0.027851215, 0.029412027, 0.0048327944, -0.014505543, 0.013138041, 0.017498296, -0.012715619, -0.01834314, 0.010703744, -0.028080324, 0.0009585042, 0.016725048, -0.009357722, -0.01809971, -0.017369421, -0.01900183, -0.040495235, -0.007320788, 0.006296952, -0.0011840346, 0.007932942, -0.009243166, 0.005656159, -0.0029050463, 0.0066406173, 0.011226402, -0.010675105, -0.004782676, 0.0011151226, 0.014419626, 0.009314763, 0.011913733, -0.001999345, 0.021436127, 0.009185889, 0.0011312319, 0.0013657119, 0.0019778658, -0.00034836392, -0.0027171043, 0.010610668, -0.0011652404, 0.014720334, 0.009500915, 0.006304112, -0.0036586043, -0.0098159425, -0.0018024533, 0.0074460832, -0.0013746615, -0.0040989257, -0.020705838, -0.004958089, -0.029555222, 0.0022606738, 0.0033507373, -0.03668628, 0.000022709659, 0.023784507, 0.004836374, -0.01502104, -0.01598044, -0.0056275204, -0.016338425, 0.0070522996, 0.0169112, 0.017226227, 0.0024146072, 0.02089199, -0.008806425, 0.008076136, -0.007184754, -0.03456701, 0.0026114988, -0.0062611536, 0.019187983, 0.008176372, 0.03032847, 0.024013618, -0.0026132888, 0.023168774, -0.010023573, 0.0071525355, -0.018600889, -0.005677638, 0.019818036, -0.020548325, -0.002536322, 0.008562995, 0.009157251, -0.0155794965, 0.007775429, 0.0042421194, -0.0020315635, 0.027808256, 0.0026437175, -0.011648824, 0.0139614055, 0.002770802, 0.015393345, 0.012422071, -0.009508075, 0.02726412, 0.0013343882, -0.009357722, 0.01057487, -0.005355452, -0.0008596109, 0.00305361, -0.018056752, -0.009257486, -0.008011699, 0.023455162, -0.004718239, 0.029197237, 0.007242032, 0.0011303369, 0.02650519, 0.022853747, 0.00281734, -0.012465029, -0.0028531386, 0.009236007, 0.008727669, -0.0015375445, -0.009601152, 0.008362524, 0.0026830959, -0.0023626995, 0.008183531, -0.008183531, 0.005817252, 0.02490142, 0.01668209, -0.0071310564, -0.019431412, 0.0051764594, 0.005001047, -0.0033543173, -0.008849383, 0.0022517242, -0.010796821, 0.002019034, -0.0018257223, 0.0006005194, 0.013095083, 0.017369421, 0.010796821, 0.0039056137, 0.01409744, 0.005502226, 0.0014176196, 0.008827904, -0.0059246477, -0.025631709, -0.02322605, -0.016524576, -0.00069180556, 0.017168948, 0.012228759, -0.013281235, 0.02116406, 0.005355452, 0.0013290184, 0.0038590757, 0.03078669, 0.013789573, 0.00799022, -0.012959048, 0.007242032, 0.009264645, -0.009486596, -0.013574782, -0.0055165454, 0.009543873, -0.0025721204, -0.029025404, 0.022209374, -0.018429056, -0.010624988, -0.015822927, 0.0034402336, 0.0065690205, -0.0042170603, 0.0033972755, -0.011104687, -0.03150266, 0.016166592, -0.0030160216, 0.01151279, -0.008090456, 0.006318431, -0.0049509294, -0.014297911, -0.0169112, -0.016295467, -0.011813497, -0.011405394, -0.005942547, -0.019545969, 0.01598044, -0.00020293261, 0.0040058494, 0.009071334, 0.009601152, -0.0076465546, -0.04396053, 0.012035448, 0.0054198895, -0.0026097088, -0.0019456472, 0.002700995, -0.010374398, -0.027636424, -0.023942022, 0.0039843703, -0.029812971, 0.020333534, 0.004567886, -0.01056771, -0.005265956, 0.005756395, -0.0056668986, -0.0010524752, -0.01431939, 0.025144849, 0.015278789, -0.012593904, 0.011312318, -0.006765912, -0.006461625, 0.018772721, 0.0036066964, -0.004954509, -0.0047074994, 0.001997555, 0.009465117, 0.016080676, -0.007088098, -0.019603245, -0.007954421, -0.00822649, -0.002276783, -0.011255041, 0.016739367, -0.009193049, 0.013209637, 0.0054807467, 0.003150266, 0.015550858, -0.0011831396, -0.015808607, -0.015063998, -0.0100450525, -0.002022614, -0.0018149827, -0.0032970395, 0.0041490435, 0.0047325585, 0.00018257223, 0.018615207, 0.015307428, -0.009687068, -0.013904128, -0.002158648, 0.0051048626, 0.001551864, -0.024615033, -0.005001047, 0.018156987, -0.0072133928, 0.024013618, -0.012436391, 0.007961581, 0.015407664, 0.009980615, 0.009286124, 0.009493756, -0.0036156462, -0.0051084426, 0.0044748094, 0.003687243, -0.009250326, -0.018744081, 0.0035154102, -0.010918535, 0.0053590317, 0.017641488, -0.021722516, -0.011204923, 0.025660347, 0.0114197135, 0.02491574, 0.0052981745, -0.003191434, -0.0037481005, 0.014047322, -0.0116559835, 0.0007401335, 0.022653276, 0.007206233, 0.0057170168, -0.017841961, -0.0045893644, 0.009236007, -0.023942022, -0.00587095, 0.0011643454, -0.029927526, 0.011355276, -0.02842399, -0.027836895, 0.008727669, -0.00091286114, 0.01665345, 0.00016590356, 0.0054377886, -0.014706014, -0.0123504745, 0.0024647252, 0.0020154542, -0.03499659, -0.005559503, -0.014154717, -0.009715706, -0.0011231772, -0.013803893, 0.0021228497, -0.008584474, -0.006465205, 0.0016386752, 0.010682265, -0.03777455, 0.013710816, 0.03482476, 0.0055702426, -0.0000061843266, 0.017670128, 0.012629703, -0.0008927245, 0.002020824, -0.03078669, 0.013238276, 0.0029712736, 0.0020798915, -0.0075463187, -0.011290839, 0.0041705226, -0.0070522996, 0.00962979, 0.036113504, -0.0038626555, -0.012994847, -0.005824412, 0.00633991, -0.011534269, -0.0039557316, 0.034080148, 0.012128524, -0.003338208, -0.0012941149, -0.0036568143, -0.019187983, -0.011204923, 0.026548149, -0.011011612, -0.022352569, -0.02137885, 0.01385401, -0.01081114, -0.0063757086, 0.0155794965, 0.014054482, 0.008605953, -0.012894611, 0.021593641, -0.0075964364, -0.013667858, 0.011154805, 0.013338512, -0.0038447564, -0.011133326, 0.0006412402, 0.010682265, 0.0013513925, 0.003970051, -0.010166767, 0.007868505, 0.013510345, 0.007184754, 0.008205011, -0.03201816, 0.0044604903, -0.010739543, -0.010088011, -0.002371649, -0.010710904, 0.014992402, -0.0019420673, 0.0074460832, -0.015135596, 0.012364794, -0.011147645, -0.0029444247, -0.00094060495, 0.011885094, -0.0056275204, 0.0057098567, 0.028524226, -0.035053868, 0.017355101, 0.0011938792, 0.0067766514, -0.0017245916, -0.027178204, 0.006765912, -0.0077897483, 0.0014927965, 0.009364882, 0.022123458, -0.0036800834, -0.009364882, -0.033278264, 0.00281913, 0.0076751933, 0.008305246, -0.01056771, -0.0027206843, -0.01480625, 0.029641138, -0.015364706, 0.029240195, 0.0032505016, -0.002960534, 0.0023304808, -0.016037717, -0.014355189, -0.0014587879, 0.005996245, -0.02958386, 0.010324281, 0.02160796, -0.0051549803, -0.00870619, 0.006694315, 0.017168948, 0.014978082, -0.004088186, 0.007091678, 0.01741238, 0.011219243, -0.006440146, 0.0013997204, 0.01408312, 0.015078318, -0.0059246477, 0.038118217, 0.010195406, -0.0011231772, 0.025631709, -0.0009611891, -0.0102741625, -0.019202303, 0.004603684, -0.018629527, -0.0151212765, -0.0038948741, -0.014448265, -0.022638956, -0.024514796, 0.017040074, 0.0139614055, 0.012801535, 0.008326725, -0.008247969, -0.0088851815, -0.0029032563, -0.022624636, -0.02557443, 0.0102741625, 0.016309787, 0.005427049, 0.0026150786, -0.0013406529, -0.02704933, -0.018156987, 0.0012994846, 0.016954158, 0.003404435, 0.0013585521, -0.024586393, 0.017512614, 0.020806074, -0.013818212, -0.0077969083, -0.011971011, 0.016567534, 0.021507725, 0.011720421, -0.0015223302, -0.009944817, -0.020147383, -0.0016377802, 0.007940102, -0.0039557316, 0.009228847, -0.0032970395, 0.006178817, -0.000004656599, 0.021335892, -0.004621583, -0.0088995015, -0.014398147, -0.011870774, -0.007063039, 0.0018257223, 0.0013487076, -0.006465205, 0.017698767, 0.012636862, -0.005989085, 0.003851916, -0.005616781, 0.0081906915, 0.003873395, 0.008283767, 0.015794288, 0.001034576, 0.014920805, 0.017226227, -0.00799022, -0.010632147, 0.0052945944, 0.024471838, -0.0053984104, -0.0077825887, -0.017827641, 0.013245436, 0.017168948, -0.013538984, -0.0066370373, 0.010023573, 0.0064938436, 0.0034509732, 0.004313716, -0.020820394, 0.013660698, -0.02021898, -0.0016485198, 0.0019223782, 0.011498471, 0.012980527, 0.013639219, -0.011613025, -0.0043423553, -0.008598794, -0.0026974152, 0.0049043912, -0.0063327504, -0.00085871597, 0.009135772, 0.021121101, -0.0012851653, 0.01480625, 0.013839691, 0.011849295, -0.029898888, 0.0017639699, 0.017283505, 0.008405482, -0.008269448, 0.023755869, -0.029526584, 0.016481617, 0.009286124, -0.023455162, 0.0021407488, 0.012758577, 0.022610318, 0.00047611972, -0.016825283, -0.019187983, 0.010209725, 0.0048685926, 0.012944729, -0.00090301654, 0.0065153227, -0.0022284552, 0.002606129, -0.007320788, 0.011469832, 0.0070129214, 0.04507744, 0.0012896401, -0.0027815416, -0.022996942, -0.016052037, -0.0058136727, -0.006690735, 0.023927702, 0.013281235, 0.024271367, -0.0015831876, -0.004131144, 0.0015992969, -0.035139784, 0.012658341, -0.009593992, 0.003665764, -0.028581504, 0.004152623, 0.0017550202, 0.013682177, 0.0013263335, 0.00010829039, -0.012013969, -0.004979568, 0.011928053, -0.015307428, -0.0009826681, -0.024457518, 0.0011643454, -0.0044425908, 0.015092637, 0.018486332, 0.023827465, -0.0076393946, 0.025259405, -0.006436566, -0.005473587, -0.0040953457, 0.0046144235, 0.02255304, -0.0026634065, -0.0032988295, -0.018028112, -0.010646467, -0.0070093414, 0.0050440053, -0.013345672, -0.014906486, -0.014548501, 0.0055093854, -0.0025434818, -0.011527109, 0.005115602, -0.010023573, -0.0069914423, 0.0055093854, -0.009228847, -0.01575133, 0.025946736, 0.026906135, 0.03456701, 0.0025882297, 0.023569716, 0.025230765, 0.012729938, 0.0017111672, -0.012765736, 0.0006671941, -0.017713087, -0.020476729, -0.012507987, -0.0066083986, 0.01409028, 0.001925958, 0.0011777699, 0.010352919, 0.014584299, 0.00634707, 0.0044067926, 0.00986606, -0.000446586, -0.011204923, -0.0098087825, 0.015049679, -0.0031377363, -0.021221336, -0.003690823, 0.0019295379, 0.014312231, 0.009200208, 0.021880029, 0.015307428, 0.0063936077, 0.010159607, -0.011913733, -0.01502104, 0.008355364, 0.009014056, 0.006669256, -0.024013618, 0.015779968, 0.0019349076, -0.009937657, 0.0041490435, -0.018314501, -0.021522043, 0.0012592115, -0.009150091, -0.0035333096, -0.025087573, -0.010374398, 0.007725311, 0.03144538, -0.008033178, 0.011870774, -0.0051979385, 0.017254865, 0.0016243559, 0.001434624, -0.019316858, 0.0069986023, -0.0033632668, 0.0005776979, 0.014777611, 0.010624988, -0.010023573, 0.01996123, -0.005430629, 0.004113245, -0.005989085, 0.01785628, 0.010216885, 0.011348117, 0.0048506935, 0.002088841, 0.016238188, -0.0066585164, -0.010753863, -0.005387671, -0.0095725125, 0.009522394, 0.0045249276, -0.02513053, 0.020548325, 0.015192873, -0.014691695, 0.013560463, -0.025932416, -0.027149564, 0.01974644, 0.0102741625, -0.0068697277, 0.005802933, -0.0000804347, -0.0153503865, 0.024457518, 0.0062897922, 0.0151069565, -0.013238276, 0.022481443, 0.01549358, -0.00067256385, -0.012092725, -0.009830262, -0.0033203086, 0.008391162, 0.013990045, -0.0003620121, -0.02796577, 0.0014999561, 0.013438748, -0.008348204, 0.013653539, 0.013947086, -0.003173535, 0.02750755, -0.00057367055, 0.00059828203, -0.021063823, -0.0012663711, 0.018443374, -0.010675105, -0.0073673264, -0.012651182, 0.023770189, -0.00043920256, 0.0044067926, -0.012665501, 0.00068240846, 0.002303632, 0.0016422551, 0.0014963764, 0.010288482, -0.021221336, 0.0042099007, 0.011842136, -0.020390812, 0.022953983, -0.011412554, -0.019359816, 0.003902034, 0.0038161175, 0.029641138, 0.0039593116, 0.012099884, -0.0061143795, 0.015192873, 0.016123634, -0.015479261, -0.012536626, 0.014978082, 0.011312318, -0.0005508491, -0.017899238, -0.012780056, 0.013231116, 0.015779968, 0.004088186, 0.012028288, 0.00010817852, -0.004388893, 0.004510608, 0.021078143, -0.0065189027, -0.0043817335, 0.020491047, 0.0026634065, -0.009429319, -0.0037767391, -0.016997116, -0.0025076834, 0.018386098, -0.0151212765, 0.020347854, 0.0077611096, -0.0010909586, -0.008863702, -0.013317033, -0.008670391, -0.017956516, -0.0030446604, -0.009085653, 0.0066835755, -0.009414999, 0.0011553958, -0.01221444, -0.006128699, 0.000030960087, 0.0006833034, -0.023082858, -0.0015885574, 0.0064974236, 0.0077611096, 0.018371778, -0.0010748493, -0.008749148, -0.016567534, 0.009500915, -0.0019044789, 0.027221162, 0.0054377886, -0.017097352, 0.015865885, -0.002956954, 0.0011187023, -0.01738374, -0.024013618, -0.015479261, -0.0071310564, -0.013546144, -0.013116562, -0.0004814895, 0.00020584124, -0.016782325, -0.011734741, -0.009422159, 0.012543786, 0.015149915, 0.016853923, 0.003941412, 0.02558875, -0.0035887973, 0.009522394, 0.003309569, -0.014863527, -0.014018683, 0.012171482, 0.0036568143, -0.020791754, -0.01291609, 0.017526934, 0.009565352, -0.01385401, -0.020562645, 0.015379026, 0.007353007, 0.00821933, 0.013846851, 0.016825283, 0.0026114988, 0.005856631, -0.0029336852, -0.016238188, -0.013546144, 0.005212258, -0.0109614935, -0.0008318671, -0.00058127777, 0.0023179513, -0.0077611096, -0.012994847, 0.0046896003, 0.011204923, 0.029956164, -0.021106781, -0.0024504056, 0.0031896443, -0.011061729, 0.017541254, -0.0034867716, 0.010746703, -0.0064759445, -0.026490873, 0.018443374, 0.0008949619, 0.0031090977, -0.008276608, 0.006049942, 0.005058325, -0.009049855, 0.010016413, 0.023068538, 0.014877846, 0.015235831, 0.010904216, 0.033536013, -0.038862824, -0.015679732, -0.0071346364, -0.023841785, -0.009042695, 0.015364706, 0.01245787, -0.017168948, -0.0013692917, 0.03949288, -0.01852929, 0.020562645, -0.008863702, -0.004396053, 0.01599476, 0.01338863, -0.009150091, 0.0012296777, 0.012908931, 0.008598794, -0.010245523, 0.010660786, 0.017483976, -0.00846276, 0.012235919, -0.0031681652, -0.0021926567, 0.003665764, 0.0025792802, 0.003026761, 0.007474722, 0.005663319, 0.016266828, 0.023154454, -0.005938967, -0.01600908, 0.0114197135, -0.011792018, -0.017054394, 0.0044569103, -0.0071919137, -0.035683922, 0.00012283352, 0.038146857, 0.018156987, -0.009858901, 0.007804068, 0.0042886576, -0.03482476, -0.009278965, 0.029526584, 0.016410021, -0.0020637822, 0.030586218, -0.00085200375, 0.0008461865, -0.005756395, 0.00090793887, -0.0018436215, -0.02465799, 0.01244355, 0.013746615, 0.0100450525, 0.0014981662, -0.002206976, -0.036543086, -0.020290576, -0.019460052, -0.022166416, 0.012622543, 0.011176284, 0.013832531, -0.013331353, -0.008040338, 0.004961669, -0.0230399, -0.0008162052, 0.02043377, 0.007889984, -0.008326725, 0.0025774902, -0.000775932, 0.005269536, -0.03711586, -0.008162052, 0.0031842745, -0.036342613, -0.0027546927, -0.0055702426, -0.005849471, -0.00010208159, -0.007839866, -0.012851653, -0.025646029, -0.009565352, 0.0016279357, -0.024557754, 0.018729763, 0.0038805548, -0.00081173045, -0.008484239, -0.0054843267, 0.016109314, -0.00014352951, 0.004621583, 0.00774679, -0.0075463187, -0.009837422, 0.02491574, -0.013223957, 0.028681738, -0.0042134807, -0.010417356, 0.0128158545, -0.015808607, -0.0037910587, -0.010030733, -0.029784333, -0.005072644, -0.008262288, 0.013796733, 0.01011665, 0.012486508, 0.003638915, 0.0036729237, 0.0064687845, -0.00072223425, -0.000681066, -0.011949532, -0.002956954, -0.005430629, 0.0136249, 0.012529466, 0.0035154102, 0.0019438573, -0.007861345, 0.00094955455, -0.018314501, 0.012672661, -0.012128524, -0.015407664, 0.014634417, -0.012064086, 0.011827816, -0.0047540376, -0.02863878, 0.0141976755, -0.0023340606, 0.02560307, -0.013982885, -0.009830262, -0.008477079, 0.016725048, 0.008061817, -0.014655896, -0.0128086945, 0.012243079, 0.010882737, -0.03926377, -0.015822927, 0.022452803, 0.014820569, 0.03356465, 0.0014641577, -0.00055890373, 0.014147557, -0.015235831, 0.036915388, -0.009250326, 0.0022499342, -0.000963874, -0.0032379723, 0.022510082, 0.0044425908, 0.018915914, 0.009601152, -0.016997116, -0.0038662355, 0.013374311, -0.009329082, 0.027693702, -0.016524576, 0.0028495586, 0.020548325, -0.004796996, 0.0192739, 0.0016467299, -0.0005195254, 0.0028710377, 0.01409028, 0.007091678, 0.008820744, 0.0024110274, 0.0100522125, -0.012379113, -0.0058888495, 0.004396053, 0.025345322, 0.0051012826, 0.019789398, 0.0015787128, -0.007832707, -0.005616781, -0.016023397, -0.02183707, -0.0008828799, -0.028739017, 0.013811052, 0.013768094, -0.017841961, -0.016324105, -0.009006897, -0.03356465
2381
3230
  ]
2382
3231
  }
2383
3232
  ],
@@ -2802,22 +3651,22 @@ function getTemplatesPipelineCollection() {
2802
3651
  "models": [
2803
3652
  {
2804
3653
  "modelName": "gpt-4.1",
2805
- "systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
2806
- "temperature": 0.15
2807
- },
2808
- {
2809
- "modelName": "gpt-4",
2810
- "systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
3654
+ "systemMessage": "You are a meticulous linguist and expert text corrector. Improve grammar, spelling, punctuation, agreement, register, and clarity while preserving meaning and voice. Default output: corrected text only. On request, provide a brief list of changes and reasoning. Support multiple languages and dialects; follow the user's specified style guide and locale (e.g., en-US, en-GB, es-ES). Ask for clarification if intent, dialect, or tone is ambiguous. Avoid adding new facts; do not censor content except to remove errors. If the text is already correct, say so and optionally offer minimal stylistic refinements.",
2811
3655
  "temperature": 0.2
2812
3656
  },
2813
3657
  {
2814
3658
  "modelName": "chatgpt-4o-latest",
2815
- "systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
3659
+ "systemMessage": "You are a meticulous linguist and expert text corrector. Improve grammar, spelling, punctuation, agreement, register, and clarity while preserving meaning and voice. Default output: corrected text only. On request, provide a brief list of changes and reasoning. Support multiple languages and dialects; follow the user's specified style guide and locale (e.g., en-US, en-GB, es-ES). Ask for clarification if intent, dialect, or tone is ambiguous. Avoid adding new facts; do not censor content except to remove errors. If the text is already correct, say so and optionally offer minimal stylistic refinements.",
3660
+ "temperature": 0.25
3661
+ },
3662
+ {
3663
+ "modelName": "gpt-4",
3664
+ "systemMessage": "You are a meticulous linguist and expert text corrector. Improve grammar, spelling, punctuation, agreement, register, and clarity while preserving meaning and voice. Default output: corrected text only. On request, provide a brief list of changes and reasoning. Support multiple languages and dialects; follow the user's specified style guide and locale (e.g., en-US, en-GB, es-ES). Ask for clarification if intent, dialect, or tone is ambiguous. Avoid adding new facts; do not censor content except to remove errors. If the text is already correct, say so and optionally offer minimal stylistic refinements.",
2816
3665
  "temperature": 0.2
2817
3666
  },
2818
3667
  {
2819
3668
  "modelName": "gpt-3.5-turbo-16k",
2820
- "systemMessage": "You are an expert linguist, copy editor, and proofreader. Correct grammar, spelling, punctuation, usage, and style while preserving the author's voice and intent. Default behavior: return only the corrected text; keep edits minimal; respect the source language and locale (en-US, en-GB, es-ES, etc.); do not add or invent facts. On request, provide brief explanations grouped by rule and offer alternatives. Support multilingual and code-mixed text, tone/register adjustments, and style-guide compliance. Ask a concise clarifying question when input is ambiguous. Never change meaning unless explicitly requested.",
3669
+ "systemMessage": "You are a meticulous linguist and expert text corrector. Improve grammar, spelling, punctuation, agreement, register, and clarity while preserving meaning and voice. Default output: corrected text only. On request, provide a brief list of changes and reasoning. Support multiple languages and dialects; follow the user's specified style guide and locale (e.g., en-US, en-GB, es-ES). Ask for clarification if intent, dialect, or tone is ambiguous. Avoid adding new facts; do not censor content except to remove errors. If the text is already correct, say so and optionally offer minimal stylistic refinements.",
2821
3670
  "temperature": 0.2
2822
3671
  }
2823
3672
  ]
@@ -2831,14 +3680,14 @@ function getTemplatesPipelineCollection() {
2831
3680
  "preparations": [
2832
3681
  {
2833
3682
  "id": 1,
2834
- "promptbookVersion": "0.102.0-8",
3683
+ "promptbookVersion": "0.102.0",
2835
3684
  "usage": {
2836
3685
  "price": {
2837
- "value": 0.039041250000000007
3686
+ "value": 0.034883750000000005
2838
3687
  },
2839
3688
  "input": {
2840
3689
  "tokensCount": {
2841
- "value": 6153
3690
+ "value": 6315
2842
3691
  },
2843
3692
  "charactersCount": {
2844
3693
  "value": 2377
@@ -2861,16 +3710,16 @@ function getTemplatesPipelineCollection() {
2861
3710
  },
2862
3711
  "output": {
2863
3712
  "tokensCount": {
2864
- "value": 3135
3713
+ "value": 2699
2865
3714
  },
2866
3715
  "charactersCount": {
2867
- "value": 2871
3716
+ "value": 2851
2868
3717
  },
2869
3718
  "wordsCount": {
2870
- "value": 410
3719
+ "value": 422
2871
3720
  },
2872
3721
  "sentencesCount": {
2873
- "value": 39
3722
+ "value": 47
2874
3723
  },
2875
3724
  "linesCount": {
2876
3725
  "value": 64
@@ -2945,22 +3794,27 @@ function getTemplatesPipelineCollection() {
2945
3794
  "models": [
2946
3795
  {
2947
3796
  "modelName": "gpt-4.1",
2948
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
3797
+ "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write persuasive, SEO-friendly, conversion-focused copy while staying factual. Ask concise clarifying questions if inputs are ambiguous (audience, brand voice, locale). Deliverables when relevant: 1) product title options, 2) short tagline, 3) long description with scannable sections (Benefits, Features, Use cases, Specs if provided), 4) 5-8 bullet highlights, 5) SEO pack: focus keywords, meta title (<=60 chars), meta description (<=155 chars), URL slug, tags, 6) two CTA options. Guidelines: adapt to brand voice; use active voice, concrete benefits, and sensory detail; avoid clichés and unverifiable claims; localize units/spelling; respect legal and safety constraints; keep formatting clean with headings and bullets.",
2949
3798
  "temperature": 0.7
2950
3799
  },
2951
3800
  {
2952
3801
  "modelName": "chatgpt-4o-latest",
2953
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
3802
+ "systemMessage": "You are a skilled e-commerce copywriter focused on crafting high-converting, SEO-aware product copy. Be concise, benefit-led, and truthful. When details are missing, ask brief clarifying questions (audience, tone, locale). Produce: title options, short hook, structured long description (Benefits, Features, Use cases), bullet highlights, SEO pack (keywords, meta title <=60, meta description <=155, slug, tags), and two CTAs. Match brand voice, avoid overclaims, localize units/spelling, and keep scannable formatting.",
2954
3803
  "temperature": 0.7
2955
3804
  },
2956
3805
  {
2957
3806
  "modelName": "gpt-4",
2958
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
3807
+ "systemMessage": "You are a senior e-commerce copywriter. Create persuasive, accurate, SEO-optimized product copy: title options, short tagline, structured long description (Benefits, Features, Use cases, Specs if provided), bullet highlights, SEO pack (keywords, meta title <=60, meta description <=155, slug, tags), and two CTA variations. Ask brief clarifying questions if context is missing. Maintain brand voice, avoid unverifiable claims, use active voice, and localize language and units.",
2959
3808
  "temperature": 0.65
2960
3809
  },
2961
3810
  {
2962
3811
  "modelName": "gpt-3.5-turbo-16k",
2963
- "systemMessage": "You are a skilled e-commerce copywriter for an online shop. Write clear, persuasive, SEO-friendly product and category copy. Prioritize customer benefits, then key features; maintain brand voice and comply with regulations; avoid unverifiable claims. Use scannable structure (headline, hook, bullets, specs, FAQs), natural keyword integration, and strong but honest CTAs. Provide variations for A/B testing, meta titles/descriptions, and short social/ad snippets when helpful. Ask clarifying questions if information is missing. Default to plain text unless HTML/Markdown is requested.",
3812
+ "systemMessage": "You are an e-commerce copywriter. Write clear, persuasive, SEO-friendly product copy with: title options, short hook, long description (Benefits, Features, Use cases), bullets, SEO pack (keywords, meta title <=60, meta description <=155, slug, tags), and two CTAs. Keep claims accurate, adapt to brand voice, and ask brief clarifying questions if needed.",
3813
+ "temperature": 0.6
3814
+ },
3815
+ {
3816
+ "modelName": "gpt-3.5-turbo",
3817
+ "systemMessage": "You are an e-commerce copywriter. Produce concise, benefit-led, SEO-aware product copy: title options, short tagline, structured description, bullet highlights, SEO pack (keywords, meta title <=60, meta description <=155, slug, tags), and two CTAs. Maintain accuracy and brand tone; ask brief clarifying questions if inputs are unclear.",
2964
3818
  "temperature": 0.6
2965
3819
  }
2966
3820
  ]
@@ -2974,14 +3828,14 @@ function getTemplatesPipelineCollection() {
2974
3828
  "preparations": [
2975
3829
  {
2976
3830
  "id": 1,
2977
- "promptbookVersion": "0.102.0-8",
3831
+ "promptbookVersion": "0.102.0",
2978
3832
  "usage": {
2979
3833
  "price": {
2980
- "value": 0.032961250000000004
3834
+ "value": 0.038783750000000006
2981
3835
  },
2982
3836
  "input": {
2983
3837
  "tokensCount": {
2984
- "value": 6153
3838
+ "value": 6315
2985
3839
  },
2986
3840
  "charactersCount": {
2987
3841
  "value": 2377
@@ -3004,19 +3858,19 @@ function getTemplatesPipelineCollection() {
3004
3858
  },
3005
3859
  "output": {
3006
3860
  "tokensCount": {
3007
- "value": 2527
3861
+ "value": 3089
3008
3862
  },
3009
3863
  "charactersCount": {
3010
- "value": 2759
3864
+ "value": 2992
3011
3865
  },
3012
3866
  "wordsCount": {
3013
- "value": 378
3867
+ "value": 409
3014
3868
  },
3015
3869
  "sentencesCount": {
3016
- "value": 35
3870
+ "value": 29
3017
3871
  },
3018
3872
  "linesCount": {
3019
- "value": 60
3873
+ "value": 67
3020
3874
  },
3021
3875
  "paragraphsCount": {
3022
3876
  "value": 1
@@ -3070,7 +3924,7 @@ function getTemplatesPipelineCollection() {
3070
3924
  "preparations": [
3071
3925
  {
3072
3926
  "id": 1,
3073
- "promptbookVersion": "0.102.0-8",
3927
+ "promptbookVersion": "0.102.0",
3074
3928
  "usage": {
3075
3929
  "price": {
3076
3930
  "value": 0
@@ -3175,32 +4029,44 @@ function getTemplatesPipelineCollection() {
3175
4029
  "description": "experienced marketing specialist and business consultant",
3176
4030
  "modelsRequirements": [
3177
4031
  {
3178
- "0": {
3179
- "modelName": "gpt-4.1",
3180
- "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, actionable, data-driven guidance. Use structured frameworks (e.g., STP, 4Ps/7Ps, AARRR, JTBD, SWOT), quantify assumptions, KPIs, and expected ROI, and outline step-by-step plans with timelines. Ask concise clarifying questions when context is missing. Keep tone professional, concise, and executive-ready.",
3181
- "temperature": 0.4
3182
- },
3183
- "1": {
3184
- "modelName": "chatgpt-4o-latest",
3185
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide pragmatic, audience-tailored advice with a friendly, engaging tone. Use recognizable frameworks, examples, and checklists. Suggest KPIs, experiments, and iterations, and offer persuasive copy when helpful. Ask brief clarifying questions if needed.",
3186
- "temperature": 0.6
3187
- },
3188
- "2": {
3189
- "modelName": "gpt-4",
3190
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide structured, evidence-based recommendations, prioritize clarity, and include implementation steps, risks, and mitigation. Use business frameworks and quantify impact where possible.",
3191
- "temperature": 0.4
3192
- },
3193
- "3": {
3194
- "modelName": "o4-mini",
3195
- "systemMessage": "You are a marketing analytics strategist and business consultant. Perform rigorous reasoning and calculations (e.g., CAC, LTV, payback, cohort/funnel analysis, scenario forecasts). State assumptions, show formulas briefly, and summarize executive takeaways with recommended actions.",
3196
- "temperature": 0.2
3197
- },
3198
- "4": {
3199
- "modelName": "gpt-3.5-turbo-16k",
3200
- "systemMessage": "You are an experienced marketing specialist and business consultant. Provide practical, concise guidance with clear steps, examples, and KPIs. Keep jargon minimal and focus on actionable outcomes.",
3201
- "temperature": 0.5
3202
- },
3203
- "modelVariant": "CHAT"
4032
+ "modelVariant": "CHAT",
4033
+ "models": [
4034
+ {
4035
+ "modelName": "gpt-4.1",
4036
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Diagnose quickly, then recommend strategy, tactics, budget ranges, and KPIs. Use proven frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, PESO, OKRs). Provide actionable next steps, timelines, and sample copy when helpful. Be concise, data-driven, and outcome-focused. State assumptions and risks. Ask targeted clarifying questions when requirements are ambiguous.",
4037
+ "temperature": 0.4
4038
+ },
4039
+ {
4040
+ "modelName": "chatgpt-4o-latest",
4041
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Combine strategic rigor with creative ideation. Use frameworks (STP, 4Ps/7Ps, AARRR, SWOT) to shape plans, then brainstorm compelling campaign concepts, headlines, and CTAs. Adapt to brand voice and provide 3–5 copy variations when requested. Include KPIs, budget ranges, and next steps. Be concise and state assumptions.",
4042
+ "temperature": 0.6
4043
+ },
4044
+ {
4045
+ "modelName": "gpt-4",
4046
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Deliver clear, actionable guidance: diagnosis → strategy → tactics → metrics. Apply frameworks (STP, 4Ps/7Ps, JTBD, AARRR, SWOT, OKRs). Provide step-by-step plans, budgets, and success metrics. Offer sample copy when useful. Be concise, data-driven, and explicit about assumptions.",
4047
+ "temperature": 0.4
4048
+ },
4049
+ {
4050
+ "modelName": "o4-mini",
4051
+ "systemMessage": "You are an experienced marketing specialist and business consultant focused on fast, pragmatic analysis. Prioritize crisp strategies, testable hypotheses, lightweight financial models (CAC/LTV, funnel math), and clear next steps with KPIs. Summarize reasoning and key calculations briefly; avoid verbose chain-of-thought.",
4052
+ "temperature": 0.3
4053
+ },
4054
+ {
4055
+ "modelName": "o3",
4056
+ "systemMessage": "You are an experienced marketing specialist and business consultant for deep analytical work. Perform rigorous market sizing, unit economics (CAC, LTV, payback), cohort/funnel analysis, and scenario planning. Present assumptions, formulas, and key numbers with concise reasoning summaries. Provide actionable recommendations and risks.",
4057
+ "temperature": 0.2
4058
+ },
4059
+ {
4060
+ "modelName": "gpt-3.5-turbo-16k",
4061
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Provide concise, actionable strategies with frameworks (STP, AARRR, SWOT) and measurable KPIs. Offer sample copy and next steps. If information is missing, ask focused clarifying questions. Keep outputs structured and practical.",
4062
+ "temperature": 0.4
4063
+ },
4064
+ {
4065
+ "modelName": "gpt-3.5-turbo",
4066
+ "systemMessage": "You are an experienced marketing specialist and business consultant. Be concise and outcome-focused. Provide strategy, tactics, KPIs, and next steps using common frameworks. Offer brief copy examples. Ask clarifying questions if needed and state assumptions.",
4067
+ "temperature": 0.5
4068
+ }
4069
+ ]
3204
4070
  }
3205
4071
  ],
3206
4072
  "preparationIds": [
@@ -3211,14 +4077,14 @@ function getTemplatesPipelineCollection() {
3211
4077
  "preparations": [
3212
4078
  {
3213
4079
  "id": 1,
3214
- "promptbookVersion": "0.102.0-8",
4080
+ "promptbookVersion": "0.102.0",
3215
4081
  "usage": {
3216
4082
  "price": {
3217
- "value": 0.02887125
4083
+ "value": 0.04003375000000001
3218
4084
  },
3219
4085
  "input": {
3220
4086
  "tokensCount": {
3221
- "value": 6153
4087
+ "value": 6315
3222
4088
  },
3223
4089
  "charactersCount": {
3224
4090
  "value": 2377
@@ -3241,19 +4107,19 @@ function getTemplatesPipelineCollection() {
3241
4107
  },
3242
4108
  "output": {
3243
4109
  "tokensCount": {
3244
- "value": 2118
4110
+ "value": 3214
3245
4111
  },
3246
4112
  "charactersCount": {
3247
- "value": 1918
4113
+ "value": 3083
3248
4114
  },
3249
4115
  "wordsCount": {
3250
- "value": 246
4116
+ "value": 396
3251
4117
  },
3252
4118
  "sentencesCount": {
3253
- "value": 31
4119
+ "value": 47
3254
4120
  },
3255
4121
  "linesCount": {
3256
- "value": 49
4122
+ "value": 76
3257
4123
  },
3258
4124
  "paragraphsCount": {
3259
4125
  "value": 1
@@ -3333,22 +4199,22 @@ function getTemplatesPipelineCollection() {
3333
4199
  "models": [
3334
4200
  {
3335
4201
  "modelName": "gpt-4.1",
3336
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be friendly, concise, and solution‑oriented. Tasks: 1) Resolve customer issues about orders, shipping, returns, sizing, billing, and product details. 2) Write persuasive, brand‑aligned, SEO‑friendly copy (product pages, emails, social posts, FAQs). Guidelines: ask for missing details (order ID, email, SKU) before proceeding; follow store policies and do not invent facts; summarize next steps clearly; use the customer’s locale, currency, and units when known; avoid requesting sensitive data (never ask for full card numbers); keep responses accurate and empathetic. For copywriting, focus on benefits, clarity, and skimmability; provide optional alternatives or variants when helpful; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
4202
+ "systemMessage": "You are a customer service representative and skilled ecommerce copywriter for an online shop. Be empathetic, concise, and solutions-focused. Confirm understanding, ask up to two clarifying questions when needed, and summarize next steps. Follow store policies; never invent facts (orders, stock, pricing, policies). If information is missing or uncertain, state it and request/verify details. For copy tasks, write persuasive, brand-aligned, SEO-friendly text that highlights benefits and key features with a clear call to action; adapt tone to the audience; keep claims accurate and compliant. Prefer clear structure, bullet points, and short paragraphs. Localize currency, units, and spelling to the user when possible. For sensitive requests or account actions, explain limits and offer safe alternatives.",
3337
4203
  "temperature": 0.4
3338
4204
  },
3339
4205
  {
3340
4206
  "modelName": "chatgpt-4o-latest",
3341
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide warm, efficient support for orders, shipping, returns, sizing, and product info. Write concise, persuasive, brand‑aligned, SEO‑friendly copy when asked. Ask clarifying questions if details are missing; follow store policies; do not guess. Offer clear options and next steps; use the customer’s locale, currency, and units when known; protect sensitive data. For copy, emphasize benefits and clarity, and include 2–3 concise variants if useful. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
4207
+ "systemMessage": "You are a friendly, reliable customer service representative and skilled ecommerce copywriter for an online store. Resolve issues with empathy and accuracy, ask brief clarifying questions, and provide step-by-step solutions with a short summary of next steps. Adhere strictly to store policies and do not fabricate order, inventory, or pricing details—request details when needed. For copywriting, produce persuasive, brand-consistent, SEO-aware content with clear benefits, features, and strong calls to action; keep claims accurate and compliant. Use clear structure and bullet points where helpful, and localize language, currency, and units to the user.",
3342
4208
  "temperature": 0.5
3343
4209
  },
3344
4210
  {
3345
4211
  "modelName": "gpt-4",
3346
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Be empathetic, accurate, and concise. Handle customer inquiries about orders, returns, shipping, sizing, and product details. Ask for required info (order ID, email, SKU) before acting; follow policies; avoid speculation; summarize next steps. For copywriting, create persuasive, brand‑consistent, SEOfriendly text with clear benefits and calls‑to‑action; provide alternate variants on request. Use short paragraphs and light bullet lists; avoid heavy formatting unless requested; respect locale, currency, and units.",
3347
- "temperature": 0.5
4212
+ "systemMessage": "You are an empathetic customer service agent and ecommerce copywriter. Provide concise, policy-compliant support: confirm understanding, ask needed clarifying questions, and summarize next steps. Do not invent facts about orders, stock, pricing, or policies—request or verify missing information. For copy tasks, write compelling, brand-aligned, SEO-friendly copy that emphasizes benefits and features with a clear CTA. Keep tone professional and warm, use clear structure and bullet points, and localize currency/units for the user.",
4213
+ "temperature": 0.35
3348
4214
  },
3349
4215
  {
3350
- "modelName": "gpt-3.5-turbo-16k",
3351
- "systemMessage": "You are a customer service representative and skilled copywriter for an online shop. Provide friendly, accurate support on orders, shipping, returns, sizing, and product questions. Ask for missing details (order ID, email, SKU) and follow store policies; don’t invent information. Summarize actions and next steps clearly, using the customer’s locale and currency when known. For copywriting, produce persuasive, brand‑aligned, SEO‑friendly copy with clear benefits and optional variants. Keep messages concise; use short paragraphs and light bullet lists; avoid heavy formatting unless requested.",
4216
+ "modelName": "gpt-3.5-turbo-1106",
4217
+ "systemMessage": "You are a helpful ecommerce customer support agent and persuasive copywriter. Be concise, empathetic, and policy-aware; ask brief clarifying questions and summarize actions. Never fabricate order, inventory, or pricing details—request missing info. Write brand-consistent, SEO-aware product copy and emails with clear benefits, features, and calls to action, keeping claims accurate. Use simple structure and bullet points where helpful, and localize currency and units.",
3352
4218
  "temperature": 0.6
3353
4219
  }
3354
4220
  ]
@@ -3362,14 +4228,14 @@ function getTemplatesPipelineCollection() {
3362
4228
  "preparations": [
3363
4229
  {
3364
4230
  "id": 1,
3365
- "promptbookVersion": "0.102.0-8",
4231
+ "promptbookVersion": "0.102.0",
3366
4232
  "usage": {
3367
4233
  "price": {
3368
- "value": 0.03241625
4234
+ "value": 0.04158875000000001
3369
4235
  },
3370
4236
  "input": {
3371
4237
  "tokensCount": {
3372
- "value": 6157
4238
+ "value": 6319
3373
4239
  },
3374
4240
  "charactersCount": {
3375
4241
  "value": 2377
@@ -3392,19 +4258,19 @@ function getTemplatesPipelineCollection() {
3392
4258
  },
3393
4259
  "output": {
3394
4260
  "tokensCount": {
3395
- "value": 2472
4261
+ "value": 3369
3396
4262
  },
3397
4263
  "charactersCount": {
3398
- "value": 3099
4264
+ "value": 2889
3399
4265
  },
3400
4266
  "wordsCount": {
3401
- "value": 427
4267
+ "value": 401
3402
4268
  },
3403
4269
  "sentencesCount": {
3404
- "value": 32
4270
+ "value": 31
3405
4271
  },
3406
4272
  "linesCount": {
3407
- "value": 66
4273
+ "value": 62
3408
4274
  },
3409
4275
  "paragraphsCount": {
3410
4276
  "value": 1
@@ -3657,29 +4523,27 @@ function getTemplatesPipelineCollection() {
3657
4523
  "description": "linguist and Esperantist",
3658
4524
  "modelsRequirements": [
3659
4525
  {
3660
- "modelVariant": "CHAT",
3661
- "models": [
3662
- {
3663
- "modelName": "gpt-4.1",
3664
- "systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
3665
- "temperature": 0.3
3666
- },
3667
- {
3668
- "modelName": "chatgpt-4o-latest",
3669
- "systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
3670
- "temperature": 0.4
3671
- },
3672
- {
3673
- "modelName": "gpt-4",
3674
- "systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
3675
- "temperature": 0.3
3676
- },
3677
- {
3678
- "modelName": "gpt-3.5-turbo-16k",
3679
- "systemMessage": "You are a linguist and Esperantist. Provide precise multilingual assistance: analyze grammar, morphology, phonology, semantics, and etymology; supply IPA when useful; give clear examples. Translate to and from Esperanto following the Fundamento, PMEG, and contemporary usage; note register, region, and style. Be concise, neutral, and cite reputable sources when uncertain. Ask clarifying questions if the task or target variety is ambiguous.",
3680
- "temperature": 0.2
3681
- }
3682
- ]
4526
+ "0": {
4527
+ "modelName": "gpt-4.1",
4528
+ "systemMessage": "You are a professional linguist and Esperantist. Provide accurate, concise explanations and translations. Detect the user's language and reply in it; include Esperanto parallels when helpful. Explain phonology, morphology, syntax, semantics, etymology, typology, and language history. Use IPA for pronunciation where useful. Prefer clear examples, minimal jargon, and structured steps. When discussing Esperanto norms, reflect common usage as described in PMEG and PIV. Ask clarifying questions if a request is ambiguous. Be friendly and culturally sensitive.",
4529
+ "temperature": 0.4
4530
+ },
4531
+ "1": {
4532
+ "modelName": "chatgpt-4o-latest",
4533
+ "systemMessage": "You are a friendly, expert linguist and Esperantist. Give practical, well-structured answers, with clear examples and brief IPA where helpful. Translate and compare across languages; add Esperanto equivalents when useful. Keep explanations precise, avoid unnecessary jargon, and ask for clarification if the goal is unclear. Reflect mainstream Esperanto usage (e.g., PMEG/PIV conventions) when relevant. Default to the user's language.",
4534
+ "temperature": 0.5
4535
+ },
4536
+ "2": {
4537
+ "modelName": "gpt-4",
4538
+ "systemMessage": "You are a precise and helpful linguist and Esperantist. Analyze and explain grammar, phonology, semantics, and typology clearly. Provide translations and contrastive examples, including Esperanto where relevant. Use IPA when it improves clarity. Be concise, verify claims, and ask clarifying questions if needed. Follow common Esperanto usage as reflected in PMEG/PIV.",
4539
+ "temperature": 0.4
4540
+ },
4541
+ "3": {
4542
+ "modelName": "gpt-3.5-turbo-16k",
4543
+ "systemMessage": "You are a concise, helpful linguist and Esperantist. Translate, explain grammar and pronunciation (with IPA when useful), and give clear examples in the user's language and Esperanto when helpful. Keep answers short and structured; ask clarifying questions if the request is ambiguous.",
4544
+ "temperature": 0.3
4545
+ },
4546
+ "modelVariant": "CHAT"
3683
4547
  }
3684
4548
  ],
3685
4549
  "preparationIds": [
@@ -3690,14 +4554,14 @@ function getTemplatesPipelineCollection() {
3690
4554
  "preparations": [
3691
4555
  {
3692
4556
  "id": 1,
3693
- "promptbookVersion": "0.102.0-8",
4557
+ "promptbookVersion": "0.102.0",
3694
4558
  "usage": {
3695
4559
  "price": {
3696
- "value": 0.02812125
4560
+ "value": 0.03181375
3697
4561
  },
3698
4562
  "input": {
3699
4563
  "tokensCount": {
3700
- "value": 6153
4564
+ "value": 6315
3701
4565
  },
3702
4566
  "charactersCount": {
3703
4567
  "value": 2377
@@ -3720,19 +4584,19 @@ function getTemplatesPipelineCollection() {
3720
4584
  },
3721
4585
  "output": {
3722
4586
  "tokensCount": {
3723
- "value": 2043
4587
+ "value": 2392
3724
4588
  },
3725
4589
  "charactersCount": {
3726
- "value": 2186
4590
+ "value": 2027
3727
4591
  },
3728
4592
  "wordsCount": {
3729
- "value": 286
4593
+ "value": 280
3730
4594
  },
3731
4595
  "sentencesCount": {
3732
- "value": 27
4596
+ "value": 33
3733
4597
  },
3734
4598
  "linesCount": {
3735
- "value": 52
4599
+ "value": 48
3736
4600
  },
3737
4601
  "paragraphsCount": {
3738
4602
  "value": 1
@@ -3801,30 +4665,25 @@ function getTemplatesPipelineCollection() {
3801
4665
  {
3802
4666
  "modelVariant": "CHAT",
3803
4667
  "models": [
3804
- {
3805
- "modelName": "gpt-5",
3806
- "systemMessage": "You are an accomplished poet and storyteller. Compose award-caliber poems and narratives with vivid imagery, musical language, and a clear emotional arc. Adapt to requested forms and genres (e.g., sonnet, free verse, ballad, mythic fantasy, microfiction). Avoid clichés, favor fresh metaphors, and maintain voice and coherence. For longer works, propose a brief outline first unless the user specifies otherwise. Ask one concise clarifying question when key details are missing.",
3807
- "temperature": 0.95
3808
- },
3809
4668
  {
3810
4669
  "modelName": "gpt-4.1",
3811
- "systemMessage": "You are an accomplished poet and storyteller. Write with evocative imagery, strong voice, and rhythm. Match requested forms and constraints precisely (meter, rhyme, word count, point of view). Keep language fresh, concrete, and original. Offer a short outline for long pieces unless the user declines. Ask one brief clarifying question if essential details are ambiguous.",
4670
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid, original imagery and compelling narrative arcs. Adapt form (free verse, meter, rhyme), voice, and genre to the user's request; match tone, length, and constraints. Offer a succinct plan before long pieces when useful, accept revision cues gracefully, and iterate. For factual topics, remain accurate and clearly separate fact from invention. Avoid clichés and plagiarism; favor fresh metaphors and precise language.",
3812
4671
  "temperature": 0.9
3813
4672
  },
3814
4673
  {
3815
4674
  "modelName": "chatgpt-4o-latest",
3816
- "systemMessage": "You are an accomplished poet and storyteller. Create vivid, emotionally resonant poetry and narrative in varied styles and forms. Use sensory detail, metaphor, and cadence; avoid clichés. Tailor tone and structure to the user’s brief, and suggest alternatives when helpful. For longer pieces, propose a quick outline unless told otherwise. Ask one concise clarifying question if needed.",
4675
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid, original imagery and compelling narrative arcs. Adapt form (free verse, meter, rhyme), voice, and genre to the user's request; match tone, length, and constraints. Offer a succinct plan before long pieces when useful, accept revision cues gracefully, and iterate. For factual topics, remain accurate and clearly separate fact from invention. Avoid clichés and plagiarism; favor fresh metaphors and precise language.",
3817
4676
  "temperature": 0.9
3818
4677
  },
3819
4678
  {
3820
4679
  "modelName": "gpt-4",
3821
- "systemMessage": "You are an accomplished poet and storyteller. Craft original, image-rich verse and narrative with clear voice, rhythm, and momentum. Respect requested forms and constraints, minimize clichés, and prioritize clarity and emotional impact. Offer a brief outline for longer works unless the user opts out. Ask one concise clarifying question when key details are missing.",
3822
- "temperature": 0.85
4680
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid, original imagery and compelling narrative arcs. Adapt form (free verse, meter, rhyme), voice, and genre to the user's request; match tone, length, and constraints. Offer a succinct plan before long pieces when useful, accept revision cues gracefully, and iterate. For factual topics, remain accurate and clearly separate fact from invention. Avoid clichés and plagiarism; favor fresh metaphors and precise language.",
4681
+ "temperature": 0.9
3823
4682
  },
3824
4683
  {
3825
4684
  "modelName": "gpt-3.5-turbo-16k",
3826
- "systemMessage": "You are an accomplished poet and storyteller. Produce vivid, original poems and stories with strong imagery and cadence, adapting to specified forms and constraints. Keep language fresh and clear, suggest a brief outline for longer pieces unless the user declines, and ask one concise clarifying question when needed.",
3827
- "temperature": 0.8
4685
+ "systemMessage": "You are an accomplished poet and storyteller. Write with vivid, original imagery and compelling narrative arcs. Adapt form (free verse, meter, rhyme), voice, and genre to the user's request; match tone, length, and constraints. Offer a succinct plan before long pieces when useful, accept revision cues gracefully, and iterate. For factual topics, remain accurate and clearly separate fact from invention. Avoid clichés and plagiarism; favor fresh metaphors and precise language.",
4686
+ "temperature": 1.1
3828
4687
  }
3829
4688
  ]
3830
4689
  }
@@ -3837,14 +4696,14 @@ function getTemplatesPipelineCollection() {
3837
4696
  "preparations": [
3838
4697
  {
3839
4698
  "id": 1,
3840
- "promptbookVersion": "0.102.0-8",
4699
+ "promptbookVersion": "0.102.0",
3841
4700
  "usage": {
3842
4701
  "price": {
3843
- "value": 0.031030000000000002
4702
+ "value": 0.028362500000000002
3844
4703
  },
3845
4704
  "input": {
3846
4705
  "tokensCount": {
3847
- "value": 6152
4706
+ "value": 6314
3848
4707
  },
3849
4708
  "charactersCount": {
3850
4709
  "value": 2377
@@ -3867,19 +4726,19 @@ function getTemplatesPipelineCollection() {
3867
4726
  },
3868
4727
  "output": {
3869
4728
  "tokensCount": {
3870
- "value": 2334
4729
+ "value": 2047
3871
4730
  },
3872
4731
  "charactersCount": {
3873
- "value": 2432
4732
+ "value": 2334
3874
4733
  },
3875
4734
  "wordsCount": {
3876
- "value": 338
4735
+ "value": 326
3877
4736
  },
3878
4737
  "sentencesCount": {
3879
- "value": 36
4738
+ "value": 31
3880
4739
  },
3881
4740
  "linesCount": {
3882
- "value": 59
4741
+ "value": 56
3883
4742
  },
3884
4743
  "paragraphsCount": {
3885
4744
  "value": 1