{
  "database": [
    {
      "key_rules": [
        "Functions support both standard syntax and piping operators (e.g., value | function).",
        "File system paths are resolved relative to the current working directory.",
        "Standard library modules (such as std/math, std/audio, or std/db) must be explicitly imported using the 'allow' syntax.",
        "System-level functions like python(), js(), and ffmpeg() are disabled when the interpreter is in safe mode.",
        "Module resolution follows a priority order: script directory, current working directory, SESI_PATH, and finally the global ~/.sesi/lib folder.",
        "Collection functions like push() and append() modify the original array in-place."
      ],
      "code_examples": [
        "show \"Value:\" 10 + 20",
        "let name = input(\"Enter your name: \")",
        "type([1, 2, 3]) // \"array\"",
        "let arr = [1, 2, 3]",
        "push(arr, 4)",
        "let text = read_file(\"input.txt\")",
        "\"https://example.com\" | web_get",
        "allow \"std/math\" in as Math",
        "let db = \"data.db\" | db_open(\"password\")"
      ],
      "summary": "This reference outlines the core built-in functions and standard library modules available in the Sesi programming language. It covers essential operations for input/output, type handling, string and array manipulation, and file system management. Additionally, it details specialized modules for networking, audio synthesis, and browser automation, while explaining the language's support for both standard and piped function syntax.",
      "description": "This doc demonstrates both normal usage and piping operators.",
      "title": "Sesi Built-ins"
    },
    {
      "key_rules": [
        "Statements must be terminated by either a newline or a semicolon (;).",
        "Command-line arguments are automatically parsed and bound to a globally accessible array called 'args'.",
        "System shell commands (exec, spawn) are blocked by default unless the --local (-l) flag is used to disable sandboxing.",
        "File access is restricted to the Current Working Directory and Script Directory unless additional paths are whitelisted via --allowed-paths (-a).",
        "Encryption and decryption operations require a password provided through the -p flag or the SESI_PASSWORD environment variable."
      ],
      "code_examples": [
        "sesi main/test_args.sesi \"hello\" \"world\"",
        "let total = len(args)\nif total > 0 {\n  show \"First argument:\" args[0]\n}",
        "sesi -e \"let x = 10; let y = 20; show x + y\"",
        "sesi -e \"let path = args[0]; let content = read_file(path); show 'Character count:' len(content)\" \"package.json\"",
        "sesi -enc my_private_script.sesi -p \"my-super-secret-password\"",
        "let name = input(\"What is your name? \")"
      ],
      "summary": "The Sesi CLI provides a comprehensive toolset for executing scripts, performing fileless inline code evaluation, and managing environment security through a zero-trust sandbox. It includes advanced developer utilities such as AST visualization, token stream inspection, and AES-256 script encryption. Users can also access an interactive REPL and a specialized help system for language documentation and script debugging.",
      "description": "Sesi’s CLI is a powerful, zero-footprint environment orchestrator. It allows you to run robust scripts, evaluate inline code filelessly, query the RAG-powered interactive Sesira assistant, encrypt files, and manage sandboxing controls directly from your shell.",
      "title": "Sesi CLI"
    },
    {
      "key_rules": [
        "All file paths are resolved relative to the current working directory.",
        "File operations are subject to sandbox restrictions to prevent path-traversal security violations.",
        "The read_file function supports 'text' (UTF-8) and 'base64' modes.",
        "The write_file function overwrites existing files or creates them if they do not exist.",
        "The archive function defaults to a hidden '.archive/' directory if no destination path is provided.",
        "The trash function moves items to a local '.trash/' folder with a millisecond timestamp unless autoRemove is set to true for permanent deletion.",
        "Any attempt to access files outside the allowed directory boundary throws a Security Violation error."
      ],
      "code_examples": [
        "try {\n  let content = read_file(\"config.json\")\n  let image_b64 = read_file(\"logo.png\", \"base64\")\n  print image_b64\n  print \"Config loaded:\" content\n} catch (err) {\n  print \"Failed to read file:\" err\n}",
        "let content = \"Hello from Sesi!\"\ntry {\n  write_file(\"output.txt\", content)\n  let image_b64 = read_file(\"logo.png\", \"base64\")\n  write_file(\"logo-copy.png\", image_b64, \"base64\")\n  print \"Successfully wrote output.txt\"\n} catch (err) {\n  print \"Failed to write file:\" err\n}",
        "let success = append_file(\"log.txt\", \"new line\\n\")\nif success {print \"File appended successfully\"}",
        "open_file(\"README.md\")\nopen_file(\"README.md\", {editor: \"Visual Studio Code\"})\nopen_file(\"favicon.png\", {viewer: \"Preview\"})\nopen_file(\"index.html\", {mode: \"browser\", browser: \"Google Chrome\"})",
        "open(\"https://code-with-sesi.netlify.app\")\nopen(\"https://code-with-sesi.netlify.app\", {browser: \"Google Chrome\"})\nopen(\"reports/dashboard.html\", {browser: \"Firefox\"})\nopen(\"notes/todo.txt\", {editor: \"Visual Studio Code\"})\nopen(\"images/logo.png\", {image_viewer: \"Preview\"})",
        "try {\n  write_image(\"logo.png\", logo_data)\n  print \"Saved logo.png successfully\"\n} catch (err) {\n  print \"Failed to save logo:\" err\n}",
        "make_dir(\"projects/demo/src\")",
        "let files = list_dir(\".\")\nfor file in files {\n  if contains(file, \".sesi\") {\n    print \"Found script:\" file\n  }\n}",
        "try {\n  rename(\"old_name.txt\", \"new_name.txt\")\n  print \"Renamed file!\"\n} catch (err) {\n  print \"Rename failed:\" err\n}",
        "archive(\"src/main.ts\", \"backup/main.ts\")\narchive(\"src/main.ts\")",
        "trash(\"temp.txt\")\ntrash(\"temp.txt\", true)",
        "try {\n  read_file(\"../outside_file.txt\")\n} catch (err) {\n  print \"Blocked:\" err\n}"
      ],
      "summary": "Sesi offers a comprehensive suite of functions for reading, writing, and appending text and binary files within a secured environment. It includes robust directory management capabilities such as creating, listing, and renaming folders, alongside safety features like automated archiving and a timestamped trash system. The language enforces a strict directory-level sandbox to prevent unauthorized filesystem access and path-traversal attacks.",
      "description": "Sesi provides a robust, sandbox-secured set of built-in functions for manipulating files and folders. All file path references are resolved relative to the current working directory and are checked against sandbox restrictions to prevent path-traversal security violations.",
      "title": "File I/O"
    },
    {
      "key_rules": [
        "Always use 'let' for variable declarations; 'const' and 'var' are forbidden.",
        "The 'return' keyword is only valid inside function blocks and cannot be used at the top level.",
        "Object literals require quoted string keys, while configuration or schema blocks require unquoted keys.",
        "Raw newlines are prohibited between elements inside prompt {} or config {} blocks; they are treated as statement separators.",
        "Type annotations are optional but use specific aliases like 'num' for number and 'str' for string.",
        "The pipe operator '|' passes the left value as the first argument to the right function.",
        "File I/O and network calls should always be wrapped in try/catch blocks as a best practice."
      ],
      "code_examples": [
        "let name = \"Sesi\"",
        "let scores = [10, 20, 30]",
        "fn greet(name: string) { show \"Hello,\" name }",
        "if score >= 90 { show \"excellent\" }",
        "for i = 0 to 5 { show i }",
        "prompt header {\"Welcome to Sesi\" ver \". Hello,\" name}",
        "allow \"std/draw\" in as Draw",
        "let data = from_json(read_file(\"config.json\"))"
      ],
      "summary": "Sesi is a unique, dynamically-typed scripting language that prioritizes top-level execution and minimal syntax without the need for main function wrappers. It features a robust standard library for SVG drawing, audio synthesis, networking, and document databases. The language emphasizes clarity through specific primitives like prompt blocks for string composition and a dedicated module loading system.",
      "description": "Sesi is a **clean, minimal, side-effect-oriented** scripting language. It is:",
      "title": "Sesi Language"
    },
    {
      "key_rules": [
        "The `image` keyword must be followed by a model name, an optional configuration block, and a prompt block.",
        "The `image()` primitive evaluates to a base64-encoded string.",
        "Use `write_image(path, base64_content)` to persist generated image data to disk.",
        "The `images` configuration key accepts a string (single file) or an array of strings (multiple files) representing local paths.",
        "Supported input formats include .jpg, .jpeg, .png, .gif, .webp, and .bmp.",
        "The `size` configuration parameter must be one of: \"512\", \"1K\", \"2K\", or \"4K\".",
        "Configuration keys like `ratio` and `images` are resolved at runtime relative to the current working directory."
      ],
      "code_examples": [
        "image(\"model-name\") {configKey: \"configValue\"} {\"Prompt text\"}",
        "prompt request {\"A simple minimalist company logo for a bakery\"}\nlet imageData = image(\"gemini-3.1-flash-image\") {ratio: \"1:1\", size: \"1K\"} {request}\ntry {\n    let success = write_image(\"bakery_logo.png\", imageData)\n    if success {\n        show \"Saved bakery_logo.png successfully.\"\n    }\n} catch (e) {\n    show \"Failed to generate image:\" e\n}",
        "let outputDir = \"assets/products/\"\nmake_dir(outputDir)\nlet products = [\"coffee_mug\", \"desk_lamp\", \"notebook\"]\nfor product in products {\n    prompt request {\"A clean studio presentation photograph of a \" product \" on a solid white background.\"}\n    prompt filename { outputDir product \".png\" }\n    try {\n        let imageData = image(\"gemini-3.1-flash-image\") {ratio: \"1:1\", size: \"1K\"} {request}\n        let success = write_image(filename, imageData)\n    } catch (e) {\n        show \"Failed processing\" product \":\" e\n    }\n}",
        "let logo = image(\"gpt-image-2\") {ratio: \"1:1\"} {\"A bold, flat logo for a fictional studio, black on warm white.\"}\nwrite_image(\"gpt-generated-logo.png\", logo)",
        "model(\"model-name\") {images: pathExpr} {prompt}\nimage(\"model-name\") {images: pathExpr} {prompt}",
        "let caption = model(\"gemini-3-flash-preview\") {images: \"shots/frame_01.jpg\"} {\"Describe what is happening in this photograph in one paragraph.\"}",
        "let ref = \"references/grille_detail.jpg\"\nlet render = image(\"gemini-3.1-flash-image\") {images: ref, ratio: \"16:9\"} {\"Render a full front elevation in the same visual style as the reference.\"}"
      ],
      "summary": "Sesi utilizes a native `image` primitive to generate and manipulate visual assets through specific model calls and configuration blocks. The language processes these operations as base64-encoded strings, which are then saved to the local file system using dedicated builtins like `write_image`. Furthermore, the system allows for multimodal workflows by passing local file paths into the `images` configuration key for processing or reference-guided tasks.",
      "description": "Sesi provides a native, language-level primitive for image generation and manipulation, including image-to-image tasks like style transfer, upscaling, and editing. This primitive is designed to interoperate seamlessly with Sesi's file system builtins, allowing you to generate and persist images with minimal boilerplate.",
      "title": "Image Generation"
    },
    {
      "key_rules": [
        "Only names marked with the 'export' keyword are visible to other files.",
        "The 'import' keyword pulls named exports directly into the current scope.",
        "The 'allow' keyword provides scoped imports, either via named bindings or a namespace object.",
        "Module resolution follows a 5-step priority: Script directory, Current Working Directory, sesi_modules/, SESI_PATH, and finally the global ~/.sesi/lib.",
        "Third-party packages are managed via a sesi.json manifest and stored in a local sesi_modules/ directory.",
        "Directory modules must contain an index.sesi or main.sesi file to serve as the entry point."
      ],
      "code_examples": [
        "export fn add(a, b) { return a + b }\nexport let PI = 3.14159",
        "import {\n  add,\n  multiply,\n  PI\n} from \"math\"",
        "allow \"math\" in with {\n  add, multiply\n}\nprint add(3, 4)",
        "allow \"math\" in as Math\nprint Math.add(3, 4)",
        "allow \"std/math\" in as Math\nallow \"std/time\" in as Time\n\nprint Math.PI\nprint Time.now())",
        "{\n  \"name\": \"my-project\",\n  \"version\": \"1.0.0\",\n  \"dependencies\": {\n    \"http-router\": \"example-repo/http-router#v1.0.0\"\n  }\n}",
        "sesi install owner/repo#ref",
        "// Quick Reference\nexport fn greet(name) { print \"Hello,\" name }\nimport { greet, VERSION } from \"mymodule\"\nallow \"mymodule\" in with { greet, VERSION }\nallow \"mymodule\" in as Mod\nMod.greet(\"Ada\")"
      ],
      "summary": "Sesi utilizes a module system that allows for code organization and reuse across multiple files through explicit exporting and importing. It supports both standard named imports and a unique 'allow' syntax for scoped or namespaced access to external code. The system also includes a prioritized resolution logic, a git-centric package manager, and a built-in standard library for common operations like math and time conversion.",
      "description": "Modules let you split code across `.sesi` files and reuse it. Use `export` to expose values from a file and `import` or `allow` to bring them in.",
      "title": "Sesi Modules"
    },
    {
      "key_rules": [
        "The python function executes code synchronously and returns the standard output (stdout) as a string.",
        "If a second argument is provided, it is serialized to JSON and stored in the SESI_ARGS environment variable.",
        "If an array is passed as the second argument, elements are forwarded as positional arguments available via sys.argv.",
        "The Python process inherits the current working directory and the virtual environment (venv/conda) of the parent Sesi process.",
        "Execution is strictly prohibited and throws a security exception if SESI_SAFE_MODE is enabled.",
        "The interpreter attempts to use python3 by default, falling back to python if python3 is unavailable."
      ],
      "code_examples": [
        "// Run simple inline Python code\nlet output = python(\"print('Hello from Python!')\")\nprint output // Hello from Python!",
        "// Passing data via SESI_ARGS\nlet data = {\"username\": \"Alice\", \"score\": 98}\nlet response = python(\"\nimport os, json\nargs = json.loads(os.environ['SESI_ARGS'])\nprint('User:', args['username'], 'Score:', args['score'])\n\", data)\n\nprint response // User: Alice Score: 98",
        "// Passing data via sys.argv\nlet names = [\"Alice\", \"Bob\"]\nlet response = python(\"\nimport sys\nprint('First:', sys.argv[1])\nprint('Second:', sys.argv[2])\n\", names)\n\nprint response",
        "// Load and execute an external python script file\nlet scriptContent = read_file(\"scripts/data_analysis.py\")\nlet result = python(scriptContent, {\"threshold\": 10})\nprint result",
        "// Importing Local Python Modules\nlet code = \"\nimport sys, os\n# Add the 'modules' subdirectory to sys.path\nsys.path.append(os.path.abspath('./modules'))\n\nimport local_helper\nlocal_helper.process_data()\n\"\npython(code)"
      ],
      "summary": "The native python function in Sesi allows for the synchronous execution of Python code and returns the resulting standard output. Users can pass structured data to the sub-process via environment variables or positional arguments, facilitating complex data exchange between the two environments. The system inherits the parent process's virtual environment and allows for the execution of external script files and local module imports. Security is maintained through a strict Safe Mode that blocks the execution of the python built-in when enabled.",
      "description": "Sesi provides a native `python` built-in function that lets you execute arbitrary Python code directly from your Sesi scripts. It allows you to seamlessly integrate Python's rich ecosystem of data science, machine learning, and utility libraries with Sesi's minimal, side-effect-oriented architecture.",
      "title": "Python"
    },
    {
      "key_rules": [
        "Safe-by-default execution: The sandbox is enabled by default, blocking system commands and locking down imports.",
        "Prototype pollution immunity: Uses prototype-free objects (Object.create(null)) for all object literals and JSON parses.",
        "Strict Path Whitelisting: Validates all filesystem and subprocess paths against a strict directory whitelist.",
        "Variable Bindings: Use 'let' for all bindings; 'const' is not supported.",
        "Type System: Supports static types including number, string, bool, array<T>, and object<T>.",
        "Module Imports: Supports local .sesi module imports and standard library modules like std/math and std/time."
      ],
      "code_examples": [
        "let x = 10\nlet y = 20\nlet result = x + y\nshow result // 30",
        "const interpreter = new Interpreter(scriptDir, {\n  safeMode: true,\n  allowLocalFs: false,\n  allowedPaths: [\"/var/tmp/sandbox\"],\n});",
        "sesi -e \"show 'hello'\"",
        "npm install -g sesi"
      ],
      "summary": "Sesi is a clean, minimal, and highly legible general-purpose programming language designed to remove unnecessary boilerplate. It features a safe-by-default execution environment with a zero-trust sandbox, strict path whitelisting, and absolute prototype pollution immunity. The language includes a native git-centric package manager and a comprehensive standard library for math, filesystem I/O, and HTTP communication.",
      "description": "## SESI IS **NOT** AN AI WRAPPER LANGUAGE. IT IS **NOT** AN AI-NATIVE PROGRAMMING LANGUAGE. IT IS A GENERAL-PURPOSE PROGRAMMING LANGUAGE WITH **OPTIONAL** AI CAPABILITIES BUILT-IN. STRONG EMPHASIS ON **OPTIONAL**.",
      "title": "Sesi"
    },
    {
      "key_rules": [
        "Keywords such as let, fn, make, and import are reserved and cannot be used as identifiers for bindings or functions.",
        "The 'make' keyword declares class-like templates where the 'start' function serves as the constructor and 'self' must be the first parameter in methods.",
        "The pipe operator (|) passes the result of the left expression as the first argument to the function call on the right, intended for data pipelines.",
        "Module resolution follows a strict priority order: script directory, current working directory, SESI_PATH environment variable, and finally the global ~/.sesi/lib directory.",
        "Variable type annotations are optional and use a colon syntax (e.g., let x: number = 10), supporting primitive, collection, union, and optional types.",
        "Execution is single-threaded per script event loop, with system-level concurrency managed through the multi-process spawn() function."
      ],
      "code_examples": [
        "let x = 10",
        "let name: string = \"Ada\"",
        "fn add(a: number, b: number) {show a + b}",
        "fn greet(name: string = \"World\") {show \"Hello,\" name}",
        "make Person {\n  let kind = \"person\"\n  fn start(self, name) {\n    self.name = name\n  }\n  fn greet(self) {\n    return \"Hello, \" + self.name\n  }\n}",
        "for i = 0 to 10 {show i}",
        "try {\n  let result = \"Hello\"\n} catch (e) {\n  show e\n}",
        "let result = 5 | increment | double",
        "import { add, multiply } from \"math\"",
        "allow \"math\" in as Math"
      ],
      "summary": "Sesi is a concise and legible programming language featuring a custom lexer, parser, and interpreter designed for minimal boilerplate. It provides a robust set of core features including variable bindings, functions, class-like object templates, and comprehensive error handling. The language is built for practicality, focusing on clean script execution, process integration, and a flexible module system.",
      "description": "Sesi is built on these core principles:",
      "title": "Sesi"
    },
    {
      "key_rules": [
        "The module must be imported using the 'allow \"std/draw\" in with <alias>' syntax.",
        "Every draw call appends to an internal buffer; rendering only occurs upon calling render() or save_svg().",
        "Shapes are layered chronologically, meaning earlier calls appear behind later ones in the visual stack.",
        "Draw.clear() resets both the SVG shape buffer and the raster pixel buffer simultaneously.",
        "Pixel coordinates are automatically floored to integers, and subsequent calls to the same coordinate overwrite previous data.",
        "File-saving operations should be wrapped in try/catch blocks to manage path or permission errors."
      ],
      "code_examples": [
        "allow \"std/draw\" in with Draw",
        "Draw.rect(10, 10, 80, 50, \"steelblue\")",
        "Draw.circle(50, 50, 40, \"crimson\")",
        "Draw.line(0, 0, 200, 200, \"white\")",
        "Draw.text(10, 30, \"Hello, Sesi\", 24, \"white\")",
        "Draw.clear()",
        "let svg = Draw.render(200, 100)",
        "Draw.save_svg(\"output.svg\", 400, 300)",
        "Draw.pixel(0, 0, \"#ff4d6d\")",
        "Draw.pixel_grid(grid, palette, 128)",
        "Draw.save_png(\"pixels.png\", 512, 512)"
      ],
      "summary": "The std/draw module provides a comprehensive suite for generating vector SVG graphics and raster PNG images directly within Sesi. It utilizes an internal buffer system where shapes and pixels are stored until a render or save command is executed. The module supports basic geometric primitives, text rendering, CSS-based animations, and palette-indexed pixel grids for complex visual compositions.",
      "description": "`std/draw` is Sesi's built-in module for creating SVG graphics and raster pixel art — no external libraries needed.",
      "title": "Drawing"
    },
    {
      "key_rules": [
        "Keep configuration and prompt contents on a single physical line to avoid statement separation.",
        "Newlines inside video() blocks act as statement separators in Sesi.",
        "The function returns a Base64 string; use write_file(path, value, \"base64\") for output.",
        "A GEMINI_API_KEY must be configured for remote operation.",
        "Unknown keys within the configuration block are ignored by the runtime.",
        "Operations are remote and billed; implement immediate disk writing and failure handling."
      ],
      "code_examples": [
        "video(model) {config} {prompt}",
        "let output = \"generated_media/clip.mp4\"\nlet prompt = \"A tiny glass robot walks through a rain-soaked neon garden, cinematic tracking shot, soft rain and distant city ambience\"\n\nlet clip = video(\"gemini-omni-flash-preview\") {ratio: \"16:9\"} {prompt}\noutput | write_file(clip, \"base64\")\nshow \"Saved\" output",
        "let clip = video(\"veo-3.1-generate-preview\") {ratio: \"9:16\", duration: 8, resolution: \"1080p\", poll_interval: 10000} {\"Vertical tracking shot of a red paper boat drifting down a rain-filled city gutter at night; neon reflections, shallow depth of field, gentle rainfall and distant traffic ambience.\"}\n\n\"generated_media/veo.mp4\" | write_file(clip, \"base64\")",
        "let clip = video(\"gemini-omni-flash-preview\") {images: \"assets/product.png\", ratio: \"16:9\", task: \"image_to_video\"} {\"Bring this product shot to life on a clean studio tabletop. Slow orbiting camera move, soft natural shadows, no text overlays.\"}\n\n\"generated_media/product.mp4\" | write_file(clip, \"base64\")"
      ],
      "summary": "The `video()` function in Sesi executes remote operations to generate MP4 data returned as a Base64 string. This functionality requires a valid API key and supports various configuration parameters such as resolution, aspect ratio, and duration. Results should be written to disk immediately using the `write_file` function with base64 encoding to ensure data persistence.",
      "description": "Sesi can generate an MP4 with the Gemini API through its AI form of `video()`:",
      "title": "Video Generation"
    },
    {
      "key_rules": [
        "Sesi scripts must use the .sesi file extension.",
        "Variables are declared using the 'let' keyword for bindings.",
        "Command-line arguments are accessed via the global 'args' array.",
        "The piping operator (|) flows the output of the left expression into the first argument of the right function call.",
        "Sesi runs in safe mode by default; the '-l' flag is required to enable shell commands (exec) and broad filesystem access.",
        "Modules and standard libraries are imported using the 'allow' keyword to maintain scoped namespaces.",
        "File, network, and process operations should be wrapped in try/catch blocks to handle potential runtime errors.",
        "The 'retry' function should be used for operations prone to temporary failure, such as network requests or filesystem contention."
      ],
      "code_examples": [
        "let name = \"Sesi\"\nshow \"Hello,\" name",
        "let files = list_dir(\".\")\nfor file in files {\n  show \"-\" file\n}",
        "if len(args) > 0 {\n  let name = args[0]\n  show \"Hello,\" name + \"!\"\n}",
        "fn add(a, b) { return a + b }\nfn mul(a, b) { return a * b }\nlet result = 10 | add(5) | mul(2)",
        "let numbers = [1, 2, 3, 4]\nlet evens = filter(numbers, fn(x) { return x % 2 == 0 })",
        "allow \"std/math\" in as Math\nshow Math.PI",
        "try {\n  let content = read_file(\"input.txt\")\n  write_file(\"output.txt\", content)\n} catch (err) {\n  show \"File operation failed:\" err\n}",
        "let status = exec(\"git status --short\")"
      ],
      "summary": "Sesi is a general-purpose programming language used to build command-line tools, automate file processing, and coordinate orchestration programs. It features a standard syntax for variables, functions, and control flow, alongside specialized operators like the pipe for data transformation. The language includes built-in support for file system management, network communication, and modular code organization through a scoped import system.",
      "description": "Sesi is a general-purpose programming language with optional reasoning features. This tutorial focuses on writing practical scripts: command-line tools, file processors, API helpers, automation flows, and small orchestration programs.",
      "title": "Sesi Scripting"
    }
  ],
  "biases": [
    0.428522177632216,
    0.9739307271924894,
    0.09954920039562269,
    0.6337027865367739,
    0.8334653087154681,
    0.3039423318144383,
    0.04615146821750557,
    0.19066934733539442,
    0.39845257337880413,
    0.4136036371828278,
    0.38509776429743503,
    0.7519562048771312
  ],
  "weights": [
    [
      -1.574356846301622,
      0.9083282042645977,
      -1.3526332221111406,
      -0.15863947834503955,
      1.8475960093310788,
      1.4640004149709491,
      1.4492354867566828,
      -1.335662274950173,
      -1.948477363151901,
      0.5001572004487955,
      -0.6702094258094284,
      1.6176162112871575,
      -1.679408717722028,
      1.788898126024638,
      -1.9659777847555953,
      0.0735422699476076,
      1.885497328259552,
      1.9738614601999247,
      -1.2516364285442902,
      -1.699705238345814,
      -0.989374405797228,
      -1.6618164662289656,
      1.035590930477606,
      0.42160620744200994,
      -1.267004746319369,
      0.5314159804265257,
      -0.9317484931843567,
      1.760858578469898,
      1.859951145764894,
      -1.144880680346513,
      0.6607186421342957,
      1.345063348627808,
      -0.7028554458561037,
      1.8009374113596102,
      0.5739557155092752,
      1.3556809742064129,
      -0.3108217947517229,
      -1.5717029858986593,
      0.6232742893352352,
      0.792665984844299,
      -1.4395393105630778,
      -0.8688769588577361,
      0.7469548878417553,
      -0.3942167732230142,
      1.379743131393706,
      1.559943373073648,
      0.5121963533775995,
      0.6242775412231336,
      -1.7951631356266562,
      -0.6234241824865332,
      1.1638774793539737,
      0.7783376108867812,
      -0.3696773730325902,
      -1.3033572105945894,
      0.2993507149456067,
      0.03094017185480169,
      -1.0041779625906164,
      -0.0066915716496813715,
      -1.0380375427686444,
      1.414027021250981,
      -1.0942316686866405,
      0.5918594717952543,
      1.587736356102479,
      1.8654640747671771,
      0.31238128258725295,
      0.5853017280629439,
      -0.06169575889192727,
      1.970326462187829,
      1.0446111492580883,
      -1.988788492129438,
      -1.2283725979546585,
      0.7179620790332208,
      -1.3028856812994758,
      1.63958569150538,
      -0.22042526753231062,
      0.0005856026228077127,
      0.5466496107484078,
      1.9050440100980506,
      0.860727749811971,
      -1.63408167368449,
      -1.235195367482378,
      -0.624700308564551,
      -1.2276228189515734,
      -0.44034431366086224,
      -1.5649674955603405,
      0.4860376848225001,
      -0.46650557423592964,
      0.9028707835178706,
      -0.5842311354936212,
      1.595294485410029,
      -1.4126111993891115,
      -1.498373084553828,
      0.673436490040086,
      -0.9616886201491006,
      -0.3683135490292271,
      -0.48364959082542036,
      -0.3735011192118809,
      -1.5430054288877124,
      -0.4757971378614818,
      0.7933210403868958,
      1.5436473814932117,
      0.30041874052393114,
      -1.0064919918910493,
      0.04502305072910273,
      -1.7374459845451895,
      1.4653679428509045,
      1.8350950339185204,
      -0.3508070684706568,
      0.99940126535254,
      -1.197191718234659,
      1.671938651804489,
      -0.42249019108036,
      -0.12796259146671585,
      1.0882948940642225,
      0.2976093493077432,
      0.0037235442413647846,
      1.2878903176009402,
      -0.09642020701984988,
      -1.4455883339713576,
      1.7038711153668218,
      -1.534746252570959,
      -0.7862874317833697,
      0.8901319068100735,
      -1.150569075660608,
      0.19620705049666842,
      -1.5197059429572874,
      0.270851141586784,
      1.7258874803971014,
      0.09328185896118013,
      -1.8164018808750804,
      1.3314949778084468,
      0.6176922200179247,
      0.46867176752121287,
      0.18358025287424518,
      0.1294386946374999,
      -0.015830283898211395,
      -1.6553011522925303,
      0.08720680588040208,
      1.2657662678491715,
      -1.3759315248603978,
      0.03479407128565892,
      0.09201151162763299,
      1.1232155565764086,
      -1.6211288678602425,
      0.8556682637319013,
      1.5795642359583901,
      1.4667055868374215,
      -0.63363722016615,
      1.464041395333941,
      1.7054230717860124,
      0.3579986812407969,
      -1.3387440114825928,
      1.715300711776453,
      -1.7742496544403146,
      -1.0478096617947776,
      0.20400702869267517,
      0.4982705975211914,
      1.6034021162482643,
      -0.8822859545101296,
      0.9302144546414075,
      -1.63350919735303,
      -0.004314982760313502,
      -0.5266260085177694,
      -1.6952103628776953,
      -0.3640836971421031,
      -0.8257993756173563,
      0.06652386455416304,
      -0.6544992449107796,
      1.2927198426825517,
      -1.8737904788808835,
      0.876628582736843,
      -1.6331249932716583,
      -0.1334715633044099,
      -1.2771566839877986,
      1.77304728387085,
      0.8059184191428899,
      1.360548775633446,
      -1.3002928340637516,
      -1.682565242898832,
      0.7915427874569918,
      1.676109935602966,
      -1.0093544003661479,
      -0.1485187367279921,
      -1.1651041573578063,
      1.528119390574417,
      0.5506512962742596,
      0.7378964084854012,
      -1.1142243357251842,
      -0.8371334711186549,
      1.2451327991190007,
      -1.7791192308173711,
      0.3407980582954351,
      1.69123892434752,
      0.6750239824069131,
      0.3415516965691814,
      -1.226254434459431,
      1.1147195753380106,
      -1.8684387230780293,
      -1.6693793049459185,
      -0.5470565524986903,
      -1.3248794621254931,
      1.256967380135134,
      1.3650165425722283,
      -0.5096424365452203,
      0.4869842959228321,
      -0.8011944052878017,
      -1.6815644354597516,
      -0.782668551074186,
      -0.5748553225111137,
      0.5473073531924864,
      -0.8292075640294962,
      0.6915375099853343,
      0.3383815046698957,
      -0.3774550589881187,
      0.3486768681254291,
      0.6388584848321024,
      0.8139379222713532,
      -1.6886186318505474,
      0.7661123703986976,
      -1.552121284883183,
      0.7291121539048935,
      -1.261240666235568,
      -0.8278046642995966,
      1.295544964559154,
      -0.2010918058364859,
      -0.9747334116337498,
      0.8187019952546373,
      -0.9811083286943627,
      1.356936520958203
    ],
    [
      -0.35090542137183256,
      -0.51155716169007,
      -0.9742548625384977,
      -0.9048898947572472,
      -1.9011864627140205,
      1.55976755096088,
      -0.17524642929545675,
      0.34768498666223646,
      -0.05231673161965089,
      1.5331578421871725,
      -1.0530073006930953,
      -0.5627686874999238,
      -0.9242071439955546,
      -1.22427311813321,
      0.48338743220402547,
      -0.6937861501717766,
      1.7952462426903533,
      -1.4371316330941668,
      0.279853476285453,
      -0.6280899604166006,
      0.545602032558421,
      0.5802527964469015,
      -0.7089494067956523,
      1.310753890089972,
      -0.6790924858502803,
      -1.5181791302984653,
      0.6191186564983129,
      -1.4098747612205962,
      0.5394609021141887,
      -0.9046093200397065,
      -1.7509522821314634,
      0.19373645953226076,
      0.1267823166870885,
      0.5247504256667086,
      0.7174599252355369,
      -1.1431082586638683,
      1.9117130878507815,
      -1.8045904518648275,
      -0.9811477927600869,
      -0.7811016967243596,
      -1.4564169980829376,
      -0.06327052557639634,
      1.2370002680863719,
      -0.08499297808700845,
      -1.623027955149634,
      -0.3327627031029716,
      -1.569482607578414,
      -0.22933006208733264,
      -0.6796497136848569,
      -0.8138273093471651,
      1.8868429265241258,
      -0.5416890739877509,
      -0.29864380535836554,
      0.670572093435502,
      -0.9447181122342267,
      -1.1823235205983695,
      1.7457335449821691,
      0.18723121300820056,
      0.9579982032183842,
      -0.17718875014802293,
      -0.5948841273045398,
      -1.8601130736759233,
      -1.1688302081363084,
      1.791419892372117,
      -1.1335201544900073,
      1.4542394145453459,
      1.299334632801124,
      -1.495399865428476,
      1.7219195911931613,
      1.5660324883735712,
      0.7411998014857231,
      -0.666480008407671,
      1.3179589182743752,
      -1.9555189537817395,
      -1.1469779609017836,
      -0.27442438504021016,
      -1.423569924924439,
      0.639284078743366,
      1.2649442497250805,
      -1.3475173379072802,
      0.40562790774254953,
      -0.7310047727012372,
      -1.178898341383031,
      -1.7576387334179278,
      0.8921110668921322,
      1.3884422448965785,
      -0.5604690352551116,
      1.2825066277996022,
      0.37573389378354216,
      -0.6013106934509111,
      0.5312768882737973,
      -1.8694814051992084,
      0.8775137428582633,
      1.5514518380651192,
      -0.5138440048408413,
      1.4120933525860084,
      -1.7851669620939887,
      0.7416550975122749,
      0.901338151476085,
      -1.351495147960521,
      -1.9543950208033767,
      1.3763789897541594,
      -1.2612171364745457,
      1.197167031006582,
      0.5320578848120694,
      -0.9871801468442589,
      -0.9592000612437434,
      0.6144203881559854,
      0.6664584988987587,
      -1.0646562696910244,
      -0.16956000706480223,
      -0.4352859652342702,
      -0.36996389678728425,
      1.2744421323784318,
      1.0450794606021931,
      0.4660499368413822,
      0.06755106782457787,
      -0.11382514012733136,
      0.555705248298342,
      0.33317151378632115,
      1.403406588502114,
      -1.6981790665092396,
      -0.4967524209846079,
      -0.4511465723303907,
      0.6620152765766449,
      -0.1916481354095776,
      1.608152983782324,
      1.2972089169980188,
      -0.7186239214167647,
      0.4859824741542669,
      0.23753607677584965,
      -1.8640989798946426,
      -0.6412826451402558,
      -1.6302703434036458,
      1.0742142310142118,
      -1.911853867218794,
      1.540478295738024,
      -0.0909101420699745,
      -1.7478716213143408,
      0.10026260540231924,
      0.6936174522569933,
      -0.2250230990492752,
      0.8336321872727392,
      -0.750374057834073,
      -1.7743425577449607,
      1.248486307332517,
      -0.417798688950334,
      -0.5154934122144552,
      1.9595898523191435,
      -1.3253071135425647,
      -1.1497235890908981,
      -0.5240491569187791,
      1.7273252132826062,
      -0.20090877289788178,
      -1.9099328063032477,
      -1.630779485882245,
      0.40164143041259326,
      1.1799308165685414,
      0.5986637853141596,
      0.5675553260487103,
      1.7624778501793998,
      -0.6327977122371067,
      -1.033873270083649,
      -0.5225819556869031,
      -1.8048084096138775,
      -0.9324254567978336,
      -1.7608402829837226,
      0.0828742055503735,
      -0.6429706274466431,
      1.9813800702893793,
      -0.6337189685578393,
      -0.8613758657545341,
      1.9252709832052854,
      -1.833625925144057,
      -0.014019223801045033,
      1.2482951774417144,
      -0.9104466638147017,
      0.28292231311250937,
      -0.5049812643677787,
      1.5780354315351057,
      0.6393311461501051,
      1.8998777717114361,
      0.5903674192572512,
      0.47747886704840425,
      -0.24108920276589263,
      1.3593827357884276,
      -0.089290205675848,
      -1.7081338169189153,
      1.111530154532543,
      -0.39298357937100015,
      1.522845388477673,
      0.8436447127101707,
      1.8469126871491932,
      0.6280712708823777,
      1.6145394916325921,
      -1.9555724604211462,
      0.8806611855964537,
      -0.3515344503462381,
      1.8213611343959322,
      -0.650124647732389,
      0.42350732150665493,
      -1.9065323909318033,
      -0.6345273079184324,
      -1.9467204475040498,
      1.7046064009438813,
      0.25662875573439664,
      -1.4210698120108796,
      -1.5962941966944562,
      -0.3979709849455957,
      1.0852779040941036,
      -0.43251000412403995,
      -1.5418864554586937,
      0.6578644869893489,
      -0.11070832678738052,
      -0.4555856284600215,
      -0.8900964908158002,
      -1.750902574173681,
      -0.5270561748398923,
      -1.9515999207700343,
      1.0784198792939597,
      1.10820502142386,
      -0.5711954373870927,
      -0.2606406457727162,
      1.9625348033883028,
      1.765529338660767,
      0.9927094931249125,
      0.2422608155172754,
      0.2068351455195545,
      0.3458164122139542
    ],
    [
      1.3158315702715524,
      0.019101506445453165,
      0.16347783705080587,
      -0.7917618234954911,
      1.6187558977070786,
      1.5179067855370576,
      -1.5440407424095837,
      -1.3256259620937696,
      -1.3753971566985306,
      -0.6396549421011359,
      1.63697557188129,
      0.09403334895006754,
      0.3537635661535301,
      -1.286324387325307,
      2.0809493433418402,
      -1.0200682024823027,
      -1.3527279327029564,
      -0.7250798823982514,
      0.7808817793658882,
      0.8899537782767108,
      -1.4762663086282304,
      -1.2037207269483186,
      0.1825578675919104,
      1.5202481002986685,
      -0.12222477274221655,
      -0.9506512390358481,
      0.35074123268285984,
      1.545778855131517,
      0.8735922639340505,
      0.1761006680605126,
      -0.18528018791707668,
      -0.8064830165538606,
      1.8231667401930003,
      0.10476207914863464,
      1.019876341788144,
      0.7239007638166983,
      -0.7230681205932283,
      -0.0898220433371284,
      -0.9686687402983618,
      -1.6936267989618234,
      1.3159229860391197,
      0.9515844567626948,
      -1.4454854693999524,
      1.3920117857371124,
      1.1299229603848597,
      0.24314671529053022,
      1.4313219120229994,
      -0.2607668724758043,
      0.7589111407798215,
      -1.4727401763418513,
      -1.3477507968008213,
      0.7228725669220859,
      -1.2093373734420396,
      0.7363000880466224,
      -1.2868313047515207,
      0.9783049585401535,
      -0.17248730398033763,
      1.4217238735043516,
      -0.5701737598691579,
      1.1026097683837839,
      -1.8444840519161132,
      -0.046875619116365286,
      1.7574856383042703,
      1.6691510199325665,
      -1.4562577150838125,
      -1.2068195438705147,
      0.5974973257595728,
      0.4375953841938798,
      0.42020923056671267,
      -1.226370708274703,
      -1.78464620060095,
      -0.0698417279866268,
      -1.2282203302383876,
      1.5811518129399396,
      -1.2658853629941347,
      -0.7419020620953791,
      -0.16707179845536801,
      -1.0628313455918064,
      -1.9920924637296515,
      1.6581806268414065,
      -1.580164461856394,
      0.9647046578826557,
      -0.9530458964712474,
      -1.7118749976202774,
      1.6693662324043386,
      -1.3113637776939577,
      -0.12167942720052505,
      0.014187255500514695,
      -1.5548019919045455,
      1.954085531830882,
      0.22625323951971588,
      -1.9491446312432177,
      1.084163800532627,
      1.1066961306476433,
      0.9465121014894184,
      1.9502031099397257,
      1.7234294322593564,
      -1.8578013917032616,
      -0.16327495226144206,
      -0.16629884800712347,
      -1.3779472576566971,
      -0.7249789181136892,
      -1.9843366307404837,
      1.093714038652807,
      1.1294659731710437,
      -0.757990786713524,
      1.8374674272303082,
      0.9661111856374336,
      -0.9752726371456539,
      0.08093188968191534,
      1.2922101431408546,
      -0.02504245567293273,
      -0.3868952767558196,
      -0.5925429998067684,
      0.9442179226376357,
      0.8422977097038764,
      1.2261790186136854,
      -0.4472212326871592,
      0.05109764018848706,
      1.05587678433126,
      -1.3737342790495939,
      -0.626557476106929,
      0.5503024399140481,
      1.2364393398162559,
      -1.5440714634883914,
      0.4022265890544361,
      0.48515706439071016,
      0.5452125749290126,
      1.5112804720473632,
      -0.3236827085130556,
      0.29152684164171827,
      1.6985745827380074,
      -1.290812813687821,
      1.2902469993944203,
      0.5785171295731848,
      1.1610830982249363,
      -0.9384616972435538,
      -1.2823211470302271,
      0.758674082465622,
      1.039976298684247,
      -1.60037592877288,
      -1.2111339990432786,
      0.36137663723938873,
      1.2365276412973274,
      0.19480124945574184,
      -1.8075517136173742,
      1.106899870455881,
      0.3911220199525407,
      0.7899236331096011,
      -0.4715999172229881,
      -0.4120832849343521,
      1.5423697955488387,
      -0.8588486646868163,
      -0.9820094507293708,
      0.4431407832467298,
      -1.0061479157192927,
      -1.2096159135483013,
      -1.506038154330148,
      -0.015804611221565068,
      0.0657267073761969,
      -0.9498359076947809,
      -1.5525456152223964,
      -0.5431528041797535,
      0.6591882327332068,
      1.8673667918070715,
      1.9756057928511397,
      1.7840251845759796,
      -0.3837674051940083,
      -1.4390942031130018,
      1.1681149273062172,
      1.207256861760544,
      0.8386510353130276,
      1.8892085552738664,
      -0.5000805505972363,
      -0.000042988151192524526,
      1.0029730204351006,
      -0.55213075243039,
      -1.0813481093925628,
      0.5881198714569162,
      -0.0007715809923474204,
      0.6563121980430981,
      0.50723240807051,
      1.2492315612076408,
      1.7487531565194439,
      -1.8193186902744056,
      -0.5623365780846465,
      -1.8831323070331694,
      -0.6039400854814443,
      -1.1369021483979331,
      1.524734743547162,
      -0.17144411116271696,
      -0.2318883431527805,
      -0.13376500574064565,
      -1.7253427062303732,
      1.0035575159846228,
      -1.003390821848929,
      1.7557597452258014,
      -1.2448282246263096,
      1.556397027499988,
      -0.1938635699958371,
      -0.5010114612188517,
      1.0149464244907214,
      1.1388313024753907,
      0.566650711600007,
      0.9403189728656165,
      2.035592886643672,
      -0.54653925678805,
      1.469500290009659,
      0.02391291140706464,
      1.2839758650445114,
      1.7210940076997052,
      -0.16423783922844004,
      -1.0151583471111092,
      0.4463314244790486,
      -1.3354685137680322,
      1.6559383271788022,
      -1.1974659261641767,
      1.1679277719916321,
      0.6996618903130427,
      1.7170326925986652,
      -1.987891074482048,
      -0.30507635816735457,
      1.5706184063669988,
      -0.8687101591209561,
      1.0561902215324088,
      1.1799803981201098,
      0.8455227576295417,
      -0.2178287215728858,
      -1.4668608195169464
    ],
    [
      -0.5657270175929453,
      0.005807086628196602,
      0.3397130692750858,
      0.9395759074192966,
      0.0962928230175244,
      -1.232252471953461,
      -0.22491605460784797,
      2.165962078571339,
      1.0163756689503498,
      0.38644689850144553,
      1.7825140707611808,
      -1.1799533624149188,
      -0.9404783478584686,
      -0.7415460345284308,
      -0.5571431673743463,
      -0.5774739536579299,
      -0.5468819818738795,
      0.8907131001182407,
      -0.6694944596323853,
      1.6279637770048554,
      1.6870656894781275,
      -0.9205731025633113,
      -0.016144841715854508,
      -0.18711504360191045,
      0.6023734444495688,
      1.3931064822520152,
      -1.6345751718126715,
      -0.3113371686132318,
      -1.5352251998924382,
      -1.8264439204476255,
      0.8362668214848035,
      0.15335318598348757,
      -0.1724178191223089,
      1.394907856249393,
      1.9289300744880595,
      1.5915736106751255,
      1.3404611244544387,
      -1.9646633066796335,
      1.1341062171682195,
      -1.8677049826354106,
      -0.19021005071600916,
      0.9222688529759155,
      0.6930228995148671,
      -0.7604311256937852,
      -1.009950227424834,
      -1.135866509254369,
      -0.9605573218490906,
      -0.4712323767843496,
      1.7008985570499409,
      -1.2201391516306774,
      -1.0921330914667426,
      0.11797215882411205,
      -0.3941589085088273,
      1.8347092839676353,
      1.514725347822726,
      -0.3179963686712761,
      -1.3665749358552568,
      -1.7375110017363529,
      1.49496884628826,
      -1.2353210457288508,
      -1.66506959088365,
      -0.5578111874413466,
      -0.18808349007212888,
      0.7583017065221429,
      -1.3575334951730995,
      1.7789332425194897,
      -1.7872587044712152,
      0.8699761851042296,
      -0.39047547204505423,
      -0.07225182141654063,
      -0.19681109775626515,
      -0.02240731084249692,
      -1.2187322378750283,
      1.7577823343385055,
      0.7925283625328032,
      1.6872967057553159,
      0.7094845551509579,
      -0.1940487828101798,
      -0.8745290804991499,
      0.8513105174697988,
      -1.779756098254928,
      -1.970839414140407,
      1.0760685658037485,
      1.2176637815854376,
      -0.6177805340396771,
      -0.18941884027499212,
      -1.2388681860124806,
      -0.42595712855239576,
      -0.2669795846843481,
      -1.721182771864243,
      0.20903394057751878,
      0.5244589991059976,
      -1.271529669995977,
      -1.892604094346698,
      1.044202764670981,
      0.9085628952462357,
      -1.502083586207286,
      1.6611753993845562,
      1.4357915789084625,
      0.8373215275497938,
      -0.4680752521847369,
      -1.2367067797748907,
      -0.11246196530189279,
      -0.4194301716302724,
      0.5634063369049493,
      1.0045127895375447,
      0.066776216037983,
      -0.6292290320458349,
      0.4195238522200557,
      0.3091918801248599,
      1.8332157065439523,
      -0.8661474323920855,
      1.2352754823874559,
      -0.1281199747215669,
      0.7487116291347697,
      -0.5050065376885593,
      0.476781574579598,
      1.0315108358211487,
      -1.3334562961292629,
      0.25184558461956685,
      0.23131761789542882,
      0.7281850283711346,
      -1.4998102181966422,
      -1.5853664501294973,
      1.489139508021868,
      0.13412346937038455,
      1.5470922977606834,
      -1.3942154397669642,
      -1.765983679820279,
      -0.7874558462829713,
      -0.14737262215116465,
      -1.1775536245419533,
      -0.9419121714012313,
      -1.1394680737899132,
      1.7463715586488293,
      -0.8734571620638358,
      1.0698348947750325,
      0.7133460673966181,
      -0.3314366283097949,
      -1.335194144612439,
      1.7441934047196428,
      -0.043660297813592486,
      -1.1851112121722678,
      1.2442078570827257,
      1.4448095844285187,
      -0.6143280697790461,
      1.292634646070824,
      1.7802879733801031,
      -0.5661227841769914,
      0.6851315534295006,
      -0.03170463834692905,
      0.47997202088323876,
      1.273830985252585,
      0.7952604253369664,
      1.374018051749812,
      -0.8402389600826585,
      -0.8701120214085338,
      -0.8259566849295581,
      -0.46405631071353604,
      1.1598796310428048,
      -0.729438794492268,
      1.589417216971225,
      0.8961968677089471,
      0.21672335497479178,
      -0.6349437761196239,
      0.8240506318292353,
      1.215076055636632,
      0.5730857212594089,
      -1.8649709787367295,
      1.191687286467292,
      -0.9422843319974477,
      0.936797238895346,
      -0.6140133720938321,
      -0.21134683261858145,
      1.6769665509797447,
      -0.49446440964771954,
      -0.22875310045844532,
      -1.1012958725696995,
      1.392845902562922,
      1.4489885496184178,
      0.7252505644199503,
      -0.043662041642891225,
      0.5644748052442901,
      -1.4556737025072937,
      1.728347972816798,
      1.9557929958731775,
      1.656804549972851,
      1.613846749852537,
      0.06004979944224198,
      1.7743275557895606,
      -0.5238284242737028,
      1.2029034552034643,
      1.7380726295021725,
      1.5237692636852778,
      -1.3000964476758452,
      -0.3541113657989814,
      -0.959831701480828,
      1.9125627607816988,
      1.442999550484874,
      1.1107239148949901,
      -1.9888681844282514,
      1.2969694521858641,
      0.196041761406073,
      -0.8239855379105352,
      -0.04308522685948679,
      -0.46848567486782633,
      -1.7799954094315789,
      0.793034968562814,
      1.0917054164171747,
      -1.7032333515742781,
      -0.8797167418087093,
      0.7611288539701055,
      -0.88381305259061,
      1.3616409916182044,
      -0.2392721755518057,
      -0.298600294794261,
      -0.8011091631572418,
      -1.0206908603137435,
      -0.7658990678893396,
      0.4022383278424875,
      -0.30534089507343243,
      -0.15388035042521553,
      -1.1572956149663272,
      1.5698831820690198,
      -0.4555379388751102,
      1.3765241479867387,
      -0.3156805913081038,
      -1.988521718541576,
      0.27003382565369893
    ],
    [
      -1.7233870024757807,
      0.02638387921781904,
      0.2212544049616869,
      0.26941853510967695,
      -1.5857925311047256,
      -1.9924404401692195,
      -0.2606327171885036,
      -1.0694870910661622,
      1.5660595415218586,
      -1.809101187623368,
      -0.18326348758355016,
      0.5694002434899801,
      -1.853022170514322,
      -1.0444481070258678,
      -0.9272425455873661,
      -1.7511761367546805,
      -0.1791294816815192,
      -1.4483664777920482,
      -0.46184209869232895,
      1.705425686100586,
      -0.480471439214939,
      1.719730822124108,
      1.7093450989725145,
      1.8584697901713856,
      1.3297895464314653,
      0.7752001629459708,
      -1.4729207656620145,
      -0.05407861492874355,
      0.32964743704759103,
      -1.3695074286624407,
      0.6193881535827059,
      1.4103963886943318,
      -0.2327530638800388,
      1.9905181724038243,
      0.41833690688132474,
      -0.7316489538586468,
      1.5740116217607494,
      -0.536700291392691,
      -1.1205063861977629,
      -1.48206602634462,
      -0.23780278550425926,
      -1.1151183074995177,
      -1.265488908828532,
      1.48861779440143,
      0.059445846773553246,
      0.6103708194387996,
      0.540189039542454,
      1.0600680231146007,
      1.0947955387765473,
      -1.148566027459646,
      1.9573818341785527,
      -1.7732110267965147,
      -1.0344654059944127,
      0.5746047935585632,
      0.9952731854264218,
      -1.2733110376374666,
      -1.4875504039578735,
      0.8231176042761863,
      0.03509859433166129,
      -0.39858326141630407,
      0.47043107887595426,
      -1.4368673033588957,
      -1.2665521709621603,
      0.8828443036914706,
      1.9499094090083857,
      -0.19595612726323663,
      -0.8060604262290387,
      -1.6295837598732947,
      2.766965420540585,
      1.5000500903276244,
      0.7893269830018972,
      1.6394132271565045,
      1.2740109188105246,
      -1.6480878891823432,
      -1.0908870750401096,
      0.9520466630719642,
      -0.6176386499398019,
      -0.7007342731697102,
      1.6667003071962272,
      -0.2624874883392754,
      -1.4616114349562408,
      -1.927507262880316,
      0.7537496516757072,
      0.5452676238139684,
      -1.6217350756218618,
      1.1937501257557335,
      -0.05741231143356096,
      1.0654237048766877,
      0.3419252291713497,
      0.01931467828148392,
      -0.5217979955141594,
      -1.4443359446504749,
      0.8653472856732511,
      -0.4075999538795876,
      1.8906207875679537,
      1.3088413753016428,
      -1.8391351076977251,
      -1.8127179994220417,
      1.6601891144489658,
      -0.4015934319404666,
      -1.5515072034277213,
      1.6876209210137878,
      -1.712069088877409,
      1.7976269971160193,
      -1.0306072841935667,
      0.7168337719497773,
      1.0628563611499557,
      -1.6907646764304234,
      1.1536560007928833,
      -0.7842914244650872,
      0.2819024392596208,
      1.7585213090625618,
      0.15526672347183545,
      -1.6936090383702722,
      -0.34201767964873797,
      -0.9650234063539189,
      1.3351831386305668,
      0.5609107998539131,
      -0.462714156219282,
      1.6670118183183376,
      -1.0660492422236052,
      1.2327542892931467,
      -1.8607187312360907,
      1.4267802785376764,
      -1.074351354472129,
      1.0711880417340351,
      -0.22138378321558827,
      -1.2512242296858513,
      0.8747372213162783,
      0.3945364976542223,
      -0.6235377962274167,
      0.5344368878555934,
      -1.2653470837453051,
      -0.6107583831060217,
      0.20489024173753245,
      1.85902602050637,
      -1.8431175017266637,
      0.4496328238647638,
      0.8439784661123078,
      -0.2524326944456088,
      -1.8553706098287646,
      -1.2272918970738607,
      1.429100459935707,
      -1.955480141831187,
      0.17057100547954152,
      -0.11390688917752323,
      0.2762281372187285,
      -0.07732888668054283,
      0.7192479458821635,
      -1.6974116445575609,
      1.971559650234814,
      1.8444481407683986,
      1.6311659221571904,
      -1.378278624934338,
      -1.4925566020621748,
      -1.0444520812886244,
      -1.0152339295589372,
      -0.42869930212384944,
      1.3403265742935067,
      0.9267482945604497,
      -1.6159284299017558,
      0.895677139123539,
      0.2563711138087812,
      -1.2204598917647655,
      -1.6584893682701836,
      1.5411886099788261,
      0.899984029825418,
      0.30196751730367133,
      -1.8729924505257705,
      0.6398793226111943,
      -1.0533840129635523,
      -0.8964682467732596,
      1.0257509380054155,
      0.4669761777739154,
      1.5362428391159768,
      1.0165981030801254,
      1.3511171138861315,
      -0.8605373509072467,
      0.2861914872555098,
      -1.7503648600074242,
      1.755687918452558,
      0.04914402311551358,
      -0.8559864865409912,
      -0.8958208324033152,
      -0.6136873529466098,
      0.30336740142842267,
      1.6848688722204264,
      1.0778820058555107,
      -1.3242085889180215,
      -0.32408103411772293,
      -0.7247314125103452,
      0.010946694649429694,
      1.5595278610315475,
      0.07694586454036934,
      -0.158373797320444,
      -0.5611449831062139,
      0.8078010575268513,
      0.10974188267770302,
      1.8396400232573487,
      -1.1880959248178815,
      -0.28217140636066107,
      -1.6381138392039145,
      -0.14410779602580126,
      -1.4696511027952717,
      -0.9784345210740883,
      -1.38814435950927,
      0.3975515351101091,
      -0.8376336316744766,
      -0.07470338013692812,
      -0.10548482762810085,
      -1.3787678968658788,
      -0.972603739726436,
      -1.7603710119965483,
      -0.7883644045969156,
      0.847984769557236,
      0.7983976767181589,
      1.8951139377030017,
      -0.02974166667325795,
      -1.8606984322309694,
      -0.48528667164066164,
      0.6779626672562422,
      -0.5258233141348292,
      -0.09745333162944592,
      1.7628268437224022,
      -1.2020551077969386,
      -0.9097125418155594,
      -0.9758981627229724,
      0.5470245616731431,
      1.4042626532577804
    ],
    [
      -0.8981593915254935,
      1.9451095520570747,
      0.09203922582331359,
      -0.11753272657232605,
      -1.484601562103561,
      1.4757344852283434,
      1.9739023918474599,
      1.7400082231561196,
      -0.23340546630527292,
      -0.7580094829030832,
      -0.013942596672424923,
      -1.2935342242567072,
      -1.3622963521836677,
      2.0919223956973902,
      0.789391234949524,
      0.7191939035857535,
      -1.548114299005778,
      0.5962629705137066,
      -1.7504788837767356,
      -0.5963077842659379,
      0.6952876938852479,
      0.2055489878279131,
      1.5636228421523128,
      1.4901898920844219,
      -0.28924592175633723,
      1.1422231108430263,
      1.8748394616112871,
      1.4165543994148728,
      0.3666629459944793,
      0.37236489634740577,
      -1.6365688648486485,
      0.8736498156545216,
      1.6110733616029032,
      0.08264078741563424,
      0.2255202160488241,
      1.7606520933779763,
      1.108055934617096,
      -0.07246227832782644,
      1.6034675978442512,
      1.8056022878260558,
      0.6698397394459228,
      -0.8196591979739414,
      -0.9462029297934964,
      -0.7693484905673955,
      0.9902122969229592,
      0.7156540682800507,
      -1.4535841040008433,
      -0.1682996860479098,
      -0.23848240171747248,
      -1.9309720957184768,
      -0.38709779840655756,
      -1.2258637792511653,
      1.6142133213422398,
      0.9117414590265374,
      1.077230740162411,
      -0.2733936008869855,
      -0.29345618321009015,
      0.9597133376176736,
      -0.5610873470668616,
      -1.4151593370869686,
      1.6392391055148043,
      -1.4579997375327722,
      -0.704581453107127,
      -0.25586408417555884,
      1.8391565247687889,
      0.8538246984684537,
      0.97691869284863,
      0.052690765817048124,
      -1.08871792343461,
      -1.0936610641942202,
      -0.5904081568167046,
      -0.5202476279007056,
      1.1549234726261695,
      1.380206255322276,
      -1.4328001924877691,
      0.8711353761072016,
      -1.1864978529225612,
      0.24730446192058197,
      -1.8566357140734358,
      -0.014435779448378483,
      1.0274289697319139,
      -1.4806157947762424,
      -0.9336139471040092,
      0.5331109894647001,
      -1.005092692465658,
      1.812030520835441,
      0.0736638473049398,
      0.28888315931232,
      -0.8349860380077807,
      -0.8634240323491378,
      1.7587914217890401,
      -1.6557203863826064,
      0.8335019717983223,
      0.900979569132752,
      -1.5730170763415314,
      -0.36171637076844965,
      1.805536985453767,
      -1.130699789219979,
      1.4962497277709432,
      0.356136081118438,
      -1.9846914821349353,
      -0.9219094164501822,
      0.12861432925759386,
      -1.9605427714829524,
      0.6722713145098593,
      -1.8598219724885765,
      -1.476218457369158,
      0.933625017741003,
      0.2695651259701668,
      -0.2069609905502463,
      0.3272574690386755,
      -1.6146760376467353,
      -1.0619699249784644,
      0.22221406288263035,
      -1.5758166417755641,
      -1.0365702134852324,
      -1.3131594323786793,
      0.6491383311119723,
      -1.330269022591236,
      -0.9991842445836019,
      -1.8670747833061965,
      -1.0923431169090385,
      0.06324563660729243,
      1.9046851545369963,
      -1.9482977415517602,
      -1.3929348654123541,
      1.644978904765313,
      0.2410384434058792,
      1.1812847511637714,
      -0.6413049362310601,
      -0.49779940155928726,
      0.6513321986396807,
      0.5674554963640315,
      -0.8793252515062693,
      1.6342239594033496,
      0.32246303876537796,
      0.9748758681542831,
      0.8727090901012304,
      -1.7051786866471663,
      -0.8640818936501571,
      -1.2880814224735064,
      -0.16994044139973008,
      -0.9347743454626234,
      -0.5320651889658654,
      -1.0455283433543539,
      0.9517850206361609,
      -1.071957240628128,
      1.3774864071163426,
      0.5039478597277269,
      0.4244017065597028,
      1.1072187381031755,
      -1.3445437177497834,
      -1.5592656375747707,
      1.5429529388903878,
      0.34704561670337997,
      -1.4723881086238833,
      -0.023882967351195994,
      1.0279996962510656,
      1.3429948878616518,
      1.5275206379296877,
      1.1890582892290502,
      1.7785105035321034,
      -0.8521759719626951,
      0.2790885744190419,
      -1.3390054946889003,
      0.6815672219944511,
      0.6268845383153612,
      -0.11160350710766176,
      -0.7128345917071823,
      1.168395937402166,
      1.5058624609834035,
      -1.548807043067478,
      -0.44801396163825613,
      -0.7703169863599744,
      0.8722031604458644,
      0.3704745449698259,
      -0.9011271480410077,
      -1.102020307224759,
      -1.7181752079430805,
      0.21087057527552044,
      1.5569608152362933,
      -0.44530246153758046,
      -0.116541876110003,
      1.9891647776006982,
      -1.1989237284252412,
      -0.6952945598568028,
      -0.5933030941233617,
      1.8073229681190357,
      0.8763027521305071,
      0.18317830567962234,
      0.03297838883103177,
      -0.1691486899958674,
      -0.6521155211140308,
      -1.5375050325637178,
      -0.6552032869423408,
      -0.7334599000861992,
      -1.2748026075534606,
      -0.02486419479999258,
      0.08347121875516139,
      0.2268941585042139,
      1.3021633364951066,
      1.748428199832071,
      -1.9745868499095538,
      -0.5974990287466735,
      1.366691855866525,
      -0.13384475897393197,
      -0.15159570658076094,
      0.20439939320117606,
      -0.3851065978038593,
      1.8301015716457227,
      -1.261107188557296,
      1.8119688809185321,
      -0.24437443003226722,
      -1.7269837505718928,
      -1.5056817558949525,
      -0.12639929130897798,
      0.39916608063600245,
      -1.9784727413045333,
      0.21477035681790468,
      -0.6785479331405773,
      1.8988090169886318,
      -0.1125965903057442,
      1.0770307884337127,
      1.5215508290888726,
      1.4203248013040817,
      0.45340330621632985,
      1.3487661214320004,
      0.16155898757638276,
      0.2466510903167074
    ],
    [
      1.5289105852603768,
      0.14796252438493873,
      -0.05198427279622253,
      1.1162585438989987,
      -0.9975500237735595,
      -1.0000077566720376,
      1.8101693168822302,
      1.0940421537942056,
      -0.7841532264903837,
      0.9869943594851507,
      1.8354520937642107,
      -1.2453281988980067,
      1.2603354856669928,
      -1.6787958360857989,
      0.6353637809980639,
      1.118844739599353,
      -0.3878431168902359,
      -1.1218797703769048,
      1.7552860663872702,
      -0.6254937060727639,
      -1.292510250767842,
      -1.2048753344932406,
      1.01504653565905,
      -1.1152559322505482,
      0.9530478801452942,
      -1.1730252792150289,
      1.6455451869643176,
      1.756876077135448,
      -1.0477527867649745,
      -0.9481851759938067,
      1.3331564272748935,
      -0.6701400708439137,
      -0.5040694013643825,
      1.1667150393943588,
      0.6466388285095923,
      0.651367521521594,
      0.6392003577412285,
      1.8245510897408836,
      0.6409158561517052,
      1.3411729486277797,
      1.8088186067949898,
      -0.9979212764558851,
      -1.0896403610045944,
      -1.7464187548336496,
      1.809944558305156,
      0.9827167336491152,
      0.11201562378528696,
      1.7421802704951195,
      -0.852395472765795,
      -1.6135112071509776,
      -1.0698759960255577,
      -0.8786404635805258,
      0.45529073733069714,
      -1.0402460553753041,
      0.42311202615349863,
      -1.1649896744037416,
      -0.2181144423178174,
      0.18661155653503103,
      1.8606844226456154,
      0.3827523674933673,
      1.907919208410744,
      -0.5607389240125951,
      -1.993228125552291,
      0.0877098328132524,
      -1.4755102910383635,
      -0.8529072154373929,
      1.2244976286807994,
      -1.6142994768975427,
      -1.995734291697243,
      1.5599079043547892,
      1.6938944160415788,
      0.43931368669254756,
      -0.040491556531457196,
      -0.6301547458944312,
      -1.9062961652219212,
      1.7671244801899024,
      -1.448644236321429,
      -0.9287721684709456,
      -1.4769772165558952,
      -0.4342832532471075,
      -0.25270740200339814,
      1.3005689845563224,
      1.980838898870818,
      0.6704108846788861,
      0.6294393472381414,
      0.8235357815026099,
      -1.4886382887608325,
      -1.3284732122781295,
      -1.0751117739039757,
      0.27319836749691584,
      0.9595780803694054,
      -1.9600447740296736,
      1.898928773467817,
      -1.181450934340008,
      -1.363316585629203,
      1.487872965438831,
      -1.3660765307400875,
      -1.2522645733414968,
      -1.4259891922709818,
      -0.4540979946695316,
      1.3361499678558526,
      -0.4269586431356638,
      -0.6383758074712276,
      -1.4163770250570002,
      0.03380915585947841,
      0.1484819333059031,
      -0.42449215150337016,
      -0.7674023439816593,
      0.9477494183231481,
      -1.7896637931457748,
      -0.08439312263460375,
      1.2116538925167706,
      -1.229408500018569,
      0.8790212935370807,
      -1.2727185942113004,
      1.4152428141767426,
      1.6390982214222682,
      1.5254162919434298,
      -0.1551778328793043,
      0.5573116319378344,
      1.9234195624179118,
      0.9761595256493822,
      0.6214651514755127,
      -0.9597995967062536,
      -1.2203594060746816,
      -1.2113131265003814,
      1.5280303402634892,
      -1.762183255436494,
      0.8044158770401206,
      -0.9826331187561848,
      0.7893472926504863,
      -0.43951246090461726,
      -1.773198187640939,
      -1.5944001885835961,
      0.6940778402894696,
      0.473579011521712,
      -1.863387952365816,
      0.4567909460530841,
      1.4433437769595252,
      -0.571618985318588,
      1.89677786513982,
      -0.11675269429473856,
      0.6775608858932269,
      -0.26176624670688486,
      0.8155901192583417,
      0.017035650895286913,
      1.9755724878805676,
      0.07402609990240627,
      0.8363608407508623,
      -0.036362982194241056,
      -1.3380628182231709,
      -0.4759243904024757,
      -0.5403785282029374,
      0.7028258146820865,
      1.8049025574189246,
      0.21908512989321638,
      0.8335803912460968,
      -1.7354945322610464,
      -1.4735171719985924,
      -0.9488218089475962,
      -0.9786648085948073,
      -1.974144451810795,
      -0.43363682867460307,
      -0.6455758160230904,
      0.751045470130117,
      -1.1761098764460178,
      -0.18257525380383033,
      -1.6932104466804239,
      0.5994871886146944,
      -1.5768491347902605,
      0.5123529983912438,
      1.7160593681998093,
      1.0801570568647545,
      -0.21455604823122343,
      0.16489088145466546,
      -1.6634827009391042,
      -1.3018743029482138,
      1.9514573919866982,
      1.3139853557987915,
      -1.7770971530633939,
      -0.054104971075669805,
      -1.7742288173271703,
      0.12934206936623793,
      1.8843176340215217,
      0.30135578585653233,
      -0.30011032688312955,
      -0.5252906645015596,
      -1.30717796276104,
      -1.6179712223420006,
      -1.2761582835270024,
      -0.8297345698374841,
      -0.6100939581899927,
      -0.591092928821324,
      0.22944524221050333,
      -0.11676994709663724,
      -0.07378504158588406,
      0.017243152217324642,
      -1.7835874715504194,
      1.4325396258922223,
      0.6224662989925114,
      1.39011842861723,
      -1.9732625510668829,
      -1.062888199984263,
      -1.2449908068102782,
      -0.6827457549056617,
      -1.769700805402056,
      -1.5411685562171553,
      -0.04220751175150106,
      -1.9794118977122674,
      0.5620064137838106,
      -0.16599710327393336,
      -0.24622790764254798,
      -1.3427409244683859,
      -1.4158661378379822,
      1.3004245092805222,
      -0.6782690830363238,
      1.0870648664359157,
      0.762934747784163,
      0.8634647168414573,
      -1.2429331692172156,
      -1.8102786334570906,
      -0.24292693260708287,
      1.7076924165989054,
      -0.5755096560778679,
      1.7549673434201911,
      -1.0433065476710888,
      1.4203958595812,
      -0.016456686796226805,
      -0.6140751901024188
    ],
    [
      -0.03751900504798149,
      1.7149421623840198,
      -0.19481521215770092,
      -1.396541259056388,
      0.5665731156888625,
      0.5412884363437214,
      1.9093754393870337,
      -0.4094456833500906,
      0.8484212131602358,
      0.48902668951960093,
      -0.30263506317684286,
      -1.2757192296598343,
      -1.0901548997355035,
      -1.1895312522626336,
      -0.25265913049075417,
      0.36147679976849734,
      1.5790709156055578,
      1.376653477337106,
      1.7240171108191729,
      -0.30777199193695015,
      1.8923613932497156,
      0.5732294060182057,
      -0.18444911854447232,
      -1.0144596406223134,
      0.716265631763402,
      1.0514160721683075,
      -1.842459491394071,
      0.33596771372937395,
      -1.9901515856304677,
      -1.3187657618529895,
      -0.28375612398004524,
      -1.0146851260655168,
      -0.8363098698591283,
      0.8687860633497264,
      -0.9815738493700257,
      -1.7986215472517912,
      1.568733943230788,
      1.302618850226109,
      -0.02260380688140362,
      -1.2347953145015502,
      1.2096526680862176,
      -1.6056776555559753,
      0.9930274111377515,
      -1.8888751833171353,
      1.4372078839952307,
      -0.6077082045613684,
      0.5166788770692654,
      -1.1918774625359858,
      0.9264479463720035,
      1.7814333344717679,
      -0.753300177863645,
      -1.0966017169705817,
      -0.01759861264713214,
      -1.937907090471696,
      -0.9899724768289833,
      1.834943157057129,
      1.2769700967639044,
      -1.0054144348174021,
      -1.8892660568772564,
      0.4392321792944629,
      -0.7429638887322008,
      -1.6590870018533854,
      1.0231290031499256,
      1.670843430715875,
      -1.342775721465622,
      1.5779424017064811,
      1.4530153610732888,
      0.8602993768585967,
      0.594303991588943,
      1.9675254466552006,
      0.5992836909752115,
      0.4406517883965182,
      -0.581708251175836,
      1.7974391989388403,
      0.22680337598882927,
      -0.17507312958034582,
      -1.0821367484290678,
      0.8863911457545237,
      1.6589605364192028,
      -1.711598752271732,
      1.7630772750088797,
      1.0584774634117404,
      -0.8435037258583651,
      0.45617679605732997,
      -1.3529114753508056,
      -1.2280013464345823,
      1.1912621636595109,
      -0.1543428687541799,
      1.6985403720037513,
      -0.36841824138340407,
      1.7876374548637788,
      -1.4494053251123868,
      0.679424990314538,
      1.1257821327005515,
      -0.5823868628540496,
      -1.6663534493654115,
      1.0166275779488836,
      -0.05536286487315101,
      -0.9350910312229228,
      -0.266298132661285,
      0.3027557017322624,
      -0.6579953870407174,
      -0.05227101939971135,
      -1.548583407646932,
      0.47918891703474076,
      -0.021910196473941657,
      -1.140002803467619,
      -1.84837710828924,
      0.9247834786199709,
      -1.8135162713836168,
      -0.9438433013166811,
      0.13850388738766695,
      0.2370515774427977,
      0.967234481255606,
      -1.7429223937081275,
      -0.46807057471328095,
      1.0263045577295218,
      -1.6263319471644184,
      -0.19395511257965037,
      0.3282785145466356,
      -1.4927331080852388,
      -0.7729559020211481,
      -0.683451543194241,
      0.6557444095528115,
      -0.13129780781091105,
      1.0535212862071788,
      1.816313561009777,
      0.3165529427416054,
      1.8518803547565676,
      -1.8985627205506153,
      -0.43825169830913824,
      0.9261988974810875,
      -1.1540303554990832,
      -0.3292079427297647,
      1.3290493670290142,
      -0.03941261282691899,
      -0.6280837064238285,
      -0.9493868769345144,
      0.4952471465979986,
      -0.04596680122219565,
      0.8318225583072296,
      1.1382751481983702,
      0.8321660918236371,
      0.2241592179276659,
      0.46115715540641355,
      -1.0608448092820812,
      -0.9673309855868388,
      0.3018731723858914,
      -0.9132701963367342,
      -0.765289973758208,
      -0.5340274137270775,
      -1.6183285513378407,
      -0.6810087825485809,
      0.7360987125070975,
      -0.42765635281565206,
      0.8591868826330757,
      0.3739320145924778,
      -1.3815050003534335,
      -1.2825986788206043,
      0.8449839286675305,
      -0.8325601494086587,
      -0.4667889503526328,
      -1.9487833160655272,
      -1.8356860058616733,
      -0.17197871722269742,
      -0.8403781870341791,
      -0.7614696294951666,
      -0.7109812068783712,
      0.8651626899773408,
      -1.9668875201647742,
      -0.5169678113164218,
      0.22896948887676594,
      1.674102893873851,
      -1.1861260801861269,
      0.6490504568821414,
      -1.024363212432379,
      1.0152236651918245,
      -0.6358701404814782,
      -1.4930626307220405,
      -1.0968392809075111,
      1.4277566724675421,
      1.1621909901448406,
      -0.8882935826608849,
      0.0077433832483486675,
      -1.1133670808769476,
      -1.100661990590523,
      -0.47059041109200006,
      0.8197701174144996,
      1.4634294883164767,
      -1.4394403126936712,
      0.8530940454903182,
      -1.4836627460116603,
      1.15118235022282,
      -1.0414062328728133,
      -0.1939694743843341,
      -0.8745164744881375,
      -0.031649935230168236,
      1.0197381763566549,
      1.8016215860228493,
      1.7807449176400434,
      0.5526946222318321,
      -0.19487422483575845,
      1.0487604509615758,
      0.30565363743717056,
      -1.261315107640117,
      0.5304335427689404,
      1.440717888623431,
      0.009875672257407597,
      1.3315751732869825,
      1.656986593424819,
      1.1356253467573687,
      -0.24662622328232464,
      0.8742022801589262,
      -1.3439193103044245,
      -0.7416916815016261,
      1.753515022432509,
      0.4538332181565057,
      -0.47397182025969764,
      -1.0672088729675226,
      -1.8402865824739307,
      1.4549650784200079,
      -0.8051373448810777,
      0.8428955759503656,
      -1.2400575705671595,
      0.03322221234678402,
      1.4872796194211486,
      -1.607754103683677,
      -1.5346437171311047,
      1.1153434583912039
    ],
    [
      -0.4144243341471869,
      1.768473382507807,
      1.0752690695024725,
      -1.0949876837709942,
      1.7084977624690874,
      1.9540887656339132,
      -0.44500448036386275,
      1.7854800452749975,
      0.15579181020407962,
      -0.29665268166729186,
      -1.1395035611206041,
      -0.8111953325226593,
      0.551935598879358,
      -1.1001751799563528,
      -0.41582779929921454,
      1.0565989146278976,
      -0.914519363049684,
      0.9620596085875337,
      0.37666577276715874,
      0.07700391737856993,
      -0.27480763732555813,
      0.20375610898719776,
      -1.3051200823737719,
      0.666535399580714,
      1.2919160559261913,
      1.8604279197410283,
      -0.40744817195955685,
      -0.03698971986425281,
      0.27788876831215464,
      -0.0534603717004809,
      0.6766470364716812,
      -0.12555830528305162,
      1.5923729256155323,
      0.8905528808722064,
      -0.04104103568574563,
      -1.1770969479417879,
      0.678956501193452,
      0.574100824722847,
      -1.49074363546652,
      -0.7330699064819441,
      -1.329424687833876,
      -0.055490479708603324,
      1.6687515905693022,
      1.905852048244776,
      1.0273975487016753,
      1.1019873595756353,
      -0.051999814967552016,
      1.572619614303583,
      -0.8019486281166377,
      -1.6057950533877268,
      -1.1538732579164517,
      0.8369648951089932,
      1.374345709051935,
      -1.7737645998168832,
      -1.4535872582957463,
      -0.849506666625937,
      1.8442533562322696,
      -1.6932088508348997,
      0.8227788526733679,
      1.7451321049189445,
      0.21052495833481988,
      0.9782103827732769,
      0.4676507377163994,
      1.6525024375117403,
      -1.129632823902103,
      0.4341985094290144,
      1.0910260261660132,
      0.8451742679884746,
      1.6626966477901415,
      0.6995277120434769,
      1.932968015033476,
      -0.06541148456133028,
      1.5226828476157208,
      -0.6400190337276852,
      0.8034463023195277,
      -1.539942754289584,
      0.6159496483294014,
      0.28938301023454693,
      -0.944637554887422,
      -1.521341413867455,
      -1.4944856214338218,
      1.4081577749989789,
      -0.12568781209213187,
      -1.4402172300554201,
      -0.42446651878434283,
      1.098857166867671,
      0.15904815619928314,
      -0.1366933672818158,
      1.1575090972341902,
      0.3401379440805363,
      -0.9795121576175054,
      0.933455674375502,
      -0.5638162473332229,
      -1.2161293877485373,
      0.6932157382621398,
      -0.22547057289265027,
      1.3647022444884191,
      1.2262079282429652,
      -0.2070610903686343,
      1.2609855764753952,
      -0.9298110484244564,
      1.3603473971716622,
      -0.4521394066797728,
      -1.0912735197415935,
      -1.1287587006013187,
      -0.2189295364664261,
      -0.5514265866963338,
      0.9199001939822602,
      0.6799484834678364,
      -0.3783867534700147,
      -0.36212390740189676,
      -0.27214657131823916,
      0.4383038241260815,
      -1.9182825244302126,
      -0.6578289031632045,
      0.053384698392325625,
      -1.7179242288590668,
      -1.195060426578213,
      -1.2717246728305414,
      0.426995527551151,
      -1.5283290522605593,
      -1.1335102579838146,
      0.0609248480573048,
      0.7550907223599754,
      -0.4296887669863163,
      -1.272810469099643,
      1.4137952636084785,
      -1.4474302089298248,
      0.22596238425845083,
      1.5094529645416919,
      -0.9651350139772781,
      0.2778993610450553,
      0.04257312658447887,
      -1.2332505539308416,
      -1.0370318628050619,
      0.03528097074843295,
      1.5581485561244053,
      -1.119705033166161,
      -1.3351383481418093,
      -0.8115728519265266,
      0.16498228172002394,
      0.27690379176444413,
      -0.6415747147428217,
      2.22118178083233,
      -0.5442447671908304,
      0.15051370893249416,
      1.947600916348379,
      -1.6263816898127628,
      0.09717818620623353,
      -0.7314492445525125,
      0.027713460510324417,
      -1.9333096357500263,
      0.3984609470291107,
      1.6048439319880012,
      -0.48036331226363194,
      0.5187741048258303,
      -0.5056344870104863,
      -0.36389322924011935,
      -1.6287502630965562,
      1.5783613220889916,
      0.36366576986179355,
      -0.5229992032799196,
      0.13797629081537055,
      0.9320604465119411,
      1.7019767158148067,
      -1.2607238439693438,
      -1.1325507383350146,
      -0.22581557679070352,
      0.5725955416942807,
      -1.7147399049098868,
      -0.5844560032943806,
      1.7344115522667884,
      1.1756012414519605,
      -1.9203338005697828,
      -1.1471924917982972,
      0.28237325255290724,
      0.8609304793584709,
      -0.2830117774998553,
      1.4674158227869571,
      -0.44019755003264915,
      1.7396165457054749,
      -1.8165557249747497,
      0.72809805430891,
      -0.8372621847175599,
      -1.0359736210554455,
      1.4462540956994543,
      0.21964761465786076,
      -1.0951135542102226,
      -1.0829379310133924,
      1.4712395024272902,
      1.7233634196602678,
      0.5055888001285926,
      1.144548668179854,
      -0.7408908725568928,
      -1.4479047162404597,
      0.6383146552445096,
      -0.7667423386422274,
      -1.7870064161959114,
      -0.21359768305894722,
      -1.461868588774311,
      -1.623227461750778,
      -1.156235671736198,
      1.8300875932693041,
      -0.5555464638048524,
      -1.9972840966811023,
      1.8406880676077737,
      -0.1739613986864641,
      -1.6658079243269435,
      -0.3354825764403446,
      -1.6719725521231226,
      0.5214633329781653,
      -1.0999576817571173,
      -0.09234576891591795,
      0.541808070859155,
      1.6457758879983562,
      0.6239504443253661,
      0.07773914693884532,
      1.3771926408604487,
      -0.22888890371868298,
      0.6967163196339472,
      0.7900612044527477,
      -0.13588408884973102,
      -1.431947764886751,
      -1.8395951514585214,
      -1.0347952472868558,
      -0.6325414776396316,
      -1.0186694477474285,
      1.559405108033895,
      -1.6314574282948637
    ],
    [
      -1.213121522165547,
      1.6305278792317326,
      0.8903734143617585,
      0.09202615406390269,
      -1.1714162675217548,
      -1.9726258793061038,
      1.6353567482251998,
      2.0494932404972155,
      -1.916891984969467,
      -1.334251985942346,
      1.01302334502867,
      -1.465906799077473,
      0.4818305767080369,
      -0.19743063912916892,
      -0.25620908922696284,
      -0.7918537527638128,
      -0.703841000356419,
      -1.8459343491542297,
      -1.6160958935961998,
      -0.2510283018711177,
      0.8194073495675509,
      -0.6427581063222334,
      1.2746563912346494,
      0.30169299990139864,
      1.9064253435933112,
      -1.9740751220025725,
      1.4250512730679987,
      -1.6602974848280936,
      0.11066831948807154,
      0.010823283530111194,
      -0.2914474401874383,
      -1.4783417639977565,
      0.7847512631634561,
      0.31083421814708456,
      1.9008999299619318,
      0.19981195787550288,
      -0.4063467669788987,
      1.8902082774914843,
      1.7156660273499358,
      0.5542038498410036,
      -0.9703340244941252,
      0.1139460805763422,
      1.7970947590068316,
      0.5650473757997077,
      1.1239502742301775,
      -0.5468004964752433,
      -0.8824511218530371,
      1.2265581283369111,
      1.3061162725583246,
      -0.44038176868152945,
      1.3491107934400115,
      1.9794845846219769,
      0.2496445013063444,
      -1.5790946862696082,
      0.5795389117943399,
      -1.4331857643426718,
      -1.6229717257593061,
      1.3407501758289264,
      0.7919604764392392,
      -1.1080783038292439,
      1.5807845267814655,
      0.22658458863312703,
      -0.22180981487219587,
      -0.9665242481748262,
      0.7061451055982269,
      0.48304292931672466,
      -1.1745715010284785,
      -0.08426532030857858,
      1.1603572443990404,
      -0.4234028677564834,
      -1.1839396457672007,
      -0.04348746329894082,
      -0.4812144483568761,
      -1.372251413462025,
      1.3216469838169336,
      -1.8207907830327819,
      -0.3720594796052894,
      0.5390042089220155,
      0.6215102328683662,
      0.7618726296013496,
      -0.7729938747136011,
      1.5900064027452134,
      -0.8281922904180061,
      1.3694498401093975,
      -1.4393068575746262,
      0.8856803419326762,
      -1.8058936165113764,
      -1.8363982462694635,
      -1.615504207905548,
      -0.5851210198702961,
      -0.21084537992033425,
      0.5897915618539837,
      -0.12442794588004169,
      -0.6024095923345518,
      -1.496050832357327,
      -1.574811752850128,
      0.5444367410303892,
      -0.3684612186245735,
      -1.4065518690603072,
      -1.7277849372771352,
      -0.8770950077067767,
      -0.9551701165618955,
      -0.7040837557025572,
      0.20250301968155027,
      -1.4430027052277041,
      -0.5283880503944687,
      0.8445257163238966,
      -0.6272302866466588,
      -0.7153960692138686,
      -1.4597815731579913,
      -0.5012020184043089,
      -1.7090514006529705,
      -1.7847408043144033,
      -0.5694798141083917,
      -1.7224596598500255,
      1.8998602041169095,
      1.5917698006090197,
      1.796925036761392,
      -0.89171442353511,
      -0.8840093863923788,
      -0.6559255876994365,
      -1.2623328001005922,
      -1.7674300822913929,
      -1.4554815235394334,
      1.6767324348078159,
      0.12442651088394685,
      1.2529882128131953,
      0.9906515639782434,
      1.2325962217640956,
      -0.9495600708879119,
      0.10123350403164855,
      1.5935702933754978,
      -0.057626665042461056,
      1.007273841225186,
      1.5208994698386986,
      1.6174329643059528,
      -1.5223145033229932,
      0.29747172095704544,
      0.22719145392807238,
      -1.546145914992275,
      -0.5038052569120071,
      -1.7330253946390628,
      0.7652859653894004,
      0.8539786772720297,
      -1.0116490253949273,
      -1.6248128080776638,
      -1.9687427780429307,
      -0.5541828748880877,
      -0.4722808612399403,
      -0.44026214142823683,
      0.7353771571429926,
      -1.3834748645925155,
      -1.230657709108136,
      1.3456758267003592,
      0.78197209007925,
      1.3920506183290073,
      -1.4298881005957766,
      -0.07901404871528461,
      0.6900086154123293,
      0.19976966468024937,
      0.43120466819404024,
      0.6793712306173121,
      -1.527082016571652,
      0.5696087121410573,
      -0.21866424801913453,
      1.0275755370291995,
      0.8198785925785144,
      -1.0598095476814748,
      0.756471738675736,
      1.2344564994937028,
      -1.7164382510295457,
      0.2558532784646381,
      1.65778036487852,
      -0.37259861383377313,
      1.4540922030706525,
      -0.18065321194468087,
      -1.8808194717928828,
      1.8565585706485375,
      -1.902212636173282,
      1.2470431177022125,
      -1.8830815444108957,
      1.932771137836065,
      -0.8617664899702615,
      -1.1855848391202972,
      -0.6413602688269142,
      -0.21261632965409216,
      0.11170942279316565,
      0.4548474136401582,
      -1.301756782067824,
      1.9949347111318363,
      -0.7168447952546941,
      -0.5434618284523212,
      -0.4516795049460791,
      -0.4685900879356799,
      -0.7624553178402942,
      -1.7750143346544034,
      1.721813051785238,
      -0.8439814268476669,
      0.7171464155832132,
      -1.03115041163719,
      0.05583909240193874,
      -1.9889093690538853,
      0.7252937206948378,
      -1.1263343818357234,
      -1.2751695068816735,
      -1.1632637157697792,
      0.5844396325551795,
      1.6916687426739685,
      1.3077109354968597,
      -1.2585086515081763,
      -0.16292069602166004,
      0.9112610234013121,
      0.03499140961160707,
      1.7053026357672505,
      1.7468493000103398,
      0.8385113315154777,
      1.943630050882582,
      1.2325890197889167,
      1.249436850543554,
      -0.8545149409048673,
      -1.9098784858530529,
      1.459769520732804,
      -1.7795382315218857,
      1.2776989987282033,
      0.9884211432362431,
      1.4560616979702785,
      1.8469230750381125,
      1.306878010105629,
      1.6598190704980635
    ],
    [
      -1.6448334769626523,
      1.0322743627603934,
      -1.924198239210401,
      -0.8609263632692534,
      -0.974994157157691,
      -0.387267860990407,
      -0.9763261780735265,
      0.8523771129266884,
      0.5775332782622264,
      -0.5986312019980491,
      -1.3122831261299566,
      -0.5611943422785011,
      -0.04448506758507298,
      -1.4254975207806306,
      1.356789701523422,
      0.05848774561525749,
      1.6398996070479641,
      1.0206960031755106,
      0.6836444263604478,
      -0.18516676420115852,
      -1.1938415381213456,
      -1.1404817388658777,
      1.8536305171120069,
      -1.500464025217402,
      1.7357401965395804,
      -1.4593110932844882,
      0.576315122531176,
      0.6047244682808959,
      0.5249021719676201,
      -0.5928052120486877,
      1.2318569222572449,
      2.001687525983829,
      1.2106012792420322,
      0.05108585302704464,
      0.8859577762644508,
      -0.07887447567471713,
      0.1442653309060975,
      -0.8260590427940113,
      1.8488198300550653,
      -1.145439841293105,
      1.815279105328199,
      -1.886724103917984,
      -0.3132764829688499,
      1.7088137947197866,
      1.4296156842758907,
      -1.6171559853714181,
      -0.6205455740651997,
      -1.8708637793635043,
      -1.548229074318237,
      -1.7850536826613164,
      1.2354115810634738,
      -0.6110908497150866,
      1.3605147616617583,
      -0.42703727753258613,
      -1.222363705766225,
      1.7898863104852905,
      1.6403766492311296,
      0.38791871563595093,
      -1.6170433002252,
      0.9108329901547321,
      1.033386887823132,
      -0.19850967239680584,
      -0.7633190186678718,
      1.750135802521934,
      -0.5687156231322206,
      0.8170824643698809,
      -1.9409337414620067,
      -0.16827880831187825,
      0.9063574738006237,
      -0.26607049513849956,
      1.681520529517381,
      -0.778000929714775,
      -1.224849901690101,
      1.7850034489853353,
      -1.6990614814894092,
      1.5693798159419439,
      -1.164237137305817,
      -1.7916408249279034,
      -0.053772054065113206,
      -0.28696155663420564,
      -0.6210268560279166,
      1.9625290790098147,
      -0.9743304764867817,
      -0.31538923097497307,
      -1.5750683820353646,
      1.479531612844792,
      0.12659754901685893,
      -1.9078167317423413,
      -0.5323606430178138,
      -1.2323425241413086,
      -0.19996207952939526,
      1.6580751688404876,
      0.025438354457547163,
      1.8473084522945453,
      0.6694602319244396,
      1.9911769098652488,
      -1.2352672332620287,
      -0.6830350394751243,
      -1.220520261907522,
      0.5764464164355094,
      -1.7720691644308064,
      -1.360421414278945,
      0.7076575964665626,
      1.0251356442388548,
      -0.8302907234964456,
      -1.341387448121901,
      -0.04810804860752427,
      -0.9702605769702424,
      1.0159773752773011,
      -0.7061696906105173,
      0.4479651737558381,
      1.4831214259500753,
      -1.4311006550489682,
      0.5978171168931428,
      -0.5808130037490011,
      -1.1750799261911662,
      -1.040191018100884,
      -1.0948275620420551,
      1.9681358215618578,
      0.23271670005491396,
      1.9700997118425172,
      -1.657768538062129,
      1.121532045700191,
      -1.3992519596140953,
      -0.8030044190933774,
      -1.2596086160368896,
      -1.328395230676429,
      -0.692278224678704,
      1.0222538563431267,
      1.9414598617987724,
      1.6304167908736722,
      -1.8243379012685215,
      -0.06281824296425276,
      -1.7275136081400522,
      0.5863904041324637,
      -1.1879503595426968,
      -0.9100042213848947,
      1.29730064651906,
      1.4791480459867659,
      1.2655996630434885,
      -1.771937368806158,
      1.5663877620308138,
      1.4710382529759678,
      2.1391040834566177,
      -1.7607917167772107,
      -1.6119575950195983,
      -0.3566410565518163,
      -1.1455277067802472,
      -0.9694985776371396,
      1.4210422889914391,
      0.3581276199127723,
      0.24040592365153435,
      -1.9344911021753646,
      -1.117380285293125,
      -0.6302612202395714,
      -1.2496111992262815,
      0.18499704538670603,
      1.1000301795291514,
      0.9208431083181989,
      -0.167220574297533,
      -0.2833515955234289,
      -1.5001525740636046,
      1.412487820300926,
      0.07821524255755152,
      0.675531842487989,
      -1.6199315964946042,
      -1.9004308186127514,
      1.9867009542234015,
      -0.21489785001775674,
      0.49558023118033745,
      1.0237427578394298,
      0.156289972729581,
      0.07636681087534347,
      1.3506631116821048,
      -1.8781569798148334,
      -0.6605312749400469,
      0.8656446200504166,
      0.22542346470935115,
      -0.5668815168014607,
      1.9014407031081282,
      -0.6610998307606575,
      -0.47699992775885436,
      1.9617913402480291,
      -0.2610283126256929,
      -0.5967207941455319,
      1.2338042118545567,
      -0.7233081934033332,
      -1.0751727638505333,
      -0.7076429695989894,
      1.7943241650435255,
      0.6281848109188486,
      1.6101406774159046,
      -0.1462296366467304,
      -0.6660133511111814,
      -0.08911163814051593,
      1.411903361728018,
      0.029468122796945995,
      -0.45546330249782896,
      -1.0403042467030437,
      -1.070926955378388,
      -1.3952741014245986,
      -0.6447070623168272,
      -1.1840008418683312,
      1.6764700595463822,
      -0.8979317658069261,
      1.7234884566784197,
      -0.7006462618665075,
      -0.16587093615010007,
      -1.6507028638137893,
      -0.7234839451631032,
      -1.0764596519004184,
      1.9856303143141338,
      0.1864601669462176,
      -0.8528651044401396,
      -0.10736096716752996,
      -1.6627406368504727,
      1.5355327407836081,
      -0.46513720246157186,
      -0.23031714326401875,
      -1.5404362416575892,
      0.6816395664702775,
      0.9381799902619954,
      1.187690190212657,
      -0.6731900481793827,
      1.7785303168517799,
      0.2623497060485622,
      0.5709871157458677,
      1.329117240973578,
      1.0461452965355371
    ],
    [
      -0.4832336370164377,
      -1.7781634401451965,
      0.18126998348287016,
      1.5904299623990892,
      -0.15100188549159466,
      0.9925080167117661,
      1.0833334073297172,
      -0.017747473813636436,
      0.6562740533294478,
      -0.2644507667426046,
      -0.448612380111963,
      1.5792194272675064,
      -0.7224214456890342,
      -1.2914854436372338,
      -0.773944730781738,
      1.7026508149572073,
      -1.3064186295052318,
      -1.815959074791527,
      1.43452786732583,
      -1.7886624977765027,
      0.28654254250517175,
      -0.048111969169917224,
      1.0962591927120218,
      -0.5856929416260352,
      1.7681109561083597,
      -0.7588902027148032,
      0.17287455003549557,
      -0.04331268134385491,
      -0.6960218940135782,
      1.4277074433752808,
      0.3872715844967818,
      -0.44132475980587654,
      0.7979829890619144,
      1.0537202100034864,
      -0.7094773890716972,
      0.9919687185604422,
      -0.44233068082883237,
      -0.9554263088600119,
      0.5166791982190717,
      1.9384446735786525,
      1.7868832037955382,
      1.5822187853031067,
      -0.9024229482779393,
      0.4276887031933425,
      1.7712460388249105,
      -1.4353717302314086,
      -1.0903401686122813,
      -1.3525761524622295,
      -0.7448576631945638,
      -1.1984976335604371,
      1.4874163894964176,
      -0.5567747353955914,
      0.39870138984501535,
      -1.0577759862310239,
      -1.1379234438852874,
      0.90086731831923,
      1.6130339683748494,
      1.2064230808326752,
      1.5938714967056553,
      0.06642565032007752,
      1.940369901120703,
      -1.699006357840894,
      -0.8820049001282362,
      1.6607402535735942,
      0.10725267809012351,
      -0.4053292076893249,
      -1.6476288021120848,
      0.7794460083851003,
      -1.9227492145823621,
      0.517055548763619,
      0.2570215269626561,
      0.026597352404897467,
      1.0964011399457942,
      0.9147586768080709,
      -1.3452094396916294,
      1.0387608131292803,
      0.6901184464335155,
      1.4835332345967998,
      -0.6075514931796171,
      -0.6284790930119057,
      0.2046678136275526,
      -0.7522770966942076,
      -1.2892499272749518,
      1.6676952990085492,
      1.2314253021661163,
      1.197617487647018,
      -1.8886890309670776,
      0.7882554415325829,
      0.38811739857050664,
      0.47770819853021473,
      1.388644156247424,
      -1.068620924205924,
      1.6315603464550175,
      0.3029738675345377,
      -0.007850161813188539,
      1.0814481548335033,
      -1.3690440316506622,
      1.982544935698284,
      1.1319523434072565,
      1.7648519396362565,
      -0.596128282401621,
      0.2928811229401651,
      -0.5165044859283503,
      -0.7465373939495996,
      -0.8521221731789432,
      -1.405749377928207,
      1.9187105003565432,
      -1.0923551121828143,
      -0.5543810431875533,
      1.9245580105932452,
      2.428982620082807,
      0.6255010226136246,
      -0.38342183052401024,
      -0.8817193341692602,
      0.1786821699386798,
      -1.3826761627846111,
      -0.4704371447900999,
      1.7330063144895633,
      -0.40391497095837847,
      -1.946243502671396,
      1.347360468337997,
      0.38419642646745356,
      1.1660115797004527,
      0.8469476182729472,
      -0.47734970255508813,
      0.5626075030800357,
      -0.13805165449903267,
      1.0817733221939574,
      -0.7617936186765197,
      0.04448510867674793,
      0.5642891891352304,
      -1.7791695612834784,
      1.897643813263795,
      -1.467409213499912,
      1.6125899484889423,
      -1.9173666231152717,
      -0.4864714096718288,
      -0.7052511139090081,
      0.802439453747851,
      -0.8206383381268316,
      -1.000619516095644,
      -0.4655966335203421,
      1.2350294940180357,
      0.7111541141735241,
      -0.16369496297846453,
      -0.15877938791570845,
      -1.6960677744124442,
      -1.9762227998540634,
      0.6492484723817395,
      1.855345902421992,
      0.17445365358906217,
      0.039280412867242376,
      1.6328110133059504,
      1.2104652663992455,
      -1.4756998931294958,
      1.8980431958306414,
      -1.340256715549927,
      0.4549876719128454,
      0.3719874041362501,
      0.705843284701952,
      -1.4587497259351383,
      -1.9642474394726248,
      1.6697601270231184,
      -0.5806437986733615,
      0.741261064041534,
      1.7578492260548062,
      0.6374764279175369,
      1.5741537752487762,
      -0.8162598466677027,
      0.8122936798717002,
      -1.7531231835438952,
      -0.33787544385872126,
      -1.123028104101886,
      1.75211412159102,
      -1.3513179393009978,
      0.20769754969037857,
      -1.108061973273093,
      -0.6044650430612135,
      0.16763349435686337,
      0.34925807582224344,
      -0.46642368212837293,
      -0.5775895131175437,
      1.4267075997908116,
      -0.5897150747063273,
      0.8876253250322232,
      -0.33216117286475155,
      1.4180612726115758,
      0.8185095863770186,
      0.5094336536224935,
      1.8006090666594345,
      0.8196310546727101,
      1.4143455583651043,
      0.8618845229019607,
      0.8500565808125136,
      -0.8658445890155773,
      1.7283730812816436,
      -0.5403041925720098,
      0.3491798149089629,
      0.376332914739653,
      -0.8535979854386433,
      1.5377980230864798,
      -1.9773518251701572,
      -1.8426742981412354,
      -0.03067566934703736,
      -0.708588051153487,
      0.6070832304284663,
      1.9815773271121588,
      -0.7320380931613863,
      -1.5958467905178817,
      1.9032300435159688,
      -1.1309009351825359,
      -1.9692727035809283,
      -1.09177682496053,
      0.5961516461138485,
      0.044610080990628465,
      1.9148706764723014,
      -1.9845230715984772,
      0.29910870144006596,
      -0.11483196262394602,
      1.4708710715693396,
      0.0644379306742322,
      1.827007142481372,
      1.4219330175739069,
      0.37716709041554397,
      -1.024982695889848,
      1.9326898417515395,
      0.769092300784521,
      -0.6748079689702702,
      -1.517752179567316
    ]
  ]
}