diff --git a/Docker/src/golden_dataset_v2.json b/Docker/src/golden_dataset_v2.json new file mode 100644 index 0000000..148c8c8 --- /dev/null +++ b/Docker/src/golden_dataset_v2.json @@ -0,0 +1,302 @@ +[ + { + "id": "GD-R-001", + "category": "RETRIEVAL", + "question": "What is AVAP and what is it designed for?", + "ground_truth": "AVAP is a Turing-complete Domain-Specific Language (DSL) architecturally designed for the secure, concurrent, and deterministic orchestration of microservices and HTTP I/O. It is not a general-purpose language. Its hybrid engine and strict grammar are optimized for fast HTTP transaction processing, in-memory data manipulation, and interaction with external connectors. AVAP has no internal print commands — all data output is performed through the HTTP interface using addResult()." + }, + { + "id": "GD-R-002", + "category": "RETRIEVAL", + "question": "How does the if() conditional block work in AVAP? How are blocks closed?", + "ground_truth": "AVAP uses if() / else() / end() for conditional logic. The if() command evaluates a comparison between two values using a comparator operator (==, !=, >, <, >=, <=, in). Every conditional block must be closed with end(). The else() block is optional and handles the false branch. Example: if(saldo, 0, \">\") executes the true branch when saldo is greater than zero, otherwise the else() block runs, and end() closes the structure. AVAP also supports a mode 2 where a full Python-style expression is passed as a string: if(None, None, \"user_type == 'VIP' or compras > 100\")." + }, + { + "id": "GD-R-003", + "category": "RETRIEVAL", + "question": "How does AVAP handle external HTTP calls? What commands are available and how is timeout managed?", + "ground_truth": "AVAP provides RequestGet and RequestPost for external HTTP calls. To avoid blocking threads due to network latency, AVAP requires a mandatory timeout parameter in milliseconds. If the timeout is exceeded, the destination variable receives None. RequestPost(url, querystring, headers, body, destino, timeout) executes an HTTP POST storing the response in destino. RequestGet(url, querystring, headers, destino, timeout) executes an HTTP GET. Both commands allow calling external APIs without additional drivers." + }, + { + "id": "GD-R-004", + "category": "RETRIEVAL", + "question": "How do functions work in AVAP? What is the scope of variables inside a function?", + "ground_truth": "Functions in AVAP are hermetic memory enclosures. When entering a function, AVAP creates a new dictionary of local variables isolated from the global context. The return() command acts as a flow switch: it injects the calculated value to the caller and releases local memory. If used inside a startLoop, it also breaks the iteration. Variables declared inside a function are only visible within that function — they are not accessible from the main flow or other functions. AVAP has three scope types: Global Scope, Main Local Scope, and Function Scope." + }, + { + "id": "GD-R-005", + "category": "RETRIEVAL", + "question": "What are the three types of variable scopes in AVAP and what are their visibility rules?", + "ground_truth": "AVAP uses three scope types: Global Scope contains globally declared variables, accessible from anywhere in the program and persists for the entire interpreter process lifetime. Main Local Scope contains variables declared in the main flow — accessible within the main flow but not from functions or goroutines, and disappears when script execution ends. Function Scope is created independently for each function invocation and contains function parameters and locally created variables — only visible within that function, not from outside, and is destroyed when the function terminates. If a variable does not exist in the visible scopes, the engine produces a runtime error." + }, + { + "id": "GD-R-006", + "category": "RETRIEVAL", + "question": "How does concurrency work in AVAP? What are goroutines and how are they launched?", + "ground_truth": "AVAP implements an advanced system based on lightweight threads (goroutines), allowing the server to process long I/O operations without blocking the main thread. The go command launches a goroutine: identifier = go function_name(parameters). It creates a new isolated execution context and returns a unique identifier. Goroutines follow the same scope rules as normal functions — they can access Global Scope and their own Function Scope, but cannot access the Main Local Scope. The gather command is used to collect results from goroutines." + }, + { + "id": "GD-R-007", + "category": "RETRIEVAL", + "question": "What is the addParam command and how does it capture HTTP request parameters?", + "ground_truth": "addParam captures input parameters from HTTP requests (URL query parameters, request body, or form data) and assigns them to a variable. Syntax: addParam(\"paramName\", targetVar). It reads the value of paramName from the incoming HTTP request and stores it in targetVar. If the parameter is not present in the request, the variable receives None. It is the primary mechanism for reading external input in AVAP since the language has no direct access to the request object." + }, + { + "id": "GD-R-008", + "category": "RETRIEVAL", + "question": "How does the startLoop / endLoop construct work in AVAP?", + "ground_truth": "startLoop and endLoop define iteration blocks in AVAP. Syntax: startLoop(varName, from, to) where varName is the loop counter, from is the start value, and to is the end value inclusive. The loop counter increments by 1 on each iteration. endLoop() closes the block. Example: startLoop(i, 1, 10) iterates i from 1 to 10. Variables modified inside the loop are accessible after endLoop. To exit a loop early, you can set the counter variable beyond the end value (e.g. i = 11 inside a loop that goes to 10)." + }, + { + "id": "GD-R-009", + "category": "RETRIEVAL", + "question": "What is the addResult command and how does it build the HTTP response?", + "ground_truth": "addResult adds a variable to the HTTP JSON response body. Syntax: addResult(varName). Each call to addResult adds one key-value pair to the response object where the key is the variable name and the value is its current value. AVAP has no internal print commands — addResult is the only way to expose data to the caller. Multiple addResult calls build up a JSON object with multiple fields. The HTTP status code is set separately via the _status variable." + }, + { + "id": "GD-R-010", + "category": "RETRIEVAL", + "question": "How does error handling work in AVAP with try() and exception()?", + "ground_truth": "AVAP uses try() / exception() / end() for error handling. The try() block wraps code that may fail. If an exception occurs inside the try block, execution jumps to the exception() block instead of halting. exception(errorVar) captures the error message into errorVar. The end() command closes the structure. Without a try block, any unhandled exception stops script execution and returns a 400 error. With a try block, you can handle the error gracefully — for example by setting _status to 500 and returning a structured error message." + }, + { + "id": "GD-R-011", + "category": "RETRIEVAL", + "question": "What is the replace() command in AVAP and how is it used?", + "ground_truth": "The replace() command performs string substitution in AVAP. Syntax: replace(sourceString, searchValue, replaceValue, targetVar). It replaces all occurrences of searchValue in sourceString with replaceValue and stores the result in targetVar. Example: replace(\"REF_1234_OLD\", \"OLD\", \"NEW\", ref_actualizada) stores \"REF_1234_NEW\" in ref_actualizada. The source can be a literal string or a variable name. The command does not modify the original variable — it always writes to targetVar." + }, + { + "id": "GD-R-012", + "category": "RETRIEVAL", + "question": "What are the reserved keywords in AVAP that cannot be used as identifiers?", + "ground_truth": "AVAP has the following reserved keywords that cannot be used as variable or function names: Control flow — if, else, end, startLoop, endLoop, try, exception, return. Function declaration — function. Concurrency — go, gather. Modularity — include, import. Logical operators — and, or, not, in, is. Literals — True, False, None. Using any of these as an identifier will cause a lexer or parser error." + }, + { + "id": "GD-R-013", + "category": "RETRIEVAL", + "question": "How does AVAP handle string formatting and concatenation?", + "ground_truth": "AVAP supports two main string operations. Concatenation uses the + operator: result = \"Hello, \" + name produces a concatenated string. String formatting uses Python-style % operator: log = \"Evento registrado por: %s\" % nombre substitutes the variable value into the format string. Strings support single and double quotes. Escape sequences supported include \\n (newline), \\t (tab), \\r (carriage return), \\\" (double quote), \\' (single quote), and \\\\ (backslash). Note that \\n inside a string is a data character, not a statement terminator — the physical EOL is the only statement terminator in AVAP." + }, + { + "id": "GD-R-014", + "category": "RETRIEVAL", + "question": "How does the encodeSHA256 command work in AVAP?", + "ground_truth": "encodeSHA256 computes the SHA-256 hash of an input value and stores the result in a destination variable. Syntax: encodeSHA256(inputValue, destVar). The result is a 64-character lowercase hexadecimal string representing the SHA-256 digest. Example: encodeSHA256(\"payload_data\", checksum) stores the hash of the string \"payload_data\" into the variable checksum. The input can be a string literal or a variable. It is commonly used for integrity verification, password hashing, and generating checksums." + }, + { + "id": "GD-R-015", + "category": "RETRIEVAL", + "question": "How does AVAP handle date and time operations?", + "ground_truth": "AVAP provides two date/time commands. getDateTime(format, offsetSeconds, timezone, destVar) gets the current date/time, optionally applying an offset in seconds and converting to the specified timezone. Example: getDateTime(\"%Y-%m-%d %H:%M:%S\", 0, \"Europe/Madrid\", sql_date) stores the current Madrid time formatted for SQL. getDateTime(\"\", 86400, \"UTC\", expira) gets the current UTC time plus 86400 seconds (1 day ahead), useful for expiration timestamps. stampToDatetime(unixTimestamp, format, offset, destVar) converts a Unix timestamp to a human-readable string. Example: stampToDatetime(1708726162, \"%d/%m/%Y\", 0, fecha_human)." + }, + { + "id": "GD-R-016", + "category": "RETRIEVAL", + "question": "What is the AddvariableToJSON command and how is it used to build JSON objects?", + "ground_truth": "AddvariableToJSON inserts a key-value pair into an existing JSON object variable. Syntax: AddvariableToJSON(key, value, jsonVar). The key can be a string literal or a variable. The value can be a string, number, or variable. The jsonVar must be an already-declared variable typically initialized as \"{}\" via addVar. Example: addVar(mi_json, \"{}\") then AddvariableToJSON(\"status\", \"ok\", mi_json) adds the key \"status\" with value \"ok\" to mi_json. It is commonly used inside loops to build dynamic JSON objects iteratively." + }, + { + "id": "GD-R-017", + "category": "RETRIEVAL", + "question": "How does the getListLen command work and what is it used for?", + "ground_truth": "getListLen retrieves the length of a list variable and stores it in a destination variable. Syntax: getListLen(listVar, destVar). Example: getListLen(registros, total) stores the number of elements in registros into total. It is commonly used before a startLoop to set the upper bound of iteration, enabling dynamic loops that adapt to the actual size of the data. Example pattern: getListLen(mi_lista, cantidad) followed by startLoop(i, 0, cantidad) to iterate over all elements." + }, + { + "id": "GD-R-018", + "category": "RETRIEVAL", + "question": "How does the randomString command work in AVAP?", + "ground_truth": "randomString generates a random string of a specified length using a character pattern. Syntax: randomString(pattern, length, destVar). The pattern is a regex-style character class defining which characters to use. Example: randomString(\"[A-Z]\\d\", 32, token_seguridad) generates a 32-character random string using uppercase letters and digits. Another example: randomString(\"[a-zA-Z0-9]\", 16, token) generates a 16-character alphanumeric token. It is commonly used for generating secure tokens, session identifiers, and temporary passwords." + }, + { + "id": "GD-R-019", + "category": "RETRIEVAL", + "question": "What is the $ dereference operator in AVAP and when is it used?", + "ground_truth": "The $ operator in AVAP is the dereference operator, used to access the value of a variable by reference at assignment time. Syntax: addVar(copia, $original) copies the current value of original into copia. The token is defined as DEREF in the lexer. It is used when you need to capture the current value of a variable into another variable, particularly useful when a variable may change later and you need to preserve its value at a specific point in execution." + }, + { + "id": "GD-R-020", + "category": "RETRIEVAL", + "question": "How does AVAP handle ORM database operations? What commands are available?", + "ground_truth": "AVAP provides native ORM commands for database operations without requiring additional drivers. ormCheckTable(tableName, resultVar) checks if a table exists storing True or False in resultVar. ormCreateTable(columns, types, tableName, resultVar) creates a new table with the specified column names and types. ormDirect(query, resultVar) executes a raw SQL query directly. ormAccessSelect executes SELECT queries and ormAccessInsert executes INSERT operations. avapConnector is used to initialize the database connection. The connector and ORM commands are distinguished only by context — the UUID passed as argument determines whether the adapter resolves as a database ORM or a third-party service proxy." + }, + { + "id": "GD-C-001", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a 'name' parameter and returns a personalized greeting.", + "ground_truth": "The following AVAP script reads a name parameter and returns a personalized greeting:\n\naddParam(\"name\", name)\nresult = \"Hello, \" + name\naddResult(result)\n\nKey commands: addParam reads the HTTP parameter 'name' into variable name. The + operator concatenates the greeting string with the name. addResult exposes result in the JSON response." + }, + { + "id": "GD-C-002", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a 'password' parameter, generates a SHA-256 hash, and returns it.", + "ground_truth": "The following AVAP script hashes a password parameter using SHA-256:\n\naddParam(\"password\", password)\nencodeSHA256(password, hashed_password)\naddResult(hashed_password)\n\nKey commands: addParam reads the 'password' HTTP parameter. encodeSHA256 computes the SHA-256 hash and stores the 64-character hex digest in hashed_password. addResult exposes the hash in the JSON response." + }, + { + "id": "GD-C-003", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that loops from 1 to 5, builds a JSON object with each index as a key, and returns it.", + "ground_truth": "The following AVAP script builds a JSON object iteratively:\n\naddVar(mi_json, \"{}\")\nstartLoop(i, 1, 5)\n item = \"item_%s\" % i\n AddvariableToJSON(item, \"valor_generado\", mi_json)\nendLoop()\naddResult(mi_json)\n\nKey commands: addVar initializes an empty JSON object. startLoop iterates i from 1 to 5 inclusive. The % operator formats the key name dynamically. AddvariableToJSON inserts each key-value pair into mi_json. addResult exposes the final object." + }, + { + "id": "GD-C-004", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that validates if a 'role' parameter belongs to a list of allowed roles and returns the access result.", + "ground_truth": "The following AVAP script validates role membership:\n\naddParam(\"rol\", r)\nif(r, [\"admin\", \"editor\", \"root\"], \"in\")\n acceso = True\nelse()\n acceso = False\nend()\naddResult(acceso)\n\nKey commands: addParam reads the 'rol' parameter. The if() with \"in\" comparator checks list membership directly against a list literal. else() handles the false branch. end() closes the conditional block. addResult exposes the boolean result." + }, + { + "id": "GD-C-005", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that makes a GET request to an external API and handles connection errors.", + "ground_truth": "The following AVAP script performs a GET request with error handling:\n\ntry()\n RequestGet(\"https://api.test.com/data\", 0, 0, respuesta)\nexception(e)\n addVar(error_trace, \"Fallo de conexion: %s\" % e)\n addResult(error_trace)\nend()\naddResult(respuesta)\n\nKey commands: try() wraps the potentially failing operation. RequestGet fetches the URL storing the response in respuesta. exception(e) captures any error message. The % operator formats the error string. addResult exposes either the response or the error." + }, + { + "id": "GD-C-006", + "category": "CODE_GENERATION", + "question": "Write an AVAP function that takes two numbers and returns their sum, then call it and return the result.", + "ground_truth": "The following AVAP script defines and calls a sum function:\n\nfunction suma(a, b){\n total = a + b\n return(total)\n}\nresultado = suma(10, 20)\naddResult(resultado)\n\nKey commands: function declares a named function with parameters a and b. The + operator adds the values. return() sends the result back to the caller and releases the function scope. The function is called with literal values 10 and 20. addResult exposes the result." + }, + { + "id": "GD-C-007", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a 'subtotal' parameter, computes 21% VAT, and returns the total.", + "ground_truth": "The following AVAP script calculates the total with VAT:\n\naddParam(\"subtotal\", subtotal)\niva = subtotal * 0.21\ntotal = subtotal + iva\naddResult(total)\n\nKey commands: addParam reads the subtotal from the HTTP request. The * operator multiplies by the tax rate 0.21. The + operator adds subtotal and iva. addResult exposes the final total. AVAP supports float arithmetic natively." + }, + { + "id": "GD-C-008", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads an 'api_key' parameter and returns status 403 if it is null.", + "ground_truth": "The following AVAP script validates that an API key is present:\n\naddParam(\"api_key\", key)\nif(key, None, \"==\")\n addVar(_status, 403)\n addVar(error, \"Acceso denegado: falta API KEY\")\n addResult(error)\nend()\n\nKey commands: addParam reads the api_key parameter — if not present it will be None. The if() with \"==\" and None checks for null. addVar sets _status to 403 which becomes the HTTP response code. addResult exposes the error message." + }, + { + "id": "GD-C-009", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that generates a 32-character random alphanumeric token and returns it.", + "ground_truth": "The following AVAP script generates a secure random token:\n\nrandomString(\"[a-zA-Z0-9]\", 32, token_seguridad)\naddResult(token_seguridad)\n\nKey commands: randomString generates a random string using the character class [a-zA-Z0-9] at length 32 and stores it in token_seguridad. addResult exposes the token in the HTTP response." + }, + { + "id": "GD-C-010", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a 'lang' parameter and returns 'Hola' if it is 'es' or 'Hello' if it is 'en'.", + "ground_truth": "The following AVAP script returns a greeting based on language:\n\naddParam(\"lang\", l)\nif(l, \"es\", \"=\")\n addVar(msg, \"Hola\")\nelse()\n addVar(msg, \"Hello\")\nend()\naddResult(msg)\n\nKey commands: addParam reads the lang parameter into l. The if() with \"=\" comparator checks string equality. else() handles all other cases. addVar sets the message. addResult exposes the localized greeting." + }, + { + "id": "GD-C-011", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that checks if a database table exists and creates it if it does not.", + "ground_truth": "The following AVAP script checks and creates a database table:\n\normCheckTable(tabla_pruebas, resultado_comprobacion)\nif(resultado_comprobacion, False, \"==\")\n ormCreateTable(\"username,age\", \"VARCHAR,INTEGER\", tabla_pruebas, resultado_creacion)\nend()\naddResult(resultado_comprobacion)\naddResult(resultado_creacion)\n\nKey commands: ormCheckTable checks if the table exists storing True or False. The if() block only executes if the check returned False. ormCreateTable creates the table with the specified columns and types. Both results are exposed via addResult." + }, + { + "id": "GD-C-012", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that gets the current UTC timestamp and adds 24 hours to compute an expiration time.", + "ground_truth": "The following AVAP script computes an expiration timestamp 24 hours from now:\n\ngetDateTime(\"\", 86400, \"UTC\", expira)\naddResult(expira)\n\nKey commands: getDateTime with an empty format string returns a raw timestamp. The second parameter 86400 is the offset in seconds (60 * 60 * 24 = 86400 = 1 day). The timezone is set to UTC. The result is stored in expira and exposed via addResult." + }, + { + "id": "GD-C-013", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that receives a new password parameter, validates it is not equal to the old password, and returns a confirmation.", + "ground_truth": "The following AVAP script validates a password change:\n\naddParam(\"password\", pass_nueva)\npass_antigua = \"password\"\nif(pass_nueva, pass_antigua, \"!=\")\n addVar(cambio, \"Contrasena actualizada\")\nend()\naddResult(cambio)\n\nKey commands: addParam reads the new password. The old password is assigned as a literal. The if() with \"!=\" comparator checks inequality. addVar sets the confirmation message only if passwords differ. addResult exposes the message." + }, + { + "id": "GD-C-014", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a list parameter and returns its element count.", + "ground_truth": "The following AVAP script reads a list parameter and returns its length:\n\naddParam(\"data_list\", mi_lista)\ngetListLen(mi_lista, cantidad)\naddResult(cantidad)\n\nKey commands: addParam reads the list from the HTTP request into mi_lista. getListLen computes the number of elements and stores it in cantidad. addResult exposes the count in the JSON response." + }, + { + "id": "GD-C-015", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that uses a validation function to check a token parameter and returns the authorization result.", + "ground_truth": "The following AVAP script uses a function to validate a token:\n\nfunction es_valido(token){\n response = False\n if(token, \"SECRET\", \"=\")\n response = True\n end()\n return(response)\n}\naddParam(\"token\", t)\nautorizado = es_valido(t)\naddResult(autorizado)\n\nKey commands: function defines es_valido with a token parameter. response is initialized to False. The if() with \"=\" checks against the expected secret. return() sends the boolean back to the caller. addResult exposes the authorization result." + }, + { + "id": "GD-C-016", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that returns two values in the HTTP response: a status code 200 and a message 'Success'.", + "ground_truth": "The following AVAP script returns multiple values in the HTTP response:\n\naddVar(_status, 200)\naddVar(status, \"Success\")\naddResult(status)\n\nOr returning both as JSON fields:\n\naddVar(code, 200)\naddVar(status, \"Success\")\naddResult(code)\naddResult(status)\n\nKey commands: _status is the special variable that sets the HTTP response status code. Multiple addResult calls build a JSON object with multiple fields in the response body." + }, + { + "id": "GD-C-017", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that reads a 'saldo' parameter and returns True if it is greater than zero, False otherwise.", + "ground_truth": "The following AVAP script checks if a balance is positive:\n\naddParam(\"saldo\", saldo)\nif(saldo, 0, \">\")\n permitir = True\nelse()\n permitir = False\nend()\naddResult(permitir)\n\nKey commands: addParam reads the saldo parameter. The if() with \">\" comparator checks if saldo is greater than 0. else() handles the zero or negative case. end() closes the block. addResult exposes the boolean result." + }, + { + "id": "GD-C-018", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that converts a Unix timestamp parameter to a human-readable date in dd/mm/yyyy format.", + "ground_truth": "The following AVAP script converts a Unix timestamp to a readable date:\n\naddParam(\"timestamp\", ts)\nstampToDatetime(ts, \"%d/%m/%Y\", 0, fecha_human)\naddResult(fecha_human)\n\nKey commands: addParam reads the timestamp from the HTTP request. stampToDatetime converts the Unix epoch integer to a formatted date string using \"%d/%m/%Y\" which produces day/month/year. The third parameter is a timezone offset in seconds. The result is stored in fecha_human and returned via addResult." + }, + { + "id": "GD-C-019", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that replaces all spaces in a string parameter with hyphens and returns the result.", + "ground_truth": "The following AVAP script replaces spaces with hyphens:\n\naddParam(\"text\", input_text)\nreplace(input_text, \" \", \"-\", clean_text)\naddResult(clean_text)\n\nKey commands: addParam reads the text parameter. replace() substitutes all occurrences of space with hyphen in input_text and stores the result in clean_text. The original variable is not modified. addResult exposes the transformed string." + }, + { + "id": "GD-C-020", + "category": "CODE_GENERATION", + "question": "Write an AVAP script that uses try/exception to execute a raw SQL query and return status 500 on database errors.", + "ground_truth": "The following AVAP script executes SQL with error handling:\n\ntry()\n ormDirect(\"UPDATE tabla SET col=1 WHERE id=1\", res)\nexception(e)\n addVar(_status, 500)\n addResult(\"Error de base de datos\")\nend()\naddResult(res)\n\nKey commands: try() wraps the database operation. ormDirect executes raw SQL storing the result in res. exception(e) catches any database error. addVar sets _status to 500 to signal a server error. The final addResult exposes the query result on success." + }, + { + "id": "GD-V-001", + "category": "CONVERSATIONAL", + "question": "Can you summarize what you just explained about AVAP scopes in fewer words?", + "ground_truth": "AVAP has three scopes: Global (visible everywhere, lives for the whole process), Main Local (visible only in the main script flow, not inside functions), and Function (created per function call, destroyed when the function returns). Functions cannot see main flow variables, and the main flow cannot see function-internal variables." + }, + { + "id": "GD-V-002", + "category": "CONVERSATIONAL", + "question": "You mentioned that addResult builds the JSON response — can you clarify how multiple addResult calls work together?", + "ground_truth": "Each addResult call adds one field to the JSON response object. The field name is the variable name passed to addResult and the field value is the current value of that variable. So calling addResult(code) and addResult(status) produces a JSON response like {\"code\": 200, \"status\": \"Success\"}. The fields are added in the order the addResult calls are executed during script execution." + }, + { + "id": "GD-V-003", + "category": "CONVERSATIONAL", + "question": "What is the difference between addVar and a plain assignment like x = 10 in AVAP?", + "ground_truth": "Both addVar and direct assignment declare variables. addVar(varName, value) is the explicit command form — it supports intelligent value resolution checking if the value is an existing variable, a number, or a literal. Direct assignment x = 10 is syntactic sugar that works identically for simple cases. addVar is preferred for declaring new variables with explicit intent, while direct assignment is more natural for updating values or computed expressions." + }, + { + "id": "GD-V-004", + "category": "CONVERSATIONAL", + "question": "Can you explain again the difference between the two modes of the if() command?", + "ground_truth": "Mode 1 is structured comparison: if(variable, value, comparator) — for example if(saldo, 0, \">\") directly compares the variable saldo against 0 using the > operator. Mode 2 is expression mode: if(None, None, \"expression\") — for example if(None, None, \"user_type == 'VIP' or compras > 100\") evaluates a full Python-style boolean expression passed as a string. Mode 2 is more flexible but requires passing None as the first two arguments." + }, + { + "id": "GD-V-005", + "category": "CONVERSATIONAL", + "question": "What happens if an error occurs in AVAP without a try block?", + "ground_truth": "Without a try block, any unhandled exception stops script execution immediately and the server returns a 400 Bad Request error with the error message in the response body. The remaining commands in the script are not executed. With a try block, the error is caught by exception(), the script continues running, and you can handle the error gracefully — for example by setting _status to 500 and returning a structured error message." + }, + { + "id": "GD-V-006", + "category": "CONVERSATIONAL", + "question": "Can you explain again how the timeout in RequestGet works?", + "ground_truth": "The timeout parameter in RequestGet and RequestPost is specified in milliseconds. If the external server does not respond within that time, the request is aborted and the destination variable receives None instead of a response. This prevents the AVAP thread from blocking indefinitely on a slow or unavailable external service. You should always check if the result variable is None after a request to handle timeout cases gracefully." + }, + { + "id": "GD-V-007", + "category": "CONVERSATIONAL", + "question": "Can I iterate over a list of items in AVAP instead of a numeric range?", + "ground_truth": "Yes, but AVAP loops are always numeric — startLoop uses a start and end integer. To iterate over a list, combine getListLen to get the total count, use that count as the loop boundary, and inside the loop use the index variable to access each element. Example: getListLen(mi_lista, total) then startLoop(i, 0, total) with list access inside. Lists are zero-indexed so the index starts at 0." + }, + { + "id": "GD-V-008", + "category": "CONVERSATIONAL", + "question": "What is the difference between RequestGet and RequestPost in practice?", + "ground_truth": "RequestGet sends an HTTP GET request — used for retrieving data, with parameters passed as query string. RequestPost sends an HTTP POST request — used for submitting data, with a body payload that can be JSON or form data. Both require a timeout parameter in milliseconds and store the response in a destination variable. Both return None in the destination variable if the request times out. The key structural difference is that RequestPost includes a body parameter while RequestGet does not." + }, + { + "id": "GD-V-009", + "category": "CONVERSATIONAL", + "question": "Goroutines cannot access Main Local Scope — can you give a practical example of why that matters?", + "ground_truth": "If you declare a variable in the main flow and launch a goroutine, the goroutine cannot read that variable. For example if you do addVar(counter, 0) in the main flow and then call go myFunction(), the function myFunction cannot access counter — it would get a runtime error. To share data with goroutines you must either pass the value as a function parameter, or declare the variable in Global Scope. This isolation prevents race conditions between concurrent goroutines and the main flow." + }, + { + "id": "GD-V-010", + "category": "CONVERSATIONAL", + "question": "What format does encodeSHA256 return its output in?", + "ground_truth": "encodeSHA256 always returns a 64-character lowercase hexadecimal string. This is the standard SHA-256 digest representation — 256 bits expressed as 64 hex characters (0-9 and a-f). The output is deterministic — the same input always produces the same hash — which is why SHA-256 is used for integrity verification rather than for generating unique identifiers." + } +] \ No newline at end of file diff --git a/ingestion/chunks-bge.json b/ingestion/chunks-bge.json new file mode 100644 index 0000000..e651a26 --- /dev/null +++ b/ingestion/chunks-bge.json @@ -0,0 +1,34361 @@ +[ + { + "_index": "avap-docs-test-v4-bge", + "_id": "6f1bb6aa-7a8f-5a4c-bca9-973d1420ae82", + "_source": { + "text": "getDateTime(\"\", 86400, \"UTC\", expira)\naddResult(expira)", + "embedding": [ + -0.0861976370215416, + 0.0044234986416995525, + -0.025226539000868797, + 0.02046922594308853, + -0.06822105497121811, + -0.004679190460592508, + -0.02641947567462921, + 0.005973398685455322, + -0.019007226452231407, + -0.023106802254915237, + 0.020888373255729675, + 0.04840878024697304, + -0.007375642657279968, + 0.039608266204595566, + 0.013608995825052261, + 0.020696058869361877, + 0.036920007318258286, + -0.008754043839871883, + 0.019436774775385857, + -0.012416807934641838, + -0.009684668853878975, + -0.015799488872289658, + -0.06753487884998322, + 0.017782384529709816, + -0.01651703380048275, + -0.034962546080350876, + 0.0281925480812788, + 0.0031943137291818857, + 0.04060034453868866, + 0.01268358901143074, + -0.0021565156057476997, + -0.03380671888589859, + -0.013126065023243427, + -0.06173357740044594, + -0.033245161175727844, + 0.0023444185499101877, + -0.027126168832182884, + -0.007839963771402836, + -0.05707485228776932, + 0.03673141822218895, + -0.00473250076174736, + -0.04653465747833252, + 0.012246059253811836, + -0.0006023105815984309, + 0.03494714945554733, + -0.024914531037211418, + 0.0189240463078022, + -0.023089740425348282, + 0.007670550607144833, + -0.020510034635663033, + 0.009174042381346226, + 0.003414991544559598, + 0.06655868142843246, + -0.017933063209056854, + 0.02996583841741085, + 0.015231308527290821, + -0.046058546751737595, + 0.031668663024902344, + -0.06196243315935135, + -0.04210805147886276, + -0.004538184963166714, + -0.014870868064463139, + -0.02914302982389927, + 0.01420801505446434, + -0.023011362180113792, + 0.040416669100522995, + 0.04228302836418152, + 0.035317640751600266, + -0.01604791358113289, + -0.0002672764239832759, + -0.026076577603816986, + 0.01449153758585453, + -0.013185540214180946, + -0.007308760192245245, + -0.07111989706754684, + 0.0023038205690681934, + 0.015864161774516106, + -0.013414428569376469, + 0.007180907763540745, + 0.009388222359120846, + 0.005489737261086702, + -0.056240014731884, + 0.04056720435619354, + 0.013942335732281208, + 0.013361349701881409, + -0.003173869103193283, + -0.03286874294281006, + 0.030241137370467186, + -0.02508850395679474, + 0.028196003288030624, + 0.0029069436714053154, + -0.0027969072107225657, + 0.004907294176518917, + -0.04556959867477417, + -0.003139669541269541, + -0.052919138222932816, + 0.007861020974814892, + -0.00931926816701889, + 0.06167295575141907, + 0.020516468212008476, + -0.028079967945814133, + 0.03198397159576416, + 0.023915236815810204, + -0.026867400854825974, + 0.051693305373191833, + -0.047308292239904404, + 0.028178062289953232, + -0.014385617338120937, + 0.005225496832281351, + -0.0043456703424453735, + -0.012543275952339172, + 0.04497995972633362, + -0.017284981906414032, + 0.01647868938744068, + 0.023591212928295135, + -0.02248069830238819, + -0.012998861260712147, + -0.013408606871962547, + 0.06448892503976822, + -0.025137273594737053, + 0.022005150094628334, + -0.010092396289110184, + 0.08270512521266937, + -0.012123354710638523, + -0.024971673265099525, + 0.06705249100923538, + -0.02019970677793026, + 0.022668030112981796, + -0.027176642790436745, + 0.03592665493488312, + 0.03461278975009918, + 0.06915149837732315, + -0.008912140503525734, + -0.02712670899927616, + -0.02331259660422802, + 0.018337242305278778, + 0.007927369326353073, + 0.037829186767339706, + -0.013195224106311798, + -0.07204941660165787, + 0.024785326793789864, + 0.029469609260559082, + 0.01942027173936367, + 0.008449657820165157, + 0.031237399205565453, + -0.03364152833819389, + 0.03141123056411743, + 0.0030307606793940067, + -0.017402511090040207, + 0.017302947118878365, + 0.01717752031981945, + 0.01972055993974209, + 0.028774959966540337, + -0.010624295100569725, + 0.006142215337604284, + 0.005963576026260853, + 0.010922848246991634, + 0.03627046197652817, + -0.021910028532147408, + -0.012963873334228992, + -0.00882238894701004, + 0.029347790405154228, + -0.012151986360549927, + 0.012394807301461697, + 0.020074421539902687, + 0.003504862543195486, + 0.01619429886341095, + -0.019244374707341194, + -0.005945494398474693, + -0.029714277014136314, + 0.04587303102016449, + -0.047943778336048126, + 0.032233551144599915, + 0.021220287308096886, + -0.006506475154310465, + 0.011322698555886745, + 0.06958767771720886, + 0.014947362244129181, + 0.04037333279848099, + -0.045680608600378036, + -0.03970552980899811, + 0.016022421419620514, + -0.014020321890711784, + -0.03279929608106613, + -0.02345823124051094, + 0.012302229180932045, + -0.01349590253084898, + 0.015667250379920006, + 0.011354673653841019, + 0.04257705807685852, + 0.00027581927133724093, + -0.01626897044479847, + 0.019204789772629738, + 0.03199118748307228, + 0.0222255140542984, + -0.00059655518271029, + 0.02152009680867195, + 0.019682692363858223, + -0.01660832017660141, + 0.01888977736234665, + -0.036967407912015915, + 0.03895503655076027, + -0.0055241575464606285, + 0.024123849347233772, + -0.02478693798184395, + -0.021311091259121895, + -0.005327007733285427, + -0.021405020728707314, + 0.03490722179412842, + 0.01861223764717579, + 0.031594373285770416, + 0.024878378957509995, + -0.008747107349336147, + -0.00043435217230580747, + 0.012014957144856453, + -0.002192260231822729, + 0.03614283725619316, + 0.009226246736943722, + -0.02399955876171589, + -0.0027703738305717707, + -0.00147348758764565, + 0.04496556520462036, + 0.010994339361786842, + 0.03591155633330345, + 0.02089668996632099, + 0.03526844456791878, + -0.029435444623231888, + 0.0549749881029129, + -0.04676893725991249, + -0.02639872021973133, + 0.03963322937488556, + -0.002599008847028017, + 0.010381787084043026, + -0.004045430105179548, + 0.027143510058522224, + -0.014932950958609581, + 0.007540913298726082, + 0.006577317137271166, + -0.012913013808429241, + 0.017001688480377197, + 0.0011780873173847795, + 0.011911599896848202, + 0.0064553674310445786, + -0.03839309886097908, + -0.030973242595791817, + -0.027530839666724205, + 0.009515788406133652, + 0.06030017510056496, + -0.040268026292324066, + -0.004601134918630123, + 0.011151710525155067, + -0.0038375030271708965, + -0.06601990759372711, + 0.017781514674425125, + 0.035431306809186935, + -0.0030115272384136915, + 0.035229943692684174, + -0.00576390465721488, + 0.003362650517374277, + 0.044411610811948776, + 0.016067175194621086, + 0.007509434595704079, + -0.05673925578594208, + 0.03979814797639847, + 0.018212394788861275, + -0.018868792802095413, + -0.0008048037998378277, + 0.033089470118284225, + 0.02445572055876255, + -0.024287162348628044, + 0.03262462094426155, + 0.004386979155242443, + 0.011988633312284946, + 0.017020899802446365, + 0.0286933034658432, + 0.026273908093571663, + -0.011915325187146664, + -0.011599952355027199, + 0.05348949134349823, + 0.014489284716546535, + 0.03298696503043175, + 0.001431233948096633, + 0.043665941804647446, + -0.02693558670580387, + 0.016394125297665596, + 0.009058638475835323, + 0.022364839911460876, + 0.028251590207219124, + -0.002722927136346698, + -0.03556579723954201, + -0.023868298158049583, + -0.002641593338921666, + 0.07802487909793854, + -0.03247981145977974, + 0.0005422108806669712, + -0.0008630963275209069, + -0.027782980352640152, + -0.1410769820213318, + 0.007982352748513222, + -0.03358471393585205, + 0.04669434577226639, + -0.015561165288090706, + 0.002631880110129714, + -0.04703537002205849, + -0.007830538786947727, + -0.039908841252326965, + 0.020471321418881416, + -0.03784544765949249, + -0.07672768086194992, + 0.00015974939742591232, + -0.03142432123422623, + -0.034140679985284805, + 0.025827977806329727, + -0.009282262064516544, + -0.03522986173629761, + -6.435518298530951e-05, + -0.03614579886198044, + -0.009490025229752064, + -0.016896596178412437, + 0.016175411641597748, + -0.06318190693855286, + -0.05727558955550194, + -0.017744380980730057, + -0.030341343954205513, + -0.0167283583432436, + -0.02113306149840355, + 0.03598976880311966, + -0.02858523279428482, + -0.024118414148688316, + -0.0006386119639500976, + 0.01266062818467617, + -0.025018051266670227, + 0.045427948236465454, + -0.029289059340953827, + -0.053751904517412186, + 0.01865903101861477, + 0.02372358739376068, + 0.005490899085998535, + 0.02156965248286724, + 0.01153363473713398, + 0.05482703819870949, + -0.007260474842041731, + -0.002573716687038541, + 0.009625022299587727, + 0.004602196626365185, + -0.06112970411777496, + -0.0009838970145210624, + -0.01089565921574831, + -0.04114031791687012, + -0.006025482900440693, + 0.014164505526423454, + -0.030806833878159523, + 0.028548605740070343, + -0.04651803895831108, + 0.026442237198352814, + -0.016219070181250572, + 0.030628785490989685, + 7.87506578490138e-05, + -0.024125337600708008, + -0.013403299264609814, + -0.016825973987579346, + -0.026405377313494682, + -0.0013439964968711138, + 0.0009474863763898611, + -0.027732960879802704, + 0.023346824571490288, + 0.017908398061990738, + 0.0510086864233017, + 0.02113349363207817, + -0.0015583039494231343, + -0.0006517570000141859, + 0.025810066610574722, + 0.004750220570713282, + -0.04703487828373909, + 0.005988080054521561, + -0.032492637634277344, + -0.10403115302324295, + -0.027041668072342873, + 0.03103454038500786, + -0.016806641593575478, + 0.011550826951861382, + -0.013713737018406391, + -0.02128186821937561, + -0.0033128380309790373, + 0.01664731279015541, + 0.03950650617480278, + 0.23335541784763336, + 0.009321384131908417, + -0.017660686746239662, + 0.011022551916539669, + 0.010227970778942108, + -0.047662924975156784, + -0.013988180086016655, + 0.012511772103607655, + 0.024332091212272644, + -0.01777813583612442, + 0.05597640573978424, + -0.039093855768442154, + -0.023326771333813667, + -0.013197903521358967, + -0.007883254438638687, + 0.016116226091980934, + -0.012036772444844246, + -0.009008485823869705, + 0.035436466336250305, + 0.02420276403427124, + 0.0157090462744236, + -0.06671418994665146, + -0.05603886768221855, + -0.014685467816889286, + -0.040237125009298325, + -0.016000425443053246, + -0.003995808307081461, + 0.05198383703827858, + 0.023322781547904015, + 0.06605644524097443, + 0.0030828197486698627, + 0.03087632916867733, + -0.010491515509784222, + 0.04702329635620117, + -0.02158697508275509, + 0.020785944536328316, + 0.012036433443427086, + -0.016988717019557953, + -0.021664943546056747, + 0.026026545092463493, + -0.01722833886742592, + -0.02131582610309124, + 0.012204830534756184, + 0.0435832180082798, + 0.02931649424135685, + -0.03812647983431816, + 0.004293422214686871, + -0.005696998443454504, + -0.030645744875073433, + -0.014421074651181698, + -0.023470716550946236, + -0.026415033265948296, + -0.012606697157025337, + 0.01823430508375168, + 0.014558914117515087, + -0.00531034916639328, + 0.012161586433649063, + 0.0003048019716516137, + -0.05504867061972618, + 0.006519123911857605, + -0.007000823970884085, + 0.0073231663554906845, + -0.0067169624380767345, + -0.0014499254757538438, + -0.016265127807855606, + 0.012263878248631954, + 0.026132522150874138, + -0.02053847908973694, + 0.04237983375787735, + 0.024010002613067627, + -0.010625009424984455, + 0.012117157690227032, + -0.001216197619214654, + 0.011107820086181164, + 0.008733309805393219, + -0.013017069548368454, + -0.012060721404850483, + 0.024706145748496056, + -0.017222287133336067, + 0.05681341141462326, + -0.04041532427072525, + -0.027915682643651962, + -0.06076410412788391, + 0.024066414684057236, + 0.03034391440451145, + -0.042448218911886215, + -0.014142457395792007, + 0.06609249114990234, + -0.02652670070528984, + -0.0335099957883358, + 0.0007697232067584991, + 0.0033587217330932617, + 0.0030515820253640413, + 0.008437053300440311, + -0.029939714819192886, + 0.009927233681082726, + 0.07619927823543549, + -0.006262641865760088, + -0.03240702673792839, + -0.008720488287508488, + -0.0492297038435936, + 0.030967308208346367, + -0.034651197493076324, + -0.019183792173862457, + 0.03909720852971077, + -0.026752730831503868, + -0.03970341756939888, + 0.002063960302621126, + -0.005685192067176104, + 0.014907225035130978, + -0.0033563217148184776, + 0.023857571184635162, + -0.013865653425455093, + -0.00937003456056118, + 0.0027912966907024384, + 0.04768846556544304, + 0.053583696484565735, + 0.01090362761169672, + 0.03275095671415329, + 0.04381800442934036, + -0.037359364330768585, + -0.020768702030181885, + -0.04264160245656967, + -0.005265408661216497, + -0.008632415905594826, + -0.035995349287986755, + -0.01731615699827671, + 0.02536548487842083, + -0.02396407164633274, + 0.033259790390729904, + 0.00013171089813113213, + -0.007849453948438168, + 0.05827631801366806, + -0.031462155282497406, + 0.034591179341077805, + -0.010881531983613968, + 0.06052779406309128, + 0.032359737902879715, + -0.019486498087644577, + 0.03923245891928673, + 0.0032130887266248465, + -0.003827499458566308, + -0.002925037406384945, + 0.00034682045225054026, + 0.020218120887875557, + 0.002239677356556058, + -0.008575881831347942, + 0.0035515185445547104, + -0.03142731264233589, + 0.06340796500444412, + 0.035638369619846344, + 0.011670514941215515, + 0.05775391310453415, + -0.04188952594995499, + -0.010754234157502651, + -0.013108015060424805, + -0.00222016591578722, + 0.022288348525762558, + -0.037827663123607635, + -0.00944257527589798, + 0.003947146702557802, + -0.01494803000241518, + 0.033829215914011, + 0.057319123297929764, + 0.0034989153500646353, + -0.052132900804281235, + -0.0754438117146492, + 0.020174702629446983, + -0.005100787151604891, + -0.0004640617116820067, + -0.011309637688100338, + -0.008886060677468777, + -0.028466075658798218, + 0.023433350026607513, + -0.0008386636036448181, + 5.74600780964829e-05, + -0.007260838057845831, + -0.027224509045481682, + -0.009361284784972668, + 0.00022255105432122946, + -0.023334354162216187, + -0.01958281546831131, + -0.043506599962711334, + -0.021872904151678085, + 0.02844495326280594, + -0.03922520950436592, + -0.04492439329624176, + -0.029143335297703743, + 0.04222705960273743, + -0.0354878306388855, + -0.019246870651841164, + 0.12403304129838943, + 0.032839447259902954, + -0.034140050411224365, + -0.01577012799680233, + 0.04983257129788399, + 0.025897514075040817, + 0.03970497101545334, + -0.017054345458745956, + -0.0429978109896183, + -0.008712321519851685, + 0.0446951687335968, + -0.012272057123482227, + -0.0052309115417301655, + -0.04845287650823593, + -0.008830679580569267, + -0.03638248145580292, + 0.029937732964754105, + -0.005035985726863146, + 0.0007583127589896321, + -0.010344562120735645, + 0.011798585765063763, + -0.010328255593776703, + 0.008175690658390522, + -0.0010027342941612005, + -0.0440639853477478, + 0.0497380755841732, + 0.004258409608155489, + 0.010114219971001148, + -0.01731911301612854, + -0.03850390389561653, + -0.011964739300310612, + 0.010221007280051708, + -0.01694570854306221, + 0.009333845227956772, + 0.03217325359582901, + -0.005162287037819624, + -0.03933757171034813, + -9.492169920122251e-05, + -0.0009570558904670179, + 0.0007583501865155995, + -0.0314912311732769, + 0.03188105672597885, + 0.00704319728538394, + 0.032769862562417984, + -0.017791766673326492, + -0.005559410899877548, + 0.04185505583882332, + 0.008450327441096306, + -0.003981014713644981, + 0.03371960297226906, + 0.018108652904629707, + -0.0026208648923784494, + 0.05282413586974144, + 0.026314634829759598, + 0.040303584188222885, + -0.031001823022961617, + -0.01852826215326786, + 0.04623236879706383, + 0.05830717459321022, + -0.009030476212501526, + 0.030271941795945168, + -0.009403064846992493, + -0.024359768256545067, + 0.009400950744748116, + 0.013734906911849976, + -0.05778026208281517, + 0.010795582085847855, + -0.03398213908076286, + -0.04023412615060806, + -0.005528764799237251, + 0.04837268218398094, + 0.007881334982812405, + 0.001666821539402008, + -0.01579313911497593, + -0.0901348814368248, + 0.01971515640616417, + -0.06980806589126587, + -0.007073680870234966, + 0.04043576866388321, + 0.012766593135893345, + 0.0035725138150155544, + -0.013770109973847866, + 0.011598755605518818, + 0.015602623112499714, + 0.014037770219147205, + -0.012464386411011219, + 0.04476217180490494, + 0.07527278363704681, + 0.024641411378979683, + -0.001221952959895134, + 0.046305958181619644, + 0.023827584460377693, + 0.007503492292016745, + -0.028734896332025528, + 0.021444326266646385, + 0.012386918999254704, + 0.029013056308031082, + 0.002576287370175123, + -0.10323423147201538, + -0.016099819913506508, + -0.014075804501771927, + -0.04045688733458519, + 0.0533808171749115, + -0.013123596087098122, + -0.025310179218649864, + -0.016528107225894928, + 0.030885914340615273, + -0.03670809790492058, + -0.01860210858285427, + -0.019422324374318123, + 0.008341759443283081, + -0.021145973354578018, + -0.02029542438685894, + 0.005091533064842224, + 0.02040819451212883, + -0.007902923040091991, + 0.01774289458990097, + 0.08242825418710709, + -0.009372048079967499, + 0.008193307556211948, + -0.037411462515592575, + 0.003094657324254513, + 0.02618752233684063, + 0.05670331418514252, + -0.000778549409005791, + 0.030774958431720734, + -0.021686244755983353, + -0.013371827080845833, + -0.03303777799010277, + 0.03944150358438492, + -0.010455401614308357, + 0.019134128466248512, + 0.009409799240529537, + -0.04933321848511696, + 0.003010364016517997, + -0.04785509780049324, + 0.030942760407924652, + -0.04223101958632469, + -0.004132239613682032, + 0.008120509795844555, + -0.0007730179349891841, + -0.04371200129389763, + -0.02633659914135933, + -0.007988057099282742, + -0.01838902197778225, + 0.007067888043820858, + -0.02048756554722786, + 0.0058866990730166435, + -0.032701488584280014, + -0.03366447985172272, + -0.009569183923304081, + 0.01822272315621376, + -0.06318686902523041, + -0.005976258777081966, + -0.00406445050612092, + -0.01139006670564413, + -0.021278126165270805, + -0.005203514825552702, + -0.009066378697752953, + -0.025982288643717766, + 0.03944854065775871, + -0.024507487192749977, + -0.03690279647707939, + 0.012670936062932014, + -0.015066121704876423, + -0.03316124528646469, + 0.043945033103227615, + 0.02006240002810955, + 0.0023332955315709114, + -0.0015293220058083534, + -0.012851618230342865, + -0.033812038600444794, + 0.008627336472272873, + -0.05124405026435852, + 0.024257568642497063, + -0.018930459395051003, + 0.06355070322751999, + -0.006970655173063278, + -0.009608814492821693, + 0.013339640572667122, + 0.011553914286196232, + 0.04177827760577202, + 0.04160918667912483, + -0.04974500462412834, + 0.05009564757347107, + -0.036626093089580536, + -0.007682404015213251, + 0.03455151617527008, + -0.025834547355771065, + -0.019310226663947105, + 0.012216571718454361, + -0.025850027799606323, + -0.048300597816705704, + -0.01923155039548874, + -0.015190658159554005, + -0.03045828826725483, + 0.02603314258158207, + 0.030737871304154396, + 0.02291485108435154, + -0.04919242486357689, + -0.024984488263726234, + -0.0488949790596962, + 0.01622846908867359, + -0.14702336490154266, + 0.030110560357570648, + -0.013127442449331284, + 0.016238942742347717, + -0.04850546643137932, + 0.019644388929009438, + -0.051153503358364105, + -0.022324979305267334, + -0.025402860715985298, + -0.0009083135519176722, + -0.0639384537935257, + -0.04760202020406723, + 0.018557516857981682, + -0.020179543644189835, + -0.04618987813591957, + 0.02896084450185299, + 0.01837524212896824, + -0.0019369444344192743, + -0.046087514609098434, + 0.02852490358054638, + 0.015857642516493797, + -0.04051751270890236, + 0.03501776233315468, + 0.023376503959298134, + -0.007212053518742323, + 0.004163970705121756, + 0.012557892128825188, + 0.012941311113536358, + -0.02508736401796341, + -0.05618295818567276, + 0.03235737606883049, + -0.01563621312379837, + 0.021378200501203537, + 0.0894806757569313, + 0.057167425751686096, + 0.007436923682689667, + 0.015449915081262589, + 0.03234794735908508, + -0.026016442105174065, + 0.027719654142856598, + -0.003685127943754196, + 0.04497307538986206, + -0.029007863253355026, + 0.006276434287428856, + 0.03368254378437996, + 0.016493268311023712, + -0.045758090913295746, + -0.017513109371066093, + -0.012644225731492043, + -0.012966460548341274, + 0.002084516454488039, + 0.019871436059474945, + 0.009222518652677536, + 0.029374171048402786, + 0.04372384026646614, + -0.034317947924137115, + -0.04606439545750618, + -0.010950172320008278, + -0.012098653241991997, + 0.004280110355466604, + 0.011383594013750553, + 0.03893810883164406, + -0.045019518584012985, + -0.07591050118207932, + -0.010219702497124672, + 0.013212147168815136, + -0.028793366625905037, + -0.030891168862581253, + -0.0033433239441365004, + 0.019123762845993042, + -0.02662665769457817, + -0.004042736254632473, + -0.025552136823534966, + -0.022829405963420868, + 0.0012660385109484196, + 0.01352656725794077, + 0.021283317357301712, + 0.010068947449326515, + -0.03599506989121437, + -0.02072708122432232, + -0.04294722527265549, + -0.03359995409846306, + -0.0022797202691435814, + -0.004901070613414049, + 0.023184867575764656, + 0.02592458762228489, + 0.0029436899349093437, + 0.01928367279469967, + -0.04038098081946373, + 0.029836345463991165, + -0.03555095195770264, + -0.053362540900707245, + 0.019083717837929726, + 0.03274812176823616, + 0.0033570530358701944, + 0.0027930366341024637, + -0.027564723044633865, + 0.0346217155456543, + 0.014072909951210022, + -0.007971499115228653, + 0.00667565269395709, + -0.029412895441055298, + -0.025657538324594498, + -0.01431237068027258, + -0.01839698664844036, + -0.016355568543076515, + -0.0055282460525631905, + 0.013464806601405144, + 0.026723729446530342, + 0.013121334835886955, + -0.034044694155454636, + 0.004707292653620243, + -0.027391325682401657, + 0.013808510266244411, + -0.0673406571149826, + -0.04036817327141762, + -0.022903399541974068, + -0.004162415396422148, + -0.005411857273429632, + -0.05763149634003639, + -0.008736681193113327, + 0.006993396673351526, + -0.008339074440300465, + -0.023620810359716415, + 0.050093866884708405, + 0.032814573496580124, + 0.022187180817127228, + 0.05829661339521408, + -0.011433443054556847, + 0.005358359310775995, + -0.006649436894804239, + 0.03678736835718155, + 0.0005444521084427834, + 0.010192209854722023, + 0.02492641471326351, + -0.023739397525787354, + -0.029410315677523613, + 0.029042089357972145, + -0.023552969098091125, + -7.196670776465908e-05, + -0.01775646209716797, + 0.0041397493332624435, + -0.03300531953573227, + -0.024118199944496155, + -0.0189166571944952, + 0.02936805970966816, + 0.005754200741648674, + -0.010795099660754204, + 0.012446960434317589, + -0.020191188901662827, + 0.009869284927845001, + 0.007056018803268671, + -0.0032474675681442022, + 0.008739111945033073, + -0.029890725389122963, + -0.007624286226928234, + -0.04010063037276268, + -0.014568090438842773, + 0.012381193228065968, + 0.0368923544883728, + -0.06586285680532455, + -0.029087968170642853, + 0.024706657975912094, + -0.04384607449173927, + -0.00987512618303299, + -0.006162652280181646, + -0.03870116546750069, + -0.00973570253700018, + 0.0196234080940485, + 0.019160402938723564, + -0.01450613234192133, + -0.007779089733958244, + -0.031708136200904846, + -0.014765816740691662, + 0.06561583280563354, + 0.010768518783152103, + -0.020120151340961456, + 0.024221697822213173, + 0.1123451516032219, + 0.03520305082201958, + 0.010802801698446274, + 0.020730890333652496, + 0.09591299295425415, + -0.021294517442584038, + 0.027249090373516083, + 0.004659861326217651, + 0.046410199254751205, + 0.011727889999747276, + -0.013320514932274818, + 0.010483628138899803, + -0.0020710029639303684, + -0.02061009593307972, + -0.012256808578968048, + -0.040628060698509216, + 0.05421328544616699, + -0.007530408911406994, + 0.0014252659166231751, + 0.027862219139933586, + -0.026570137590169907, + 0.006106657907366753, + -0.01742909848690033, + -0.003911198116838932, + -0.04746726155281067, + -0.004347512032836676, + -0.05699501559138298, + -0.010207620449364185, + 0.0017553592333570123, + 0.06053493916988373, + -0.0010193459456786513, + 0.013646592386066914, + -0.01689976453781128, + 0.023149948567152023, + -0.03806132450699806, + -0.026645537465810776, + -0.0038942256942391396, + -0.013335999101400375, + 0.04719501733779907, + -0.03385644778609276, + 0.017283732071518898, + -0.014938338659703732, + 0.030307603999972343, + 0.04477729648351669, + -0.027045758441090584, + -0.0041003962978720665, + 0.00838444847613573, + -0.017937609925866127, + 0.022281290963292122, + -0.020868930965662003, + 0.014417927712202072, + -0.018796663731336594, + 0.013356479816138744, + 0.018280087038874626, + -0.024952702224254608, + 0.037682659924030304, + -0.03685424476861954, + -0.011345109902322292, + 0.014727502129971981, + 0.01955264061689377, + -0.005267563741654158, + -0.008490134961903095, + 0.015980426222085953, + -0.03446657583117485, + -0.040963269770145416, + -0.010577877052128315 + ], + "start_index": 0, + "end_index": 55, + "token_count": 21, + "file_type": "avap_code", + "filename": "calculo_de_expiracion.avap", + "addResult": true, + "getDateTime": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "51b0714a-0dea-590f-829b-1e5518e206f0", + "_source": { + "text": "getDateTime(\"%Y-%m-%d %H:%M:%S\", 0, \"Europe/Madrid\", sql_date)\naddResult(sql_date)", + "embedding": [ + -0.0043341247364878654, + 0.010809875093400478, + -0.042595379054546356, + 0.03341595456004143, + -0.03682032227516174, + 0.001215379685163498, + -0.03421992436051369, + 0.042943619191646576, + -0.016668077558279037, + -0.01697242632508278, + 0.01136034820228815, + 0.0477682501077652, + -0.018862295895814896, + 0.013075157068669796, + 0.008342461660504341, + 0.015108384191989899, + 0.029026219621300697, + -0.01854383386671543, + 0.013522372581064701, + 0.005259173922240734, + -0.001593857305124402, + 0.0010757879354059696, + -0.026232009753584862, + -0.01837550662457943, + 0.012308945879340172, + -0.04881672188639641, + 0.008480245247483253, + 0.01150515303015709, + 0.03914570063352585, + -0.012327290140092373, + 0.04606836289167404, + -0.03766174614429474, + -0.00024137675063684583, + -0.051375940442085266, + -0.04729422181844711, + 0.014455568976700306, + -0.016964448615908623, + -0.013889125548303127, + -0.05288844183087349, + 0.04260757938027382, + -0.035514529794454575, + -0.023304911330342293, + 0.013805058784782887, + -0.014994134195148945, + 0.025353770703077316, + -0.021811289712786674, + 0.006832261569797993, + -0.011094938963651657, + -0.038632605224847794, + -0.021581439301371574, + 0.00658306572586298, + 0.011415805667638779, + 0.04288402199745178, + 0.0201899241656065, + 0.026853980496525764, + 0.03209354355931282, + -0.016402602195739746, + 0.0211923997849226, + -0.023266403004527092, + -0.05647766962647438, + -0.03421717882156372, + -0.028511153534054756, + -0.04618446156382561, + 0.02373802475631237, + 0.020353782922029495, + 0.015593115240335464, + 0.04049501195549965, + 0.057112593203783035, + -0.026471730321645737, + -0.007511061616241932, + -0.010244340635836124, + -0.006485143676400185, + -0.03338705375790596, + -0.026891188696026802, + -0.06731432676315308, + -0.05280382186174393, + -0.001339341513812542, + 0.017526762560009956, + 0.023321762681007385, + -0.007396801840513945, + -0.0038817361928522587, + -0.021953031420707703, + 0.010720469988882542, + -0.02177419699728489, + -0.02219967730343342, + 0.02539452351629734, + -0.024146338924765587, + 0.023599296808242798, + -0.04002496972680092, + 0.0455658920109272, + -0.008965231478214264, + 0.005424285773187876, + -0.012333516031503677, + -0.06758207827806473, + -0.017212238162755966, + -0.05818874388933182, + 0.008637326769530773, + 0.02004552073776722, + 0.09300816804170609, + 0.012528710067272186, + 0.0009584654471836984, + 0.01566796377301216, + 0.018711861222982407, + -0.007108424324542284, + 0.03993459418416023, + -0.04069070518016815, + 0.06087387353181839, + -0.02529311180114746, + 0.03269564360380173, + -0.0010104369139298797, + -0.004481925163418055, + 0.012414650060236454, + -0.006534818559885025, + 0.046715669333934784, + -0.007429130375385284, + -0.015055245719850063, + -0.023292196914553642, + 0.009453191421926022, + 0.03262859582901001, + -0.016172053292393684, + 0.04432171583175659, + 0.002643981948494911, + 0.05695461854338646, + 0.0004889432457275689, + 0.0029347180388867855, + 0.06486217677593231, + -0.007793981581926346, + -0.012956248596310616, + -0.029923953115940094, + 0.014948718249797821, + 0.011998753063380718, + 0.04235362261533737, + -0.01023807656019926, + -0.03285945579409599, + -0.024943798780441284, + -0.0050367009826004505, + 0.0048719230107963085, + 0.07239174097776413, + 0.02663414180278778, + -0.04694223776459694, + 0.018926996737718582, + 0.012066662311553955, + -0.02562575973570347, + -0.013222475536167622, + 0.07039441168308258, + -0.010530153289437294, + 0.01940544880926609, + -0.006864404771476984, + 0.0018992298282682896, + -0.038282476365566254, + 0.01885390095412731, + 0.03557338938117027, + 0.06066862493753433, + -0.03277969732880592, + -0.009234867058694363, + -0.013910056091845036, + -0.04205290600657463, + 0.052658580243587494, + -0.020671097561717033, + -0.012079396285116673, + -0.02688169851899147, + -0.0006257909117266536, + -0.06608643382787704, + 0.026582198217511177, + 0.004843364004045725, + -0.024419555440545082, + 0.058478280901908875, + -0.0006953835836611688, + 0.003588208695873618, + -0.023009581491351128, + 0.04055400937795639, + -0.035885702818632126, + 0.032260216772556305, + 0.00656146602705121, + 0.01848152093589306, + 0.027614660561084747, + 0.07973454147577286, + 0.0231767650693655, + 0.026054637506604195, + -0.05395945534110069, + -0.01944531872868538, + -0.0018485235050320625, + -0.014155399054288864, + -0.08306897431612015, + -0.02450714074075222, + 0.020743736997246742, + -0.0012500436278060079, + -0.02596411481499672, + -0.017651032656431198, + -0.008901813067495823, + -0.0035102698020637035, + -0.034915946424007416, + 0.041609544306993484, + 0.007838907651603222, + 0.0400012843310833, + 0.016311993822455406, + 0.026931922882795334, + 0.029660016298294067, + -0.018727673217654228, + -0.027694497257471085, + -0.023187613114714622, + 0.02959076315164566, + -0.001665414310991764, + 0.00662498502060771, + -0.03459084779024124, + -0.0063557373359799385, + -0.02987729385495186, + -0.034952741116285324, + 0.022898264229297638, + 0.024052469059824944, + 0.010781754739582539, + 0.006976984441280365, + -0.01180353108793497, + 0.0043650660663843155, + -0.0008224743069149554, + -0.04035159945487976, + -0.011725581251084805, + 0.021000679582357407, + -0.05480959266424179, + -0.00622145552188158, + -0.00616978807374835, + 0.03466750681400299, + -0.002115831710398197, + -6.473051325883716e-05, + 0.01624188758432865, + 0.017113685607910156, + -0.002954180585220456, + 0.05679143965244293, + 0.007049791980534792, + 0.010573441162705421, + 0.039366453886032104, + 0.023656990379095078, + -0.0018566942308098078, + -0.01502727810293436, + 0.030806181952357292, + -0.03415343910455704, + -0.019844496622681618, + 0.01909489370882511, + -0.012683709152042866, + 0.00756218982860446, + -0.04500777646899223, + 0.02027449943125248, + 0.030987627804279327, + -0.01573736034333706, + -0.014648688025772572, + 0.0020685456693172455, + -0.02530073933303356, + 0.06665494292974472, + -0.01130507979542017, + -0.026926599442958832, + 0.024836618453264236, + 0.00917627103626728, + -0.06831274926662445, + 0.02419333904981613, + 0.020053183659911156, + -0.024887004867196083, + 0.0271835345774889, + -0.012561500072479248, + 0.030644044280052185, + 0.006895010359585285, + -0.006525914650410414, + 0.027588246390223503, + -0.025619003921747208, + 0.026466859504580498, + 0.05009244382381439, + -0.009959089569747448, + -0.039302632212638855, + 0.009202223271131516, + 0.02951052039861679, + -0.011379231698811054, + -0.010113466531038284, + 0.015347142703831196, + 0.010906515643000603, + 0.012136212550103664, + 0.03075147606432438, + 0.022147957235574722, + -0.014449496753513813, + -0.03563740476965904, + 0.07980260252952576, + -0.012060314416885376, + -0.0043687098659574986, + 0.0002925246662925929, + 0.012385496869683266, + -0.010999573394656181, + 0.03369694575667381, + -0.05972326546907425, + 0.035907354205846786, + -0.017020143568515778, + -0.023774299770593643, + -0.09772854298353195, + -0.0031218405347317457, + -0.011998769827187061, + 0.05973315238952637, + -0.007559746503829956, + -0.010722535662353039, + -0.003975452855229378, + -0.009069724008440971, + -0.14047136902809143, + -0.0013204391580075026, + -0.03109675459563732, + 0.014293789863586426, + -0.004427812527865171, + 0.004071586765348911, + -0.05127021670341492, + -0.02725382335484028, + -0.028355557471513748, + 0.03623530641198158, + -0.012684793211519718, + -0.06279797852039337, + 0.018491249531507492, + -0.02909696288406849, + -0.04236884042620659, + 0.006681777536869049, + -0.002602247055619955, + -0.020352762192487717, + 0.0321199968457222, + -0.0545213520526886, + -0.016377607360482216, + -0.05794971063733101, + -0.012585718184709549, + -0.014480224810540676, + -0.07581662386655807, + -0.03147192671895027, + -0.0001455503370380029, + 0.021359365433454514, + -0.0029679713770747185, + 0.004620087333023548, + -0.0028149366844445467, + -0.024556897580623627, + -0.0017394858878105879, + 0.02330000512301922, + -0.003714356105774641, + 0.006837357766926289, + 0.02973679080605507, + -0.023729272186756134, + 0.006723378319293261, + -0.0068228235468268394, + 0.030117372050881386, + 0.0023469466250389814, + 0.006474080961197615, + 1.6655601939419284e-05, + -0.026516875252127647, + 0.010393902659416199, + -0.016509540379047394, + -0.01692863553762436, + -0.046630848199129105, + -0.023688897490501404, + 0.0533159039914608, + -0.027672884985804558, + 0.009469835087656975, + 0.010111192241311073, + -0.039357639849185944, + 0.04687008261680603, + -0.044740837067365646, + 0.0269558597356081, + -0.06951975077390671, + -0.004522086586803198, + 0.008653435856103897, + -0.01946198381483555, + 0.01469549909234047, + 0.014323373325169086, + 0.03262442722916603, + -0.010752362199127674, + 0.009035634808242321, + -0.005041866563260555, + 0.047609057277441025, + -0.030195267871022224, + 0.07478342205286026, + 0.00515704182907939, + 0.01426923368126154, + -0.0345725454390049, + 0.038774337619543076, + 0.007983018644154072, + -0.043418038636446, + -0.020872687920928, + -0.024668661877512932, + -0.10072798281908035, + -0.03715767711400986, + -0.016245000064373016, + -0.0013226288137957454, + 0.055333804339170456, + -0.005910929758101702, + 0.00535422470420599, + -0.006694083102047443, + 0.043833065778017044, + 0.02056819386780262, + 0.2163676619529724, + 0.030772743746638298, + 0.01030273549258709, + 0.01592814177274704, + 0.07696140557527542, + -0.0194315817207098, + -0.0699608325958252, + -0.01521445345133543, + -0.00848461501300335, + -0.035921722650527954, + 0.009025933220982552, + -0.016259973868727684, + -0.040040433406829834, + -0.04216897115111351, + -0.01607794314622879, + 0.044935937970876694, + -0.03245646879076958, + -0.0017616822151467204, + 0.05015581473708153, + 0.0005317488103173673, + 0.019260935485363007, + -0.03757403418421745, + -0.031523965299129486, + 0.009505211375653744, + -0.020502008497714996, + -0.005339076276868582, + -0.022434324026107788, + 0.04677271842956543, + -0.006394683849066496, + 0.013303258456289768, + -0.013179987668991089, + 0.03751131892204285, + 0.03434707224369049, + -0.009465684182941914, + -0.01867235265672207, + -0.013534844852983952, + 0.028271140530705452, + -0.0015929655637592077, + -0.022283973172307014, + 0.029788434505462646, + 0.023281751200556755, + -0.007065804209560156, + 0.008451282978057861, + 0.06525424867868423, + 0.006704848259687424, + -0.011406553909182549, + 0.021226273849606514, + -0.0061522917822003365, + -0.012809576466679573, + -0.00599118834361434, + -0.0028581053484231234, + -0.052852850407361984, + -0.011451349593698978, + 0.006647330243140459, + 0.008714611642062664, + 0.013137335889041424, + 0.019121410325169563, + 0.019337579607963562, + -0.015400590375065804, + -0.004093642346560955, + 0.029641110450029373, + 0.011431646533310413, + -0.017567306756973267, + -0.0013776917476207018, + -0.01330194715410471, + -0.006592094898223877, + 0.06207987666130066, + 0.015511913225054741, + 0.013810604810714722, + 0.008067866787314415, + -0.005065841134637594, + 0.013627517968416214, + 0.01461890246719122, + 0.008424706757068634, + 0.012932575307786465, + 0.011069881729781628, + 0.010911328718066216, + 0.04780258238315582, + -0.004327985458076, + 0.06963074952363968, + -0.025811033323407173, + -0.030309883877635002, + -0.04142439737915993, + 0.03544056788086891, + 0.00507319625467062, + -0.034828104078769684, + -0.019755762070417404, + 0.025588776916265488, + 0.0004896268364973366, + -0.03331634774804115, + 0.029718652367591858, + -0.0028175946790724993, + 0.005869297310709953, + 0.009475857950747013, + 0.00249773939140141, + 0.014153326861560345, + 0.04502881318330765, + 0.022561324760317802, + -0.022681551054120064, + -0.00931553915143013, + -0.022548221051692963, + 0.01194320060312748, + -0.01874062791466713, + -0.05529329180717468, + 0.017911851406097412, + -0.016920337453484535, + 0.001944000949151814, + -0.05313384160399437, + -0.021821346133947372, + -0.003563396865502, + -0.03556586802005768, + 0.022126732394099236, + -0.008678646758198738, + 0.00829647108912468, + -0.05058232694864273, + 0.03822849690914154, + 0.04502110555768013, + 0.021006617695093155, + -0.0023567902389913797, + 0.039069999009370804, + -0.052559010684490204, + -0.0328732468187809, + -0.020553670823574066, + -0.02187211625277996, + 0.0074215056374669075, + -0.012501065619289875, + 0.014923914335668087, + 0.026708167046308517, + -0.02782687172293663, + 0.04156797379255295, + 0.029459549114108086, + -0.02433808706700802, + 0.011812126263976097, + -0.012134312652051449, + 0.010423954576253891, + -0.004274632781744003, + 0.033756133168935776, + 0.06186032295227051, + -0.020259229466319084, + 0.0579938106238842, + -0.004496028646826744, + -0.02181611955165863, + -0.005413948092609644, + -0.016406238079071045, + 0.0038983491249382496, + 0.009839721024036407, + 0.005828209687024355, + 0.03212819993495941, + -0.02729208394885063, + 0.043577805161476135, + 0.05313948169350624, + 0.005919123534113169, + 0.06872297823429108, + -0.040175117552280426, + 0.012869292870163918, + -0.04283055663108826, + -0.020044010132551193, + 0.028784215450286865, + -0.002363220788538456, + -0.009693260304629803, + -0.003775800345465541, + -0.00018210014968644828, + 0.006786270532757044, + 0.060882821679115295, + -0.008305134251713753, + -0.03297337144613266, + -0.015744822099804878, + 0.0296104047447443, + -0.04362143203616142, + 0.018608318641781807, + -0.0007563071558251977, + -0.025557314977049828, + -0.029419036582112312, + 0.018615515902638435, + 0.01518348976969719, + 0.0203765407204628, + -0.04361432045698166, + -0.03488590940833092, + -0.031113212928175926, + -0.0006604258669540286, + 0.01956290565431118, + -0.02270488627254963, + -0.018023137003183365, + -0.004786204546689987, + -0.008984997868537903, + -0.011614179238677025, + -0.034633569419384, + -0.012293661944568157, + 0.03841825947165489, + -0.03230426460504532, + -0.010047380812466145, + 0.10410715639591217, + 0.031243493780493736, + -0.038603391498327255, + 0.019409652799367905, + 0.04732714220881462, + 0.01347733661532402, + 0.061284080147743225, + -0.03437208756804466, + -0.06208960339426994, + -0.003913057502359152, + 0.01453316118568182, + 0.005982169881463051, + -0.014400302432477474, + -0.019531410187482834, + -0.008861634880304337, + 0.008759994059801102, + 0.019325463101267815, + -0.01309163961559534, + 0.0425909124314785, + -0.01222517341375351, + 0.003732752287760377, + -0.015910284593701363, + -0.0074843172915279865, + 0.028633350506424904, + -0.027976019307971, + 0.03785937279462814, + -0.019973386079072952, + -0.0047205425798892975, + 0.0391230471432209, + -0.026458267122507095, + -0.013568676076829433, + 0.017780229449272156, + -0.012657495215535164, + -0.036352116614580154, + -0.002345786429941654, + -0.003561927704140544, + -0.015603974461555481, + -0.013863210566341877, + 0.03219200298190117, + -0.014024797827005386, + -0.01988103799521923, + 0.005875026807188988, + 0.008947099559009075, + 0.009087668731808662, + -0.005427087191492319, + -0.02087634615600109, + 0.025157902389764786, + 0.01311759278178215, + -0.0172483641654253, + -0.012015221640467644, + 0.011489219963550568, + 0.028615813702344894, + 0.03482361137866974, + 0.02974104695022106, + 0.046021968126297, + -0.06034122779965401, + -0.004861060529947281, + 0.0035955540370196104, + -0.006966394372284412, + 1.5140767573029734e-05, + -0.0009013435337692499, + -0.023823708295822144, + -0.03463606908917427, + 0.05842714384198189, + 0.04018488526344299, + -0.03420066460967064, + 0.012490213848650455, + -0.057307105511426926, + -0.0448840893805027, + 0.005774261429905891, + 0.03544292971491814, + 0.01167791523039341, + -0.03461441025137901, + -0.002361489459872246, + -0.08120109140872955, + 0.023907030001282692, + -0.07885576784610748, + -0.017738396301865578, + 0.04173385724425316, + 0.00040901085594668984, + -0.013264487497508526, + -0.022888921201229095, + -0.03858005255460739, + -0.05415574088692665, + 0.036682505160570145, + -0.014227225445210934, + -0.010722920298576355, + 0.03747930750250816, + -0.018345408141613007, + -0.03613244742155075, + 0.028590038418769836, + -0.005912563297897577, + -0.024381617084145546, + -0.0028245423454791307, + -0.023826200515031815, + 0.0034152744337916374, + 0.0060904743149876595, + 0.006507311016321182, + -0.09050141274929047, + -0.0238024964928627, + -0.047900646924972534, + -0.03262026235461235, + 0.026428354904055595, + -0.02160775102674961, + -0.05087444186210632, + -0.023442672565579414, + 0.0077376398257911205, + -0.01932704448699951, + -0.014557716436684132, + -0.019928688183426857, + -0.015656940639019012, + -0.01895148679614067, + -0.0037539589684456587, + 0.005766240879893303, + 0.03159349039196968, + -0.03438340499997139, + -0.04259468615055084, + 0.06986095756292343, + -0.03269697353243828, + -0.006621448323130608, + -0.012389631010591984, + 0.001626339158974588, + 0.035253819078207016, + 0.010322274640202522, + -0.009548308327794075, + 0.03274201229214668, + -0.0011765719391405582, + -0.021574050188064575, + -0.037620414048433304, + 0.014155834913253784, + -0.04832983389496803, + -0.021071188151836395, + 0.014580031856894493, + 0.0342310406267643, + -0.024693693965673447, + -0.017601676285266876, + 0.005981059744954109, + -0.030323581770062447, + -0.01188513170927763, + -0.023448549211025238, + 0.019700050354003906, + -0.012616719119250774, + 0.0005204692133702338, + -0.030013950541615486, + -0.026589833199977875, + 0.019890470430254936, + -0.012322640046477318, + -0.018846318125724792, + -0.02174830436706543, + 0.006317751482129097, + 0.009350484237074852, + 0.05434732511639595, + -0.04537396505475044, + -0.018665984272956848, + -0.005612432956695557, + -0.02346828766167164, + -0.00743856793269515, + -0.014702861197292805, + -0.0017266892828047276, + -0.011141538619995117, + 0.018407467752695084, + -0.004491737112402916, + -0.011834608390927315, + -0.004570788238197565, + -0.00024932579253800213, + -0.025146877393126488, + 0.012085216119885445, + 0.0443347729742527, + 0.01398851815611124, + -0.04057366028428078, + 0.02187587507069111, + -0.045034557580947876, + -0.016942428424954414, + -0.026370558887720108, + 0.006251250393688679, + -0.007998569868505001, + 0.06525111198425293, + -0.045085228979587555, + 0.012038635089993477, + -0.0043827444314956665, + 0.03138110414147377, + 0.045056141912937164, + 0.016113685443997383, + -0.029244087636470795, + 0.04420476406812668, + -0.0005581264267675579, + 0.055708300322294235, + 0.003609112463891506, + -0.033117227256298065, + 0.020680449903011322, + -0.007445995230227709, + -0.033409494906663895, + -0.048192135989665985, + -0.03578920662403107, + 0.02296755649149418, + -0.03357330709695816, + 0.019299518316984177, + 0.02466050162911415, + 0.0027090117800980806, + -0.0648287683725357, + -0.015048325061798096, + -0.042097531259059906, + 0.016620701178908348, + -0.14290273189544678, + 0.015416380017995834, + -0.010213524103164673, + 0.011876762844622135, + -0.018330516293644905, + 0.028239432722330093, + -0.05100724473595619, + -0.012779521755874157, + -0.009495490230619907, + -0.022622428834438324, + -0.0316433310508728, + -0.005117849912494421, + 0.011705609038472176, + -0.010505263693630695, + -0.0474553182721138, + 0.007449539378285408, + 0.011225440539419651, + -0.031485866755247116, + -0.05323908478021622, + 0.03386398404836655, + 0.02014363557100296, + -0.04055241122841835, + 0.07839682698249817, + 0.04644615575671196, + -0.04166540130972862, + 0.009932653978466988, + 0.007826150394976139, + 0.05734848603606224, + -0.009343566372990608, + -0.06670752167701721, + 0.03258903697133064, + -0.00881626084446907, + 0.009452905505895615, + 0.04190773516893387, + 0.0674685686826706, + 0.01603526808321476, + 0.013106354512274265, + 0.07514260709285736, + -0.025825785472989082, + 0.03290326148271561, + 0.039587199687957764, + 0.02963067963719368, + -0.054940029978752136, + 0.027988871559500694, + 0.027655266225337982, + -0.005690037738531828, + -0.028268370777368546, + -0.017413640394806862, + -0.015042820014059544, + -0.005124179646372795, + 0.008678167127072811, + 0.03580056503415108, + 0.01906464621424675, + 0.026148488745093346, + -0.001976151019334793, + -0.0498502142727375, + -0.0002221329923486337, + -0.004121232312172651, + 0.04348362982273102, + 0.015689939260482788, + 0.06674771755933762, + 0.043433643877506256, + -0.03688015788793564, + -0.046271663159132004, + -0.026122136041522026, + 0.03951472416520119, + -0.02385528013110161, + 0.003175116144120693, + -0.0019835932180285454, + 0.02085004933178425, + -0.013349572196602821, + -0.004411252681165934, + 0.01328075211495161, + -0.02440032549202442, + 0.02037573605775833, + 0.03776567056775093, + 0.016706295311450958, + 0.02820923738181591, + -0.08114572614431381, + -0.015083443373441696, + -0.039633918553590775, + -0.01487753726541996, + -0.003299759468063712, + 0.00030412382329814136, + 0.03583821281790733, + 0.00827857106924057, + 0.008568305522203445, + 0.016037574037909508, + -0.0742863342165947, + 0.013837970793247223, + -0.015120854601264, + -0.05121629312634468, + -0.04756605997681618, + 0.01178738009184599, + -0.013700210489332676, + 0.01263707596808672, + -0.033761534839868546, + 0.016871778294444084, + 0.02634754590690136, + -0.008357133716344833, + 0.0029162641149014235, + -0.0077207088470458984, + -0.035440683364868164, + -0.039656054228544235, + 0.013927726075053215, + -0.03585941344499588, + 0.014821994118392467, + 0.02473541721701622, + 0.0005638627335429192, + 0.017055349424481392, + 0.019371747970581055, + -0.006675431039184332, + -0.031031135469675064, + 0.04443797096610069, + -0.01600242778658867, + -0.006935008801519871, + -0.02045273780822754, + 0.023160330951213837, + 0.03944946452975273, + -0.058919478207826614, + 0.011868995614349842, + 0.014175308868288994, + 0.048979323357343674, + -0.011516832746565342, + 0.03693428635597229, + 0.07719279080629349, + -0.014147634617984295, + 0.06104440614581108, + -0.007803115528076887, + 0.03534835949540138, + -0.03660447895526886, + -0.031219525262713432, + 0.04074142873287201, + 0.02840975485742092, + 0.023816276341676712, + 0.01283406000584364, + -0.01921866647899151, + 0.03045075386762619, + -0.051174212247133255, + -0.009174851700663567, + -0.011163542047142982, + -0.02137666754424572, + -0.016903018578886986, + -0.031095819547772408, + -0.017354803159832954, + 0.029609164223074913, + -0.0044238753616809845, + -0.019621334969997406, + 0.028972698375582695, + -0.007792034186422825, + 0.0041928980499506, + 0.0069046332500875, + -0.028638457879424095, + 0.03101743943989277, + -0.029644927009940147, + 0.0076648821122944355, + -0.0446971170604229, + 0.01770724542438984, + -0.014003362506628036, + 0.007447563577443361, + -0.044208526611328125, + -0.011138074100017548, + 0.013387944549322128, + -0.012335781008005142, + -0.014185492880642414, + -0.012678549624979496, + -0.04581355303525925, + 0.004120504483580589, + 0.00624089827761054, + 0.024384701624512672, + 0.009557515382766724, + -0.029418449848890305, + -0.016612166538834572, + -0.038444045931100845, + 0.0774700865149498, + 0.0015459671849384904, + -0.02316942811012268, + 0.014760877005755901, + 0.11084556579589844, + 0.003954974934458733, + -0.012681554071605206, + 0.0109432777389884, + 0.06630942225456238, + -0.038076985627412796, + 0.03372575342655182, + 0.06092324107885361, + 0.05445144325494766, + 0.009182309731841087, + 0.008134408853948116, + 0.006491275038570166, + -0.023959128186106682, + 0.008741633035242558, + 0.0293896347284317, + -0.017329439520835876, + 0.052541445940732956, + 0.03219141811132431, + -0.006894704885780811, + 0.03538772091269493, + -0.01488257385790348, + 0.0161807332187891, + -0.004670849535614252, + -0.01990126632153988, + -0.01847279630601406, + -0.036545153707265854, + 0.005644768010824919, + -0.024135736748576164, + -0.007601536810398102, + 0.01455593015998602, + 0.03749050945043564, + 0.018145231530070305, + -0.024022135883569717, + -0.00020675895211752504, + -0.044631168246269226, + -0.03775294870138168, + 0.012350834906101227, + -0.0002037506055785343, + 0.04252410680055618, + -0.003087499877437949, + 0.01591016910970211, + -0.006528581492602825, + 0.024830404669046402, + 0.02015719562768936, + -0.023883696645498276, + -0.0003319819807074964, + -0.0054259090684354305, + 0.014335871674120426, + -0.0005957324174232781, + -0.00557026406750083, + -0.0067894128151237965, + -0.009721336886286736, + -0.04397366940975189, + -0.0031631283927708864, + -0.014213969931006432, + 0.05253066122531891, + 0.0151202492415905, + -0.0031130712013691664, + 0.013508723117411137, + 0.040864091366529465, + -0.010364883579313755, + -0.0028975571040064096, + 0.018599195405840874, + 0.026638975366950035, + -0.007921695709228516, + -0.04898352548480034 + ], + "start_index": 0, + "end_index": 82, + "token_count": 32, + "file_type": "avap_code", + "filename": "fecha_para_base_de_datos.avap", + "addResult": true, + "getDateTime": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "64cc8997-4f7a-59be-aa94-78359ff86bc9", + "_source": { + "text": "addParam(\"lang\", l)\nif(l, \"es\", \"=\")\n addVar(msg, \"Hola\")\nend()\naddResult(msg)", + "embedding": [ + -0.007415969856083393, + 0.0027628932148218155, + 0.023370487615466118, + 0.020372163504362106, + -0.020064357668161392, + -0.018034089356660843, + 0.012370666489005089, + 0.01810312271118164, + -0.04693817347288132, + -0.04435938969254494, + -0.012301419861614704, + 0.00893451739102602, + 0.026338713243603706, + 0.018080271780490875, + 0.012407496571540833, + 0.0021489067003130913, + 0.0021616043522953987, + -0.020755747333168983, + 0.004616206511855125, + 0.017546439543366432, + -0.05213805288076401, + 0.027388732880353928, + -0.0217686016112566, + 0.016689781099557877, + 0.026644429191946983, + -0.023874254897236824, + 0.020768173038959503, + -0.025266069918870926, + -0.01574166677892208, + -0.02893396094441414, + 0.002945992164313793, + 0.0022813042160123587, + -0.03755151107907295, + -0.060204748064279556, + -0.011544414795935154, + 0.016461679711937904, + -0.024393800646066666, + 0.014233715832233429, + -0.06250105798244476, + 0.011063812300562859, + -0.041880711913108826, + -0.002295298967510462, + 0.007671930827200413, + -0.029689021408557892, + 0.03402874618768692, + 0.007777542807161808, + 0.004372620023787022, + -0.018497345969080925, + -0.02887178212404251, + -0.052861157804727554, + 0.0025904951617121696, + 0.008378496393561363, + 0.043594393879175186, + -0.0110377948731184, + 0.024659110233187675, + 0.03717243671417236, + -0.06112233176827431, + 0.010597916319966316, + -0.07510361820459366, + -0.019161293283104897, + -0.008949918672442436, + -0.0030791545286774635, + -0.028782738372683525, + 0.004919140599668026, + 0.011184151284396648, + 0.0316019244492054, + -0.00016024567594286054, + 0.007150069810450077, + -0.022302519530057907, + 0.010846901684999466, + 0.002830423880368471, + 0.02743791975080967, + -0.010173704475164413, + -0.023923976346850395, + -0.07028558105230331, + 0.0072333235293626785, + 0.04147345945239067, + -0.000995297683402896, + -0.039906471967697144, + -0.008886237628757954, + -0.0023207180202007294, + -0.0019058538600802422, + 0.01266387477517128, + 0.009153789840638638, + 0.02824142761528492, + 0.039362501353025436, + 0.01475097518414259, + 0.021639034152030945, + -0.03277549520134926, + 0.0034205145202577114, + -0.020127415657043457, + -0.014278430491685867, + 0.01583167538046837, + -0.06712082773447037, + -0.013722597621381283, + -0.013749555684626102, + 0.00524909608066082, + -0.009523110464215279, + 0.018540455028414726, + 0.023281501606106758, + -0.019794905558228493, + 0.027488021180033684, + 0.018061446025967598, + 0.01919942907989025, + 0.044977959245443344, + 0.02183235064148903, + 0.02508680149912834, + -0.003789633745327592, + 0.011902650818228722, + -0.012394217774271965, + 0.026482556015253067, + 0.01023086253553629, + -0.012676224112510681, + 0.005766061134636402, + 0.0022430536337196827, + -0.05143961310386658, + -0.027430452406406403, + -0.0001064243697328493, + 0.034203920513391495, + 0.00845598615705967, + 0.04113151133060455, + 0.027180572971701622, + 0.03694717213511467, + 0.027634169906377792, + 0.0029296150896698236, + 0.08731819689273834, + -0.022682424634695053, + 0.05634361505508423, + -0.03672885149717331, + 0.018979080021381378, + 0.007341730874031782, + -0.0056798807345330715, + -0.014507227577269077, + 0.015608159825205803, + -0.04840712249279022, + -0.007119207642972469, + -0.045673977583646774, + 0.03542955219745636, + 0.03314319625496864, + -0.04971814900636673, + 0.027183514088392258, + 0.02979862317442894, + 0.008230790495872498, + -0.02665597014129162, + 0.044306278228759766, + -0.048186980187892914, + 0.04778134822845459, + -0.003942166920751333, + 0.020966995507478714, + -0.025737809017300606, + -0.03789373114705086, + 0.03575455769896507, + 0.04672618582844734, + -0.011535690166056156, + 0.014656431041657925, + -0.027650905773043633, + -0.01578475534915924, + 0.03533227741718292, + 0.030709262937307358, + 0.019180797040462494, + -0.011410525068640709, + 0.0036159916780889034, + -0.027997862547636032, + -0.017165834084153175, + 0.02795547805726528, + -0.03348471224308014, + 0.01996528171002865, + -0.022637655958533287, + 0.0011101017007604241, + -0.05418165400624275, + 0.01140624564141035, + -0.023563502356410027, + 0.0490853451192379, + 0.007862272672355175, + -0.011374840512871742, + 0.025575436651706696, + 0.06884241104125977, + 0.02964564599096775, + 0.03220963105559349, + -0.027810029685497284, + -0.029267188161611557, + -0.038168393075466156, + -0.0429898202419281, + -0.0640081986784935, + -0.0233153086155653, + 0.034667324274778366, + 0.014932422898709774, + -0.028199542313814163, + 0.002644885564222932, + -0.01123092882335186, + -0.007353238295763731, + -0.017850231379270554, + 0.07834263890981674, + 0.013233446516096592, + 0.019755616784095764, + 0.006694002076983452, + 0.04998425766825676, + -0.017986329272389412, + -0.05696120485663414, + -0.004356386139988899, + -0.019745992496609688, + 0.00453834468498826, + -0.000219654175452888, + -0.03590374439954758, + -0.00853374321013689, + -0.008326094597578049, + -0.03000476211309433, + -0.07131575047969818, + 0.021500172093510628, + -0.002453913912177086, + 0.04782840982079506, + 0.018400749191641808, + -0.06824588775634766, + 0.004710834007710218, + 0.006240696180611849, + -0.022576844319701195, + 0.0016204058192670345, + -0.008022180758416653, + -0.0508212186396122, + -0.04581431671977043, + -0.013625262305140495, + 0.0721139907836914, + 0.02367294207215309, + 0.0779181569814682, + -0.0075413878075778484, + -0.04414482042193413, + 0.04287257418036461, + 0.016407959163188934, + -0.02204194664955139, + -0.0007600361714139581, + -0.004762638360261917, + -0.0076447720639407635, + 0.025162281468510628, + -0.008758444339036942, + 0.0035574326757341623, + -0.03732562065124512, + -0.004835756029933691, + 0.029243625700473785, + 0.05070090293884277, + 0.023924732580780983, + -0.06674246490001678, + -0.02589472569525242, + 0.026112087070941925, + 0.03105064295232296, + -0.06391633301973343, + 0.0075473422184586525, + 0.008523210883140564, + 0.053810954093933105, + -0.041659265756607056, + -0.016350235790014267, + -0.025972820818424225, + -0.009717107750475407, + -0.026859428733587265, + -0.02359594777226448, + -0.0014197705313563347, + 0.007726471405476332, + 0.051816534250974655, + 0.00145115633495152, + -0.003604212775826454, + 0.0139464708045125, + 0.0008727641543373466, + 0.02434871532022953, + 0.007797053549438715, + 0.03477131202816963, + 0.007345525082200766, + 0.023432884365320206, + -0.029115527868270874, + 0.009786447510123253, + 0.01630820333957672, + 0.00047148350859060884, + 0.014134707860648632, + -0.013615820556879044, + 0.016200274229049683, + -0.008970837108790874, + 0.00139168172609061, + 0.03646918758749962, + -0.02159031480550766, + -0.016112927347421646, + 0.05907328426837921, + 0.03310895711183548, + 0.021564671769738197, + 0.01619260013103485, + 0.03676804155111313, + 0.0028719385154545307, + 0.053332097828388214, + 0.0008833069587126374, + 0.022606363520026207, + -0.015485061332583427, + -0.012424079701304436, + -0.0518837608397007, + -0.008857269771397114, + -0.01989751122891903, + 0.06533963233232498, + -0.024219168350100517, + -0.0007160737295635045, + 0.01172432117164135, + 0.0010561317903921008, + -0.15868282318115234, + -0.03454761579632759, + -0.015003534965217113, + -0.02633705362677574, + 0.0006385419401340187, + 0.0031202631071209908, + -0.014584350399672985, + 0.0014416493941098452, + -0.020915286615490913, + 0.036453258246183395, + -0.011152118444442749, + -0.05170123279094696, + 0.017208291217684746, + -0.04198967292904854, + -0.03094342350959778, + 0.0014434931799769402, + 0.01569707691669464, + 0.013996507972478867, + 0.032765746116638184, + -0.05081869289278984, + -0.04408538341522217, + -0.03524092212319374, + 0.02193077653646469, + -0.031376637518405914, + -0.047574661672115326, + -0.04122358560562134, + -0.028516167774796486, + -0.0278637632727623, + -0.01280231773853302, + 0.011934983544051647, + -0.024961812421679497, + 0.04577061906456947, + 0.0008325683302246034, + 0.01698988862335682, + -0.03850284963846207, + 0.012690526433289051, + 0.012559066526591778, + -0.00011568937043193728, + 0.011810919269919395, + 0.012268067337572575, + 0.0366516150534153, + 0.02989210933446884, + 0.007815270684659481, + -0.009571438655257225, + -0.022298000752925873, + 0.000334140844643116, + 0.010954979807138443, + -0.013655249960720539, + -0.01702280156314373, + -0.03321773186326027, + -0.012376533821225166, + -0.05043787881731987, + -0.012621929869055748, + -0.006270124576985836, + -0.05093233659863472, + 0.034395743161439896, + -0.046026118099689484, + -0.012576177716255188, + -0.0002651939576026052, + -0.02517535723745823, + -0.0080854007974267, + 0.002737135626375675, + 0.0101698637008667, + -0.010942653752863407, + -0.04066213592886925, + -0.005390608217567205, + 0.018606428056955338, + 0.026688795536756516, + 0.0745229572057724, + -0.04369430989027023, + 0.05833880975842476, + -0.03446879982948303, + 0.003555064322426915, + 0.016500774770975113, + 0.024038678035140038, + 0.01611136458814144, + -0.0037970750126987696, + -0.022195998579263687, + -0.018762169405817986, + -0.10646972805261612, + -0.04143659770488739, + 0.026798008009791374, + -0.007167972158640623, + 0.01961636357009411, + -0.011127104982733727, + -0.010756268166005611, + 0.01548701897263527, + 0.0061600953340530396, + 0.04994335398077965, + 0.22685971856117249, + 0.04723811522126198, + 0.0011540506966412067, + 0.02682589739561081, + 0.03545760363340378, + -0.03957917168736458, + -0.001480742241255939, + 0.02267293632030487, + -0.015866847708821297, + -0.02676815539598465, + 0.0075488402508199215, + 0.027582447975873947, + -0.031219474971294403, + 0.009421616792678833, + -0.0009329708991572261, + 0.015423927456140518, + -0.055021051317453384, + 0.02400146797299385, + 0.05460076406598091, + 0.0017483506817370653, + 0.0018998610321432352, + -0.01335866842418909, + -0.058904338628053665, + -0.013299312442541122, + -0.010936031118035316, + -0.015984268859028816, + -0.014030582271516323, + -0.023469986394047737, + 0.02203044667840004, + -0.008430583402514458, + -0.0003990298428107053, + 0.00593541469424963, + -0.008888617157936096, + 0.0032325454521924257, + 0.007017128169536591, + -0.030705006793141365, + -0.003300817683339119, + -0.01368835661560297, + -0.013866051100194454, + -0.0006475118570961058, + 0.019077086821198463, + 0.0009552373085170984, + 0.06667938828468323, + 0.03318855166435242, + -0.027214858680963516, + -0.008387740701436996, + 0.012596304528415203, + -0.03829335793852806, + -0.050137072801589966, + 0.0014630649238824844, + -0.022859465330839157, + -0.019430581480264664, + -0.01153895165771246, + 0.0030993912369012833, + 0.001134380348958075, + 0.005295224022120237, + 0.025467002764344215, + 0.0037407055497169495, + -0.014135348610579967, + 0.010428727604448795, + 0.04221805930137634, + 0.003082149662077427, + -0.007832850329577923, + -0.005315952003002167, + -0.008822673000395298, + 0.03219558671116829, + 0.03375638648867607, + -0.040846358984708786, + 0.022497128695249557, + 0.06662097573280334, + -0.0187979768961668, + 0.005086839664727449, + 0.009876533411443233, + 0.03030112013220787, + -0.0014487506123259664, + -0.03969970718026161, + 0.010212214663624763, + -0.024867456406354904, + 0.03254681080579758, + 0.07683984935283661, + -0.026193056255578995, + 0.029005177319049835, + -0.07334601879119873, + 0.050118062645196915, + 0.012535050511360168, + 0.021252986043691635, + 0.008278215304017067, + 0.07710899412631989, + -0.011712449602782726, + 0.01627884805202484, + -0.025579780340194702, + -0.018119163811206818, + 0.005176300648599863, + 0.017928913235664368, + -0.01181123312562704, + 0.02926550805568695, + 0.04966222494840622, + 0.004918982740491629, + -0.009499190375208855, + 0.031308047473430634, + -0.02422456070780754, + 0.01051014568656683, + 0.0018601554911583662, + -0.025504544377326965, + 0.04159941151738167, + 0.006893785670399666, + -0.029230425134301186, + -8.073353092186153e-05, + -0.0282340869307518, + -0.002303022425621748, + -0.04911470040678978, + 0.013247772119939327, + 0.025687137618660927, + 0.03723765164613724, + 0.02957524172961712, + 0.043291401118040085, + -0.0074020144529640675, + 0.0007578934310004115, + 0.044243186712265015, + -0.019418956711888313, + -0.012556236237287521, + -0.014804670587182045, + -0.03693339228630066, + 0.005016333889216185, + -0.01178046502172947, + -0.029459815472364426, + 0.05021957680583, + 0.06810068339109421, + -0.04220733419060707, + 0.020964445546269417, + 0.03342907130718231, + -0.0057456959038972855, + -0.00857602246105671, + 0.005156815517693758, + 0.024841923266649246, + 0.014451835304498672, + 0.03151615709066391, + 0.03919593617320061, + 0.015603620558977127, + 0.02890199050307274, + -0.0077066137455403805, + -0.038287386298179626, + -0.00624914700165391, + 0.01502468716353178, + -0.006913095712661743, + 0.0020753040444105864, + -0.030461948364973068, + -0.023984048515558243, + 0.0033247198443859816, + 0.027902673929929733, + 0.01615268550813198, + 0.04453225061297417, + 0.061438072472810745, + -0.05539645254611969, + -0.032555222511291504, + -0.04322635382413864, + -0.0014076876686885953, + 0.03808541223406792, + -0.008913911879062653, + -0.015234154649078846, + 0.00603689718991518, + 0.03147805109620094, + 0.012699018232524395, + 0.024534566327929497, + -0.03419646993279457, + -0.008987030014395714, + -0.005960278213024139, + -0.020054658874869347, + -0.04029255732893944, + 0.021625565364956856, + 0.02380443923175335, + -0.04453035071492195, + -0.019371887668967247, + 0.029313569888472557, + -0.03858663886785507, + -0.008651254698634148, + -0.03409767523407936, + 0.0054502119310200214, + -0.007814290933310986, + -0.0331827737390995, + 0.01597391441464424, + 0.010150684975087643, + -0.016962097957730293, + -0.0070701781660318375, + 0.004152633249759674, + -0.02089296281337738, + 0.003953766543418169, + 0.007677040994167328, + 0.06317496299743652, + -0.020469820126891136, + -0.03968679904937744, + 0.11690634489059448, + 0.0285961776971817, + -0.032188184559345245, + 0.02519114874303341, + 0.05887869372963905, + 0.034976664930582047, + 0.0224232729524374, + -0.03174564614892006, + -0.04689107835292816, + -0.011287207715213299, + -0.002745290519669652, + 0.01500073354691267, + 0.0333770252764225, + 0.008895431645214558, + -0.00635975506156683, + -0.016539042815566063, + -0.013671702705323696, + -0.014163407497107983, + -0.031988952308893204, + -0.02030668966472149, + -0.0028592245653271675, + -0.06538908183574677, + -0.01638117991387844, + 0.026708809658885002, + -0.023707622662186623, + 0.038429901003837585, + 0.023697717115283012, + 0.008136726915836334, + -0.03451094031333923, + -0.025194261223077774, + -0.012822325341403484, + -0.0070313988253474236, + -0.012164883315563202, + -0.019516050815582275, + 0.007294603623449802, + 0.015825459733605385, + 0.006869251374155283, + -0.01706797070801258, + -0.02523241750895977, + -0.013361688703298569, + -0.02514057606458664, + 0.010172982700169086, + 0.03515084832906723, + 0.045492883771657944, + -0.0017547615570947528, + 0.007231699302792549, + 0.05822758004069328, + 0.007251948583871126, + -0.034135062247514725, + -0.008360355161130428, + -0.0035301113966852427, + 0.07515852153301239, + 0.04744672775268555, + 0.012564314529299736, + 0.040619391947984695, + -0.06381445378065109, + -0.04133263975381851, + 0.006547251250594854, + 0.04435695707798004, + -0.039665598422288895, + -0.01445057149976492, + 0.020622985437512398, + -0.044641461223363876, + 0.04619418457150459, + 8.373110904358327e-05, + -0.021886276081204414, + 0.0303692314773798, + -0.027722183614969254, + -0.00041560534737072885, + 0.04125354066491127, + 0.017000583931803703, + -0.03972215950489044, + -0.025128023698925972, + 0.03661934286355972, + -0.06862714141607285, + 0.033005490899086, + -0.042800672352313995, + -0.01329849660396576, + -0.018170515075325966, + 0.02352587692439556, + -0.027373293414711952, + -0.0059181274846196175, + -0.07993728667497635, + 0.011958722956478596, + 0.021903345361351967, + -0.029161708429455757, + -0.03227073699235916, + 0.060961417853832245, + -0.02485332451760769, + -0.06233101338148117, + 0.013560821302235126, + -0.015135026536881924, + 0.03099973127245903, + 0.01637974940240383, + 0.029505396261811256, + -0.01569429785013199, + 0.04894205555319786, + 0.030313115566968918, + -0.08710364252328873, + 0.01142076589167118, + 0.020374411717057228, + -0.030187970027327538, + 0.0433427132666111, + -0.014557999558746815, + -0.03507164120674133, + -0.007679568137973547, + -0.026746008545160294, + -0.0028647270519286394, + 0.009829670190811157, + -0.01476199459284544, + -0.017049137502908707, + 0.004136993084102869, + -0.001591681269928813, + -0.009410249069333076, + -0.000888145063072443, + -0.05517153441905975, + -0.02324865199625492, + 0.06881991028785706, + 0.01026666909456253, + 0.00775257358327508, + -0.07854676246643066, + 0.009866900742053986, + 0.057926952838897705, + 0.05276687443256378, + -7.920209463918582e-05, + 0.03405958414077759, + -0.011350244283676147, + -0.02803156152367592, + -0.05928957462310791, + 0.02917168289422989, + -0.04117666557431221, + -0.010821823962032795, + 0.01357663981616497, + 0.02845117822289467, + -0.0107150012627244, + 0.01562720723450184, + -0.03351878374814987, + -0.05105897784233093, + -0.03276352211833, + -0.027691489085555077, + -0.013024596497416496, + -0.006658466067165136, + 0.04099421575665474, + -0.06667186319828033, + -0.05364298075437546, + 0.03560154139995575, + 0.02196400612592697, + -0.04592621698975563, + -0.05897287279367447, + -0.014372671954333782, + 0.015472653321921825, + 0.06410778313875198, + -0.0192346703261137, + 0.0267307348549366, + -0.026559606194496155, + -0.03238428384065628, + -0.011762114241719246, + 0.014145396649837494, + -0.01788763329386711, + -0.05870073661208153, + -0.008176123723387718, + -0.04537670314311981, + -0.07008101046085358, + -0.012026880867779255, + -0.006060114596039057, + -0.022828225046396255, + 0.046686358749866486, + 0.03625025227665901, + -0.03775360807776451, + -0.026072464883327484, + -0.011003485880792141, + -0.018681585788726807, + -0.021044153720140457, + 0.003235077951103449, + 0.031335458159446716, + 0.01225266233086586, + 0.03465234115719795, + -0.013810030184686184, + -0.020918022841215134, + -0.006104547064751387, + 0.02005239762365818, + 0.02263324148952961, + 0.029491545632481575, + -0.001736450125463307, + 0.05256729573011398, + -0.04848305508494377, + 0.018485648557543755, + 0.014217374846339226, + -0.00013136115740053356, + -0.015069491229951382, + -0.028322026133537292, + -0.025463892146945, + -0.050382986664772034, + -0.016478588804602623, + -0.006947297137230635, + 0.005283445119857788, + 0.032846637070178986, + 0.020804567262530327, + 0.03155960887670517, + -0.020662860944867134, + -0.001781258499249816, + -0.040010105818510056, + -0.015742121264338493, + -0.13060466945171356, + -0.012972712516784668, + -0.01293620653450489, + 0.028228508308529854, + -0.012215180322527885, + 0.0008039246895350516, + -0.04487195983529091, + -0.0008754347800277174, + -0.054965827614068985, + -0.012228838168084621, + -0.0355491004884243, + -0.00860248040407896, + 0.010018082335591316, + -0.03526122868061066, + -0.003034355118870735, + -0.0015393940266221762, + 0.008217120543122292, + -0.01812683418393135, + -0.0368032343685627, + 0.015470713376998901, + 0.006558155175298452, + -0.019710231572389603, + 0.027183104306459427, + 0.05224044248461723, + 0.011079324409365654, + -0.007395563647150993, + 0.0025366959162056446, + 0.005755539983510971, + -0.026270153000950813, + -0.05143429711461067, + -0.04221324250102043, + 0.00043133250437676907, + 0.025175277143716812, + 0.01037036906927824, + 0.03288945183157921, + 0.0022507314570248127, + 0.0293415579944849, + 0.04998263344168663, + -0.03898762911558151, + 0.034444890916347504, + 0.03257853165268898, + 0.0207944568246603, + -0.054506346583366394, + 0.0059095723554492, + 0.008629851043224335, + 0.026394929736852646, + -0.009256009012460709, + -0.011078469455242157, + -0.034110620617866516, + 0.015260284766554832, + 0.014762179926037788, + -0.0013893423601984978, + 0.018827805295586586, + 0.038239337503910065, + 0.010736765339970589, + -0.015003525651991367, + -0.010572385974228382, + 0.029087582603096962, + -0.007987847551703453, + 0.03813398629426956, + 0.0019785435870289803, + 0.01623408868908882, + -0.0011001017410308123, + -0.06818756461143494, + -0.0020732474513351917, + -0.0022693267092108727, + -0.014641309157013893, + 0.012794967740774155, + -0.04072345420718193, + 0.05079485848546028, + -0.007051772903650999, + -0.007726152893155813, + -0.004267118871212006, + -0.04424523934721947, + 0.04074655845761299, + 0.03385521471500397, + -0.002028694609180093, + -0.008613895624876022, + -0.05796010419726372, + -0.04259294271469116, + -0.04178711026906967, + -0.024134410545229912, + -0.011076384223997593, + -0.01685456559062004, + 0.04753153771162033, + -0.03759099915623665, + -0.011697695590555668, + 0.044307731091976166, + -0.05684827268123627, + 0.024515358731150627, + -0.013219119980931282, + -0.0557100884616375, + -0.025727562606334686, + -0.028532087802886963, + -0.011725293472409248, + 0.022148869931697845, + 0.004147648811340332, + 0.03404681757092476, + 0.034391507506370544, + -0.022677235305309296, + -0.005179924890398979, + -0.002837722422555089, + 0.03304423391819, + 0.020094405859708786, + -0.006024989299476147, + 0.026558898389339447, + 0.016081428155303, + -0.0023259990848600864, + 0.003686062293127179, + -0.005689721554517746, + -0.02166176401078701, + -0.0009017411503009498, + 6.516051507787779e-05, + 0.003458563471212983, + -0.011013097129762173, + -0.003115170868113637, + 0.0029138484969735146, + 0.03621058911085129, + 0.00906829722225666, + 0.0050712935626506805, + 0.017665091902017593, + 0.03417457267642021, + 0.05231056362390518, + -0.002725607017055154, + 0.018008502200245857, + 0.021344246342778206, + 0.005144116003066301, + 0.039550162851810455, + 0.018127836287021637, + 0.0064887311309576035, + 0.027306582778692245, + -0.030439604073762894, + 0.03701798990368843, + 0.005327838007360697, + 0.004555462393909693, + -0.0257447250187397, + -0.03221729397773743, + 0.037392497062683105, + -0.060325417667627335, + -0.014791237190365791, + -0.03516572713851929, + -0.02410850115120411, + -0.016290731728076935, + -0.05651123449206352, + -0.03380469232797623, + 0.03826291114091873, + -0.04101540148258209, + -0.003759403247386217, + -0.040673259645700455, + -0.020293688401579857, + 0.05853304639458656, + -0.0027784937992691994, + -0.016871962696313858, + 0.03747193515300751, + -0.040656886994838715, + 0.006911806762218475, + -0.009754027239978313, + -0.008521460928022861, + -0.003998334053903818, + 0.05056869611144066, + -0.02146042510867119, + -0.01510917954146862, + 0.031999845057725906, + -0.033275168389081955, + -0.026035180315375328, + -0.013994790613651276, + -0.03369878977537155, + 0.007822789251804352, + -0.014390896074473858, + 0.013231362216174603, + 0.002004135400056839, + -0.0017614229582250118, + -0.011781597509980202, + -0.005500758532434702, + 0.035670094192028046, + -0.0448283813893795, + 0.011825899593532085, + -0.024758411571383476, + 0.052039191126823425, + 0.004936077632009983, + -0.022106096148490906, + 0.032655250281095505, + 0.06355185806751251, + -0.0033188615925610065, + 0.001664629322476685, + 0.012368475086987019, + 0.024396412074565887, + 0.05822576954960823, + 0.006010649260133505, + 0.016566598787903786, + -0.016093475744128227, + 0.0030844968277961016, + 0.04846462607383728, + 0.011734247207641602, + 0.02532222494482994, + 0.020737411454319954, + 0.02927553839981556, + 0.021839119493961334, + 0.014092259109020233, + 0.011568709276616573, + -0.04958513006567955, + -0.0208671186119318, + -0.03365904092788696, + -0.009404896758496761, + -0.007757977582514286, + -0.03321458026766777, + 0.002060230355709791, + -0.007694467436522245, + -0.005630068015307188, + 0.041130103170871735, + -0.034056100994348526, + 0.013800760731101036, + -0.019945889711380005, + -0.013002262450754642, + -0.004400018136948347, + -0.004097496625036001, + 0.06449112296104431, + 0.013591330498456955, + 0.05381270498037338, + 0.01823248341679573, + 0.020609021186828613, + 0.035807471722364426, + 0.033788058906793594, + 0.009065022692084312, + -0.04774586111307144, + -0.002414334798231721, + -0.016150029376149178, + 0.014859920367598534, + -0.020000580698251724, + -0.025257643312215805, + -0.043169308453798294, + 0.047184694558382034, + -0.011003168299794197, + 0.036629170179367065, + -0.03560670465230942, + 0.019922327250242233, + 0.05389117822051048, + 0.03187085688114166, + -0.06544868648052216, + 0.004953380674123764, + 0.00819355808198452, + 0.0285621490329504, + 0.0027670960407704115, + -0.01700037159025669 + ], + "start_index": 0, + "end_index": 81, + "token_count": 29, + "file_type": "avap_code", + "filename": "comparacion_simple.avap", + "addParam": true, + "addResult": true, + "addVar": true, + "if": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "bcb548c4-cf94-5bac-8711-63360daf5be6", + "_source": { + "text": "ormCheckTable(tabla_pruebas,resultado_comprobacion)\nif(resultado_comprobacion,False,'==')\n ormCreateTable(\"username,age\",'VARCHAR,INTEGER',tabla_pruebas,resultado_creacion)\nend()\naddResult(resultado_comprobacion)\naddResult(resultado_creacion)", + "embedding": [ + 0.019414298236370087, + -0.026042064651846886, + -0.038239736109972, + 0.00806379783898592, + -0.028828242793679237, + -0.01270508673042059, + -0.0116146644577384, + 0.044602226465940475, + -0.019253013655543327, + -0.008642141707241535, + -0.012558326125144958, + -0.025199536234140396, + -0.02774270996451378, + -0.015001260675489902, + 0.00980375800281763, + -0.002564693335443735, + -0.02011076547205448, + -0.0008586547919549048, + -0.0061472016386687756, + 0.016340963542461395, + -0.02056194469332695, + -0.02191740646958351, + 0.044587086886167526, + 0.013732374645769596, + -0.021079661324620247, + -0.03163965046405792, + 0.013616814278066158, + -0.019291331991553307, + -0.007152874022722244, + -0.003097540931776166, + 0.023443570360541344, + -0.06425851583480835, + 0.017814043909311295, + -0.06424553692340851, + 0.02710706926882267, + 0.002924648579210043, + -0.00010957109770970419, + -0.02781524322926998, + -0.063339002430439, + 0.018091799691319466, + 0.01384930033236742, + -0.050574928522109985, + -0.0017852217424660921, + -0.0056891068816185, + 0.023506056517362595, + -0.01884336769580841, + -0.0002052114432444796, + -0.0053200735710561275, + 0.02798612229526043, + -0.04442072659730911, + -0.007669653743505478, + 0.01640849933028221, + 0.08122114837169647, + -0.019968844950199127, + -0.005658973474055529, + 0.04574490711092949, + 0.002562655368819833, + -0.022725781425833702, + -0.023732829838991165, + 0.0021884655579924583, + 0.011615131050348282, + -0.012839054688811302, + -0.07271021604537964, + 0.014993376098573208, + -0.018849899992346764, + 0.015045232139527798, + 0.020541226491332054, + 0.003916469868272543, + -0.026137439534068108, + -0.03260801360011101, + 0.0031445540953427553, + 0.032697249203920364, + 0.02460883930325508, + -0.028485512360930443, + -0.05498410388827324, + -0.01734730787575245, + 0.006796105764806271, + 0.0087861567735672, + -0.0009453422389924526, + -0.02279910445213318, + -0.007965966127812862, + -0.023841343820095062, + 0.041686560958623886, + -0.028889983892440796, + -0.004378726240247488, + -0.006595610175281763, + -0.0017784382216632366, + 0.0034072312992066145, + -0.001020849565975368, + 0.03139224648475647, + -0.016947049647569656, + -0.024253500625491142, + -0.0029292397666722536, + -0.01829896681010723, + -0.018726248294115067, + -0.0287941861897707, + -0.014573940075933933, + -0.006128125824034214, + 0.05728509649634361, + 0.024047264829277992, + -0.032939132302999496, + -0.010239987634122372, + 0.016757722944021225, + 0.015725918114185333, + 0.0015181605704128742, + -0.036252982914447784, + -0.026822809129953384, + -0.026554934680461884, + 0.04419543221592903, + -0.0026756697334349155, + -0.020538944751024246, + 0.016647936776280403, + 0.035587407648563385, + -0.00013699092960450798, + 0.017967944964766502, + 0.013483393006026745, + 0.010119969956576824, + -0.005531429313123226, + 0.04654618352651596, + 0.005735032260417938, + 0.05416678637266159, + -0.014871609397232533, + 0.10970257967710495, + -0.026539327576756477, + -0.04582167789340019, + 0.0052924067713320255, + 0.0031946739181876183, + -0.004607014358043671, + 0.0029579042457044125, + 0.00991281121969223, + 0.013129121623933315, + -0.003909706603735685, + -0.036077890545129776, + -0.011659100651741028, + -0.040828485041856766, + -0.012427350506186485, + -0.01915826089680195, + 0.023298082873225212, + -0.009224150329828262, + -0.052784088999032974, + 0.03781373053789139, + 0.013067897409200668, + 0.022660639137029648, + -0.009166080504655838, + 0.028973503038287163, + -0.051577962934970856, + 0.03499869257211685, + -0.007684657815843821, + -0.011857464909553528, + -0.0032164936419576406, + -0.026367733255028725, + -0.00328428135253489, + 0.04430693760514259, + 0.01135733351111412, + 0.02275867760181427, + -0.03222852200269699, + -0.0050223516300320625, + 0.0441926047205925, + 0.04353605955839157, + 0.012069751508533955, + 0.01853746734559536, + 0.036428552120923996, + -0.010521962307393551, + 0.0058714840561151505, + 0.038796566426754, + 0.00170380889903754, + 0.002584262751042843, + -0.016660023480653763, + -0.030309967696666718, + -0.0021949291694909334, + 0.026790745556354523, + -0.03047843649983406, + -0.01556318998336792, + -0.02503034844994545, + 0.0006934606935828924, + 0.01249362900853157, + 0.01702631637454033, + 0.016729233786463737, + 0.025673827156424522, + -0.05057943984866142, + 0.0055388957262039185, + -0.036002177745103836, + -0.015470057725906372, + -0.0102534806355834, + -0.016445167362689972, + 0.04603029787540436, + 0.013766477815806866, + 0.016884932294487953, + 0.019568609073758125, + 0.023638548329472542, + -0.01942933350801468, + -0.058762937784194946, + 0.07216354459524155, + -0.046005215495824814, + -0.011272910982370377, + -5.982791117276065e-05, + -0.007888088002800941, + -0.004219862632453442, + -0.020640090107917786, + 0.01627841405570507, + -0.02392600290477276, + 0.04327623173594475, + 0.00661528529599309, + -0.0318802185356617, + 0.0023521436378359795, + -0.02761136181652546, + -0.014397548511624336, + -0.06445824354887009, + 0.03903217241168022, + -0.014388838782906532, + 0.049328505992889404, + 0.046294569969177246, + -0.015866873785853386, + 0.02891923300921917, + 0.007491737604141235, + -0.023938829079270363, + -0.027830107137560844, + 0.0358261875808239, + 0.003872797591611743, + 0.04153921455144882, + -0.045595601201057434, + 0.039634574204683304, + 0.04663340002298355, + 0.07193382829427719, + -0.028197772800922394, + -0.01442780438810587, + 0.027775250375270844, + 0.022152014076709747, + -0.01304626278579235, + -0.026415029540657997, + 0.02354457788169384, + 0.02222505770623684, + 0.034670259803533554, + 0.013403818011283875, + 0.03231402114033699, + 0.012330366298556328, + -0.009551307186484337, + 0.026008006185293198, + 0.02150483801960945, + -0.020982516929507256, + -0.03756851702928543, + -0.015353880822658539, + 0.0038421894423663616, + 0.005473187193274498, + -0.030970880761742592, + 0.010150051675736904, + 0.012770160101354122, + 0.05201730132102966, + -0.06977630406618118, + -0.0003347484453115612, + 0.007146439980715513, + 0.01222270354628563, + -0.013549291528761387, + 0.029097091406583786, + 0.03201420605182648, + 0.013863506726920605, + 0.028397543355822563, + -0.01536442432552576, + 0.03132674843072891, + 0.023929553106427193, + 0.03594600036740303, + -0.0005542199942283332, + -0.013366613537073135, + 0.03349054604768753, + 0.004770725034177303, + 0.005716337356716394, + 0.03437492251396179, + 0.0036161800380796194, + 0.020193492993712425, + 0.003185915993526578, + 0.036475349217653275, + 0.02405586466193199, + 0.031091218814253807, + -0.013163450174033642, + -0.01464166957885027, + 0.038923490792512894, + -0.051041197031736374, + -0.010194728150963783, + 0.11959148198366165, + 0.029312152415513992, + 0.015648862347006798, + 0.024714786559343338, + 0.019392790272831917, + 0.010221240110695362, + 0.02521602250635624, + -0.06818043440580368, + -0.015678618103265762, + -0.007929937914013863, + -0.015192997641861439, + -0.07537724822759628, + 0.013738106936216354, + -0.03591914102435112, + 0.07040981203317642, + -0.00962377991527319, + -0.004627433605492115, + -0.005223079584538937, + 0.014305917546153069, + -0.15071530640125275, + -0.05208132416009903, + -0.012923439033329487, + 0.013048572465777397, + -0.017416303977370262, + 0.013765010051429272, + -0.08475340902805328, + 0.006007363088428974, + -0.03233838826417923, + 0.05444512516260147, + -0.03629417344927788, + -0.06081642955541611, + -0.03042438067495823, + -0.02091190218925476, + -0.04594992473721504, + -0.025101546198129654, + -0.024629991501569748, + -0.0060445889830589294, + -0.012831494212150574, + -0.02685043029487133, + -0.013082846067845821, + -0.07062191516160965, + 0.00505650183185935, + -0.019442912191152573, + -0.03776241093873978, + -0.06397318840026855, + 0.032527580857276917, + 0.011865020729601383, + -0.03517092019319534, + 0.023910870775580406, + -0.013854117132723331, + 0.0286531001329422, + -0.0021200429182499647, + -0.0038737712893635035, + -0.06725044548511505, + 0.029881848022341728, + 0.009071452543139458, + -0.04382230341434479, + 0.006894291378557682, + 0.031026635318994522, + 0.0371602438390255, + 0.03145955875515938, + -0.011146885342895985, + 0.027260471135377884, + -0.004995737224817276, + 0.024011021479964256, + 0.023272505030035973, + 0.040817514061927795, + -0.08572278916835785, + -0.026611991226673126, + -0.03799401968717575, + -0.028246095404028893, + 0.038297735154628754, + -0.02203560061752796, + -0.048870060592889786, + -0.015635430812835693, + -0.04530686140060425, + -0.0018199498299509287, + -0.05671997368335724, + 0.019650526344776154, + 0.008981764316558838, + -0.0507606565952301, + -0.028176726773381233, + -0.029583407565951347, + 0.01766100898385048, + -0.030224304646253586, + -0.011347807012498379, + 9.01361636351794e-05, + 0.02252091094851494, + -0.027826761826872826, + 0.04912571981549263, + 0.012031346559524536, + 0.022255033254623413, + 0.0009349052561447024, + 0.03275369852781296, + 0.00369249121285975, + -0.06618669629096985, + -0.01832614280283451, + 0.026474421843886375, + -0.11582696437835693, + 0.005335422232747078, + 0.031133396551012993, + 0.027367746457457542, + 0.019766535609960556, + -0.007332581095397472, + 0.006860160268843174, + 0.017267292365431786, + 0.04518670216202736, + 0.06446941941976547, + 0.219694584608078, + 0.029301896691322327, + -0.03130800276994705, + -0.06659466028213501, + 0.010285656899213791, + -0.012280741706490517, + -0.009634912945330143, + 0.0426868237555027, + -0.04528797045350075, + -0.031687505543231964, + -0.008741970174014568, + 0.015559457242488861, + 0.005140697583556175, + -0.012807169929146767, + 0.0025100926868617535, + 0.002306373557075858, + 0.006330849602818489, + 0.01977601647377014, + 0.06497931480407715, + -0.040179912000894547, + 0.06311948597431183, + -0.03322459012269974, + -0.05175546556711197, + 0.013720901682972908, + -0.08829790353775024, + -0.03250380605459213, + -0.08116251975297928, + 0.021051453426480293, + -0.017317192628979683, + -0.0013051516143605113, + -0.029651030898094177, + -0.0008853591862134635, + 0.05342710390686989, + -0.02321052737534046, + -0.006091752089560032, + 0.024537086486816406, + 0.006615942809730768, + 0.001949649304151535, + 0.02455884777009487, + 0.02859608829021454, + 0.01751449704170227, + -0.02762310579419136, + 0.0036382172256708145, + 0.078078493475914, + 0.0062861815094947815, + 0.025553185492753983, + 0.03887764364480972, + 0.020743917673826218, + -0.028895683586597443, + 0.018765170127153397, + -0.015022830106317997, + -0.019768740981817245, + 0.01999731920659542, + -0.009601409547030926, + -0.009452256374061108, + -0.0015859671402722597, + -0.009083191864192486, + 0.015555827878415585, + -0.057724468410015106, + 0.004228527192026377, + 0.05240919813513756, + -0.0065469276160001755, + 0.004128254018723965, + 0.017932960763573647, + -0.031038353219628334, + 0.027361465618014336, + 0.024303046986460686, + -0.02584846131503582, + 0.02554846927523613, + 0.008242102339863777, + 0.06929421424865723, + 0.01475509349256754, + 0.03453601151704788, + -0.0007205570000223815, + 0.020089754834771156, + -0.01231875829398632, + 0.04141516983509064, + 0.0368233248591423, + 0.021778108552098274, + 0.01966218277812004, + -0.07191985100507736, + 0.01693992130458355, + -0.025798235088586807, + 0.01349035557359457, + 0.01193483266979456, + -0.00073060771683231, + -0.006000347435474396, + 0.029743213206529617, + 0.0017377136973664165, + 0.007340549491345882, + -0.001966115552932024, + 0.04005724564194679, + 0.0009215663303621113, + -0.01831744983792305, + -0.031759850680828094, + 0.034234438091516495, + 0.018327713012695312, + -0.012500467710196972, + -0.05365227162837982, + -0.006726687308400869, + -0.0337982140481472, + -0.023095080628991127, + -0.0007078874623402953, + 0.026278264820575714, + 0.04421092942357063, + -0.031803928315639496, + 0.0028653035406023264, + 0.02246246673166752, + 0.035900238901376724, + 0.014549491927027702, + -0.03620653226971626, + 0.02399483136832714, + -0.005977263208478689, + 0.011550099588930607, + -0.04460836574435234, + 0.0014408843126147985, + 0.013078141957521439, + 0.019537512212991714, + 0.02481997013092041, + 0.026276690885424614, + -0.0073860702104866505, + -0.005520513281226158, + -0.048353008925914764, + 0.015628864988684654, + -0.010772345587611198, + -0.03194956108927727, + 0.005621389485895634, + 0.026205530390143394, + -0.05304494872689247, + 0.052911337465047836, + 0.03785333037376404, + -0.028915712609887123, + -0.017161671072244644, + -0.009253636933863163, + 0.012305117212235928, + 0.009584604762494564, + 0.04086468368768692, + 0.01867935247719288, + 0.012511113658547401, + 0.045077789574861526, + -0.06219905987381935, + -0.035025082528591156, + -0.03415266051888466, + -0.03047393076121807, + 0.0115587143227458, + -0.006599803920835257, + -0.012458495795726776, + -0.0033301333896815777, + 0.004211442079395056, + 0.01263145636767149, + 0.04442102089524269, + 0.04414243623614311, + 0.04042482748627663, + -0.030110226944088936, + 0.01565583050251007, + 0.002563545247539878, + 0.0025348111521452665, + 0.017981795594096184, + 0.025141773745417595, + -0.01391440350562334, + 0.023223843425512314, + 0.037454281002283096, + -0.013456718996167183, + 0.040728602558374405, + 0.022185437381267548, + -0.02828877791762352, + 0.044643111526966095, + -0.016517115756869316, + -0.013340798206627369, + -0.012813737615942955, + 0.02932925522327423, + -0.03245541825890541, + -0.03217074275016785, + 0.03310264274477959, + 0.02340676076710224, + 0.02739156037569046, + -0.05790596455335617, + -0.03027494065463543, + -0.03131003677845001, + -0.04005153104662895, + 0.014075133949518204, + -0.03268503025174141, + 0.02688761055469513, + -0.0143818911164999, + -0.01470230147242546, + 0.007862109690904617, + -0.008655332028865814, + -0.00880577601492405, + 0.03484196960926056, + -0.01759357377886772, + -0.017888160422444344, + 0.051788102835416794, + -0.0018864123849198222, + -0.030956095084547997, + 0.024511568248271942, + 0.08416260778903961, + 0.03421371802687645, + 0.029226364567875862, + -0.03641773760318756, + -0.017700769007205963, + -0.011904341168701649, + 0.019475169479846954, + 0.0057722521014511585, + 0.002729684580117464, + -0.03166580945253372, + 0.03266661614179611, + -0.0101744644343853, + 0.03418518602848053, + -0.0099564790725708, + -0.0015514945844188333, + 0.013355963863432407, + 0.018416542559862137, + -0.07021116465330124, + -0.020394178107380867, + -0.009179185144603252, + -0.016546519473195076, + 0.017631256952881813, + 0.017528409138321877, + -0.026233578100800514, + 0.029918193817138672, + -0.026139037683606148, + -0.05081966519355774, + 0.01760585978627205, + 0.03905419632792473, + -0.09841162711381912, + 0.020677749067544937, + 0.0403301827609539, + -0.002888557966798544, + 0.013718265108764172, + -0.03993391990661621, + -0.013511384837329388, + -0.03644890338182449, + 0.03385993093252182, + -0.02265128120779991, + 0.02836776338517666, + -0.005142214708030224, + -0.05216342583298683, + 0.04496915265917778, + -0.037187542766332626, + -0.03353295847773552, + 0.018740961328148842, + 0.006331688724458218, + 0.02955789677798748, + 0.02386714704334736, + -0.001049209269694984, + 0.06779273599386215, + -0.06583984941244125, + 0.03305058181285858, + 0.021110549569129944, + 0.013583548367023468, + 0.017754750326275826, + -0.01982800103724003, + -0.007914339192211628, + -0.026057859882712364, + 0.02929501049220562, + 0.024140533059835434, + -0.014417236670851707, + 0.012536942027509212, + -0.045746419578790665, + 0.010733378119766712, + 0.004197000991553068, + 0.015654180198907852, + 0.02164888195693493, + -0.010313795879483223, + -0.017269065603613853, + -0.06416133046150208, + 0.01301515195518732, + -0.031171422451734543, + -0.03042849898338318, + 0.013787520118057728, + -0.0007525784894824028, + -0.008880515582859516, + -0.006197021342813969, + -0.03340252861380577, + -0.036440543830394745, + -0.03942778706550598, + -0.028230570256710052, + -0.008690956979990005, + 0.006106584798544645, + -0.01188089419156313, + 0.029457969591021538, + -0.036279719322919846, + -0.00617055082693696, + 0.024059925228357315, + 0.013827330432832241, + 0.028219617903232574, + 0.024335522204637527, + 0.002684124978259206, + 0.000919115322176367, + -0.04439162462949753, + -0.009417322464287281, + 0.007390565238893032, + -0.013962948694825172, + 0.026148568838834763, + -0.0396537147462368, + -0.011289655230939388, + -0.046402160078287125, + 0.009227999486029148, + -0.0026249929796904325, + -0.016489017754793167, + -0.020727144554257393, + 0.01843339204788208, + -0.014428220689296722, + 0.011867692694067955, + -0.006305847316980362, + -0.04358344525098801, + 0.02042244002223015, + -0.01143836323171854, + 0.06845676153898239, + 0.011881082318723202, + 0.026020938530564308, + -0.049462057650089264, + -0.008660238236188889, + 0.024697590619325638, + 0.03538040444254875, + -0.01537039503455162, + 0.017895378172397614, + -0.03897843509912491, + 0.03338490054011345, + -0.01609320379793644, + -0.0030029471963644028, + -0.034517377614974976, + -0.041016869246959686, + 0.012979503720998764, + -0.01639275811612606, + 0.017764989286661148, + -0.03314436599612236, + -0.0017803729278966784, + -0.054200153797864914, + -0.014496727846562862, + -0.024852486327290535, + -0.046366821974515915, + -0.02696620486676693, + 0.014229684136807919, + 0.0016895155422389507, + -0.03352130949497223, + 0.008001267910003662, + -0.0005583599559031427, + 0.028912704437971115, + -0.004867773503065109, + 0.021409714594483376, + -0.012452836148440838, + 0.11760842800140381, + -0.0057297092862427235, + 0.002077593933790922, + 0.025743544101715088, + 0.0035575800575315952, + -0.013116319663822651, + -0.009335112757980824, + -0.03297359496355057, + 0.006268396507948637, + 0.04753304272890091, + -0.008635141886770725, + -0.02116018906235695, + 0.005128320772200823, + -0.004252780694514513, + -0.003261289792135358, + 0.052897024899721146, + 0.017733462154865265, + -0.006889664102345705, + -0.015161640010774136, + -0.02721771039068699, + -0.010754010640084743, + -0.04033724591135979, + -0.039070919156074524, + 0.01481479313224554, + 0.023848669603466988, + 0.04091844707727432, + 0.02282056398689747, + -0.00958337727934122, + 0.012806705199182034, + 0.010828197002410889, + -0.06216457858681679, + 0.03065941296517849, + -0.032680805772542953, + 0.07513431459665298, + -0.012322328053414822, + 0.011602984741330147, + 0.0526466965675354, + -0.025403665378689766, + -0.03077736869454384, + -0.006013010628521442, + -0.037959687411785126, + -0.025786152109503746, + 0.04000646993517876, + -0.0021906434558331966, + -0.005952753126621246, + 0.018518975004553795, + 0.035218700766563416, + 0.03953598439693451, + 0.016157738864421844, + -0.015322931110858917, + -0.028655361384153366, + -0.017863858491182327, + -0.11744009703397751, + 0.00980466976761818, + -0.03445253148674965, + 0.010577317327260971, + -0.013754182495176792, + -0.024390287697315216, + 0.04888349026441574, + -0.06964888423681259, + -0.031861305236816406, + -0.0252770334482193, + -0.028915219008922577, + -0.04031454026699066, + 0.029435258358716965, + -0.02169647440314293, + 0.06371965259313583, + -0.06234942376613617, + -0.008549354039132595, + 0.0003116461739409715, + -0.020887309685349464, + 0.03153122588992119, + -0.025291187688708305, + -0.01274110283702612, + 0.0113363740965724, + 0.058035898953676224, + -0.05866939574480057, + 0.02004559151828289, + 0.011328291147947311, + 0.0371851921081543, + -0.013251726515591145, + -0.04709835723042488, + -0.004031049553304911, + 0.041317395865917206, + 0.024096284061670303, + 0.0633293017745018, + 0.06042167916893959, + 0.0036007193848490715, + -0.004476992879062891, + 0.016718251630663872, + -0.0175138209015131, + 0.030448922887444496, + -0.006885633338242769, + 0.037655122578144073, + -0.04013505205512047, + 0.010474816896021366, + 0.04665388911962509, + -0.003565723542124033, + -0.04726193845272064, + -0.005101863760501146, + -0.029493900015950203, + 0.014279584400355816, + -0.0018893418600782752, + 0.009055604226887226, + -0.009185099974274635, + 0.009863634593784809, + 0.0012235268950462341, + -0.027362901717424393, + -0.03360539302229881, + -0.010722014121711254, + -0.01349547691643238, + 0.016572026535868645, + 0.032753802835941315, + 0.02927543967962265, + -0.011138384230434895, + -0.039172280579805374, + -0.022088900208473206, + 0.02350485883653164, + -0.0021124109625816345, + 0.023823440074920654, + 0.016589118167757988, + 0.011834735982120037, + -0.004908787086606026, + 0.011490012519061565, + -0.034895725548267365, + -0.03900852054357529, + 0.005409610457718372, + -0.008163672871887684, + 0.02191963419318199, + 0.0007762310560792685, + -0.041354432702064514, + -0.02806680276989937, + -0.03333362936973572, + -0.017530836164951324, + -0.005312670953571796, + -0.022414762526750565, + 0.00587049312889576, + -0.019359298050403595, + 0.0006037734565325081, + 0.04250717535614967, + -0.08526201546192169, + 0.008120348677039146, + -0.04804091900587082, + -0.09053978323936462, + 0.016049135476350784, + 0.012507342733442783, + -0.0012460985453799367, + 0.02524768002331257, + -0.026540011167526245, + 0.013639568351209164, + 0.032957229763269424, + -0.0008900276152417064, + -0.023009682074189186, + 0.0006124199135228992, + 0.04880276322364807, + 0.010668198578059673, + -0.019730249419808388, + 0.020607858896255493, + -0.01745898276567459, + -0.023226015269756317, + -0.012368147261440754, + 0.03698129951953888, + 0.0052022673189640045, + 0.010113225318491459, + 0.0034168572165071964, + 0.006167296785861254, + -0.027728701010346413, + -0.0110218720510602, + 0.011652210727334023, + 0.005168799310922623, + -0.024350561201572418, + -0.026744738221168518, + 0.04458504170179367, + 0.0017180225113406777, + 0.006432330701500177, + -0.005630817264318466, + 0.004918050020933151, + 0.013014967553317547, + -0.012975633144378662, + -0.005744374822825193, + 0.004573382902890444, + 0.028343914076685905, + -0.00923212431371212, + -0.03954537212848663, + 0.0021357855293899775, + 0.0014702779008075595, + 0.039153341203927994, + -0.03139296919107437, + -0.012695365585386753, + 0.016386020928621292, + -0.0034583434462547302, + -0.03395304083824158, + -0.04704518988728523, + -0.03223337233066559, + -0.02872874215245247, + -0.027527352795004845, + -0.01534560602158308, + -0.0011698533780872822, + -0.03375428169965744, + -0.01078794151544571, + 0.002435006434097886, + -0.01621171087026596, + 0.05038170889019966, + -0.030450277030467987, + -0.016415217891335487, + 0.00674549862742424, + -0.05675586313009262, + 0.05666213855147362, + 0.014882789924740791, + -0.003262479091063142, + 0.016904473304748535, + 0.022310325875878334, + -0.05846142768859863, + 0.0234508216381073, + -0.004918713588267565, + -0.01876969262957573, + -0.019560841843485832, + 0.01923048309981823, + -0.01315971277654171, + -0.0021835374645888805, + -0.010239175520837307, + 0.009021569043397903, + 0.015207238495349884, + -0.023244943469762802, + -0.024227013811469078, + 0.02014729753136635, + 0.04000360146164894, + 0.021017536520957947, + 0.029580384492874146, + 0.0013514864258468151, + 0.06914625316858292, + 0.04073512926697731, + -0.004583196714520454, + 0.0032780824694782495, + -0.010585051029920578, + -0.027337556704878807, + 0.01028047688305378, + 0.017486685886979103, + 0.038406629115343094, + -0.0035330785904079676, + 0.009677216410636902, + 0.006093569565564394, + -0.03467047959566116, + 0.005770236253738403, + 0.043353334069252014, + -0.0029557717498391867, + 0.021258732303977013, + -0.0035888641141355038, + -0.010259009897708893, + 0.03592487424612045, + -0.004923235159367323, + 0.019962629303336143, + -0.06633348017930984, + 0.03350743651390076, + -0.031878262758255005, + -0.03280429169535637, + -0.01702433079481125, + -0.050969768315553665, + 0.004056781530380249, + 0.03478863462805748, + -0.003424287773668766, + -0.010945074260234833, + -0.04281435161828995, + 0.005663351621478796, + -0.02287442423403263, + 0.014463949017226696, + -0.04247598350048065, + 0.0015804951544851065, + 0.052741482853889465, + -0.006689261645078659, + 0.040250420570373535, + 0.019315946847200394, + 0.013582662679255009, + 0.02646028809249401, + 0.048414528369903564, + -0.021291889250278473, + -0.012159323319792747, + 0.04318153113126755, + -0.04335608333349228, + -0.005072800442576408, + 0.0021170619875192642, + 0.023519715294241905, + -0.010118831880390644, + 0.010401817969977856, + 0.0075959013774991035, + 0.04529811441898346, + -0.008230570703744888, + 0.007440437562763691, + 0.04189234599471092, + -0.016955364495515823, + -0.03370166942477226, + 0.01645100861787796, + 0.007083303760737181, + -0.0032410603016614914, + 0.02551538310945034, + -0.04260522127151489 + ], + "start_index": 0, + "end_index": 245, + "token_count": 58, + "file_type": "avap_code", + "filename": "ormAccessCreate.avap", + "addResult": true, + "if": true, + "ormCheckTable": true, + "ormCreateTable": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "e06e496b-789c-52ae-9984-3ea5a7a25446", + "_source": { + "text": "addParam(\"password\",pass_nueva)\npass_antigua = \"password\"\nif(pass_nueva, pass_antigua, \"!=\")\n addVar(cambio, \"Contraseña actualizada\")\nend()\naddResult(cambio)", + "embedding": [ + 0.035246510058641434, + 0.0006112798000685871, + -0.035814203321933746, + -0.00842332188040018, + -0.0499952957034111, + -0.024572482332587242, + 0.004922972526401281, + 0.062466658651828766, + 0.006407069507986307, + -0.011304635554552078, + -0.0003352300263941288, + -0.04060979187488556, + -0.019920647144317627, + 0.019273580983281136, + -0.008904666639864445, + 0.01935051567852497, + 0.02546478807926178, + 0.008945690467953682, + 0.016692599281668663, + 0.016853805631399155, + -0.007479886058717966, + 0.04021190479397774, + 0.021427739411592484, + 0.022381670773029327, + -0.019073642790317535, + -0.021288568153977394, + 0.015630055218935013, + -0.011484598740935326, + 0.008852751925587654, + -0.021900365129113197, + -0.04364872723817825, + -0.013127586804330349, + -0.024423031136393547, + -0.05180017277598381, + -0.013431847095489502, + 0.04094802215695381, + 0.019269416108727455, + -0.006184555124491453, + -0.05031302198767662, + 0.07724576443433762, + 0.001230391557328403, + -0.09489332884550095, + -0.010653024539351463, + -0.03552804887294769, + 0.021377217024564743, + 0.010876611806452274, + 0.0340006984770298, + -0.011358195915818214, + -0.010588093660771847, + -0.06266716867685318, + 0.023456532508134842, + -0.013088377192616463, + 0.06352028995752335, + -0.05952209606766701, + 0.0020007635466754436, + 0.022864263504743576, + -0.028836267068982124, + 0.004047607537358999, + -0.008513220585882664, + -0.041039180010557175, + -0.012769278138875961, + -0.033157169818878174, + -0.015317503362894058, + 0.022045526653528214, + 0.018604567274451256, + 0.023622890934348106, + 0.02838086150586605, + 0.0067343879491090775, + 0.00836302898824215, + 0.006002340465784073, + 0.027460813522338867, + 0.05607416480779648, + -0.019525231793522835, + -0.03643094748258591, + -0.08007009327411652, + 0.007962357252836227, + 0.0019609832670539618, + -0.0019669774919748306, + -0.07740343362092972, + 0.009131431579589844, + 0.004437736235558987, + -0.04167124256491661, + 0.07748863101005554, + 0.02369481697678566, + 0.0019368503708392382, + 0.011400981806218624, + 0.0024244864471256733, + 0.027839267626404762, + -0.017558123916387558, + 0.006884558126330376, + -0.007220180239528418, + -0.022579072043299675, + 0.02605583146214485, + -0.04368358477950096, + -0.0045900545082986355, + -0.06988997757434845, + 0.014061703346669674, + -0.02337779849767685, + 0.016040373593568802, + 0.01649540103971958, + 0.01117396354675293, + 0.04598293453454971, + 0.04759231582283974, + 0.0005950668128207326, + 0.0332770012319088, + 0.002542971633374691, + 0.020650330930948257, + -0.012176179327070713, + 0.026196472346782684, + -0.005469366442412138, + -0.004658222198486328, + 0.018514763563871384, + 0.04027461260557175, + 0.010990257374942303, + 0.0045762876980006695, + -0.013710076920688152, + -0.0005493773496709764, + -0.02629302814602852, + 0.028102176263928413, + 0.007666109595447779, + 0.004378179553896189, + 0.043098270893096924, + 0.032860852777957916, + 0.043417882174253464, + -0.022778842598199844, + 0.027972765266895294, + -0.007677234243601561, + -0.004708851687610149, + 0.010518250986933708, + -0.005511423572897911, + 0.0021703073289245367, + -0.021586203947663307, + -0.010354840196669102, + -0.01567443273961544, + -0.06273623555898666, + -0.018317827954888344, + -0.0023909041192382574, + 0.057489972561597824, + 0.016199413686990738, + -0.08099434524774551, + 0.006213155575096607, + 0.024812733754515648, + 0.01739555224776268, + -0.025726692751049995, + 0.059423789381980896, + -0.06500767916440964, + 0.04462648183107376, + -0.013705008663237095, + 0.027920765802264214, + -0.03575154021382332, + -0.030448412522673607, + -0.0036970977671444416, + 0.009126157499849796, + -0.026593385264277458, + 0.02537328563630581, + -0.016885358840227127, + 0.033600736409425735, + -0.0015199308982118964, + 0.01191695500165224, + -0.014309652149677277, + -0.026175104081630707, + 0.0307892095297575, + -0.037811342626810074, + -0.02118808589875698, + 0.033033546060323715, + -0.018048662692308426, + 0.05423767492175102, + -0.04377910867333412, + 0.005930343642830849, + -0.044188328087329865, + 0.016070034354925156, + -0.02724970504641533, + 0.02286420576274395, + 0.011113658547401428, + 0.004844149108976126, + 0.03225965425372124, + 0.013541880995035172, + 0.021937021985650063, + 0.0036395899951457977, + -0.03151391074061394, + -0.02813025191426277, + -0.030293580144643784, + -0.015812234953045845, + -0.07761207967996597, + 0.0019400331657379866, + 0.043238576501607895, + -0.002993504051119089, + -0.01793462410569191, + 0.01366223581135273, + 0.007083299569785595, + -0.02560056373476982, + -0.011429386213421822, + 0.043586261570453644, + 0.01729668490588665, + 0.03609604388475418, + -0.02118917927145958, + 0.0050268713384866714, + -0.017178980633616447, + -0.010710146278142929, + 0.002606593305245042, + -0.03360737860202789, + 0.016492336988449097, + 0.007925992831587791, + -0.005731443874537945, + 0.03945948928594589, + 0.0063941446132957935, + -0.0009428336634300649, + -0.04678596556186676, + 0.028335491195321083, + -0.03907803073525429, + 0.02206246741116047, + 0.03329039365053177, + -0.042453836649656296, + 0.010759467259049416, + -0.02187415212392807, + 0.031493186950683594, + -0.013603069819509983, + 0.04568084701895714, + 0.00876158569008112, + -0.004906821995973587, + -0.022716796025633812, + 0.06403866410255432, + -0.010832564905285835, + 0.06948274374008179, + 0.007649378851056099, + 0.005031960550695658, + 0.011446572840213776, + 0.0013249014737084508, + -0.034337107092142105, + -0.013390804640948772, + 0.02012530528008938, + 0.050400953739881516, + 0.00986828375607729, + -0.028941268101334572, + 0.008589131757616997, + -0.02738427370786667, + -0.010919280350208282, + 0.042363375425338745, + 0.013570173643529415, + 0.0053605614230036736, + -0.02979246899485588, + -0.04585941135883331, + 0.01816917583346367, + 0.03421151265501976, + -0.02803085185587406, + -0.004035545513033867, + -0.0008235854911617935, + 0.03637043386697769, + -0.06094523146748543, + -0.007990619167685509, + -0.01920250989496708, + -0.043765220791101456, + -0.0032885815016925335, + -0.01869969069957733, + -0.03261204808950424, + -0.014486264437437057, + 0.05278680473566055, + -0.023746833205223083, + -0.040555085986852646, + 0.00890453439205885, + -0.0009898532880470157, + 0.018616918474435806, + 0.009228515438735485, + 0.0017800569767132401, + 0.020743360742926598, + 0.035075485706329346, + 0.01990344189107418, + 0.03383929654955864, + 0.008166300132870674, + -0.017878297716379166, + -0.0027560065500438213, + -0.014318649657070637, + 0.0179196335375309, + -0.03424650430679321, + 0.009912427514791489, + 0.04556122049689293, + 0.002124630380421877, + -0.037457190454006195, + 0.09552015364170074, + 0.024799341335892677, + 0.026289571076631546, + 0.010710664093494415, + 0.007565744686871767, + -0.01475647184997797, + 0.04487936198711395, + -0.04386056959629059, + -0.010662798769772053, + -0.004301837179809809, + 0.023760255426168442, + -0.09488671272993088, + 0.007760863285511732, + 0.014534397050738335, + 0.0675351619720459, + -0.033970028162002563, + -0.00028258224483579397, + -0.0034730907063931227, + 0.033630724996328354, + -0.1505342721939087, + -0.02728237584233284, + 0.00062384462216869, + 0.0038750225212424994, + -0.026426438242197037, + 0.0015219751512631774, + -0.060251928865909576, + 0.012983732856810093, + -0.009720863774418831, + 0.01688222587108612, + -0.004415626171976328, + -0.047247786074876785, + -0.0016004338394850492, + -0.022714469581842422, + 0.031444258987903595, + 0.0006591893616132438, + -0.022651920095086098, + 0.00864663440734148, + -0.04437270015478134, + -0.022731397300958633, + -0.016812806949019432, + -0.05550360679626465, + 0.03885123133659363, + -0.04213382676243782, + -0.06289269775152206, + -0.023217767477035522, + -0.022357715293765068, + -0.013475670479238033, + -0.022370344027876854, + 0.052534908056259155, + -0.02980634570121765, + 0.03939466550946236, + 0.003927490673959255, + -0.011144771240651608, + -0.022748759016394615, + 0.0319916307926178, + 0.01498479675501585, + 0.0118892015889287, + 0.014943012967705727, + -0.0009763234411366284, + 0.01814146898686886, + 0.0027422208804637194, + -0.014565601013600826, + 0.026178088039159775, + -0.0001568248262628913, + 0.020296761766076088, + 0.01701832376420498, + 0.023493804037570953, + -0.03123808465898037, + 0.004364629741758108, + -0.02592332661151886, + -0.0009235811303369701, + -0.010279001668095589, + 0.003193037584424019, + -0.03821549192070961, + 0.005470696371048689, + -0.01789931394159794, + 0.015475893393158913, + -0.0017217908753082156, + 0.034167610108852386, + -0.013025392778217793, + -0.011980751529335976, + 0.0017890019807964563, + -0.028128627687692642, + -0.01993243396282196, + 0.0025474652647972107, + 0.023066828027367592, + 0.01357246097177267, + 0.04246678948402405, + -0.047184377908706665, + 0.03236398473381996, + 0.008211707696318626, + -0.022509369999170303, + -0.0022697977256029844, + -0.017425304278731346, + 0.01065609697252512, + 6.968562956899405e-05, + -0.00617162324488163, + 0.010862904600799084, + -0.11436429619789124, + 0.028780674561858177, + -0.007932096719741821, + -0.003698183922097087, + 0.02802836336195469, + -0.01903008483350277, + -0.014386084862053394, + 0.011802703142166138, + -0.011224267072975636, + 0.008499395102262497, + 0.21617890894412994, + 0.042811762541532516, + -0.0221206396818161, + -0.014443368650972843, + -0.003425025846809149, + -0.02566465735435486, + -0.004997520707547665, + -0.007215661928057671, + 0.02806788496673107, + -0.005238447338342667, + -0.01512653473764658, + 0.043761566281318665, + -0.010665149427950382, + -0.01781226135790348, + 0.005211004056036472, + 0.01850491762161255, + -0.04322386905550957, + 0.02954297699034214, + 0.012813612818717957, + -0.011282112449407578, + 0.036917123943567276, + 0.03715013712644577, + -0.07874590903520584, + 0.021252216771245003, + -0.08123616874217987, + -0.03052760660648346, + -0.03595481812953949, + -0.0013597965007647872, + -0.023440977558493614, + 0.04557936638593674, + -0.008630892261862755, + 0.0035891374573111534, + 0.012005416676402092, + 0.01818830706179142, + -0.014096828177571297, + -0.004170575179159641, + -0.006801212672144175, + 0.017336053773760796, + -0.033877454698085785, + 0.01824878714978695, + 0.046243201941251755, + -0.016302019357681274, + 0.01538962870836258, + 0.08156521618366241, + 0.007261872291564941, + 0.005034980364143848, + 0.03840016573667526, + -0.03353697806596756, + -0.02798355370759964, + -0.027160009369254112, + -0.02520466409623623, + -0.037540238350629807, + -0.004723606631159782, + -0.030610376968979836, + 0.06449618190526962, + -0.049526676535606384, + 0.02178710512816906, + -0.01243488397449255, + -0.019237352535128593, + 0.013577215373516083, + 0.030456535518169403, + -0.014226234517991543, + 0.015545140020549297, + -0.01939215511083603, + 0.004185600206255913, + -0.014492630027234554, + 0.05123771354556084, + -0.04379034787416458, + -0.014059680514037609, + -0.012293606996536255, + -0.004280715249478817, + 0.018284065648913383, + 0.059501856565475464, + 0.0461268313229084, + 0.018958797678351402, + 0.012210963293910027, + 0.04519245773553848, + -0.03836880251765251, + 0.01133747212588787, + 0.0505526065826416, + -0.027255430817604065, + 0.025003384798765182, + -0.0599806010723114, + -0.00026132402126677334, + 0.014813735149800777, + -0.001061090501025319, + 0.006002979818731546, + 0.051386043429374695, + 0.006121480371803045, + 0.004792121704667807, + 0.00471453694626689, + 0.015617492608726025, + 0.015010801143944263, + 0.02714657224714756, + -0.03560464084148407, + 0.01355573907494545, + 0.05186663195490837, + 0.013534526340663433, + -0.04063602536916733, + 0.05267453193664551, + -0.03433121368288994, + -0.016995538026094437, + 0.02625749073922634, + -0.012880606576800346, + 0.055545032024383545, + -0.046681106090545654, + -0.002683107741177082, + -0.008968900889158249, + -0.012043716385960579, + -0.014286615885794163, + -0.03333369642496109, + -0.006699830759316683, + -0.009185224771499634, + 0.0012017519911751151, + 0.001233961433172226, + 0.043852321803569794, + 0.019496362656354904, + -0.010608211159706116, + 0.014428595080971718, + -0.0062400465831160545, + -0.03099377453327179, + 0.010388405993580818, + -0.046901848167181015, + 0.028950877487659454, + 0.021025288850069046, + -0.009972812607884407, + -0.04201480746269226, + 0.02573198638856411, + -0.05603497475385666, + 0.03395327925682068, + 0.0014407727867364883, + -0.007253644522279501, + 0.0029610984493047, + 0.002792133018374443, + 0.03537995368242264, + -0.0024664816446602345, + 0.05738076567649841, + 0.021150166168808937, + 0.0358334481716156, + 0.024625219404697418, + -0.04368661344051361, + -0.01029212772846222, + -0.020857825875282288, + -0.028970422223210335, + 0.02336016856133938, + -0.01996764726936817, + 0.02928394265472889, + -0.0038509340956807137, + -0.006009882781654596, + 0.029330572113394737, + 0.02361399680376053, + 0.06352626532316208, + 0.04225165396928787, + -0.028673825785517693, + -0.014847557060420513, + -0.022153761237859726, + 0.027988677844405174, + 0.050997164100408554, + -0.040970318019390106, + -0.02584407851099968, + 0.052664224058389664, + 0.004974870942533016, + -0.0008319595362991095, + 0.02213784120976925, + 0.008068147115409374, + -0.045040667057037354, + 0.005310696084052324, + -0.005340944975614548, + -0.03253941237926483, + 0.025691065937280655, + 0.016378534957766533, + -0.024491040036082268, + 0.0007208243478089571, + -0.020032305270433426, + 0.026678236201405525, + 0.016847645863890648, + -0.013080021366477013, + 0.020574461668729782, + -0.04624767228960991, + -0.039185505360364914, + 0.009821214713156223, + -0.00022152482415549457, + -0.03399078547954559, + -0.014357532374560833, + 0.005195284727960825, + -0.013876182027161121, + 0.02626895345747471, + -0.002750593237578869, + 0.022138236090540886, + 0.0003500055172480643, + -0.04021761193871498, + 0.08768611401319504, + 0.01081037987023592, + -0.025935407727956772, + 0.02553899958729744, + 0.08519136905670166, + 0.008206896483898163, + 0.005011687986552715, + -0.03484761342406273, + -0.01909182034432888, + 0.01677064597606659, + 0.04102902486920357, + -0.005130436271429062, + 0.017668530344963074, + -0.043668683618307114, + -0.006541598588228226, + 0.011811734177172184, + 0.0012604572111740708, + 0.009895332157611847, + -0.021713891997933388, + -0.02375268191099167, + 0.01751093566417694, + -0.05262865871191025, + 0.009206007234752178, + 0.03324822708964348, + -0.04102366417646408, + 0.05001409351825714, + 0.001584947225637734, + 0.016160355880856514, + 0.037169598042964935, + -0.006907548755407333, + -0.015148214064538479, + 0.012448513880372047, + -0.014962702058255672, + -0.0488317608833313, + 0.03338097035884857, + -0.0016264778096228838, + -0.010261713527143002, + -0.004585047718137503, + -0.03553168103098869, + -0.022349145263433456, + -0.015358434058725834, + -0.0015074522234499454, + 0.03217783197760582, + 0.03496977314352989, + 0.009638854302465916, + 0.012580826878547668, + 0.04912661388516426, + -0.014315293170511723, + -0.013138319365680218, + 0.017724135890603065, + 0.014696277678012848, + 0.048741258680820465, + 0.04724641516804695, + 0.015535504557192326, + 0.11391627043485641, + -0.07585778832435608, + 0.024881646037101746, + -0.03016357682645321, + 0.032735154032707214, + -0.009741388261318207, + -0.06250189989805222, + 0.03246191516518593, + 0.000558297848328948, + 0.034602031111717224, + 0.04366087168455124, + -0.00505105359479785, + 0.006889828480780125, + 0.005388455931097269, + -0.0023032021708786488, + 0.010454884730279446, + 0.02826320379972458, + -0.040514327585697174, + -0.02040393464267254, + 0.0046488214284181595, + -0.053282301872968674, + 0.03549249842762947, + -0.037576183676719666, + -0.01726359687745571, + 0.0031104646623134613, + 0.03828296810388565, + -0.021370869129896164, + -0.048396043479442596, + -0.04571450874209404, + -0.0012207339750602841, + 0.004515480250120163, + 0.031090201810002327, + -0.04637288302183151, + 0.050638481974601746, + 0.006654593162238598, + -0.04203939437866211, + -0.008015417493879795, + 0.018558260053396225, + 0.03568284586071968, + 0.008589555509388447, + 0.002383466111496091, + 0.005024162121117115, + -0.012797369621694088, + -0.010352167300879955, + -0.033159974962472916, + -0.03369563817977905, + -0.003563050413504243, + -0.02527882531285286, + 0.07073589414358139, + -0.013419750146567822, + -0.044122133404016495, + 0.03239275515079498, + 0.03176505118608475, + -0.0040449704974889755, + 0.01232195645570755, + -0.027059102430939674, + -0.0034984578378498554, + -0.009136413224041462, + -0.021490992978215218, + -0.01204362977296114, + -0.0008981971186585724, + 0.016250552609562874, + 0.006320732645690441, + 0.05128932744264603, + 0.015007192268967628, + 0.030803179368376732, + -0.0787072405219078, + -0.009803524240851402, + 0.08905724436044693, + 0.041623808443546295, + -0.05509847402572632, + 0.00932227075099945, + -0.04072248935699463, + 0.005666201002895832, + -0.014416116289794445, + 0.01218406856060028, + -0.027681104838848114, + -0.07070931047201157, + 0.015081669203937054, + -0.0032127422746270895, + 0.003404023591428995, + -0.03174702078104019, + -0.029282309114933014, + -0.04739893600344658, + 0.007365304045379162, + 0.00871797651052475, + -0.022303719073534012, + 0.01654072105884552, + 0.01080409437417984, + -0.036593131721019745, + -0.03303840011358261, + 0.0074630482122302055, + 0.02526455745100975, + -0.032971788197755814, + -0.030568446964025497, + -0.028406525030732155, + -0.014914953149855137, + 0.045028213411569595, + -0.006341856904327869, + -0.011059843935072422, + 0.005320464260876179, + -0.013453803956508636, + 0.014414423145353794, + -0.04086299240589142, + -0.011493952013552189, + -0.04567085579037666, + 0.02120751142501831, + -0.025873688980937004, + -0.06584123522043228, + -0.006015448365360498, + -0.04138089343905449, + -0.02987530268728733, + 0.07648592442274094, + 0.02842526324093342, + 0.035646844655275345, + -0.024443669244647026, + -0.021185478195548058, + -0.015938153490424156, + -0.021002791821956635, + -0.044377800077199936, + 0.045500170439481735, + 0.027107564732432365, + 0.03783470392227173, + -0.037485066801309586, + 0.0084635429084301, + -0.008749385364353657, + 0.04026370868086815, + 0.011500446125864983, + 0.03348405286669731, + -0.04405905678868294, + 0.039525289088487625, + -0.036374155431985855, + 0.012792679481208324, + -0.0040876856073737144, + -0.023001408204436302, + -0.025931818410754204, + -0.029894771054387093, + -0.018673047423362732, + -0.029329312965273857, + -0.006096618250012398, + 0.005775834433734417, + -0.023882396519184113, + 0.0007480796775780618, + 0.05820273980498314, + 0.061393022537231445, + -0.007352721877396107, + -0.012552876956760883, + 0.00682813860476017, + -0.00457537779584527, + -0.11363627761602402, + 0.04420388862490654, + -0.03145375847816467, + -0.0025477546732872725, + -0.032541655004024506, + -0.010844295844435692, + -0.009560152888298035, + -0.016124697402119637, + -0.01781507395207882, + -0.044694770127534866, + -0.03377440571784973, + -0.034598492085933685, + 0.03359585255384445, + -0.048479389399290085, + 0.015127128921449184, + -0.00728167500346899, + 0.025807809084653854, + -0.0046860454604029655, + -0.008287527598440647, + 0.02279304713010788, + -0.023231670260429382, + -0.01225999090820551, + -0.006669015157967806, + 0.033534880727529526, + 0.005691524129360914, + 0.008976409211754799, + -0.028567632660269737, + 0.0688260868191719, + -0.031131001189351082, + -0.05913624167442322, + -0.049735985696315765, + 0.009068644605576992, + 0.04028792679309845, + -0.017619002610445023, + 0.04505710303783417, + -0.0014724883949384093, + -0.005695110186934471, + 0.06371866911649704, + 0.00667963270097971, + 0.059282176196575165, + -0.0012410059571266174, + 0.029971802607178688, + -0.08281229436397552, + -0.0031489399261772633, + 0.010824276134371758, + 0.07986557483673096, + -0.020130598917603493, + -0.023642301559448242, + -0.033090077340602875, + -0.029194962233304977, + 0.02997583895921707, + -0.038587480783462524, + -0.019310714676976204, + 0.0074775018729269505, + 0.004961765371263027, + 0.020476968958973885, + -0.0417402945458889, + -0.0061603388749063015, + -0.02150215394794941, + 0.05513564497232437, + -0.00965788308531046, + 0.013837390579283237, + -0.037873778492212296, + -0.05031442642211914, + -0.026061566546559334, + 0.05596683919429779, + -0.005873406305909157, + 0.0004218719550408423, + 0.008792152628302574, + -0.0020358937326818705, + 0.039346612989902496, + -0.0030934386886656284, + -0.023601263761520386, + -0.038006674498319626, + -0.009245112538337708, + 0.0020295477006584406, + 0.010746471583843231, + -0.0018029211787506938, + -0.031236741691827774, + -0.023378489539027214, + -0.02252594195306301, + -0.011788834817707539, + -0.00918808113783598, + -0.0293929111212492, + 0.012594776228070259, + -0.060197751969099045, + -0.026669766753911972, + 0.008795635774731636, + 0.007496600039303303, + 0.02600489743053913, + -0.038956042379140854, + -0.08221384882926941, + 0.038199152797460556, + 0.014935541898012161, + 0.009881957434117794, + 0.02566998265683651, + -0.018285037949681282, + 0.009627725929021835, + 0.019506877288222313, + -0.030859924852848053, + 0.026793453842401505, + -0.02099691703915596, + 0.04337788000702858, + 0.041579388082027435, + -0.01877577044069767, + -0.007439861074090004, + -0.03872520849108696, + -0.034591104835271835, + 0.005396704655140638, + 0.020898854359984398, + -0.023642832413315773, + 0.024180399253964424, + -0.01271867472678423, + 0.03322276100516319, + -0.030917268246412277, + -0.007018425967544317, + -0.014597928151488304, + 0.04563412070274353, + -0.013955927453935146, + -0.05335867404937744, + 0.014529642648994923, + -0.005713641177862883, + 0.019406812265515327, + -0.010186923667788506, + 0.052874308079481125, + 0.014258165843784809, + -0.01031608134508133, + 0.0040694959461688995, + -0.002308954019099474, + 0.007321338634938002, + -0.00037352993967942894, + -0.02974826656281948, + 0.00025570017169229686, + 0.014588907361030579, + -0.00022447500668931752, + -0.012235550209879875, + -0.041946280747652054, + 0.013407778926193714, + -0.04735346883535385, + -0.0003879789437633008, + -0.016788901761174202, + -0.036409929394721985, + -0.008603650145232677, + -0.05035368725657463, + -0.011490716598927975, + -0.004789797123521566, + 0.012354935519397259, + -0.016981158405542374, + -0.03075466863811016, + -0.05973495543003082, + -0.025877928361296654, + 0.012139769271016121, + 0.0072568682953715324, + 0.010624157264828682, + -0.03778669983148575, + 0.02866256795823574, + 1.5262958186212927e-05, + -0.029296986758708954, + 0.02285274863243103, + 0.011057608760893345, + -0.02879480831325054, + 0.00975049752742052, + 0.016996297985315323, + -0.013936695642769337, + -0.007142386399209499, + -0.01567727141082287, + -0.01932879164814949, + -0.022063368931412697, + -0.038972124457359314, + 0.011005365289747715, + -0.022097192704677582, + 0.019444705918431282, + -0.03009314276278019, + 0.02083878219127655, + 0.028580812737345695, + -0.012001403607428074, + 0.024797331541776657, + -0.03935820609331131, + 0.04221290349960327, + 0.025110987946391106, + -0.015630682930350304, + 0.04922722280025482, + 0.04541411250829697, + -0.017931492999196053, + -0.0002860067179426551, + 0.03920639678835869, + 0.006024994887411594, + 0.044168539345264435, + 0.0340353325009346, + -0.016191205009818077, + -0.031237583607435226, + -0.007247886620461941, + 0.032296791672706604, + 0.02626621164381504, + 0.0014072951162233949, + -0.04761755093932152, + 0.013275813311338425, + -0.036242805421352386, + 0.014437973499298096, + 0.011270150542259216, + -0.0189875029027462, + -0.009263182990252972, + -0.017863165587186813, + -2.6408457415527664e-05, + 0.02680845744907856, + -0.04737436771392822, + -0.005933201871812344, + 0.014147605746984482, + 0.03232816606760025, + 0.04637916386127472, + -0.03708307072520256, + -0.033867985010147095, + -0.007351687178015709, + 0.007975100539624691, + -0.01503625139594078, + 0.0006816143868491054, + 0.0188138410449028, + -0.00803476944565773, + 0.035853732377290726, + 0.024488678202033043, + 0.023364679887890816, + 0.03989583998918533, + 0.03537999838590622, + 0.0002254042192362249, + -0.045561473816633224, + -0.02352255955338478, + -0.029587695375084877, + 0.02744956687092781, + -0.023384952917695045, + 0.0007346876664087176, + -0.006983811501413584, + -0.019059455022215843, + -0.010253622196614742, + 0.012152365408837795, + 0.014414247125387192, + -0.007633022032678127, + 0.041595976799726486, + 0.024391312152147293, + -0.04264431446790695, + 0.03351714089512825, + 0.019129764288663864, + 0.04715614765882492, + -0.016265159472823143, + -0.04424160718917847 + ], + "start_index": 0, + "end_index": 165, + "token_count": 47, + "file_type": "avap_code", + "filename": "if_desigualdad.avap", + "addParam": true, + "addResult": true, + "addVar": true, + "assignment": true, + "if": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "23109e03-9638-59f9-9c93-e912ac18e639", + "_source": { + "text": "stampToDatetime(1708726162, \"%d/%m/%Y\", 0, fecha_human)\naddResult(fecha_human)", + "embedding": [ + -0.036685798317193985, + 2.9804879886796698e-05, + -0.016280360519886017, + 0.001538703334517777, + -0.03169848024845123, + -0.05039925500750542, + -0.037098124623298645, + 0.04573695734143257, + -0.005309888161718845, + -0.025490328669548035, + 0.0010281333234161139, + 0.07036520540714264, + -0.007729275617748499, + 0.022011255845427513, + 0.004276916850358248, + 0.01944981887936592, + -0.003840739605948329, + -0.01773299090564251, + -0.02899782918393612, + 0.030857974663376808, + -0.02121574990451336, + 0.014581208117306232, + -0.04074203968048096, + -0.005587540566921234, + -0.017696218565106392, + -0.01388535089790821, + 0.004378317855298519, + -0.0035016611218452454, + 0.013894859701395035, + -0.008475261740386486, + 0.01782960072159767, + -0.022350799292325974, + 0.0003965750220231712, + -0.053379546850919724, + -0.03254735469818115, + -0.013325280509889126, + -0.013304440304636955, + -0.021076098084449768, + -0.04960981011390686, + 0.009303407743573189, + -0.014889637008309364, + -0.018428929150104523, + 0.0008805732359178364, + 0.017771154642105103, + 0.025353197008371353, + -0.023394541814923286, + 0.032268162816762924, + -0.01214997936040163, + -0.005711293779313564, + -0.0512128621339798, + 0.024430468678474426, + 0.025126155465841293, + 0.017833387479186058, + 0.02808554470539093, + 0.015203220769762993, + 0.022512391209602356, + -0.021145593374967575, + 0.015408516861498356, + -0.025555668398737907, + -0.027950145304203033, + -0.00500536011531949, + -0.002153540961444378, + -0.027586929500102997, + 0.020055411383509636, + 0.007416933309286833, + 0.01731302961707115, + 0.024226751178503036, + 0.021029042080044746, + -0.005443769507110119, + -0.010800345800817013, + 0.01780327782034874, + 0.01684810034930706, + 0.0035035342443734407, + -0.019382860511541367, + -0.07821258157491684, + -0.03443969413638115, + 0.021332425996661186, + 0.006868748925626278, + -0.013072000816464424, + -0.006271885707974434, + 0.0016574029577896, + -0.04037059098482132, + 0.026572544127702713, + -0.02134685032069683, + 0.0033044358715415, + 0.05681167170405388, + -0.027300655841827393, + 0.024808745831251144, + -0.03717948496341705, + 0.0280603114515543, + 0.00984673760831356, + 0.0030188909731805325, + 0.03428620100021362, + -0.050705865025520325, + -0.008604584261775017, + -0.04365267604589462, + -0.007345257792621851, + 0.014397183433175087, + 0.05602573603391647, + 0.009898660704493523, + 0.008300972171127796, + 0.021912457421422005, + 0.0029127385932952166, + 0.0059645092114806175, + 0.01809205673635006, + -0.055813536047935486, + 0.06220763921737671, + -0.03374795615673065, + 0.017146939411759377, + -0.004981670528650284, + 0.006960993632674217, + 0.0012178736506029963, + 0.021568406373262405, + 0.01784198172390461, + 0.011824547313153744, + -0.02848314866423607, + 0.006659103091806173, + -0.02994082123041153, + 0.04716112092137337, + 0.015312070958316326, + 0.007471833843737841, + 0.014721344225108624, + 0.06485451757907867, + -0.030032223090529442, + 0.006246523931622505, + 0.05607043579220772, + -0.009270071983337402, + 0.03304043039679527, + -0.02807825244963169, + -0.005659929011017084, + 0.053703129291534424, + 0.03859901800751686, + -0.0023720243480056524, + -0.023702748119831085, + -0.054443348199129105, + -0.0077565452083945274, + -0.0028757555410265923, + 0.06168033182621002, + 0.03391466289758682, + -0.04562995210289955, + 0.033293597400188446, + -0.005418965592980385, + -0.02499215304851532, + -0.016644973307847977, + 0.03388835862278938, + -0.015310182236135006, + -0.012824651785194874, + -0.021434983238577843, + 0.041098833084106445, + 0.009663782082498074, + 0.009580202400684357, + 0.057069141417741776, + 0.029787076637148857, + -0.01915043033659458, + 0.011613195762038231, + 0.002249540761113167, + -0.018691930919885635, + 0.06773801147937775, + -0.0369507260620594, + -0.020563913509249687, + -0.014183752238750458, + -0.016551779583096504, + -0.03510567545890808, + 0.023849504068493843, + 0.0013525128597393632, + -0.022739319130778313, + 0.058387454599142075, + 0.00501804007217288, + -0.00012032408267259598, + -0.01760222017765045, + 0.032482244074344635, + -0.06279029697179794, + 0.0358557403087616, + 0.0007756230770610273, + 0.01180204562842846, + 0.021132174879312515, + 0.06981076300144196, + 0.039475217461586, + 0.005473191384226084, + -0.04446065425872803, + -0.03111284226179123, + -0.015018068253993988, + -0.022430358454585075, + -0.05875730887055397, + -0.010458258911967278, + 0.004376451019197702, + -0.01665203832089901, + -0.021972235292196274, + -0.0006285479757934809, + 0.00035089830635115504, + -0.026222985237836838, + -0.05684839189052582, + 0.042482346296310425, + -0.0185804795473814, + 0.04600604623556137, + -0.005372474901378155, + 0.03638572245836258, + 0.045347247272729874, + -0.023552818223834038, + -0.013949185609817505, + 0.014263713732361794, + 0.04267406463623047, + -0.011558452621102333, + -0.045028187334537506, + -0.014603149145841599, + -0.022678477689623833, + 0.008463017642498016, + -0.02728377841413021, + 0.04148688167333603, + -0.0005686808144673705, + -0.007373644504696131, + 0.016328737139701843, + -0.002188899088650942, + 0.002024818444624543, + 0.008309836499392986, + -0.005398725159466267, + 0.017919551581144333, + 0.05080144852399826, + -0.04113725945353508, + 0.005143985152244568, + -0.007256082259118557, + 0.04874127358198166, + 0.027611643075942993, + 0.04334479942917824, + -0.024664094671607018, + 0.004819089081138372, + -0.006289541255682707, + 0.03520720824599266, + -0.016953401267528534, + -0.050790343433618546, + 0.011950258165597916, + 0.03523014485836029, + 0.015777382999658585, + -0.007824843749403954, + 0.025232702493667603, + -0.01801026239991188, + -0.06903043389320374, + 0.004035274498164654, + 0.01226445659995079, + 0.0017022372921928763, + -0.042181625962257385, + 0.013522133231163025, + 0.05718280002474785, + -0.011006217449903488, + -0.02341233566403389, + -0.02956841140985489, + -0.02421938069164753, + 0.013600710779428482, + -0.02424224093556404, + -0.006349199917167425, + -0.0057173906825482845, + -0.02256752923130989, + -0.058866292238235474, + 0.00834765937179327, + 0.011317814700305462, + -0.004815122578293085, + 0.03867414593696594, + -0.011666491627693176, + 0.009053084068000317, + 0.05394306778907776, + -0.007086159661412239, + 0.008129134774208069, + -0.03738679364323616, + 0.006660027429461479, + 0.011369738727807999, + -0.0033117770217359066, + 0.007202489767223597, + 0.030162852257490158, + 0.025400089100003242, + -0.02649986743927002, + 0.0214314553886652, + -0.009054691530764103, + -0.01667485572397709, + -0.0006585590890608728, + 0.03133978694677353, + 0.009669574908912182, + -0.031381167471408844, + -0.02088003046810627, + 0.08332625776529312, + -0.03145197778940201, + 0.03255624696612358, + 0.006260077003389597, + 0.0547732412815094, + -0.004690204281359911, + 0.042165059596300125, + -0.0365578792989254, + 0.011741917580366135, + -0.04066842794418335, + 0.02049800381064415, + -0.09871136397123337, + 0.021885214373469353, + -0.0028893218841403723, + 0.06188036873936653, + -0.03155207261443138, + -0.027250660583376884, + 0.03770654276013374, + -0.02511334791779518, + -0.15872889757156372, + 0.00570598104968667, + -0.049000732600688934, + 0.020444318652153015, + -0.018245454877614975, + 0.015614833682775497, + -0.014351093210279942, + -0.02536221593618393, + -0.028927946463227272, + 0.050355639308691025, + -0.024950066581368446, + -0.06387351453304291, + 0.016260221600532532, + -0.01878875121474266, + -0.03456255421042442, + 0.020612310618162155, + 0.01966754160821438, + -0.028387224301695824, + 0.037162553519010544, + -0.03721325471997261, + -0.026517106220126152, + -0.04204132780432701, + 0.009706014767289162, + -0.05118846148252487, + -0.05944591760635376, + -0.037212152034044266, + -0.030681630596518517, + -0.01979793794453144, + 0.0028219211380928755, + 0.030265962705016136, + -0.00440257228910923, + -0.022754210978746414, + 0.001101275789551437, + 0.02388797141611576, + 0.002361140912398696, + 0.029174989089369774, + -0.025169257074594498, + -0.022667231038212776, + -0.018861277028918266, + -0.017383454367518425, + 0.03594716638326645, + 0.031038053333759308, + 0.010051819495856762, + 0.03220413252711296, + -0.001563769532367587, + -0.009163876995444298, + -0.012637277133762836, + -0.00504382885992527, + -0.04045486822724342, + -0.031029216945171356, + 0.030460326001048088, + -0.03823858126997948, + 0.0012535143177956343, + -0.03257618844509125, + -0.030210526660084724, + 0.0019248073222115636, + -0.04815424606204033, + 0.02277945540845394, + -0.06691443920135498, + -0.026755420491099358, + -0.012117096222937107, + -0.01684931293129921, + 0.02672230266034603, + -0.0190485417842865, + -0.005908336956053972, + -0.026102665811777115, + 0.025437694042921066, + 0.045040879398584366, + 0.045555464923381805, + -0.039140671491622925, + 0.07017050683498383, + -0.007783915847539902, + -0.02782454527914524, + -0.050884224474430084, + 0.03555035591125488, + 0.018300481140613556, + -0.045747239142656326, + 0.009554131887853146, + 0.003907667472958565, + -0.10181424766778946, + -0.06532270461320877, + 0.02845100685954094, + -0.02331390418112278, + 0.02225055731832981, + -0.012722162529826164, + 0.017662107944488525, + -0.01721828803420067, + 0.024776967242360115, + 0.025479203090071678, + 0.2126181572675705, + 0.023979702964425087, + 0.007819557562470436, + 0.0040964228101074696, + 0.0211979728192091, + -0.04813222214579582, + -0.0369926281273365, + 0.003828473621979356, + -0.009254740551114082, + -0.04000086337327957, + 0.031408973038196564, + -0.037579309195280075, + -0.023601654917001724, + -0.012375359423458576, + 0.013073217123746872, + 0.024431709200143814, + -0.0035731964744627476, + 0.019335584715008736, + 0.043454669415950775, + -0.009378631599247456, + 0.02990136295557022, + -0.016962267458438873, + -0.055245768278837204, + 0.002448571380227804, + -0.022741522639989853, + -0.0381082184612751, + -0.02616063877940178, + 0.024233683943748474, + -0.008226369507610798, + 0.010562370531260967, + 0.0009031561785377562, + 0.059411827474832535, + -0.003997011575847864, + 0.017678285017609596, + 0.009555098600685596, + -0.019230995327234268, + 0.006552570033818483, + -0.006182955112308264, + -0.006979340221732855, + 0.0030751305166631937, + 0.02408175729215145, + 0.009606422856450081, + -0.005985782481729984, + 0.03185289353132248, + -0.022600218653678894, + -0.0031874575652182102, + 0.020505597814917564, + 0.009858474135398865, + 0.006482682656496763, + -0.037959616631269455, + -0.044678304344415665, + 0.0021198338363319635, + -0.0054401527158916, + 0.016659580171108246, + 0.004666247870773077, + 0.004723000340163708, + 0.0022283587604761124, + -0.021482421085238457, + -0.028687532991170883, + -0.0012013987870886922, + 0.03346304967999458, + 0.014614036306738853, + 0.014629974961280823, + -0.009479843080043793, + -0.0323762446641922, + 0.0034873869735747576, + 0.004210281651467085, + -0.02274952456355095, + 0.016772078350186348, + 0.014139220118522644, + 0.024585137143731117, + 0.022828785702586174, + 0.01829168014228344, + 0.012108190916478634, + -0.011682662181556225, + 0.009806244634091854, + 0.024404602125287056, + 0.034429438412189484, + 0.01906355284154415, + 0.08491615206003189, + -0.023630065843462944, + 0.002375497482717037, + -0.0597180537879467, + 0.02608543075621128, + -0.000929968140553683, + -0.006165493745356798, + 0.005034671165049076, + 0.02812400832772255, + -0.01216233242303133, + 0.001610849634744227, + -0.02313653565943241, + 0.015302633866667747, + -0.012928186915814877, + 0.04095878452062607, + 0.0039793034084141254, + 0.019969111308455467, + 0.04097824543714523, + 0.013951667584478855, + -0.03985714912414551, + -0.021346265450119972, + -0.059193603694438934, + 0.014777511358261108, + 0.01366459485143423, + -0.056584957987070084, + 0.0339067168533802, + -0.048077985644340515, + 0.009244855493307114, + -0.021325500681996346, + 0.012148157693445683, + -0.018898241221904755, + -0.023746110498905182, + 0.03792490437626839, + -0.004874498583376408, + 0.003701944835484028, + -0.012170849367976189, + 0.0158010795712471, + 0.04556040093302727, + 0.014203035272657871, + 0.016872229054570198, + 0.04325557127594948, + -0.026277216151356697, + -0.046115949749946594, + -0.032983262091875076, + -0.013270835392177105, + 0.019595282152295113, + -0.027225686237215996, + -0.003674087580293417, + 0.01752467080950737, + -0.0234777070581913, + 0.01574772410094738, + 0.028372755274176598, + -0.032689277082681656, + 0.0070367660373449326, + -0.019034871831536293, + -0.005670440383255482, + 0.006336966063827276, + 0.04211103916168213, + 0.050907351076602936, + 0.015906423330307007, + 0.03348695859313011, + -0.04506996273994446, + -0.0524337962269783, + 0.020627044141292572, + 0.0036746873520314693, + 0.04953012242913246, + -0.007530262228101492, + -0.020531192421913147, + 0.01028246246278286, + -0.017281701788306236, + 0.03640446066856384, + 0.03501264378428459, + 0.03586187586188316, + 0.053042471408843994, + -0.022313332185149193, + 0.0062296329997479916, + -0.034162551164627075, + -0.016736892983317375, + 0.027280664071440697, + -0.01210328470915556, + -0.02976536750793457, + 0.015335259959101677, + -0.024997973814606667, + 0.015364861115813255, + 0.033475253731012344, + 0.002352655865252018, + -0.03475062549114227, + -0.05205109715461731, + 0.012689444236457348, + -0.04777512326836586, + 0.013667293824255466, + -0.019457818940281868, + -0.013516109436750412, + -0.028134850785136223, + 0.009513171389698982, + 0.030973661690950394, + -0.005559205077588558, + -0.027228040620684624, + -0.029500339180231094, + -0.004342708270996809, + -0.055450014770030975, + 0.008096188306808472, + -0.04391762614250183, + -0.02443721331655979, + 0.010099368169903755, + 0.04606035351753235, + 0.004672108683735132, + -0.014658119529485703, + -0.019847586750984192, + 0.026324978098273277, + -0.05080327019095421, + -0.04131748527288437, + 0.10229101032018661, + 0.012598559260368347, + -0.016102062538266182, + 0.018064305186271667, + 0.06525130569934845, + 0.005457807797938585, + 0.04492829367518425, + -0.02671934850513935, + -0.046250443905591965, + 6.890680379001424e-05, + 0.006181718315929174, + -0.007153891958296299, + 0.009688930585980415, + -0.03040563315153122, + 0.00804496556520462, + 0.027711089700460434, + 0.008970732800662518, + 0.007140614092350006, + 0.035359978675842285, + 0.0039006881415843964, + 0.014646166004240513, + -0.00932149589061737, + 0.0023890382144600153, + 0.014024414122104645, + -0.04662910848855972, + 0.07145903259515762, + -0.007450202479958534, + -0.00604071281850338, + 0.019226616248488426, + -0.01701882667839527, + -0.019937705248594284, + -0.018376095220446587, + 0.021623782813549042, + -0.04324251040816307, + 0.019513309001922607, + -0.022648820653557777, + -0.023663155734539032, + 0.0006372528150677681, + 0.056064341217279434, + -0.0025801302399486303, + -0.04740840569138527, + 0.032018423080444336, + 0.046514369547367096, + 0.033732183277606964, + -0.016381412744522095, + -0.009801567532122135, + 0.022039640694856644, + -0.0002973239461425692, + -0.019560037180781364, + -0.020110785961151123, + 0.01879545859992504, + 0.048526354134082794, + 0.029989924281835556, + 0.035797275602817535, + 0.03724134713411331, + -0.06878947466611862, + -0.028287053108215332, + 0.02340039238333702, + 0.0024290818255394697, + 0.048788364976644516, + -0.03658714145421982, + -0.011716102249920368, + -0.03029201738536358, + 0.018729355186223984, + 0.020621662959456444, + -0.031054379418492317, + 0.020070422440767288, + -0.051476091146469116, + -0.02453755773603916, + 0.010485781356692314, + 0.06701325625181198, + -0.021817026659846306, + -0.014617315493524075, + 0.030784647911787033, + -0.06468363851308823, + 0.020786534994840622, + -0.07389999181032181, + 0.00015450231148861349, + 0.01674617826938629, + -1.3738217603531666e-05, + -0.02227119728922844, + -0.01189098134636879, + -0.03401802107691765, + -0.010865451768040657, + 0.04155164584517479, + -0.015634220093488693, + 0.012426097877323627, + 0.05878103896975517, + -0.03637390583753586, + -0.03584270924329758, + 0.027014106512069702, + -0.01727081835269928, + 0.001129112672060728, + -0.017765359953045845, + 0.006345483940094709, + -0.010820381343364716, + 0.02093951590359211, + 0.009362892247736454, + -0.052416637539863586, + -0.02359001524746418, + -0.0038070555310696363, + -0.040069714188575745, + 0.015342631377279758, + -0.024325184524059296, + -0.00760066881775856, + -0.04098233953118324, + -0.018758106976747513, + 0.0008935523219406605, + -0.030078236013650894, + -0.02653508260846138, + -0.0039378320798277855, + -0.019013334065675735, + -0.0005061078118160367, + 0.008867894299328327, + 0.0037740888074040413, + -0.014675428159534931, + -0.03656194359064102, + 0.0788140520453453, + 1.9723456716747023e-05, + 0.005051514599472284, + -0.04935479536652565, + 0.00022299909323919564, + 0.05290047079324722, + 0.012273421511054039, + -0.05432605743408203, + 0.04660678654909134, + -0.0072749764658510685, + 0.0018819558899849653, + -0.0260029174387455, + 0.020203035324811935, + -0.011171581223607063, + -0.02313823625445366, + 0.016945594921708107, + 0.017700105905532837, + 0.013005741871893406, + 0.03755367174744606, + 0.025238262489438057, + -0.006894731428474188, + -0.028488051146268845, + -0.010658178478479385, + -0.005398133769631386, + -0.02841254323720932, + -0.015361334197223186, + -0.015733521431684494, + -0.003791067050769925, + 0.018114609643816948, + -0.006842952221632004, + -0.006051086820662022, + -0.02718782238662243, + -0.017039289698004723, + 0.008230168372392654, + 0.03872744366526604, + -0.020295601338148117, + 0.00955159030854702, + -0.05096976459026337, + -0.020417219027876854, + -0.012718374840915203, + -0.026662077754735947, + -0.0027592277619987726, + -0.02072070725262165, + -0.0070976754650473595, + -0.018451834097504616, + -0.031942225992679596, + 0.01843213476240635, + 0.015503637492656708, + -0.06054124981164932, + 0.037331439554691315, + 0.019780995324254036, + 0.01943294331431389, + -0.015962883830070496, + -0.008548129349946976, + -0.05719126760959625, + -0.009178281761705875, + -0.04964737221598625, + 0.03320332616567612, + 0.02632264792919159, + 0.07263963669538498, + -0.030755111947655678, + 0.0240121278911829, + 0.0018353387713432312, + 0.05221716687083244, + 0.015029611997306347, + -0.010565747506916523, + -0.0389292873442173, + 0.024338247254490852, + -0.022803474217653275, + 0.017390351742506027, + -0.013312987051904202, + 0.022192342206835747, + -0.004626036621630192, + -0.009354155510663986, + -0.0241790022701025, + -0.03632120043039322, + -0.011248910799622536, + 0.03223758935928345, + -0.023957323282957077, + -0.006087477784603834, + 0.052117493003606796, + 0.031248608604073524, + -0.039203498512506485, + -0.025166524574160576, + -0.015086410567164421, + 0.0024575963616371155, + -0.14228218793869019, + 0.048524413257837296, + -0.008708513341844082, + 0.013015772216022015, + -0.019013745710253716, + 0.017724990844726562, + -0.07345666736364365, + -0.015287531539797783, + -0.0179897453635931, + -0.041086867451667786, + -0.0008508604951202869, + -0.03153184428811073, + -0.020830340683460236, + -0.022451886907219887, + -0.05447283387184143, + -0.003873853711411357, + 0.030411899089813232, + 0.02251436933875084, + -0.05231647565960884, + 0.021707355976104736, + 0.003343805903568864, + -0.052621424198150635, + 0.03736289590597153, + 0.06453616917133331, + -0.03338728845119476, + 0.02164154127240181, + 0.028514878824353218, + 0.037740662693977356, + -0.006948685273528099, + -0.025486845523118973, + -0.023250488564372063, + 0.007847159169614315, + 0.029205849394202232, + 0.056724801659584045, + 0.03397546708583832, + 0.02013874612748623, + 0.0019996133632957935, + 0.06167151406407356, + -0.010407455265522003, + 0.040369488298892975, + -0.005979377310723066, + 0.019079601392149925, + -0.05048369616270065, + 0.00630319444462657, + 0.04129475727677345, + 0.04175616428256035, + -0.04215415567159653, + -0.006123557686805725, + -0.022801732644438744, + -0.0021561062894761562, + 0.030521778389811516, + 0.04346972331404686, + -0.013834314420819283, + 0.009305236861109734, + 0.000630505324807018, + -0.02941986173391342, + -0.006794848013669252, + 0.02564794383943081, + 0.01885317824780941, + 0.025532051920890808, + 0.05077216029167175, + 0.035671666264534, + -0.026795098558068275, + -0.04422041028738022, + -0.046843502670526505, + 0.039723146706819534, + -0.00785080250352621, + -0.002730159554630518, + -0.00857515074312687, + 0.03856152668595314, + 0.005850594025105238, + -0.0027642687782645226, + -0.00021499008289538324, + -0.053122714161872864, + 0.015776431187987328, + 0.017781734466552734, + 0.019677795469760895, + 0.014759746380150318, + -0.08774850517511368, + -0.01226537860929966, + -0.06105531007051468, + -0.004666223656386137, + 0.00028684092103503644, + -0.02378084883093834, + 0.009564296342432499, + 0.010991795919835567, + -0.02226089872419834, + 0.025133097544312477, + -0.08987177163362503, + 0.008898848667740822, + 0.003535268595442176, + -0.06005372479557991, + 0.012584168463945389, + 0.033940210938453674, + 0.013333260081708431, + 0.030619684606790543, + -0.025024447590112686, + 0.03598346188664436, + 0.005352102220058441, + -0.025173190981149673, + 0.01779986172914505, + -0.03843391314148903, + -0.01107669435441494, + 0.0006614013109356165, + -0.02364373579621315, + 0.014632457867264748, + 0.026264432817697525, + -0.010298139415681362, + -0.005523280240595341, + 0.01122548058629036, + 0.022389929741621017, + 0.0109689487144351, + -0.041772738099098206, + 0.006895723752677441, + -0.024043869227170944, + -0.0026579119730740786, + -0.02661912329494953, + 0.026424087584018707, + 0.00845932774245739, + -0.05778396874666214, + 0.037947848439216614, + -0.009108524769544601, + 0.043088942766189575, + -0.015320130623877048, + 0.04230547323822975, + 0.04948948323726654, + -0.022795315831899643, + 0.031460586935281754, + -0.012446491979062557, + 0.01109602116048336, + -0.02593473345041275, + -0.012715750373899937, + 0.08591137081384659, + 0.0417921245098114, + 0.058820828795433044, + 0.021043945103883743, + -0.013128024525940418, + 0.03235890716314316, + -0.04602132365107536, + -0.024230174720287323, + -0.019252099096775055, + -0.02574891783297062, + 0.029466187581419945, + -0.034153372049331665, + -0.0038236319087445736, + 0.025940997526049614, + 0.012865133583545685, + 0.008912059478461742, + 0.03541766107082367, + -0.003132566809654236, + 0.026451483368873596, + -0.0050611356273293495, + 0.006231645122170448, + 0.017097366973757744, + -0.032140351831912994, + 0.0022171512246131897, + -0.009313284419476986, + 0.00026146043092012405, + -0.01448351051658392, + 0.003570814151316881, + -0.06300913542509079, + -0.011390279047191143, + 0.017817357555031776, + -0.01934785023331642, + -0.027067286893725395, + 0.019476061686873436, + -0.030868228524923325, + 0.012968090362846851, + -0.015540632419288158, + 0.07263164967298508, + 0.008091193623840809, + 0.010703111998736858, + -0.02624429203569889, + -0.04198688641190529, + 0.07286960631608963, + 0.012082192115485668, + -0.006346893962472677, + -0.030325233936309814, + 0.08648668229579926, + 0.01588008552789688, + -0.008673515170812607, + 0.03837091848254204, + 0.07587506622076035, + -0.004249526187777519, + 0.011807899922132492, + 0.04648739844560623, + 0.030307283625006676, + 0.027940809726715088, + -0.014357821084558964, + 0.027568547055125237, + -0.02215452492237091, + -0.042856138199567795, + -0.0017056994838640094, + -0.033762041479349136, + 0.03076479770243168, + -0.02865525893867016, + 0.00903329998254776, + 0.03793974965810776, + -0.045746274292469025, + 0.025845034047961235, + -0.02031845599412918, + -0.003946854267269373, + -0.03586796671152115, + -0.032918866723775864, + -0.010621480643749237, + -0.021315239369869232, + -0.007102674338966608, + 0.038479432463645935, + 0.0004092550661880523, + 0.05748676881194115, + -0.05932971090078354, + 0.008126391097903252, + -0.016999002546072006, + -0.004812400788068771, + -0.00414821645244956, + 0.004175156820565462, + 0.008314366452395916, + 0.027153655886650085, + 0.013219604268670082, + -0.010095587931573391, + -0.02387504279613495, + 0.01023086067289114, + -0.011594695970416069, + -0.025294216349720955, + -0.034547001123428345, + -0.01455469336360693, + 0.000980377197265625, + 0.01324789971113205, + -0.04675266519188881, + -0.0016492897411808372, + -0.08423615247011185, + 0.01676059700548649, + -0.013937080278992653, + 0.06064090505242348, + 0.003411226673051715, + 0.011327828280627728, + 0.030973048880696297, + 0.022623470053076744, + -0.020965298637747765, + 0.020717265084385872, + 0.04330873116850853, + -0.004281175788491964, + -0.04064128175377846, + -0.009884768165647984 + ], + "start_index": 0, + "end_index": 78, + "token_count": 34, + "file_type": "avap_code", + "filename": "conversion_timestamp_legible.avap", + "addResult": true, + "timestamp_ops": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "25e7edf0-49ac-57b2-bff1-c20ccfac9b5d", + "_source": { + "text": "addParam(\"api_key\", key)\nif(key, None, \"==\")\n addVar(_status, 403)\n addVar(error, \"Acceso denegado: falta API KEY\")\n addResult(error)\nend()", + "embedding": [ + 0.018413348123431206, + -0.011394532397389412, + 0.009708110243082047, + 0.009157482534646988, + -0.04751179367303848, + -0.002052835887297988, + 0.012531240470707417, + 0.05657312273979187, + -0.017614245414733887, + -0.0031890575774013996, + -0.0008180984877981246, + -0.006284779869019985, + -0.015300467610359192, + 0.024364490061998367, + -0.017526276409626007, + -0.009568441659212112, + -6.857943662907928e-05, + 0.008418559096753597, + 0.031017763540148735, + 0.019547127187252045, + -0.030447660014033318, + 0.02234499156475067, + 0.004715084098279476, + 0.03566911071538925, + 0.010058966465294361, + 0.014118311926722527, + -0.008719994686543941, + -0.022405387833714485, + -0.014768175780773163, + -0.022023232653737068, + -0.038181185722351074, + -0.03812059760093689, + -0.012489283457398415, + -0.05744141712784767, + -0.014174441806972027, + 0.006291148252785206, + -0.0231868177652359, + -0.0064539480954408646, + -0.05009819194674492, + 0.05649839714169502, + -0.01981632597744465, + -0.032865650951862335, + 0.0014870095765218139, + -0.025002412497997284, + 0.036529697477817535, + -0.014031769707798958, + 0.01301794033497572, + -0.007135751191526651, + -0.003791299881413579, + -0.03737883269786835, + -0.0072309221141040325, + -0.03789498656988144, + 0.07353808730840683, + 0.012008989229798317, + 0.012171321548521519, + -9.660505747888237e-05, + -0.017901839688420296, + 0.0026494753547012806, + -0.03606287017464638, + -0.031934935599565506, + -0.05276104435324669, + -0.001025740522891283, + -0.030543465167284012, + 0.019773056730628014, + 0.028207115828990936, + 0.01817406341433525, + -0.016855578869581223, + 0.016754528507590294, + 0.00616528419777751, + -0.030500592663884163, + 0.040258657187223434, + 0.041021574288606644, + -0.010168727487325668, + -0.02079097181558609, + -0.07958505302667618, + -0.005013387184590101, + 0.034715019166469574, + 0.017795724794268608, + -0.045283325016498566, + -0.01008374709635973, + 0.010515250265598297, + -0.023899607360363007, + 0.013795556500554085, + 0.024111879989504814, + 0.017400631681084633, + 0.004276587162166834, + -0.004376252647489309, + 0.032209184020757675, + -0.01869961991906166, + 0.0307877566665411, + 0.00036628672387450933, + -0.01814468763768673, + 0.013298509642481804, + -0.06887505203485489, + 0.011764694936573505, + -0.05961306393146515, + 0.010252091102302074, + -0.03038451448082924, + 0.01553791482001543, + 0.02488342672586441, + -0.021264169365167618, + 0.03621526062488556, + 0.03584009036421776, + -0.02114209346473217, + 0.045385174453258514, + -0.0005879038362763822, + 0.02196010947227478, + -0.01680729351937771, + 0.021630611270666122, + -0.002385550644248724, + -0.01117214560508728, + -0.01640632189810276, + 0.011571674607694149, + 0.002818002598360181, + 0.019444994628429413, + -0.06095179542899132, + -0.004454621579498053, + -0.018316665664315224, + 0.004185277968645096, + 0.03118235617876053, + 0.03689855337142944, + 0.02670789696276188, + 0.021748201921582222, + 0.01039171777665615, + -0.005373969208449125, + 0.0362398587167263, + -0.009126486256718636, + 0.013476286083459854, + -0.034818943589925766, + 0.04765671119093895, + -0.006660000886768103, + -0.01869751699268818, + -0.007357229012995958, + -0.027261627838015556, + -0.05841904878616333, + 0.017856767401099205, + -0.04225517809391022, + 0.060198139399290085, + 0.010463998652994633, + -0.05534684658050537, + -0.0064552174881100655, + 0.022229472175240517, + -0.017462069168686867, + 0.00038866608520038426, + 0.05860137194395065, + -0.03957214206457138, + 0.0800241082906723, + -0.024244045838713646, + 0.007051575928926468, + 0.015321487560868263, + -0.030291933566331863, + -0.016792668029665947, + 0.014072795398533344, + -0.049981411546468735, + 0.03089357353746891, + -0.023727145045995712, + -0.013289293274283409, + 0.016165385022759438, + 0.04404021427035332, + 0.006753138732165098, + -0.03996067866683006, + 0.024808630347251892, + -0.0046216873452067375, + 0.005651179701089859, + 0.0259419996291399, + -0.0055710626766085625, + 0.03619013726711273, + -0.06159340962767601, + -0.026110349223017693, + -0.027197666466236115, + 0.03097195364534855, + 0.009608828462660313, + 0.011613475158810616, + 0.011717685498297215, + -0.04008686542510986, + 0.034491878002882004, + -0.0012071531964465976, + 0.04130790755152702, + 0.0015177999157458544, + -0.03956488147377968, + -0.04319235682487488, + 0.01954629458487034, + -0.022173117846250534, + -0.036773260682821274, + 0.000967519823461771, + -0.0036838590167462826, + 0.02627524733543396, + 0.003358217654749751, + 0.0014910863246768713, + 0.029012149199843407, + -0.027182310819625854, + -0.015333125367760658, + 0.05829009786248207, + 0.03974726423621178, + 0.010183335281908512, + 0.010513260029256344, + 0.03209292143583298, + 0.002063076477497816, + 0.005755506455898285, + -0.024953944608569145, + -0.01957017555832863, + 0.02880042791366577, + 0.04076288640499115, + -0.018226340413093567, + 0.0282145943492651, + 0.009309515357017517, + 0.019261257722973824, + -0.04231034219264984, + 0.0477236844599247, + -0.02423848770558834, + 0.04300804063677788, + 0.05033319070935249, + -0.09632468968629837, + 0.01864413358271122, + -0.056188035756349564, + 0.011105828918516636, + -0.00437925336882472, + 0.015283877030014992, + -0.018599435687065125, + -0.02290884591639042, + -0.030685674399137497, + 0.06454046815633774, + 0.019587591290473938, + 0.03684746101498604, + 0.002417047740891576, + -0.007579169236123562, + 0.014449548907577991, + 0.022702014073729515, + -0.0475488156080246, + -0.025592980906367302, + -0.013670449145138264, + 0.012318701483309269, + -0.02107580192387104, + -0.02843870408833027, + 0.09646973013877869, + -0.0410224013030529, + -0.013754338957369328, + 8.000352681847289e-05, + 0.007928038015961647, + 0.0036623734049499035, + -0.0313127376139164, + -0.022296451032161713, + 0.012439589947462082, + 0.0022781656589359045, + -0.03344157338142395, + -0.0025126126129180193, + -0.01644584909081459, + 0.0435086153447628, + -0.038722626864910126, + -0.035213321447372437, + -0.01628105714917183, + -0.019635189324617386, + -0.013591053895652294, + 0.006005357019603252, + -0.04851049929857254, + -0.025609420612454414, + 0.043471165001392365, + -0.0031432013493031263, + -0.010281112045049667, + 0.01581612601876259, + -0.004082551226019859, + 0.02723667211830616, + 0.028103884309530258, + 0.00971961859613657, + -0.006654414348304272, + -0.02454957738518715, + -0.024590011686086655, + -0.023999784141778946, + -0.003958406858146191, + -0.0036708840634673834, + 0.0077270632609725, + 0.04046802967786789, + 0.007861580699682236, + -0.011001409962773323, + 0.02053479477763176, + 0.029560042545199394, + -0.020026719197630882, + -0.03212738409638405, + 0.08346022665500641, + 0.06939931213855743, + 0.0030137463472783566, + 0.02349579893052578, + 0.0024570708628743887, + -0.028557615354657173, + 0.04268990457057953, + -0.014812227338552475, + 0.0027576552238315344, + -0.03395543619990349, + 0.020032469183206558, + -0.04799087345600128, + -0.007835936732590199, + 0.04153244569897652, + 0.07983864843845367, + -0.01992463693022728, + 0.017468927428126335, + 0.008872656151652336, + -0.0020014639012515545, + -0.15438418090343475, + -0.035586465150117874, + 0.004315934143960476, + -0.009031469002366066, + -0.009775644168257713, + -0.0014015301130712032, + -0.042641062289476395, + -0.010412745177745819, + -0.054213132709264755, + 0.0017678685253486037, + 0.02398529089987278, + -0.05275186896324158, + -0.011586987413465977, + -0.01674436219036579, + 0.007148300763219595, + -0.02029355615377426, + -0.0049683814868330956, + 0.03996644541621208, + -0.01027714554220438, + -0.0348464660346508, + -0.028328433632850647, + -0.05003374069929123, + 0.01281813345849514, + -0.041579097509384155, + -0.015107609331607819, + -0.008189923129975796, + 0.02012704126536846, + 0.007531341165304184, + -0.042530618607997894, + 0.03229686617851257, + -0.037808001041412354, + -0.005404350347816944, + 0.008155209943652153, + 0.018020393326878548, + -0.005322671495378017, + 0.039484959095716476, + 0.026737473905086517, + 0.024035338312387466, + 0.04526038095355034, + -0.01881183497607708, + 0.011182134971022606, + -0.0011035078205168247, + -0.0075086490251123905, + -0.011737912893295288, + 0.004300725180655718, + 0.019649604335427284, + 0.02908189222216606, + -0.01066130306571722, + -0.038573313504457474, + 0.01742764748632908, + -0.012447592802345753, + -0.060797806829214096, + 0.008130534552037716, + -0.017613952979445457, + -0.015088421292603016, + 0.0024531788658350706, + -0.019567623734474182, + 0.015050766058266163, + -0.03019818477332592, + 0.005094270221889019, + -0.006759712006896734, + -0.021043170243501663, + 0.0023331439588218927, + -0.010148436762392521, + 0.013422072865068913, + -0.004950977861881256, + 0.02246449887752533, + 0.024818124249577522, + 0.03565356880426407, + -0.05555334314703941, + 0.025472775101661682, + -0.02949286811053753, + -0.029554899781942368, + -0.01879439316689968, + 0.009451943449676037, + -0.019428405910730362, + -0.03180741146206856, + -0.026804612949490547, + -0.033576447516679764, + -0.13085976243019104, + 0.03636053577065468, + -0.016150416806340218, + 0.004753890912979841, + -0.006858611013740301, + -0.01590542122721672, + -0.05652738735079765, + -0.028810229152441025, + 0.014157268218696117, + 0.045649513602256775, + 0.20930151641368866, + 0.005656048189848661, + 0.006841369904577732, + 0.01467687264084816, + 0.024707667529582977, + -0.028038276359438896, + 0.003654055530205369, + 0.03171655535697937, + 0.028032710775732994, + -0.012121079489588737, + -0.015629367902874947, + -6.0406448028516024e-05, + -0.01975473389029503, + -0.02036873809993267, + -0.003060749266296625, + 0.027443844825029373, + -0.029694529250264168, + -0.013917178846895695, + 0.039809174835681915, + -0.013436577282845974, + 0.004589439369738102, + -0.011601964943110943, + -0.0648711621761322, + -0.009302634745836258, + -0.07142939418554306, + -0.05734271556138992, + -0.03661034628748894, + -0.001202085055410862, + -0.02077394723892212, + 0.04696125164628029, + -0.009947830811142921, + 0.004271221812814474, + 0.005727129988372326, + -0.023158010095357895, + -0.06310594081878662, + -0.005615055561065674, + 0.006531375460326672, + 0.013531405478715897, + -0.009528091177344322, + 0.006090343464165926, + 0.03857407718896866, + -0.00859355553984642, + 0.01851055771112442, + 0.0664634108543396, + -0.00041682718438096344, + 0.00724109448492527, + 0.006476689130067825, + -0.007626822683960199, + -0.03634290397167206, + -0.020147791132330894, + -0.03159630298614502, + -0.0856400653719902, + -0.009420055896043777, + 0.004867390729486942, + 0.010233044624328613, + -0.02015066146850586, + 0.025072555989027023, + 0.033347997814416885, + -0.03131752088665962, + -0.012754744850099087, + 0.03241506591439247, + -0.008721347898244858, + -0.04798072949051857, + 0.008507744409143925, + -0.01803596131503582, + 0.0036178131122142076, + 0.03879296034574509, + -0.017060691490769386, + 0.021070977672934532, + 0.04717337712645531, + 0.0066401283256709576, + 0.04354996606707573, + 0.0320109948515892, + 0.0343058779835701, + -0.005755048245191574, + -0.03895211219787598, + 0.015217084437608719, + 0.010624329559504986, + -0.016207991167902946, + 0.06396526843309402, + -0.004586201626807451, + 0.023027604445815086, + -0.0790209099650383, + 0.032552532851696014, + -0.005609199404716492, + 0.01068204827606678, + 0.0028761369176208973, + 0.06560038030147552, + -0.011049564927816391, + -0.00022082272334955633, + -0.0030479461420327425, + -0.007036044728010893, + -0.019765760749578476, + 0.046489644795656204, + -0.05106215924024582, + 0.03658919036388397, + 0.04028553515672684, + 0.007667163386940956, + -0.02208397351205349, + 0.022354606539011, + -0.06566447764635086, + 0.0022720973938703537, + 0.01963876374065876, + 0.006260930094867945, + 0.027449848130345345, + -0.05132468044757843, + 0.01284917164593935, + -0.03264281153678894, + 0.019580576568841934, + -0.012920135632157326, + -0.04517078399658203, + 0.011777509935200214, + -0.011609780602157116, + -0.022036051377654076, + -0.019195517525076866, + 0.02201889082789421, + 0.03687983751296997, + 0.003416365711018443, + 0.02198260836303234, + 0.0014907302102074027, + -0.019222881644964218, + -0.023328175768256187, + 0.009865599684417248, + 0.0022539629135280848, + 0.019268643110990524, + -0.0007638293318450451, + 0.014620519243180752, + 0.003788013942539692, + -0.0514846034348011, + 0.017300110310316086, + 0.05401277542114258, + -0.014849214814603329, + 0.003446633229032159, + -0.009414004161953926, + 0.020953722298145294, + -0.005750883370637894, + 0.060825053602457047, + 0.006369300652295351, + 0.05016312003135681, + 0.054022450000047684, + 0.005441673099994659, + -0.03420977294445038, + -0.013672727160155773, + 0.006489189341664314, + 0.005853706039488316, + -0.015451274812221527, + -0.010298424400389194, + -0.006161088589578867, + -0.009506084956228733, + -0.0029560094699263573, + 0.03373891860246658, + 0.06634243577718735, + 0.04851449280977249, + -0.06561724841594696, + -0.04300452023744583, + -0.03991253674030304, + 0.02281656675040722, + 0.010020710527896881, + -0.021374238654971123, + -0.023230204358696938, + 0.003621982177719474, + -0.031004317104816437, + 0.05429990217089653, + 0.0374167375266552, + -0.017812548205256462, + 0.03139561787247658, + 0.007853461429476738, + -0.01313071046024561, + -0.018081456422805786, + 0.050953421741724014, + 0.010704390704631805, + -0.045424193143844604, + -0.03162015974521637, + 0.03690638765692711, + 0.006666556466370821, + -0.0060032387264072895, + -0.0437588170170784, + 0.0013198219239711761, + 0.03533479571342468, + -0.044825661927461624, + 0.04431892931461334, + -0.02430701069533825, + -0.03395052254199982, + -0.014497066847980022, + 0.02114490047097206, + -0.01179414801299572, + -0.005699656903743744, + -0.005532777868211269, + 0.02133372612297535, + -0.014229487627744675, + -0.045359253883361816, + 0.10846461355686188, + 0.02451741322875023, + -0.011355219408869743, + 0.02307446487247944, + 0.0894378274679184, + 0.04298485070466995, + 0.02157500945031643, + -0.0004239268018864095, + 0.04171237722039223, + 0.011056965216994286, + 0.025049937888979912, + 0.009208176285028458, + -0.01699339598417282, + -0.0012510742526501417, + -0.01767972856760025, + -0.0231751948595047, + 0.023063629865646362, + 0.0003353410284034908, + -0.006380046717822552, + 0.044505804777145386, + 0.05508868768811226, + -0.07134042680263519, + -0.026536135002970695, + 0.038978103548288345, + -0.008491749875247478, + 0.06560370326042175, + 0.038914360105991364, + 0.019945906475186348, + 0.002425994724035263, + -0.02035728469491005, + -0.026082638651132584, + 0.04719318076968193, + -0.008070659823715687, + -0.028758900240063667, + 0.03646047040820122, + -0.014488382264971733, + -0.03605666011571884, + 0.02293062023818493, + -0.028471946716308594, + -0.009743273258209229, + -0.012933975085616112, + 0.03515329957008362, + 0.020971117541193962, + -0.0013748283963650465, + -0.00670510483905673, + -0.011651024222373962, + 0.036131709814071655, + 0.005776851903647184, + -0.04291035607457161, + 0.02308346889913082, + -0.0019098889315500855, + 0.044892143458127975, + 0.05774447321891785, + -0.011691048741340637, + 0.07348522543907166, + -0.054786164313554764, + -0.014043177478015423, + 0.02850959077477455, + 0.04101979732513428, + -0.05538889765739441, + -0.05007796362042427, + 0.008340527303516865, + -0.02637188881635666, + 0.043811019510030746, + 0.029409397393465042, + -0.03485257923603058, + 0.019335681572556496, + -0.019657237455248833, + 0.010803301818668842, + 0.030800899490714073, + 0.04789554700255394, + -0.045436013489961624, + -0.019460633397102356, + 0.008484654128551483, + -0.030550098046660423, + 0.048690613359212875, + -0.07025405019521713, + -0.0350726917386055, + 0.004891274496912956, + 0.030394818633794785, + -0.0016775971744209528, + -0.016349250450730324, + -0.03586837276816368, + 0.0017445343546569347, + 0.004546622280031443, + 0.01805800572037697, + -0.015547501854598522, + 0.048320937901735306, + 0.008085543289780617, + -0.061216674745082855, + -0.007973608560860157, + -0.05587846785783768, + 0.029941026121377945, + 0.03809566795825958, + 0.026164131239056587, + -0.02840154804289341, + 0.03151054307818413, + 0.0176073145121336, + -0.06335344165563583, + 0.010498207993805408, + -0.029869185760617256, + -0.03830976039171219, + 0.05638875812292099, + -0.016828661784529686, + -0.022374695166945457, + 0.005393669940531254, + -0.014479095116257668, + -0.011703353375196457, + 0.04987494647502899, + -0.0198807455599308, + -0.024995310232043266, + -0.03228921443223953, + 0.03166685998439789, + -0.05657438561320305, + 0.004730424378067255, + -0.021704481914639473, + 0.010847284458577633, + 0.00720469793304801, + 0.02545285038650036, + 0.04047691449522972, + -0.06673295050859451, + -0.0017219261499121785, + 0.06791861355304718, + 0.0219902154058218, + -0.0028580420184880495, + 0.05632471293210983, + -0.014734907075762749, + 0.013353127054870129, + -0.013317503035068512, + 0.03644175082445145, + -0.017262056469917297, + -0.02225489914417267, + 0.02659766748547554, + 0.0062279487028717995, + -0.009723159484565258, + -0.03710906580090523, + -0.013622459024190903, + -0.038957346230745316, + -0.038884662091732025, + -0.04403075948357582, + -0.0068654995411634445, + -0.014018770307302475, + 0.024889612570405006, + -0.04472363740205765, + 0.00942880567163229, + 0.020420042797923088, + -0.03479126840829849, + -0.03915555402636528, + -0.04834570735692978, + -0.01253807358443737, + -0.032047122716903687, + 0.08757037669420242, + -0.04099557548761368, + -0.034488286823034286, + 0.009252343326807022, + -0.0004598794621415436, + -0.02127758227288723, + -0.01347598060965538, + 0.016883179545402527, + -0.022852733731269836, + -0.008737131953239441, + -0.009254365228116512, + -0.046248797327280045, + -0.0007146751158870757, + -0.006809319835156202, + 0.009157689288258553, + 0.052715592086315155, + 0.02381000854074955, + -0.01140723004937172, + -0.02684265933930874, + 0.027964647859334946, + 0.020019322633743286, + -0.0018448306946083903, + -0.03848671168088913, + 0.04761205241084099, + 0.021740296855568886, + 0.012883190996944904, + -0.02094997651875019, + 0.0014181730803102255, + -0.007003265433013439, + 0.019704148173332214, + 0.018166497349739075, + 0.03095901384949684, + -0.0085871871560812, + 0.05282116308808327, + -0.016113607212901115, + 0.020145732909440994, + -0.0034744751174002886, + 0.020263811573386192, + -0.03168926015496254, + -0.0008275982108898461, + 0.0005964452284388244, + -0.029773754999041557, + -0.04024656489491463, + 0.005030058324337006, + -0.011224545538425446, + 0.010828415863215923, + 0.048552386462688446, + 0.0586853101849556, + -0.020023293793201447, + 0.002937427954748273, + -0.03441096097230911, + 0.015058095566928387, + -0.12924990057945251, + 0.035994961857795715, + -0.0006243853713385761, + 0.0039695738814771175, + -0.016408279538154602, + -0.00996160227805376, + -0.05886117368936539, + -0.04410373419523239, + -0.016246628016233444, + -0.05048246309161186, + -0.05356672406196594, + -0.002586107701063156, + 0.024455873295664787, + -0.01819297857582569, + 0.023541472852230072, + 0.0004844272625632584, + 0.055816881358623505, + -0.022795289754867554, + 0.007173747289925814, + -0.010433783754706383, + -0.023840434849262238, + -0.032308004796504974, + 0.04567580670118332, + 0.03479465842247009, + -0.0027864433359354734, + 0.01588987372815609, + 0.016368908807635307, + 0.027843013405799866, + -0.017149755731225014, + -0.019351454451680183, + -0.04162067547440529, + 0.008087052963674068, + 0.031999580562114716, + 0.013872455805540085, + 0.04170187562704086, + -0.016043473035097122, + 4.594965139403939e-05, + 0.07391291111707687, + -0.010985186323523521, + 0.07897035777568817, + 0.004823377821594477, + 0.0223243311047554, + -0.03064369596540928, + -0.008834511041641235, + 0.0234760120511055, + 0.03093012608587742, + -0.0003554626600816846, + -0.01993023231625557, + -0.021143879741430283, + -0.020076096057891846, + -0.012980947270989418, + 0.005541470367461443, + -0.012355201877653599, + 0.014395801350474358, + 0.018217625096440315, + -0.0077122170478105545, + -0.06765786558389664, + -0.00998276099562645, + -0.013243718072772026, + -0.009163733571767807, + -0.020008312538266182, + 0.036678120493888855, + -0.01740400120615959, + -0.05561871454119682, + -0.008907388895750046, + 0.037673067301511765, + -0.02650967799127102, + 0.005732399877160788, + -0.003106879536062479, + 0.007356313522905111, + 0.017143435776233673, + -0.02272738143801689, + -0.028523188084363937, + -0.017962772399187088, + -0.010637123137712479, + 0.04501442238688469, + -0.023099225014448166, + 0.02521354705095291, + -0.01654507778584957, + -0.013444177806377411, + -0.04676220938563347, + 0.012723097577691078, + -0.041652098298072815, + -0.015310447663068771, + 0.04540207237005234, + 0.019151685759425163, + 0.004088420420885086, + 0.06890570372343063, + -0.04254339635372162, + 0.00749977258965373, + -0.025802290067076683, + -0.08158347755670547, + 0.043129812926054, + 0.010109699331223965, + -0.004503777250647545, + 0.03161739557981491, + -0.013478899374604225, + -0.014409512281417847, + 0.025824839249253273, + -0.013408196158707142, + -0.0017254975391551852, + 0.005307010840624571, + 0.03478744626045227, + -0.007197643164545298, + -0.0040814438834786415, + -0.004814489744603634, + -0.016394957900047302, + -0.02167998068034649, + 0.0022249743342399597, + 0.0010220258263871074, + -0.005040986463427544, + 0.01677030511200428, + -0.057463064789772034, + 0.021902479231357574, + -0.04210219904780388, + -0.01195484772324562, + 0.019541341811418533, + 0.034218255430459976, + -0.02782520279288292, + -0.006590961944311857, + -0.0001681272842688486, + -0.019178204238414764, + 0.03306536376476288, + -0.009891502559185028, + 0.03646214306354523, + -0.002392282709479332, + -0.025795690715312958, + 0.03913646191358566, + -0.013247959315776825, + 0.029406877234578133, + 0.006165422033518553, + -0.025976844131946564, + 0.024750396609306335, + 0.027548160403966904, + 0.0057156505063176155, + -0.012960500083863735, + -0.052763622254133224, + 0.03976244851946831, + -0.011873495765030384, + -0.02557065337896347, + -0.04178738221526146, + -0.015276528894901276, + 0.034314367920160294, + -0.05422136187553406, + -0.015607132576406002, + 0.02179015427827835, + -0.014108873903751373, + -0.037030965089797974, + -0.028429191559553146, + -0.051602236926555634, + 0.023180797696113586, + 0.022457318380475044, + -0.02188780903816223, + 0.042847890406847, + -0.014057474210858345, + 0.006500709801912308, + -0.016938818618655205, + -0.03277236223220825, + -0.02504827082157135, + 0.017064683139324188, + -0.031613633036613464, + -0.04217497631907463, + 0.03955520689487457, + -0.020284611731767654, + -0.00837974064052105, + -0.039549820125103, + -0.0004462736542336643, + -0.001702267793007195, + -0.03185061737895012, + 0.012272274121642113, + -0.03791014477610588, + 0.0369071327149868, + -0.004333240911364555, + 0.023026349022984505, + 0.06038205698132515, + -0.037705715745687485, + 0.0216826219111681, + -0.02154257334768772, + 0.04731078818440437, + -0.0012336610816419125, + 0.0019593609031289816, + 0.04338861629366875, + 0.004149943124502897, + -0.02615274302661419, + 0.01459885947406292, + 0.01074327901005745, + 0.052945155650377274, + 0.03440261259675026, + -0.011148571968078613, + -0.00899239256978035, + -0.022308241575956345, + -0.005417868960648775, + 0.041876912117004395, + -0.011339584365487099, + 0.02570251189172268, + -0.0072457497008144855, + 0.01523084007203579, + -0.013044974766671658, + 0.004786496516317129, + 0.02811930514872074, + -0.033909495919942856, + -0.013386949896812439, + -0.02504432387650013, + -0.007628513500094414, + -0.0001590620377101004, + -0.014985116198658943, + -0.014486584812402725, + -0.0042281374335289, + -0.0015725523699074984, + 0.0353785939514637, + -0.037834282964468, + -0.02549048140645027, + -0.0056268745101988316, + -0.0020941453985869884, + -0.030163466930389404, + -0.022521913051605225, + 0.011897873133420944, + -0.009168797172605991, + 0.013232976198196411, + 0.014331523329019547, + 0.035401057451963425, + 0.02513950504362583, + 0.061607394367456436, + -0.005758221726864576, + -0.04276618734002113, + -0.0399136058986187, + 0.010062606073915958, + 0.029717963188886642, + 0.021725162863731384, + -0.0192563459277153, + -0.016636129468679428, + 0.009548834525048733, + -0.006657302379608154, + 0.021421018987894058, + 0.010596082545816898, + 0.008407128974795341, + 0.019212396815419197, + 0.04127833992242813, + -0.025032466277480125, + 0.04344133660197258, + 0.007364408113062382, + 0.03185048699378967, + -0.018338602036237717, + 0.009013038128614426 + ], + "start_index": 0, + "end_index": 148, + "token_count": 49, + "file_type": "avap_code", + "filename": "validacion_de_nulo.avap", + "addParam": true, + "addResult": true, + "addVar": true, + "if": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "ffa59c7a-93bd-5f46-9738-be3cc2dce67f", + "_source": { + "text": "nombre = \"Sistema\"\nlog = \"Evento registrado por: %s\" % nombre\naddResult(log)", + "embedding": [ + 0.016663335263729095, + -0.02692604809999466, + -0.0345565602183342, + -0.0016160387312993407, + -0.0524408221244812, + -0.028204072266817093, + -0.0149103794246912, + 0.03999035060405731, + -0.023714961484074593, + -0.04578347131609917, + 0.009466536343097687, + 0.03272044286131859, + -0.04592924192547798, + 0.023468216881155968, + 0.02561628259718418, + 0.01214229129254818, + 0.026525069028139114, + -0.0053779492154717445, + 0.007621957454830408, + 0.016171302646398544, + 0.005788288079202175, + 0.024684494361281395, + 0.006916638929396868, + -0.0023191035725176334, + -0.013037015683948994, + -0.025242429226636887, + -0.0004334776313044131, + -0.02078148163855076, + 0.031787022948265076, + -0.03301827237010002, + 0.03878886252641678, + 0.0015098130097612739, + -0.00927757378667593, + -0.062007367610931396, + -0.05218091979622841, + 0.015074300579726696, + -0.017184065654873848, + -0.04566524550318718, + -0.04175644367933273, + 0.025204500183463097, + 0.00954006053507328, + 0.0037797861732542515, + 0.005081675481051207, + -0.07181849330663681, + 0.011349807493388653, + 0.0054140775464475155, + 0.018381739035248756, + -0.013545907102525234, + -0.033382683992385864, + -0.011102705262601376, + -0.012688029557466507, + 0.01818799413740635, + 0.03609038516879082, + -0.009596085175871849, + -0.028379101306200027, + 0.03707687929272652, + -0.05086483806371689, + 0.011544991284608841, + -0.015611909329891205, + -0.03725351393222809, + -0.03869325667619705, + 0.0005112501094117761, + -0.042235229164361954, + 0.0059350598603487015, + 0.008441497571766376, + 0.041311632841825485, + 0.03167464956641197, + 0.023038579151034355, + -0.010852526873350143, + -0.013446809723973274, + 0.004738588817417622, + 0.0007536091725341976, + -0.007946050725877285, + -0.057460252195596695, + -0.0831662267446518, + 0.041335079818964005, + 0.028446823358535767, + -0.0032644174061715603, + -0.040030062198638916, + -0.015262434259057045, + -0.005461067892611027, + -0.02986549213528633, + 0.006659630220383406, + -0.018000202253460884, + -0.011473528109490871, + 0.00419395649805665, + 0.010804886929690838, + 0.05108634755015373, + -0.0470757894217968, + 0.021275321021676064, + -0.028439810499548912, + 0.011861863546073437, + 0.008789480663836002, + -0.0014200067380443215, + -0.01797216199338436, + -0.02260979264974594, + 0.03052397258579731, + -0.025495730340480804, + 0.01704670488834381, + 0.013801447115838528, + -0.030511852353811264, + 0.021891221404075623, + 0.05683387443423271, + 0.01628943718969822, + 0.022627796977758408, + -0.004911125637590885, + 0.042476024478673935, + 7.433467544615269e-05, + 0.04448527842760086, + -0.010878709144890308, + -0.01287027820944786, + 0.019144071266055107, + 0.030370142310857773, + -0.0032037252094596624, + 0.021633325144648552, + -0.05020453408360481, + 0.011565238237380981, + -0.03508615866303444, + 0.020955611020326614, + 0.00219919765368104, + 0.0395374670624733, + 0.0178320724517107, + 0.053052812814712524, + -0.008129970170557499, + -0.008422798477113247, + 0.027760637924075127, + -0.010658503510057926, + -0.004230121150612831, + 0.016070179641246796, + -0.00800459086894989, + 0.03264367952942848, + 0.08311889320611954, + 0.005364155396819115, + 0.014286132529377937, + -0.02829829417169094, + -0.01631743460893631, + 0.03478027880191803, + 0.052592623978853226, + 0.05396100878715515, + -0.032598547637462616, + -0.005489950999617577, + -0.008721875958144665, + 0.009783189743757248, + -0.013607224449515343, + 0.040403854101896286, + -0.09430696070194244, + -0.02029503881931305, + 0.0036865947768092155, + -0.019727658480405807, + -0.022649358958005905, + -0.024526795372366905, + 0.03272780403494835, + -0.002658529207110405, + -0.028932364657521248, + 0.0257510207593441, + 0.005511248949915171, + 0.004209444392472506, + 0.010036845691502094, + -0.01291702315211296, + 0.02212396450340748, + 0.004398648161441088, + 0.014262910932302475, + -0.01820964552462101, + -0.025904491543769836, + 0.028793802484869957, + -0.048966918140649796, + 0.011509519070386887, + -0.03836756944656372, + 0.02406441979110241, + -0.04682871326804161, + 0.006123140454292297, + -0.028055371716618538, + -0.037006884813308716, + 0.0015910555375739932, + 0.0030829855240881443, + 0.0156751349568367, + 0.03334120288491249, + 0.029295539483428, + 0.019608329981565475, + -0.053888339549303055, + -0.0034450222738087177, + -0.02525911293923855, + -0.008570853620767593, + -0.041827160865068436, + -0.0287619698792696, + 0.04149158298969269, + -0.00888555683195591, + 7.712440856266767e-05, + 0.010627003386616707, + 0.0291726216673851, + 0.0014130841009318829, + -0.004666004329919815, + 0.0288425013422966, + -0.011959188617765903, + 0.03545999154448509, + 0.030289972200989723, + 0.03175375983119011, + 0.01910853013396263, + 0.00018899713177233934, + 0.013691979460418224, + -0.043598003685474396, + 0.013795124366879463, + 0.023912252858281136, + -0.03298966586589813, + -0.012810084968805313, + -0.001684806076809764, + -0.023607265204191208, + -0.04483501613140106, + -0.010012463666498661, + -0.037429329007864, + 0.046498749405145645, + 0.045164063572883606, + -0.045229483395814896, + -0.0030961844604462385, + 0.0021650120615959167, + 0.006305899005383253, + 0.032883211970329285, + 0.00792000349611044, + -0.012633299455046654, + -0.061935193836688995, + -0.04957442730665207, + 0.04258004203438759, + 0.02366768755018711, + 0.056889358907938004, + 0.030292784795165062, + -0.02148459292948246, + 0.0007915376918390393, + 0.02146032266318798, + 0.012040452100336552, + 0.02385854534804821, + -0.025943588465452194, + -0.004268748220056295, + 0.025879522785544395, + 0.006246259436011314, + 0.041990477591753006, + -0.04627727344632149, + 0.0015914472751319408, + 0.013119014911353588, + 0.03227302059531212, + -0.0045652068220078945, + -0.012882458977401257, + -0.01323625072836876, + 0.04138584062457085, + 0.006687651388347149, + -0.047398198395967484, + -0.019536146894097328, + 0.02195553481578827, + 0.04807814210653305, + -0.024160509929060936, + -0.021442849189043045, + -0.017564520239830017, + -0.037963561713695526, + -0.0540553480386734, + 0.0009910878725349903, + 0.01972648873925209, + 0.017626037821173668, + 0.040628548711538315, + -0.017684828490018845, + -0.01312964502722025, + 0.02576357312500477, + 0.016643216833472252, + -0.004360707942396402, + 0.001216237316839397, + 0.019118035212159157, + 0.049077220261096954, + -0.01708386093378067, + 0.017308233305811882, + 0.029061434790492058, + -0.01809120550751686, + -0.016357481479644775, + 0.004444877617061138, + 0.01228322833776474, + -0.000541668850928545, + 0.00690845912322402, + -0.017716344445943832, + 0.018225310370326042, + -0.042954862117767334, + -0.02995220012962818, + 0.11210203915834427, + 0.009201527573168278, + -0.035892244428396225, + -0.022867748513817787, + 0.020689142867922783, + -0.02037390135228634, + 0.045302603393793106, + -0.05891481786966324, + 0.010157442651689053, + -0.013096810318529606, + -0.002091039204970002, + -0.09991239011287689, + -0.016792183741927147, + -0.002797829220071435, + 0.05989213287830353, + 0.005213162396103144, + 0.009054427966475487, + 0.05079329013824463, + -0.00462319003418088, + -0.12347694486379623, + -0.02987896464765072, + -0.03479980677366257, + 0.024481605738401413, + 0.011630123481154442, + -0.006512102205306292, + 0.010588010773062706, + -0.048786960542201996, + -0.02442723512649536, + 0.06807004660367966, + -0.01565631479024887, + -0.05704357847571373, + -0.0009754552156664431, + -0.054353684186935425, + -0.045902833342552185, + -0.017228731885552406, + -0.007107164245098829, + 0.002846961608156562, + 0.014469715766608715, + -0.023528622463345528, + -0.026161670684814453, + -0.0477692075073719, + 0.024704836308956146, + 0.026122162118554115, + -0.043589990586042404, + -0.04888379946351051, + 0.0041790311224758625, + 0.0012503400212153792, + -0.02042188122868538, + 0.025529686361551285, + -0.009512842632830143, + 0.0034788690973073244, + 0.0006218458293005824, + 0.01902792789041996, + 0.0016270206542685628, + 0.04490145295858383, + -0.010031209327280521, + 0.03931489214301109, + 0.02747798152267933, + -0.004965394735336304, + 0.028128046542406082, + -0.0074668456800282, + -0.003936713561415672, + 0.004739498253911734, + -0.013197622261941433, + 0.017555613070726395, + 0.036870863288640976, + -0.050042808055877686, + -0.06546308845281601, + 0.030001990497112274, + -0.006798062939196825, + -0.07095115631818771, + -0.007973091676831245, + 0.030579932034015656, + -0.022474171593785286, + 0.02905772253870964, + -0.03924766555428505, + 0.0008464128477498889, + -0.03233696520328522, + 0.060492388904094696, + -0.05176050215959549, + -0.011752963997423649, + 0.020962120965123177, + -0.0029800713527947664, + 0.023077111691236496, + -0.018254049122333527, + 0.048235125839710236, + 0.006362592335790396, + 0.036909427493810654, + -0.044633205980062485, + 0.01680091768503189, + -0.03167702257633209, + -0.007400201167911291, + 0.015090429224073887, + 0.03710807487368584, + -0.0019660245161503553, + -0.05781982094049454, + -0.030660882592201233, + 0.01539965532720089, + -0.0972631499171257, + -0.040510572493076324, + 0.0004497625050134957, + -0.016121702268719673, + 0.04047781974077225, + -0.010637178085744381, + -0.020459314808249474, + -0.010529299266636372, + 0.015858838334679604, + 0.03526321053504944, + 0.22138294577598572, + 0.014815405011177063, + 0.024870045483112335, + -0.03459750488400459, + 0.04268497973680496, + -0.027114951983094215, + 0.0042953225784003735, + 0.008248421363532543, + -0.022636141628026962, + -0.03020997904241085, + -0.022818995639681816, + 0.0313042514026165, + -0.021141987293958664, + -0.016700712963938713, + -0.038133829832077026, + -0.004706474486738443, + -0.025562630966305733, + -0.01717980206012726, + 0.044500138610601425, + 0.01525950152426958, + 0.01075800321996212, + 0.0041379546746611595, + -0.014392059296369553, + -0.011495156213641167, + -0.042463671416044235, + -0.04223565012216568, + -0.024688338860869408, + 0.011350770480930805, + -0.010362690314650536, + 0.02078341506421566, + 0.023251520469784737, + 0.021552419289946556, + 0.021377163007855415, + -0.014739073812961578, + -0.019053637981414795, + 0.008422684855759144, + 0.03293219953775406, + -0.021033626049757004, + -0.009271317161619663, + -0.003020808333531022, + 0.03571059927344322, + -0.00557992048561573, + 0.01860293745994568, + -0.009021474979817867, + 0.0030911338981240988, + 0.007742878049612045, + 0.013605283573269844, + -0.004154725465923548, + -0.013690986670553684, + -0.0056600747630000114, + 0.03654218465089798, + -0.010567840188741684, + 0.0005994930397719145, + -0.023431293666362762, + 0.04931657388806343, + -0.015035252086818218, + 0.017105014994740486, + 0.014993056654930115, + 0.0007324987091124058, + 0.005767587572336197, + 0.060437820851802826, + 0.02060106210410595, + -0.0002299966727150604, + -0.02555248513817787, + -0.0024823257699608803, + -0.0008024390554055572, + 0.07518967241048813, + -0.03628816455602646, + 0.030695617198944092, + 0.03329804912209511, + -0.01951855793595314, + 0.012281044386327267, + 0.009743004105985165, + 0.01732661761343479, + -0.0033454555086791515, + -0.026977967470884323, + 0.05155185982584953, + 0.0275766272097826, + 0.0027729952707886696, + 0.04813268408179283, + -0.014708166010677814, + 0.0021095280535519123, + -0.03577135503292084, + 0.06529450416564941, + 0.016395093873143196, + -0.016003312543034554, + -0.00019268975302111357, + 0.06502081453800201, + -0.0022833412513136864, + 0.006238259840756655, + -0.02416050247848034, + -0.01823798194527626, + -0.020448332652449608, + 0.01863701641559601, + 0.006638169754296541, + 0.068238265812397, + 0.020256806164979935, + 0.03765055164694786, + -0.08007924258708954, + 0.05385420471429825, + -0.019920052960515022, + 0.008455182425677776, + 0.0044627427123487, + -0.036854349076747894, + 0.012247963808476925, + -0.01359057892113924, + -0.009759381413459778, + -0.010140244849026203, + 0.029874442145228386, + 0.007936745882034302, + -0.04163513705134392, + 0.03454067185521126, + 0.013609165325760841, + 0.009326796978712082, + -0.013873607851564884, + -0.0035039836075156927, + 0.09321828186511993, + 0.011533104814589024, + -0.0020822288934141397, + 0.05280252546072006, + -0.03048795834183693, + 0.0018859092378988862, + 0.0050733210518956184, + -0.019480755552649498, + 0.010029703378677368, + -0.06351595371961594, + 0.008925524540245533, + -0.017510218545794487, + -0.008161863312125206, + 0.06536983698606491, + 0.048520777374506, + -0.018948299810290337, + 0.01682458631694317, + 0.008883657865226269, + 0.033498696982860565, + 0.005372204817831516, + 0.048211123794317245, + -0.008281709626317024, + 0.010756037198007107, + 0.03008972480893135, + -0.03624604269862175, + 0.027145564556121826, + -0.028352074325084686, + 0.00870970543473959, + -0.021697402000427246, + 0.011573405005037785, + 0.0038058352656662464, + -0.0048599811270833015, + -0.00791484210640192, + 0.02976866252720356, + 0.02160502038896084, + 0.03709268569946289, + 0.06426721066236496, + -0.022953428328037262, + -0.010838953778147697, + -0.03952475264668465, + 0.02306610532104969, + 0.015553019009530544, + -0.03434160724282265, + -0.019674008712172508, + 0.007310279179364443, + -0.014005988836288452, + 0.018626848235726357, + 0.04895316809415817, + -0.032520413398742676, + -0.028980540111660957, + -0.002402036916464567, + 0.036608245223760605, + -0.024660620838403702, + -0.019627271220088005, + 0.03406806290149689, + -0.0217702928930521, + -0.03440997004508972, + 0.023429477587342262, + -0.005966246593743563, + 0.001355498912744224, + -0.007936635985970497, + 0.0017040529055520892, + -0.0034128129482269287, + -0.029193367809057236, + 0.008084747940301895, + -0.0070345960557460785, + -0.0474514365196228, + 0.004580968990921974, + 0.03453969210386276, + -0.003999342210590839, + -0.004590125754475594, + -0.001804841449484229, + -0.007920216768980026, + 0.011257875710725784, + 0.006331215146929026, + 0.11646208167076111, + -0.0012851959327235818, + -0.027887223288416862, + 0.0292257871478796, + 0.04279610142111778, + -0.013592141680419445, + 0.005182433873414993, + -0.019676627591252327, + -0.03626612573862076, + 0.013209947384893894, + 0.05383092537522316, + -0.013608984649181366, + 0.007495617959648371, + -0.03351280093193054, + 0.018502596765756607, + -0.05199666693806648, + 0.01568322815001011, + -0.005720612592995167, + 0.024954333901405334, + 0.03768277168273926, + 0.009837565943598747, + -0.02697467990219593, + -0.007015943061560392, + 0.020715812221169472, + -0.02663514018058777, + 0.0641971305012703, + 0.02062370628118515, + 0.013904963620007038, + -0.010357347317039967, + -0.027759654447436333, + -0.03562123700976372, + 0.009839109145104885, + -0.026500064879655838, + -0.08091844618320465, + 0.03661465272307396, + 0.0089550307020545, + 0.009790778160095215, + -0.009376352652907372, + -0.011757743544876575, + -0.009916695766150951, + -0.04021211341023445, + -0.01027259323745966, + -0.01431104727089405, + 0.017933988943696022, + -0.006934140343219042, + 0.0013165837153792381, + 0.0455489456653595, + 0.01330465730279684, + -0.0600912906229496, + 0.033174023032188416, + -0.02698558382689953, + 0.036420788615942, + 0.049515604972839355, + 0.03604075685143471, + 0.09063342213630676, + -0.029333647340536118, + -0.02645532600581646, + -0.010995538905262947, + -0.01515229232609272, + -0.02115054987370968, + -0.026260653510689735, + -0.027473293244838715, + -0.044831532984972, + 0.011014765128493309, + 0.029114756733179092, + -0.05138515308499336, + 0.011501089669764042, + -0.04003222659230232, + -0.04445597156882286, + 0.004062154330313206, + 0.06947552412748337, + -0.02193056419491768, + -0.009579059667885303, + 0.005748054478317499, + -0.08995041996240616, + 0.022365113720297813, + -0.03167009353637695, + -0.030368948355317116, + 0.0007861334597691894, + -0.020548483356833458, + -0.028883926570415497, + -0.007325927261263132, + 0.024198707193136215, + -0.011484804563224316, + 0.02180398255586624, + -0.040666814893484116, + -0.028254447504878044, + 0.05773988366127014, + -0.002716484945267439, + -0.012906720861792564, + -0.016910696402192116, + -0.024672502651810646, + -0.011052396148443222, + -0.035217441618442535, + 0.015981005504727364, + -0.03286803513765335, + 0.03394261375069618, + 0.005618353374302387, + -0.08637035638093948, + -0.0051147183403372765, + -0.003227640874683857, + -0.06277824193239212, + 0.07884658873081207, + -0.031191376969218254, + -0.02646680548787117, + 0.0021798163652420044, + 0.05661369115114212, + 0.013139782473444939, + -0.010505910962820053, + -0.016607891768217087, + -0.02042093314230442, + 0.01871548220515251, + -0.012432746589183807, + -0.0522950142621994, + 0.031219618394970894, + -0.04129127040505409, + -0.04120943322777748, + 0.04810713976621628, + -0.01171334832906723, + -0.020091064274311066, + -0.029632870107889175, + 0.023873567581176758, + 0.027071557939052582, + 0.0004405934305395931, + 0.008329294621944427, + 0.06212136521935463, + -0.03158580884337425, + -0.02060052566230297, + -0.005683479830622673, + 0.01563323475420475, + -0.01153541635721922, + -0.005514047108590603, + 0.004017481114715338, + -0.017954450100660324, + -0.00403660349547863, + 0.006964193657040596, + 0.005812962539494038, + -0.0403369776904583, + 0.009765861555933952, + -0.02223939448595047, + -0.01802704855799675, + 0.015887925401329994, + 0.00240074354223907, + -0.009582514874637127, + -0.036148570477962494, + 0.03677572309970856, + -0.009692166931927204, + -0.014847506769001484, + -0.03496100381016731, + 0.01883772388100624, + -0.02145596779882908, + 0.04868784919381142, + -0.047916751354932785, + 0.009475000202655792, + 0.00751077476888895, + -0.018336281180381775, + -0.02106224000453949, + -0.02710982970893383, + -0.007280025631189346, + 0.035229120403528214, + 0.042213380336761475, + -0.026181701570749283, + -0.061288878321647644, + -0.007869998924434185, + -0.015610051341354847, + 0.009901461191475391, + 0.013678046874701977, + 0.0355856716632843, + -0.012287300080060959, + -0.027782266959547997, + 0.0017845302354544401, + -0.03701348975300789, + -0.014135717414319515, + -0.002765347482636571, + 0.023882901296019554, + 0.020131323486566544, + 0.07826463878154755, + -0.016301743686199188, + -0.016225669533014297, + -0.0005949015612713993, + -0.035612333565950394, + 0.0005236496217548847, + 0.03424555063247681, + -0.032969824969768524, + 0.030870554968714714, + -0.03149407356977463, + 0.0365421287715435, + -0.021260911598801613, + -0.010505211539566517, + -0.02306441403925419, + 0.0001231440546689555, + -0.037187930196523666, + -0.021899297833442688, + -0.009008270688354969, + 0.011600745841860771, + -0.053410403430461884, + 0.018631216138601303, + 0.07854314148426056, + 0.022563213482499123, + -0.017371825873851776, + 0.007503155618906021, + -0.03298303484916687, + 0.008160989731550217, + -0.1351386457681656, + 0.011045126244425774, + -0.037152111530303955, + 0.015082339756190777, + -0.029928384348750114, + -0.014182914979755878, + -0.015609333291649818, + -0.05130258575081825, + -0.014712002128362656, + -0.027684640139341354, + -0.026547517627477646, + -0.0005401925300247967, + -0.008386710658669472, + -0.03018169105052948, + -0.027700571343302727, + 0.0035069959703832865, + 0.04294620454311371, + -0.018228914588689804, + -0.07622005045413971, + -0.0054634143598377705, + 0.008129507303237915, + -0.027496755123138428, + 0.005174887832254171, + -0.016536474227905273, + -0.01667281985282898, + -0.007386773359030485, + -0.014774453826248646, + 0.03451595455408096, + -0.03619717061519623, + -0.03114917129278183, + -0.02686542272567749, + -0.002310084644705057, + 0.009539163671433926, + 0.05798580124974251, + 0.047165706753730774, + 0.023071400821208954, + -0.0123311011120677, + 0.01426907628774643, + -0.016605554148554802, + 0.026195136830210686, + 0.033449362963438034, + 0.029381051659584045, + -0.04501337930560112, + 0.004183296114206314, + 0.026688992977142334, + 0.06491325795650482, + -0.007737646345049143, + -0.009271222166717052, + 0.015662269666790962, + -0.00595077034085989, + -0.006609701551496983, + 0.051813460886478424, + -0.01081358827650547, + 0.006398776546120644, + 0.011026817373931408, + -0.011940530501306057, + -0.04830962046980858, + -0.008870923891663551, + 0.005357642658054829, + 0.006604786496609449, + 0.016540860757231712, + 0.03047962859272957, + -0.026837779209017754, + -0.05916641280055046, + 0.009341202676296234, + 0.03838343545794487, + -0.03355541452765465, + -0.011328783817589283, + -0.02498430758714676, + -0.014571720734238625, + -0.00740785663947463, + 0.01280665397644043, + -0.014211339876055717, + -0.052119456231594086, + -0.021837063133716583, + 0.03992612287402153, + 0.012359353713691235, + 0.02310369536280632, + -0.053151924163103104, + -0.019908038899302483, + -0.025709200650453568, + 0.031943634152412415, + -0.02642315812408924, + 5.006214996683411e-05, + 0.01936802826821804, + 0.0016318706329911947, + -0.008625511080026627, + 0.011848961003124714, + -0.060770269483327866, + 0.009697738103568554, + 0.008697348646819592, + -0.05913681536912918, + -0.014110838063061237, + -0.010713336057960987, + -0.0555448904633522, + 0.009948315098881721, + -0.0072287521325051785, + 0.014151451177895069, + 0.04686975106596947, + -0.013381590135395527, + 0.024650081992149353, + -0.01674397848546505, + 0.01122624333947897, + 0.011214005760848522, + -0.014867347665131092, + -0.011462099850177765, + -0.009899763390421867, + -0.03169352561235428, + -0.015702001750469208, + -0.0007436656160280108, + 0.02148820087313652, + 0.0016080077039077878, + -0.042053140699863434, + 0.011826028116047382, + -0.06234855204820633, + -0.015989648178219795, + -0.018114380538463593, + 0.02500206232070923, + 0.013014526106417179, + -0.039814114570617676, + -0.0023355106823146343, + -0.05051529034972191, + 0.011190705001354218, + -0.00010265252785757184, + 0.03881523385643959, + 0.03528005629777908, + 0.008136440068483353, + 0.024431539699435234, + -0.0192655511200428, + 0.005956048611551523, + 0.006441833917051554, + -0.017492128536105156, + 0.01306928414851427, + 0.026328420266509056, + 0.05272570997476578, + 0.012027829885482788, + -0.017480187118053436, + 0.04282530024647713, + -0.02535020187497139, + -0.016867531463503838, + -0.0044607967138290405, + -0.01739072985947132, + 0.010522994212806225, + -0.03912000730633736, + -0.0037252483889460564, + -0.037859924137592316, + -0.028256502002477646, + -0.025654606521129608, + 0.011337626725435257, + -0.03652779012918472, + -0.029032908380031586, + 0.007596623618155718, + -0.019262559711933136, + 0.08136148750782013, + -0.05368409305810928, + 0.0520382821559906, + -0.014272292144596577, + 0.010716917924582958, + -0.003000737866386771, + -0.006253197323530912, + -0.06164941191673279, + 0.007341533433645964, + 0.028633007779717445, + -0.020540200173854828, + -0.05216486379504204, + -0.021215105429291725, + -0.04813313111662865, + -0.02091546170413494, + -0.03131162375211716, + 0.020725764334201813, + 0.003390771336853504, + -0.00837540440261364, + -0.018436267971992493, + -0.030122820287942886, + 0.08123847842216492, + 0.025887174531817436, + 0.01004275493323803, + 0.008745260536670685, + 0.0701378807425499, + 0.022381922230124474, + -0.010968759655952454, + 0.040969811379909515, + 0.06708865612745285, + -0.03742552548646927, + 0.042416706681251526, + 0.047905419021844864, + 0.03318146988749504, + 0.048949506133794785, + 0.007886010222136974, + -0.007778859697282314, + 0.013370070606470108, + 0.01750391349196434, + 0.022524094209074974, + -0.004902196582406759, + 0.01865534298121929, + 0.04681212455034256, + 0.015520707704126835, + -0.018018288537859917, + -0.001581891323439777, + 0.03044961392879486, + -0.030107347294688225, + 0.01514494325965643, + -0.017408834770321846, + -0.015996098518371582, + 0.015030262991786003, + -0.0104530593380332, + 0.027278641238808632, + 0.026084335520863533, + 0.04026464745402336, + 0.0358925499022007, + -0.020557379350066185, + 0.008037527091801167, + 0.015387794934213161, + 0.0043054851703345776, + -0.021842744201421738, + -0.006388157606124878, + -0.010409374721348286, + 0.058064837008714676, + 0.008557985536754131, + 0.0015319439116865396, + 0.01177383866161108, + 0.055770330131053925, + 0.03463750332593918, + -0.010635823011398315, + -0.03375350311398506, + -0.007887656800448895, + 0.016155309975147247, + 0.00822849664837122, + -0.00264731771312654, + 0.001802836894057691, + -0.07844935357570648, + -0.013105490244925022, + -0.025353416800498962, + 0.057913899421691895, + 0.01200930867344141, + 0.01232926081866026, + 0.006412171293050051, + 0.04420257732272148, + -0.05483530834317207, + -0.015427789650857449, + 0.029101431369781494, + 0.010567847639322281, + 0.006345476023852825, + -0.011157041415572166 + ], + "start_index": 0, + "end_index": 76, + "token_count": 23, + "file_type": "avap_code", + "filename": "concatenacion_dinamica.avap", + "addResult": true, + "assignment": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "fbae65d5-c064-5151-9ee2-4e4d144b6b3c", + "_source": { + "text": "getDateTime(\"\", 0, \"UTC\", ahora)\naddResult(ahora)", + "embedding": [ + -0.008216621354222298, + 0.015813609585165977, + -0.0540132075548172, + 0.03179656341671944, + -0.0421457476913929, + 0.007130139973014593, + -0.030445745214819908, + 0.07541748881340027, + -0.02040131948888302, + -0.015400055795907974, + 0.026194728910923004, + 0.025644708424806595, + -0.01416097767651081, + 0.002397329779341817, + -0.002476396504789591, + 0.03691794350743294, + 0.021864429116249084, + 0.005609656684100628, + 0.028660239651799202, + -0.025865210220217705, + -0.03221897780895233, + 0.007434900850057602, + -0.05566142499446869, + 0.010401684790849686, + 0.004709118045866489, + -0.029615875333547592, + 0.011759158223867416, + -0.003486417233943939, + 0.017829637974500656, + 0.02098405361175537, + 0.01254954095929861, + -0.01210976205766201, + -0.002895924961194396, + -0.07617361843585968, + -0.046414583921432495, + 0.015135451219975948, + -0.010592681355774403, + 0.004159305710345507, + -0.053076088428497314, + 0.02700282633304596, + -0.019321642816066742, + -0.03878035768866539, + 0.011322763748466969, + -0.019906939938664436, + 0.028248591348528862, + -0.024310754612088203, + 0.005300513003021479, + -0.0055657485499978065, + -0.001183524145744741, + -0.019410567358136177, + -0.012877489440143108, + 0.030482608824968338, + 0.0386890210211277, + 0.02498835325241089, + 0.02216625213623047, + 0.012985918670892715, + -0.03195943310856819, + -0.00913927424699068, + -0.035114992409944534, + -0.02946012280881405, + -0.04581502452492714, + -0.04713239520788193, + -0.04456207528710365, + 0.024507712572813034, + -0.002813965082168579, + 0.03032280132174492, + 0.0321492999792099, + 0.01510925404727459, + -0.014276525005698204, + -0.0038819098845124245, + -0.012479628436267376, + 0.014602436684072018, + -0.02034754306077957, + -0.0321524441242218, + -0.055250249803066254, + -0.006156802177429199, + 0.0009525908390060067, + 0.0026339746546000242, + 0.023749804124236107, + -0.005477479659020901, + -0.012657968327403069, + -0.023466002196073532, + 0.0180219616740942, + 0.006709469016641378, + -0.016375204548239708, + 0.014454517513513565, + -0.022758474573493004, + 0.03907047584652901, + -0.031700845807790756, + 0.017489131540060043, + -0.02458895929157734, + -0.02279055304825306, + -0.008065085858106613, + -0.045692067593336105, + -0.001087289652787149, + -0.06293033808469772, + -0.032748714089393616, + 0.007737351581454277, + 0.07661210745573044, + 0.015597326681017876, + -0.005799535661935806, + 0.02862987481057644, + 0.01504498440772295, + -0.02695555053651333, + 0.06179019808769226, + -0.03374648839235306, + 0.04299067333340645, + -0.04061674326658249, + 0.002271943027153611, + 0.0074878656305372715, + -0.019579019397497177, + 0.020358853042125702, + -0.004603227600455284, + 0.013710799627006054, + -0.006340004038065672, + -0.025217950344085693, + -0.018935903906822205, + 0.003351801773533225, + 0.04890007898211479, + -0.006625146139413118, + 0.031672049313783646, + 0.01852438971400261, + 0.07720515877008438, + -0.006903299130499363, + -0.01192745752632618, + 0.06956703960895538, + 0.0043760137632489204, + 0.0248164813965559, + 0.004574045538902283, + 0.029747718945145607, + 0.019663602113723755, + 0.038164470344781876, + -0.02744859829545021, + -0.008468076586723328, + -0.05617265775799751, + -0.01113973930478096, + -0.010833727195858955, + 0.03576201573014259, + 0.004632552154362202, + -0.04391903802752495, + 0.007626496721059084, + 0.02263522706925869, + -0.01097027212381363, + 0.0035417198669165373, + 0.05772591382265091, + 0.023804323747754097, + -0.0034067437518388033, + -0.0008446947322227061, + -0.0022154448088258505, + 0.030046584084630013, + -0.00021084619220346212, + 0.022881072014570236, + -0.0023142683785408735, + -0.039386723190546036, + 0.016111958771944046, + 0.011355551891028881, + 0.0036759967915713787, + 0.05460245907306671, + -0.03968188911676407, + -0.01726899854838848, + 0.010332675650715828, + 0.009738406166434288, + -0.0429445318877697, + 0.024370230734348297, + -0.006715069059282541, + -0.020533470436930656, + 0.012280079536139965, + -0.01905752904713154, + 0.003964770585298538, + -0.005450965370982885, + 0.03662491217255592, + -0.02874213643372059, + -0.007644656114280224, + 0.007698039058595896, + 0.006382443476468325, + 0.023812100291252136, + 0.03620797395706177, + 0.0142361493781209, + 0.035076990723609924, + -0.056612852960824966, + -0.027549346908926964, + -0.01008640881627798, + -0.02585572563111782, + -0.05752354860305786, + -0.01411942858248949, + -0.000456933252280578, + -0.0058897146955132484, + -0.0016045065131038427, + 0.004041843116283417, + 0.03425551950931549, + -0.004522526171058416, + -0.02102470025420189, + 0.035299185663461685, + 0.01163119450211525, + 0.030979856848716736, + 0.005354101303964853, + 0.028053443878889084, + 0.024404224008321762, + 0.0037616335321217775, + 0.005622757598757744, + -0.06720146536827087, + -0.003492828458547592, + -0.019393406808376312, + 0.018849851563572884, + -0.01720402017235756, + -0.008223087526857853, + -0.023434123024344444, + -0.02330799400806427, + 0.04674472287297249, + 0.048943035304546356, + 0.05504588410258293, + 0.014768116176128387, + -0.018220234662294388, + -0.013950911350548267, + 0.004464425146579742, + -0.002318634884431958, + 0.012166691944003105, + 0.00924766156822443, + -0.02546621300280094, + -0.00873296894133091, + -0.01643623411655426, + 0.03284137696027756, + 0.02551530860364437, + 0.017584532499313354, + 0.009660724550485611, + 0.021652739495038986, + 0.0009285216219723225, + 0.029919147491455078, + -0.04066917672753334, + -0.002253598067909479, + 0.02765742689371109, + -0.010732781141996384, + 0.00350026972591877, + -0.035051994025707245, + 0.04762358218431473, + -0.03381827473640442, + -0.028557807207107544, + 0.0019708778709173203, + -0.04006657004356384, + 0.022401805967092514, + -0.004414877388626337, + 0.022092603147029877, + 0.014204597100615501, + -0.014682603068649769, + -0.015277723781764507, + -0.015531046316027641, + -0.007497681770473719, + 0.017809266224503517, + -0.03914511948823929, + -0.018412761390209198, + 0.015856727957725525, + -0.029414983466267586, + -0.06812747567892075, + 0.028220325708389282, + 0.022406887263059616, + 0.0029841074720025063, + 0.04386051371693611, + -0.012292345985770226, + -0.006907772738486528, + 0.014917192980647087, + 0.028925903141498566, + -0.002042067237198353, + -0.0631200298666954, + 0.030439922586083412, + 0.03295059874653816, + -0.030218346044421196, + -0.03474854305386543, + 0.035273682326078415, + 0.029791351407766342, + -0.04516291990876198, + 0.03880844637751579, + 0.032267894595861435, + 0.024207448586821556, + 0.005949709098786116, + 0.011130747385323048, + 0.01568439230322838, + -0.03286352753639221, + -0.026425989344716072, + 0.0785488486289978, + 0.007623598910868168, + 0.0044898889027535915, + -0.004722899291664362, + 0.03632351756095886, + 0.0040357657708227634, + 0.02430218644440174, + -0.02750530280172825, + 0.05548275634646416, + 0.013425846584141254, + -0.022867031395435333, + -0.11104746907949448, + 0.005999749060720205, + 0.0020547688473016024, + 0.08603392541408539, + -0.03288518264889717, + -0.02026687003672123, + 0.0049968985840678215, + -0.01663953810930252, + -0.14204664528369904, + -0.04315626621246338, + -0.046178486198186874, + 0.03423014655709267, + -0.022964119911193848, + 0.008911163546144962, + -0.04124016687273979, + -0.012741737067699432, + -0.017169790342450142, + 0.054012179374694824, + -0.01975155994296074, + -0.07562554627656937, + 0.003476537298411131, + -0.023996882140636444, + -0.04364125803112984, + 0.01735706441104412, + -0.03159788250923157, + -0.04129365459084511, + 0.00907878391444683, + -0.048423703759908676, + -0.019708966836333275, + -0.009620288386940956, + -0.016872748732566833, + -0.030606724321842194, + -0.05964333191514015, + -0.030371524393558502, + -0.04776284471154213, + -0.011550161056220531, + -0.011875566095113754, + 0.018454471603035927, + -0.022268570959568024, + -0.02896755002439022, + 0.004316393751651049, + 0.011645442806184292, + -0.030168673023581505, + 0.010648014023900032, + 0.008296876214444637, + -0.020896127447485924, + 0.0037884796038269997, + 0.033151984214782715, + 0.011263703927397728, + 0.02629879303276539, + 0.0009253764874301851, + 0.00915805995464325, + -0.020726608112454414, + 0.01821865141391754, + 0.011218865402042866, + -0.0025098221376538277, + -0.06033683940768242, + -0.019402600824832916, + 0.009495304897427559, + -0.034432414919137955, + 0.016232652589678764, + -0.012412930838763714, + -0.03521523252129555, + 0.020921271294355392, + -0.040921151638031006, + -0.0002881669206544757, + -0.06929585337638855, + 0.02521049603819847, + 0.0028936893213540316, + -0.00805317796766758, + 0.020302321761846542, + 0.023636478930711746, + 0.01803242228925228, + -0.028150711208581924, + 0.001132272300310433, + 0.011518503539264202, + 0.06022018939256668, + -0.027710452675819397, + 0.06528355926275253, + -0.014808827079832554, + -0.003086008131504059, + -0.014315611682832241, + 0.03011363558471203, + 0.002753480337560177, + -0.03559662401676178, + -0.022802740335464478, + -0.017037324607372284, + -0.0993097797036171, + -0.023589054122567177, + 0.01727183349430561, + -0.005228846799582243, + 0.039647527039051056, + -0.0008209881489165127, + 0.01266337651759386, + -0.02340095303952694, + 0.038423970341682434, + 0.04752862825989723, + 0.23834039270877838, + 0.0050476170144975185, + -0.008023064583539963, + 0.007396858185529709, + 0.03997502103447914, + -0.017927397042512894, + -0.018528979271650314, + -0.010455531999468803, + 0.010320018976926804, + -0.01613079197704792, + 0.0400332510471344, + -0.0038850107230246067, + -0.005286744330078363, + -0.03231918811798096, + -0.014240720309317112, + 0.02784390188753605, + -0.03684024512767792, + 0.017932621762156487, + 0.0647839829325676, + -0.0002616234705783427, + -0.004916033707559109, + -0.02786441706120968, + -0.09611980617046356, + -0.03456513211131096, + -0.04072285443544388, + -0.034502558410167694, + -0.005431467201560736, + 0.05876322090625763, + 0.012928607873618603, + 0.004711393266916275, + 0.00205815932713449, + 0.04075988382101059, + -0.0011996794492006302, + 0.032426945865154266, + -0.03135116025805473, + -0.00047360945609398186, + 0.0036463807336986065, + -0.008658998645842075, + -0.015701884403824806, + 0.014828432351350784, + 0.011110435239970684, + -0.030292462557554245, + 0.01884058490395546, + 0.08318006992340088, + 0.025918712839484215, + -0.0382913313806057, + 0.00920697022229433, + -0.00521609652787447, + -0.03831443935632706, + -0.019149035215377808, + -0.037573859095573425, + -0.03673059120774269, + -0.011594584211707115, + 0.010836750268936157, + 0.028168298304080963, + -0.012468630447983742, + 0.00909362267702818, + -0.0028645293787121773, + -0.020118875429034233, + 0.013404141180217266, + 0.014684682711958885, + -0.0044410936534404755, + 0.006604697555303574, + -0.0003439080319367349, + -0.02251940593123436, + 0.004038417711853981, + 0.015138042159378529, + 0.0012879639398306608, + 0.030976509675383568, + -0.005817192606627941, + 0.0036794438492506742, + -0.00015759727102704346, + -0.009998201392591, + 0.040850527584552765, + 0.018533725291490555, + -0.004267498850822449, + 0.0022115418687462807, + 0.034640319645404816, + -0.03153290972113609, + 0.07708108425140381, + -0.023460334166884422, + -0.012536967173218727, + -0.051728107035160065, + 0.040798645466566086, + 0.019896073266863823, + -0.05217092111706734, + -0.006839385721832514, + 0.04012492671608925, + 0.010322058573365211, + -0.02784549631178379, + 0.0005849598674103618, + -0.0027120006270706654, + -0.01848096027970314, + 0.020536448806524277, + -0.01639549620449543, + 0.006109921727329493, + 0.07261516153812408, + 0.018069114536046982, + -0.013493245467543602, + 0.0005126522155478597, + -0.06011675298213959, + 0.026627706363797188, + -0.015186876058578491, + -0.025926388800144196, + 0.051293402910232544, + -0.023336946964263916, + 0.001352919265627861, + -0.045234791934490204, + -0.024591224268078804, + -0.00026199835701845586, + -0.0319247804582119, + 0.015950001776218414, + -0.018887963145971298, + 0.005606262944638729, + -0.015447783283889294, + 0.062494855374097824, + 0.06642061471939087, + 0.011829021386802197, + 0.025525566190481186, + 0.018688851967453957, + -0.037371326237916946, + -0.03763570263981819, + -0.03371145948767662, + 0.0071398429572582245, + -0.014510490000247955, + -0.01606837473809719, + -0.014331802725791931, + 0.013249323703348637, + -0.022181298583745956, + 0.057222988456487656, + 0.011964663863182068, + -0.02588002197444439, + 0.023039376363158226, + -0.010983016341924667, + 0.022203102707862854, + -0.006387427914887667, + 0.04271558299660683, + 0.02124185301363468, + 0.025468744337558746, + 0.05600951611995697, + -0.02632870338857174, + 0.0007227198220789433, + 0.002177814720198512, + -0.003978080116212368, + 0.011103907600045204, + -0.002432706532999873, + -0.003314911387860775, + 0.003609252395108342, + -0.03860189765691757, + 0.05211292952299118, + 0.03820016607642174, + 0.034703925251960754, + 0.06885123997926712, + -0.03308095410466194, + 0.013569782488048077, + -0.04323509708046913, + -0.008890696801245213, + 0.0299856998026371, + -0.02827020175755024, + -0.013255064375698566, + -0.0072295223362743855, + 0.003720867680385709, + 0.0022295240778476, + 0.04530633985996246, + -0.00328438519500196, + -0.05454566329717636, + -0.04074123129248619, + 0.044672492891550064, + -0.021851789206266403, + 0.0007597596268169582, + 0.019082311540842056, + -0.034825410693883896, + -0.020140651613473892, + 0.006707377731800079, + -0.01535987202078104, + 0.016946695744991302, + -0.036634184420108795, + -0.013783085159957409, + -0.032884567975997925, + 0.0003189195995219052, + -0.003995064180344343, + -0.0224898811429739, + -0.008203072473406792, + 0.003918479662388563, + 0.023426514118909836, + -0.019366269931197166, + -0.08072490245103836, + -0.02702845260500908, + 0.0037459207233041525, + -0.012339141219854355, + 0.00810928177088499, + 0.09657307714223862, + 0.053466346114873886, + -0.03214191645383835, + 0.0417175218462944, + 0.06152583286166191, + 0.03209179639816284, + 0.02998461201786995, + 0.005669866688549519, + -0.049805670976638794, + -0.026166601106524467, + 0.038798823952674866, + -0.005347429774701595, + 0.018951697275042534, + -0.016643179580569267, + -0.015854382887482643, + 0.0010583536932244897, + 0.025245755910873413, + 0.019673863425850868, + 0.0008105168817564845, + -0.0033207256346940994, + -0.002221402944996953, + -0.005056703928858042, + 0.024918317794799805, + -0.00395364360883832, + -0.01268825028091669, + 0.024902502074837685, + -0.023758549243211746, + 0.0047287060879170895, + -0.0046515390276908875, + -0.021671922877430916, + -0.017740784212946892, + 0.005785897374153137, + -0.0018453436205163598, + -0.032868076115846634, + 0.010227584280073643, + -0.002208154648542404, + -0.001329393475316465, + -0.0027564188931137323, + 0.032670773565769196, + -0.003852476831525564, + -0.04525470361113548, + 0.007959216833114624, + 0.00711058359593153, + 0.007882960140705109, + -0.0001859168114606291, + -0.020513204857707024, + 0.039016738533973694, + 0.005788412410765886, + -0.008274637162685394, + 0.02083873376250267, + 0.02978479489684105, + 0.01321064680814743, + 0.049457769840955734, + 0.03136970475316048, + 0.06878714263439178, + -0.06522826105356216, + 0.018930504098534584, + 0.035125914961099625, + 0.028318582102656364, + 0.00255100941285491, + 0.007844991981983185, + -0.012721335515379906, + -0.01670488901436329, + 0.06084183230996132, + 0.008375830017030239, + -0.024614067748188972, + 0.02303369529545307, + -0.03849920257925987, + -0.030515633523464203, + 0.015513533726334572, + 0.04625613987445831, + 0.011762832291424274, + 0.008063538931310177, + -0.03238328546285629, + -0.10678812861442566, + 0.03490539267659187, + -0.07890363782644272, + -0.019469037652015686, + 0.0388706773519516, + 0.020476901903748512, + 0.00854627788066864, + -0.023137591779232025, + -0.02690838649868965, + -0.009737771935760975, + -0.004506393801420927, + -0.0072230324149131775, + -0.0016435415018349886, + 0.042451757937669754, + 0.012827807106077671, + -0.01856980100274086, + 0.013145792298018932, + -0.014809113927185535, + -0.006963320542126894, + -0.013352024368941784, + -0.006027454510331154, + 0.009694801643490791, + 0.01658039726316929, + -0.010823707096278667, + -0.1198783665895462, + -0.01731315441429615, + -0.037797678261995316, + -0.031449053436517715, + 0.04006612300872803, + -0.02860924042761326, + -0.03970100358128548, + -0.020792173221707344, + 0.018035558983683586, + -0.01920539140701294, + 0.008520180359482765, + -0.014560679905116558, + -0.032564740628004074, + -0.00909530371427536, + -0.017543114721775055, + 0.022315986454486847, + 0.03616710007190704, + 0.0007202137494459748, + -0.010352302342653275, + 0.06468737870454788, + -0.012256684713065624, + 0.007953084073960781, + -0.025035059079527855, + -0.016713077202439308, + 0.043702464550733566, + 0.036472126841545105, + -0.0015425794990733266, + 0.04622558876872063, + -0.04795003682374954, + -0.02258269675076008, + -0.029090501368045807, + 0.026806525886058807, + -0.018358269706368446, + -0.00018428747716825455, + 0.02717714197933674, + 0.004067110829055309, + -0.018403831869363785, + -0.007544437423348427, + 0.0149633614346385, + -0.03262019529938698, + 0.00037575099850073457, + -0.029119953513145447, + -0.0032782212365418673, + -0.037713050842285156, + -0.002533827442675829, + -0.0188777856528759, + -0.027662305161356926, + 0.0022363197058439255, + -0.001036477624438703, + -0.024749096482992172, + -0.009174143895506859, + -0.04216860234737396, + 0.038324471563100815, + 0.05798951908946037, + -0.03009469248354435, + -0.010301562957465649, + -0.011356884613633156, + -0.05497773736715317, + -0.008704579435288906, + 0.022801218554377556, + 0.011915156617760658, + -0.015865229070186615, + 0.01944696716964245, + -0.021844059228897095, + -0.02465607225894928, + 0.006868571974337101, + 0.01369701698422432, + -0.040019441395998, + 0.03625890612602234, + 0.025308027863502502, + 0.013980934396386147, + -0.021430162712931633, + -0.015326903201639652, + -0.009031718596816063, + 0.03583400696516037, + -0.037266045808792114, + 0.04566694423556328, + -0.014631816186010838, + 0.05344574898481369, + -0.009762522764503956, + 0.0019558549392968416, + 0.0014278313610702753, + 0.04457249119877815, + 0.029215877875685692, + 0.03777789697051048, + -0.043418899178504944, + 0.038416970521211624, + -0.002266808645799756, + 0.01672874391078949, + 0.049800608307123184, + -0.022653087973594666, + 0.006384745705872774, + 0.0026846276596188545, + -0.027878765016794205, + -0.016044989228248596, + 0.0001481149811297655, + -0.006311897654086351, + 0.03125044330954552, + 0.015806758776307106, + 0.050345707684755325, + 0.038563452661037445, + -0.07233595848083496, + -0.011809535324573517, + -0.029244011268019676, + -0.008246165700256824, + -0.14034633338451385, + 0.03736034408211708, + -0.03407122194766998, + 0.013733563013374805, + -0.035304855555295944, + 0.021121028810739517, + -0.05639257654547691, + -0.012595669366419315, + -0.012420334853231907, + -0.04039336368441582, + -0.049240220338106155, + -0.0421629399061203, + -0.0007755560800433159, + -0.004884473048150539, + -0.03374612703919411, + -0.00897481944411993, + 0.008624942973256111, + -0.003849815810099244, + -0.052508916705846786, + 0.057263217866420746, + -0.0028899002354592085, + -0.04730566218495369, + 0.07046668976545334, + 0.03281805291771889, + -0.031752921640872955, + 0.015930619090795517, + -0.021116046234965324, + 0.06528054177761078, + -0.026823120191693306, + -0.04959378391504288, + 0.010123527608811855, + -0.00881137978285551, + 0.01266257744282484, + 0.039264194667339325, + 0.05497042462229729, + 0.03040456771850586, + 0.02096698433160782, + 0.05281849578022957, + 0.0015447534387931228, + 0.0375802144408226, + -0.005397264380007982, + 0.043633971363306046, + -0.049404047429561615, + 0.0109412195160985, + -0.002620924962684512, + 0.0059789810329675674, + -0.02057277411222458, + 0.0006050207302905619, + -0.033556096255779266, + -0.018299933522939682, + 0.00712683517485857, + 0.03351316601037979, + 0.008539901115000248, + 0.051287394016981125, + 0.009425424039363861, + -0.012705753557384014, + -0.011158809065818787, + 0.005058608949184418, + -0.00128141266759485, + 0.008793347515165806, + 0.0279247984290123, + 0.010257909074425697, + -0.05284591764211655, + -0.05495024099946022, + -0.03739824518561363, + 0.019378937780857086, + -0.019819216802716255, + -0.0016248557949438691, + -0.0174836628139019, + 0.06402945518493652, + 0.00816812738776207, + 0.012935088947415352, + 0.011093945242464542, + -0.04420257359743118, + 0.015937527641654015, + 0.005112859886139631, + -0.002185939345508814, + 0.010935405269265175, + -0.06260174512863159, + -0.00039638663292862475, + -0.046930573880672455, + 0.013837814331054688, + -0.006216656882315874, + -0.016171321272850037, + 0.003198931459337473, + 0.010976947844028473, + 0.007464183960109949, + 0.013981873169541359, + -0.07204817235469818, + 0.005518922582268715, + -0.028439873829483986, + -0.07620362192392349, + -0.0034143931698054075, + 0.04048270732164383, + -0.0032795900478959084, + 0.007363361306488514, + -0.028137672692537308, + 0.018019739538431168, + 0.03747858479619026, + -0.011944501660764217, + 0.007766192313283682, + -0.005252924282103777, + -0.012939224019646645, + -0.024239366874098778, + -0.0020412125159054995, + -0.024583816528320312, + -0.0057401033118367195, + 0.012067575007677078, + -0.001905368990264833, + 0.009180408902466297, + -0.00534714525565505, + 0.01963190920650959, + -0.012072345241904259, + 0.023749398067593575, + -0.03180118650197983, + -0.021906686946749687, + -0.0032029033172875643, + 0.015451230108737946, + 0.020624224096536636, + -0.04912232607603073, + -0.016225911676883698, + -0.013016732409596443, + 0.024488026276230812, + -0.027201617136597633, + 0.043547481298446655, + 0.03728961944580078, + 0.025243988260626793, + 0.053990863263607025, + 0.022099388763308525, + 0.01174723356962204, + -0.020579935982823372, + -0.010741178877651691, + 0.04871141165494919, + 0.041627466678619385, + 0.026573847979307175, + -0.012834316119551659, + -0.021231502294540405, + 0.028202926740050316, + -0.04842766001820564, + -0.026920508593320847, + -0.04254286363720894, + 0.011462795548141003, + 0.00980842113494873, + -0.030573157593607903, + -0.043695710599422455, + 0.03547925502061844, + -0.009886923246085644, + 0.003937495872378349, + 0.03700057417154312, + -0.011336102150380611, + -0.0026552441995590925, + -0.009338218718767166, + -0.03474527597427368, + 0.02203502506017685, + -0.024312173947691917, + 0.018660278990864754, + -0.017044296488165855, + -0.014256766997277737, + 0.00742020457983017, + 3.6681460187537596e-05, + -0.06488347798585892, + -0.008220006711781025, + 0.03235502913594246, + -0.0041668168269097805, + -0.011045074090361595, + -0.010339380241930485, + -0.04775523766875267, + 0.010912344790995121, + 0.017687957733869553, + 0.005406631622463465, + -0.036758989095687866, + -0.01395423337817192, + -0.018250279128551483, + -0.020219622179865837, + 0.04378017038106918, + 0.01711438037455082, + 0.003664152231067419, + 0.02990739233791828, + 0.09263722598552704, + 0.010473429225385189, + 0.0012535516871139407, + 0.013997498899698257, + 0.08147062361240387, + -0.04482843354344368, + -0.0017664101906120777, + 0.008181584998965263, + 0.03361837565898895, + 0.052281223237514496, + 0.03464721515774727, + 0.010751600377261639, + -0.03475115820765495, + 0.005419947672635317, + -0.01850629784166813, + -0.024681679904460907, + 0.05675991252064705, + 0.045824166387319565, + -0.0023687377106398344, + 0.011528556235134602, + -0.039356742054224014, + 0.03641486540436745, + -0.030730683356523514, + -0.01948680728673935, + -0.036651697009801865, + -0.019366830587387085, + -0.03046039119362831, + -0.009563414379954338, + -0.03238019347190857, + 0.019515134394168854, + -0.028046919032931328, + 0.032084740698337555, + -0.012152903713285923, + 0.010251563042402267, + -0.03573445603251457, + -0.012637152336537838, + 0.0030798297375440598, + -0.010120900347828865, + 0.021654415875673294, + -0.006092521827667952, + 0.026167120784521103, + 0.0029232162050902843, + 0.04622407257556915, + 0.003529694862663746, + -0.012766441330313683, + -0.008224177174270153, + 0.007768585346639156, + 0.001327382866293192, + 0.014705921523272991, + 0.009426900185644627, + 0.019875839352607727, + -0.024064727127552032, + -0.06277109682559967, + -0.00998709537088871, + -0.009924151003360748, + 0.05581018701195717, + -0.006496084854006767, + -0.020066147670149803, + 0.03707195445895195, + 0.05605793744325638, + -0.021276529878377914, + 0.016022993251681328, + 0.031135467812418938, + -0.002989597385749221, + -0.02384789101779461, + -0.06830606609582901 + ], + "start_index": 0, + "end_index": 49, + "token_count": 17, + "file_type": "avap_code", + "filename": "obtencion_timestamp.avap", + "addResult": true, + "getDateTime": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "d4893b9e-29b1-5dc4-93a5-bb2cdd529966", + "_source": { + "text": "try()\n ormDirect(\"UPDATE table_inexistente SET a=1\", res)\nexception(e)\n addVar(_status, 500)\n addVar(error_msg, \"Error de base de datos\")\n addResult(error_msg)\nend()", + "embedding": [ + -0.025055378675460815, + -0.02236008085310459, + -0.00199507107026875, + 0.020848020911216736, + -0.05231549218297005, + -0.014472594484686852, + -0.0005255953292362392, + 0.053840406239032745, + 0.010772373527288437, + -0.014046157710254192, + -0.024008192121982574, + -0.006034133955836296, + -0.026257606223225594, + 0.03119761124253273, + -0.004583482630550861, + -0.0052079916931688786, + 0.003903399221599102, + 0.04329536110162735, + 0.011298755183815956, + 0.022977175191044807, + -0.009014716371893883, + 0.017088137567043304, + 0.04542210325598717, + 0.03984052687883377, + -0.04534338414669037, + -0.019518842920660973, + 0.012409567832946777, + -0.0052460553124547005, + -0.00532511854544282, + -0.004764053504914045, + 0.00850041676312685, + -0.05295122042298317, + 0.005315168295055628, + -0.05048184096813202, + -0.012182907201349735, + 0.03049246221780777, + 0.011748052202165127, + -0.028064772486686707, + -0.048572223633527756, + 0.020798522979021072, + -0.006105491891503334, + -0.00980550330132246, + -0.024622950702905655, + 0.0077367820776999, + 0.01504562422633171, + 0.005091847386211157, + -0.0034693863708525896, + -0.0053168791346251965, + -0.005155940540134907, + -0.052414167672395706, + -0.02538655512034893, + -0.04305850341916084, + 0.04915107041597366, + 0.015499717555940151, + 0.03107929416000843, + 0.025876011699438095, + -0.016990069299936295, + -0.012983553111553192, + 0.0015294173499569297, + -0.04997717961668968, + -0.036410074681043625, + -0.007632370572537184, + -0.03478862717747688, + 0.02962532266974449, + 0.01969076506793499, + 0.05057201161980629, + 0.013724805787205696, + 0.020972633734345436, + 0.01001647301018238, + -0.012973709963262081, + -0.005954068154096603, + 0.04808308929204941, + 0.018039528280496597, + -0.045411884784698486, + -0.05137152969837189, + -0.0029744321946054697, + 0.07196950167417526, + -0.03524289280176163, + -0.014369270764291286, + -0.04699074849486351, + -0.001804360537789762, + -0.011902490630745888, + -0.013331996276974678, + 0.025468725711107254, + 0.02214091457426548, + 0.030889684334397316, + -9.389626939082518e-05, + 0.016806909814476967, + -0.018992122262716293, + 0.04871109500527382, + 0.010680765844881535, + -0.053108591586351395, + 0.011278964579105377, + -0.02407999522984028, + -0.03229989483952522, + -0.04787897691130638, + 0.016980454325675964, + 0.013409112580120564, + 0.06994631141424179, + -0.0066153560765087605, + -0.016688887029886246, + 0.001995423808693886, + 0.013217726722359657, + -0.031149446964263916, + 0.006102072540670633, + -0.0007412360282614827, + 0.010730933398008347, + -0.032922737300395966, + 0.02403201162815094, + 0.009835666045546532, + -0.018835118040442467, + 0.01160606648772955, + 0.046664390712976456, + -0.002360651269555092, + -0.015398701652884483, + -0.04351741448044777, + -0.017350710928440094, + -0.03466900438070297, + 0.012952112592756748, + -0.02013568766415119, + 0.01126121822744608, + -0.00896498840302229, + 0.07392717897891998, + -0.005428220611065626, + -0.017016803845763206, + 0.014909258112311363, + 0.011701412498950958, + -0.0064325230196118355, + -0.005164358299225569, + 0.0712323933839798, + -0.016479846090078354, + -0.0003815664676949382, + -0.01819443888962269, + -0.048715636134147644, + -0.050085339695215225, + -0.021805303171277046, + 0.0016600294038653374, + 0.047015827149152756, + 0.02803429216146469, + -0.06156778708100319, + 0.007065449375659227, + 0.0049354154616594315, + 0.012315905652940273, + -0.0244985930621624, + 0.04034721478819847, + -0.0035402649082243443, + 0.03356166183948517, + 0.005666553042829037, + 0.015469592064619064, + 0.0016412041150033474, + -0.05300008878111839, + -0.005408708471804857, + 0.0027008154429495335, + -0.0075567327439785, + 0.015005134977400303, + -0.009638260118663311, + -0.008967430330812931, + -0.00754219014197588, + -0.03282101824879646, + 0.0011186845367774367, + -0.0532817579805851, + 0.002739585004746914, + -0.04782331362366676, + 0.006248796358704567, + 0.044264912605285645, + -0.018745455890893936, + 0.05311485379934311, + -0.05630161985754967, + -0.019493939355015755, + 0.0007528417045250535, + 0.07373616099357605, + -0.04404686763882637, + 0.026375018060207367, + -0.016896191984415054, + -0.022018669173121452, + 0.03495736047625542, + 0.006798584945499897, + 0.027133632451295853, + -0.01598994806408882, + -0.044874407351017, + -0.02613355964422226, + 0.0011716450098901987, + -0.019724449142813683, + 0.0210704505443573, + 0.015525677241384983, + 0.009182020090520382, + 0.0052729407325387, + 0.021327892318367958, + -0.029209408909082413, + 0.014082780107855797, + 0.0016085680108517408, + 0.001401551184244454, + 0.05463094636797905, + 0.00306136766448617, + 0.018484165892004967, + -0.024048950523138046, + 0.006581044755876064, + 0.04287794977426529, + 0.0010441489284858108, + 0.012774555943906307, + -0.001572472508996725, + 0.060606036335229874, + 0.02834455482661724, + -0.04010903462767601, + 0.015458478592336178, + 0.009864108636975288, + 0.022104768082499504, + -0.040932781994342804, + 0.05191917344927788, + -0.019540313631296158, + 0.03183398023247719, + 0.03876075893640518, + -0.020807569846510887, + 0.024019932374358177, + -0.023461274802684784, + -0.02047436311841011, + -0.005173192825168371, + 0.010654455050826073, + -0.04039029777050018, + -0.039458565413951874, + -0.03279095143079758, + 0.035997193306684494, + 0.025220127776265144, + 0.020391222089529037, + -0.01006845198571682, + -0.024352313950657845, + 0.0017962550045922399, + 0.019383525475859642, + -0.024592118337750435, + -0.03595086559653282, + -0.017331883311271667, + 0.009438257664442062, + 0.01618439517915249, + 0.010571427643299103, + 0.07330852001905441, + -0.015648819506168365, + 0.025581585243344307, + 0.038747236132621765, + -0.012892159633338451, + 0.019106341525912285, + -0.054104283452034, + -0.05304570496082306, + 0.04517696052789688, + 0.010346656665205956, + -0.03762918338179588, + 0.014737803488969803, + -0.02022215910255909, + -0.0009646093240007758, + -0.027047915384173393, + -0.01739678345620632, + -0.028237421065568924, + -0.030685389414429665, + -0.005696169566363096, + 0.004604054149240255, + -0.000467417121399194, + -0.02854875475168228, + 0.02021944895386696, + -0.0024584417697042227, + -0.013402888551354408, + 0.015789784491062164, + 0.01731284148991108, + 0.01651834510266781, + -0.01906205341219902, + 0.007665800862014294, + -0.009064347483217716, + 0.016536032781004906, + 0.005931084044277668, + 0.011055301874876022, + -0.009319685399532318, + 0.02087056264281273, + 0.03142058849334717, + -0.00541995232924819, + 0.007081867661327124, + 0.02848779410123825, + 0.012006661854684353, + 0.037838466465473175, + -0.047352198511362076, + -0.0377400666475296, + 0.06449300795793533, + 0.03753114119172096, + -0.03286687284708023, + 0.024726800620555878, + 0.04062952846288681, + 0.0019424865022301674, + 0.021302437409758568, + -0.026687106117606163, + 0.00500147370621562, + -0.023937221616506577, + 0.008440004661679268, + -0.04875139147043228, + -0.003101934911683202, + -0.021502308547496796, + 0.089792400598526, + 0.009627505205571651, + -0.0026945399586111307, + 0.015731897205114365, + -0.012588486075401306, + -0.15451285243034363, + -0.020634058862924576, + -0.0030351420864462852, + -0.008203672245144844, + -0.002469597617164254, + -0.006197551265358925, + -0.03515566512942314, + 0.02685661055147648, + -0.04628636687994003, + 0.019210748374462128, + -0.014532228000462055, + -0.06074921414256096, + -0.025892971083521843, + -0.05257219448685646, + 0.01638537459075451, + -0.004948801826685667, + -0.0006513643893413246, + 0.009420122019946575, + 0.018955353647470474, + -0.03507592901587486, + -0.05765153840184212, + 0.0004964293912053108, + -0.02392427623271942, + -0.04832420125603676, + -0.040472354739904404, + -0.041303154081106186, + 0.009176431223750114, + 0.028495460748672485, + -0.040768858045339584, + 0.010774672031402588, + -0.008833562955260277, + -0.007987442426383495, + -0.01078107114881277, + 0.0058362544514238834, + 0.0015110166277736425, + 0.028062080964446068, + 0.06694585084915161, + -0.02626127190887928, + 0.011281445622444153, + -0.014595652930438519, + 0.03362414985895157, + 0.04031231626868248, + -0.01904311217367649, + 0.023179790005087852, + 0.009566821157932281, + 0.03439008817076683, + -0.007598905824124813, + -0.007891807705163956, + -0.058073170483112335, + 0.032957177609205246, + 0.02021760307252407, + -0.02781808003783226, + 0.03185319900512695, + -0.02890753373503685, + -0.022607427090406418, + 0.0183887742459774, + -0.013690824620425701, + 0.025977298617362976, + -0.04518136382102966, + -0.020905714482069016, + -0.010516447946429253, + -0.006914779543876648, + 0.009335030801594257, + 0.022308887913823128, + 0.0046266126446425915, + -0.035887863487005234, + 0.018518861383199692, + 0.0013674480142071843, + 0.0335509330034256, + -0.04676743224263191, + 0.01883303001523018, + 0.0142983952537179, + 0.021282730624079704, + 0.035782936960458755, + -0.00569009268656373, + 0.001797536970116198, + -0.031923577189445496, + -0.00878162682056427, + -0.028829654678702354, + -0.14447228610515594, + 0.024242086336016655, + 0.02456194907426834, + 0.011358111165463924, + 0.02180718071758747, + 0.00615390669554472, + 0.0026077977381646633, + -0.009625736624002457, + 0.010155285708606243, + 0.052130457013845444, + 0.22593580186367035, + 0.032741304486989975, + -0.025515757501125336, + 0.006818820722401142, + 0.018197329714894295, + -0.015421167947351933, + 0.007381455507129431, + 0.0018383475253358483, + -0.002504287753254175, + -0.03846461698412895, + 0.0013452169951051474, + 0.017217256128787994, + -0.0029037066269665956, + -0.009364684112370014, + -0.028510769829154015, + 0.0003871741355396807, + -0.0029243563767522573, + 0.012918483465909958, + 0.04610510915517807, + -0.04138042777776718, + 0.04174388200044632, + -0.050060614943504333, + -0.08683006465435028, + 0.012605352327227592, + -0.04025525972247124, + -0.04931975528597832, + -0.0076155089773237705, + 0.005910547915846109, + -0.03421297296881676, + -0.007000452373176813, + -0.0275978185236454, + -0.030549483373761177, + 0.015997733920812607, + -0.03791290149092674, + -0.08136561512947083, + 0.022710435092449188, + 0.02112666890025139, + -0.009757289662957191, + 0.01694290153682232, + -0.0049037388525903225, + 0.02291731908917427, + -0.03048647940158844, + 0.009825426153838634, + 0.08981040865182877, + 0.0002391521557001397, + 0.0106483343988657, + 0.004286281764507294, + -0.012164266780018806, + -0.03318526968359947, + -0.013879839330911636, + -0.034328971058130264, + -0.053749825805425644, + -0.020137809216976166, + -0.007492837030440569, + -0.02752046100795269, + -0.016425639390945435, + -0.0013860242906957865, + 0.021641157567501068, + -0.05949894338846207, + 0.006155491806566715, + 0.046560138463974, + 0.005037711933255196, + -0.021849313750863075, + 0.02171219140291214, + -0.0020537334494292736, + 0.009579384699463844, + 0.06272561848163605, + 0.04271741211414337, + -0.010741223581135273, + 0.025529423728585243, + 0.023456629365682602, + 0.029897786676883698, + 0.04550103470683098, + 0.03686542436480522, + 0.0014625218464061618, + -0.011932609602808952, + -0.0024121038150042295, + 0.03677595779299736, + -0.015965281054377556, + 0.0067854877561330795, + -0.02169042080640793, + 0.02162783406674862, + -0.06665988266468048, + 0.028478316962718964, + 0.013232008554041386, + 0.04563117027282715, + -0.004907860420644283, + 0.07360555976629257, + -0.027868328616023064, + 0.007424282841384411, + 0.014861132949590683, + 0.014756729826331139, + -0.022693704813718796, + 0.042867641896009445, + -0.018474429845809937, + 0.04072117060422897, + 0.008892190642654896, + 0.0067791747860610485, + -0.021731987595558167, + 0.014710025861859322, + -0.04075201228260994, + -0.03347292169928551, + -0.012350392527878284, + 0.009614255279302597, + 0.056643418967723846, + -0.020540015771985054, + -0.027269694954156876, + -0.008344018831849098, + 0.0274575836956501, + -0.026465879753232002, + -0.06177135184407234, + 0.052606020122766495, + -0.006656081881374121, + -0.04054499417543411, + -0.005868108477443457, + 0.0002569408679846674, + -0.003347537713125348, + 0.023831583559513092, + -0.019076477736234665, + -0.018983086571097374, + -0.04682793468236923, + -0.02267705649137497, + -0.009332757443189621, + 0.014570515602827072, + 0.006660929881036282, + -0.013977701775729656, + 0.025177164003252983, + 0.013686321675777435, + -0.059067822992801666, + 0.01595105603337288, + 0.023717256262898445, + -0.019987642765045166, + -0.01219426840543747, + 0.022563640028238297, + 0.014611456543207169, + 0.009406122379004955, + 0.02300719916820526, + 0.029065873473882675, + 0.06389922648668289, + 0.0553806908428669, + -0.007811326067894697, + -0.011011692695319653, + -0.03255794197320938, + 0.012071246281266212, + -0.012214026413857937, + -0.0389215461909771, + 0.03985559567809105, + -0.006118263117969036, + -0.004914755467325449, + 0.035419218242168427, + 0.06530865281820297, + 0.023164181038737297, + 0.07071126252412796, + 0.0053120204247534275, + -0.009501742199063301, + -0.05981031432747841, + 0.012924685142934322, + -0.00393933430314064, + -0.00040409440407529473, + -0.00968950055539608, + 0.02464960515499115, + 0.02022079937160015, + 0.03688501939177513, + 0.028914328664541245, + 0.016570312902331352, + -0.016605569049715996, + 0.005615283269435167, + -0.005389060825109482, + -0.04239678010344505, + 0.01022036001086235, + 0.0062952786684036255, + -0.051514577120542526, + -0.056620340794324875, + 0.0007735354593023658, + -0.021352576091885567, + -0.03504320606589317, + -0.034310232847929, + 0.013329090550541878, + 0.013863269239664078, + -0.024122506380081177, + 0.029530750587582588, + -0.036025647073984146, + -0.01753668114542961, + 0.01670769788324833, + -0.0005054500070400536, + 0.0065834978595376015, + 0.0021619333419948816, + 0.0014153850497677922, + 0.02777612954378128, + -0.009276926517486572, + -0.031057247892022133, + 0.10624483972787857, + 0.03155473247170448, + -0.01702084019780159, + 0.030731473118066788, + 0.07997272908687592, + 0.06015901267528534, + 0.032658617943525314, + 0.021851547062397003, + -0.025976253673434258, + 0.01323762908577919, + -0.05756453797221184, + -0.007039458956569433, + -0.004286106210201979, + -0.014638975262641907, + 0.021613257005810738, + -0.010760563425719738, + -0.01375821977853775, + 0.0072971791960299015, + 0.0202032383531332, + 0.0018271863227710128, + 0.02960338443517685, + -0.07697074860334396, + -0.02671794965863228, + 0.04704652354121208, + -0.04894980415701866, + 0.06359487026929855, + -0.00910334475338459, + 0.01694580167531967, + 0.022303808480501175, + 0.00900829117745161, + -0.028654927387833595, + 0.033982060849666595, + 0.014196128584444523, + -0.06519334018230438, + 0.026228778064250946, + -0.01046461146324873, + -0.038245826959609985, + 0.013678341172635555, + -0.024053139612078667, + -0.012645703740417957, + -0.0047124940901994705, + 0.07289627194404602, + 0.005297136027365923, + -0.0018667402910068631, + -0.007664642762392759, + 0.012488621287047863, + 0.0371050126850605, + 0.011217158287763596, + -0.022567924112081528, + -0.011596772819757462, + -0.007807905785739422, + 0.03022262267768383, + 0.07328810542821884, + 0.0018599608447402716, + 0.07948056608438492, + -0.05282236263155937, + -0.026982197538018227, + 0.05688781291246414, + 0.025675680488348007, + -0.022847186774015427, + -0.019737714901566505, + 0.003328859806060791, + -0.017264051362872124, + -0.0031977123580873013, + 0.042052604258060455, + -0.022257216274738312, + 0.04040013998746872, + -0.027583042159676552, + -0.012650719843804836, + 0.0012832307256758213, + 0.027511630207300186, + -0.004760796669870615, + -0.026190968230366707, + 0.011413277126848698, + -0.03510686755180359, + 0.02148028276860714, + -0.018641173839569092, + -0.00502394512295723, + 0.0020743082277476788, + 0.018734171986579895, + -0.0024166940711438656, + -0.02315414883196354, + -0.009526574984192848, + -0.04711207374930382, + -0.010530858300626278, + -0.021809279918670654, + -0.01851038448512554, + 0.02543010376393795, + -0.0005511727067641914, + -0.04040326178073883, + -0.03557113930583, + -0.016687212511897087, + -0.007521975319832563, + 0.053587671369314194, + 0.028857169672846794, + 0.02032265067100525, + 0.006706469226628542, + -0.016661494970321655, + -0.05096987634897232, + -0.03522654250264168, + 0.00977251585572958, + -0.025781625881791115, + 0.004019417800009251, + -0.02454995922744274, + -0.058532342314720154, + 0.011432606726884842, + -0.0223460104316473, + -0.017410023137927055, + 0.014715509489178658, + -0.025848403573036194, + 0.012159016914665699, + 0.012621281668543816, + 0.01513731200248003, + -0.0407496802508831, + -0.026139196008443832, + -0.01189474668353796, + 0.02254365384578705, + 0.05461854115128517, + 0.02700713463127613, + -0.00599438464269042, + -0.031870316714048386, + -0.005674060899764299, + 0.0801890566945076, + 0.03163451701402664, + -0.0393531359732151, + 0.0774124264717102, + 0.0006215660832822323, + 0.014901294372975826, + -0.01800496131181717, + 0.004159874748438597, + -0.023376787081360817, + -0.03859464451670647, + 0.023653678596019745, + 0.008823391050100327, + 0.027311017736792564, + -0.019170034676790237, + -0.00686753960326314, + -0.03995286300778389, + -0.017648357897996902, + -0.04555753991007805, + -0.01360849104821682, + -0.034972257912158966, + -0.01618879847228527, + -0.005163133610039949, + -0.03569052368402481, + -0.017607074230909348, + -0.024860799312591553, + -0.006444155238568783, + -0.03724522143602371, + -0.006343844812363386, + -0.01831299439072609, + 0.07210353761911392, + -0.0318380743265152, + -0.0011564996093511581, + 0.030829627066850662, + -0.016260968521237373, + -0.01735081896185875, + 0.002195859793573618, + 0.015098252333700657, + -0.03264227882027626, + -0.008330054581165314, + -0.0016520221251994371, + -0.017630917951464653, + -0.016633635386824608, + 0.01784324459731579, + -0.00010176570503972471, + 0.067840576171875, + 0.005944057833403349, + -0.034470926970243454, + -0.030732477083802223, + 0.01693149283528328, + -0.016915127635002136, + -0.004636392928659916, + -0.03916178643703461, + 0.016714636236429214, + 0.027888847514986992, + 0.03739505633711815, + 0.020539162680506706, + 0.002779513830319047, + -0.020820245146751404, + 0.01866106502711773, + -0.03104228526353836, + 0.04405073821544647, + -0.01683354377746582, + 0.054983146488666534, + 0.008634804747998714, + 0.033131230622529984, + 0.02686234936118126, + -0.024377213791012764, + -0.038279831409454346, + -0.020034154877066612, + -0.046310875564813614, + -0.03825888782739639, + -0.02149544097483158, + 0.030876396223902702, + -0.031689196825027466, + 0.020640665665268898, + 0.05294511094689369, + -0.00111577904317528, + -0.009561605751514435, + -0.030294911935925484, + -0.04539111256599426, + 0.006948675960302353, + -0.12748552858829498, + 0.006158692296594381, + -0.008920113556087017, + 0.012757179327309132, + -0.009012376889586449, + -0.018429821357131004, + -0.008987258188426495, + -0.04706164076924324, + -0.03714200481772423, + -0.039881668984889984, + -0.06459712982177734, + 0.006518559064716101, + 0.013404753059148788, + -0.040809474885463715, + 0.01780424825847149, + 0.011794298887252808, + 0.010931688360869884, + 0.007163129281252623, + -0.008930792100727558, + 0.006240135990083218, + -0.009439848363399506, + -0.05346297845244408, + 0.010275688953697681, + 0.021858150139451027, + -0.014527613297104836, + -0.01665463112294674, + 0.0335039421916008, + 0.017708005383610725, + 0.0019487484823912382, + -0.017620615661144257, + -0.005502980202436447, + 0.04403286799788475, + 0.01922200433909893, + 0.03801620006561279, + 0.013086645863950253, + -0.012489324435591698, + 0.01040779147297144, + 0.033711135387420654, + -0.03272281214594841, + 0.04275527223944664, + 0.0171189084649086, + 0.03564028814435005, + -0.0425930917263031, + 0.03967536985874176, + 0.037900377064943314, + -0.04012835770845413, + -0.04922530800104141, + 0.011312177404761314, + -0.03999701514840126, + 0.004041237756609917, + -0.01242303941398859, + 0.047893818467855453, + -0.015392720699310303, + 0.005766010377556086, + 0.03975638747215271, + -0.02747161313891411, + -0.044151000678539276, + 0.004529339261353016, + -0.005680635571479797, + 0.005578876473009586, + 0.00407112343236804, + 0.03480719402432442, + -0.04447714984416962, + -0.06743650883436203, + -0.013982964679598808, + 0.025133797898888588, + 0.006475560832768679, + 0.003758778562769294, + -0.014506918378174305, + 0.030443914234638214, + 0.003969933371990919, + -0.0013482440263032913, + -0.00452975369989872, + -0.03111095540225506, + -0.004087212961167097, + -0.00734544824808836, + 0.004128001630306244, + -0.01649312488734722, + -0.07064373046159744, + -0.055344242602586746, + -0.06971289962530136, + 0.008090033195912838, + -0.03394927829504013, + -0.020511751994490623, + 0.07007411867380142, + -0.03766749054193497, + 0.00587348360568285, + 0.019643321633338928, + -0.07565783709287643, + 0.02244350127875805, + -0.02445351704955101, + -0.074544757604599, + 0.045576080679893494, + 0.023091226816177368, + -0.016437450423836708, + 0.01119882334023714, + -0.02446144074201584, + -0.01943960040807724, + 0.018616963177919388, + -0.03372270241379738, + -0.012513096444308758, + -0.012581153772771358, + 0.06254509091377258, + -0.004068505950272083, + -0.009234174154698849, + 0.030229084193706512, + -0.006937902886420488, + -0.012568945996463299, + -0.013003861531615257, + 0.014327001757919788, + 0.025346970185637474, + 0.009239441715180874, + -0.01479805912822485, + -0.002597920596599579, + 0.0011506186565384269, + 0.019907508045434952, + 0.05255841836333275, + 0.03162800520658493, + 0.0011756349122151732, + -0.04812263324856758, + 0.05498514696955681, + -0.034211888909339905, + 0.03732258826494217, + -0.018409647047519684, + 0.03712255880236626, + 0.027205679565668106, + -0.02170162834227085, + 0.027610255405306816, + -0.033562880009412766, + 0.012199418619275093, + 0.014245049096643925, + -0.03851829841732979, + 0.01232879888266325, + 0.047806061804294586, + 0.04065781831741333, + -0.02358180098235607, + -0.030986003577709198, + 0.01583440601825714, + 0.0029982547275722027, + -0.04428539797663689, + -0.023353401571512222, + -0.07669540494680405, + 0.03360702097415924, + -0.04274538904428482, + 0.016091376543045044, + 0.023238012567162514, + -0.05430411174893379, + -0.025836236774921417, + -0.016116276383399963, + -0.03296629711985588, + 0.012836103327572346, + 0.010255345143377781, + 0.0012934069382026792, + 0.04730609431862831, + -0.03964000567793846, + 0.04644491896033287, + 0.005932955536991358, + 0.0009521273896098137, + -0.00069524155696854, + -0.01395224966108799, + 0.012537437491118908, + -0.026191895827651024, + 0.020711760967969894, + -0.026513896882534027, + 0.008849753066897392, + 0.002882500644773245, + -0.01589684560894966, + -0.006010621320456266, + -0.02055029757320881, + 0.0012618330074474216, + -0.0417022742331028, + -0.0016407418297603726, + -0.009828031994402409, + -0.010717169381678104, + 0.04949332773685455, + -0.024229392409324646, + -0.010323154740035534, + -0.04414042457938194, + 0.06935538351535797, + 0.01003550086170435, + -0.005799522623419762, + 0.024706875905394554, + 0.018529925495386124, + -0.020667923614382744, + 0.005742205772548914, + 0.004355571232736111, + 0.04671875387430191, + 0.013995634391903877, + 0.006993339862674475, + 0.037855133414268494, + -0.01579599268734455, + -0.009944700635969639, + 0.015290229581296444, + 0.0018709831638261676, + 0.026999542489647865, + 0.014759527519345284, + 0.01566902920603752, + 0.05970370024442673, + 0.0005842884420417249, + 0.03608371317386627, + -0.05284741520881653, + 0.0007536780321970582, + -0.03336523473262787, + -0.008253575302660465, + 0.00397899467498064, + -0.01971295475959778, + -0.0023252428509294987, + 0.029156366363167763, + 0.022474784404039383, + 0.036613646894693375, + -0.01701575331389904, + -0.00780979311093688, + -0.013905098661780357, + 0.015060094185173512, + -0.03961975872516632, + -0.03235020488500595, + -0.003043257398530841, + -0.048514723777770996, + 0.014081192202866077, + 0.013846933841705322, + -0.0008299272158183157, + -0.0007193240453489125, + 0.01645747758448124, + -0.016404420137405396, + 0.003991378471255302, + 0.0007242935243993998, + 0.00023302837507799268, + 0.012424136511981487, + 0.0024387864395976067, + 0.04834160581231117, + -0.020626988261938095, + -0.001412855344824493, + 0.016616161912679672, + 0.035447798669338226, + 0.021780313923954964, + 0.027872359380126, + 0.00498020276427269, + 0.04408552125096321, + -0.01035691611468792, + 0.0468079037964344, + 0.009611720219254494, + 0.03652678057551384, + 0.004151291213929653, + -0.05593949928879738 + ], + "start_index": 0, + "end_index": 177, + "token_count": 53, + "file_type": "avap_code", + "filename": "manejo_error_sql_critico.avap", + "addResult": true, + "addVar": true, + "ormDirect": true, + "try": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "bd7203c5-0269-5295-b12d-0c9823ae2c2a", + "_source": { + "text": "datos_cliente = \"datos\"\naddVar(clave, \"cliente_vip\")\nAddvariableToJSON(clave, datos_cliente, mi_json_final)\naddResult(mi_json_final)", + "embedding": [ + -0.016268279403448105, + -0.022396812215447426, + -0.01413569413125515, + 0.022540533915162086, + -0.019922437146306038, + 0.006621123757213354, + -0.0006507687503471971, + 0.03311021253466606, + 0.001212164293974638, + -0.012520354241132736, + 0.03949245437979698, + 0.019275369122624397, + -0.04689424857497215, + -0.0013657924719154835, + 0.018557777628302574, + 0.03142678365111351, + -0.012709647417068481, + 0.007080621086061001, + 0.011894263327121735, + -0.0007838276796974242, + -0.020342843607068062, + 0.04320439323782921, + -0.03879130631685257, + 0.02241213247179985, + -0.004797953646630049, + -0.04053253307938576, + 0.026066260412335396, + -0.01271373312920332, + 0.004946035798639059, + 0.02276766672730446, + -0.017348628491163254, + 6.730450695613399e-05, + 0.015030032955110073, + -0.05501994863152504, + -0.017716005444526672, + -0.01855350472033024, + -0.02044880948960781, + 0.01841851696372032, + -0.05642978847026825, + 0.03372323885560036, + -0.01784251071512699, + 0.02063804492354393, + -0.005239929538220167, + -0.02516510710120201, + 0.020828891545534134, + -0.013195347040891647, + -0.0011983264703303576, + -0.007755942177027464, + -0.02682296186685562, + -0.01978500559926033, + -0.01017345767468214, + 0.023943597450852394, + 0.05163658782839775, + -0.002135695656761527, + -0.0014273275155574083, + 0.028997309505939484, + -0.027627427130937576, + -0.03743988275527954, + -0.021153196692466736, + -0.024203240871429443, + -0.041929785162210464, + 0.026537641882896423, + -0.042888857424259186, + 0.016229599714279175, + 0.046978969126939774, + 0.021863149479031563, + 0.01990550570189953, + 0.02116832509636879, + 0.0001130937525886111, + 0.022624026983976364, + -0.0006577636231668293, + 0.01930749975144863, + -0.00229741376824677, + 0.007138504181057215, + -0.08531790971755981, + -0.03265252709388733, + 0.027908338233828545, + -0.012486099265515804, + -0.021935202181339264, + -0.01613393798470497, + -0.008292142301797867, + -0.020701801404356956, + 0.017162306234240532, + -0.01936531811952591, + 0.005812106654047966, + 0.023250093683600426, + 0.008840128779411316, + 0.04781586304306984, + -0.04370107874274254, + 0.06262463331222534, + 0.0071000768803060055, + -0.027796339243650436, + 0.02811978943645954, + -0.0442366898059845, + -0.029346009716391563, + -0.06960369646549225, + 0.01357867568731308, + 0.06112927570939064, + 0.055694807320833206, + 0.048846084624528885, + 0.023092633113265038, + -0.027017107233405113, + -0.011092801578342915, + 0.01457313820719719, + 0.05249318480491638, + 0.012488205917179585, + 0.027584439143538475, + -0.008644811809062958, + -0.01193950790911913, + -0.005403114482760429, + 0.011130517348647118, + 0.007113696541637182, + 0.015617921948432922, + 0.013633190654218197, + 0.007432315032929182, + -0.029301360249519348, + -0.0031066839583218098, + -0.009385715238749981, + 0.039417997002601624, + -0.0004141277458984405, + 0.013997957110404968, + -0.02461032010614872, + 0.02456536889076233, + -0.02208387479186058, + -0.0014660826418548822, + 0.02852794900536537, + 0.04212038591504097, + 0.013842129148542881, + 0.0004672350187320262, + 0.00890221819281578, + 0.012244949117302895, + 0.03379780426621437, + 0.012647283263504505, + 0.005804166197776794, + -0.03805892542004585, + -0.02106669917702675, + -0.009526990354061127, + 0.07288587093353271, + 0.013479349203407764, + -0.06748455762863159, + 0.01611572690308094, + 0.027952928096055984, + 0.037776850163936615, + 0.005036469548940659, + 0.038730476051568985, + -0.027685271576046944, + 0.05423680320382118, + 0.022396234795451164, + 0.024483663961291313, + -0.06562118977308273, + -0.04246919974684715, + -0.0015534721314907074, + 0.005312635097652674, + -0.011781897395849228, + -0.01107435580343008, + -0.04559625685214996, + -0.0220639631152153, + -0.017811227589845657, + -0.007356707006692886, + -0.02258477732539177, + 0.006200932897627354, + -0.004472760017961264, + -0.030969828367233276, + 0.004932430572807789, + 0.05877175182104111, + -0.035981543362140656, + 0.06180581822991371, + -0.03333847597241402, + 0.00434323912486434, + -0.06829467415809631, + 0.04207099601626396, + -0.010797156020998955, + -0.02004227600991726, + 0.004498535301536322, + 0.019883254542946815, + 0.013677786104381084, + 0.048651132732629776, + 0.005673819687217474, + -0.011027231812477112, + -0.026537353172898293, + -0.002098977332934737, + 0.02336968295276165, + -0.022584138438105583, + -0.036363523453474045, + -0.023648662492632866, + 0.052155472338199615, + -0.027397524565458298, + -0.020557871088385582, + -0.0062580113299191, + 0.07644125074148178, + 0.025264156982302666, + -0.014598742127418518, + 0.05998148396611214, + -0.000705273007042706, + 0.04960944876074791, + 0.02435074746608734, + -0.01387608703225851, + 0.01056320033967495, + 0.02226872183382511, + 0.021500131115317345, + -0.03806643933057785, + 0.04542594775557518, + 0.01107987854629755, + -0.03224378451704979, + -0.021670890972018242, + 0.017363667488098145, + 0.024559486657381058, + -0.04757435992360115, + 0.030043965205550194, + 0.005125579424202442, + 0.016213083639740944, + -0.0021031771320849657, + -0.04822992905974388, + -0.010153249837458134, + -0.03018988110125065, + 0.019596928730607033, + 0.01537356711924076, + 0.008621633984148502, + -0.013505461625754833, + -0.010505322366952896, + -0.006818191148340702, + 0.03557351231575012, + 0.013627558946609497, + 0.08024419844150543, + -0.0037307548336684704, + -0.03598853573203087, + 0.0031110872514545918, + 0.020506039261817932, + 0.02015366032719612, + 0.019166816025972366, + -0.021818825975060463, + 0.033573366701602936, + 0.01939895935356617, + 0.005380528513342142, + 0.01757116988301277, + -0.028615299612283707, + -0.020082980394363403, + 0.012157188728451729, + 0.010929746553301811, + -0.012589127756655216, + -0.06091329827904701, + 0.016758142039179802, + 0.03111577406525612, + -0.02254568785429001, + -0.030746053904294968, + -0.005640560761094093, + -0.013635056093335152, + 0.026412738487124443, + 0.00479033961892128, + 0.010303683578968048, + -0.02420882321894169, + 0.0007811087998561561, + -0.014025689102709293, + 0.015848230570554733, + -0.00884253066033125, + -0.019466575235128403, + 0.040117062628269196, + -0.0018592368578538299, + -0.019529227167367935, + 0.00520688621327281, + -0.0021782969124615192, + 0.005285210907459259, + -0.014887936413288116, + 0.00874608289450407, + 0.009744491428136826, + -0.0013631395995616913, + -0.028624756261706352, + -0.008754732087254524, + 0.013886573724448681, + -0.017718590795993805, + 0.008397657424211502, + 0.029848609119653702, + 0.010874757543206215, + 0.04177795350551605, + 0.0006206596153788269, + 0.04716762900352478, + -0.02146541140973568, + -0.047991376370191574, + 0.11206769943237305, + 0.05375782027840614, + -0.0190399419516325, + 0.046022918075323105, + 0.027505353093147278, + 0.004688172601163387, + 0.06859371811151505, + -0.03532872721552849, + 0.023471441119909286, + -0.03744983300566673, + -0.0013872646959498525, + -0.02927609160542488, + -0.03630789369344711, + 0.008350580930709839, + 0.07371804118156433, + 0.012139594182372093, + -0.018419397994875908, + 0.014772080816328526, + -0.0017839742358773947, + -0.11762867867946625, + -0.007056292612105608, + 0.026561887934803963, + -0.012809328734874725, + -0.009291848167777061, + 0.015491397120058537, + -0.04322385787963867, + 0.014658077619969845, + -0.040817443281412125, + -0.008960830047726631, + -0.002885668771341443, + -0.04504827782511711, + -0.04015205800533295, + -0.04478719085454941, + -0.021898237988352776, + 0.0007814071141183376, + -0.008263534866273403, + -0.015028413385152817, + 0.009128084406256676, + -0.045476920902729034, + -0.02766282670199871, + -0.06200835108757019, + 0.00908429641276598, + -0.03397488221526146, + 0.008506832644343376, + -0.004338011611253023, + -0.013275247998535633, + 0.017938707023859024, + -0.030882766470313072, + -0.01190412137657404, + -0.029041271656751633, + 0.049079183489084244, + 0.007889249362051487, + 0.037929944694042206, + 0.007747981697320938, + 0.014130000956356525, + 0.005774045828729868, + 0.006051404867321253, + 0.0595792680978775, + -0.029145417734980583, + 0.02833304926753044, + 0.01896444335579872, + -0.013317261822521687, + 0.006857937201857567, + 0.004020437598228455, + 0.014756008051335812, + 0.005158410407602787, + -0.002480229130014777, + -0.03390765190124512, + 0.016205471009016037, + 0.040560219436883926, + -0.0408792607486248, + 0.024081725627183914, + -0.04342654347419739, + -0.02784287929534912, + 0.010761414654552937, + -0.04449998214840889, + 0.04853866621851921, + 0.005813892465084791, + -0.005716012325137854, + -0.01737379841506481, + 0.019207151606678963, + 0.005257067270576954, + 0.012806798331439495, + -0.028820399194955826, + 0.000795809377450496, + 0.04788680374622345, + -0.001499280915595591, + 0.04927898570895195, + -0.032155707478523254, + 0.05785225331783295, + 0.0013119566719979048, + -0.0313243605196476, + -0.005490119103342295, + -0.01161384116858244, + -0.02064189501106739, + -0.012955798767507076, + -0.03322524577379227, + -0.016738418489694595, + -0.0734369158744812, + -0.01766151376068592, + 0.017654621973633766, + -0.0034447049256414175, + 0.01466276589781046, + -0.020479483529925346, + 0.021993882954120636, + -0.0014948160387575626, + 0.03273575380444527, + 0.013644074089825153, + 0.23741859197616577, + 0.03316827490925789, + 0.0041807121597230434, + 0.028831124305725098, + 0.03205537796020508, + -0.03137727081775665, + 0.023691901937127113, + -0.023762956261634827, + -0.011278697289526463, + -0.02273452840745449, + 0.010104627348482609, + 0.04557988420128822, + -0.001045559998601675, + -0.019453011453151703, + -0.005708704702556133, + 0.04002701863646507, + -0.020038511604070663, + 0.000692636938765645, + 0.03350066766142845, + -0.018796084448695183, + 0.05980152636766434, + -0.02588929422199726, + -0.06732508540153503, + 0.002524655545130372, + -0.0402035191655159, + -0.021575750783085823, + -0.022776858881115913, + -0.010183009319007397, + -0.027090387418866158, + 0.025937670841813087, + -0.002514672465622425, + 0.031886037439107895, + 0.015187001787126064, + -0.005196170881390572, + -0.058155812323093414, + -0.026616046205163002, + 0.03209510073065758, + -0.0004383943451102823, + 0.0027020759880542755, + 0.025170734152197838, + 0.023778364062309265, + -0.02475227415561676, + 0.0372345931828022, + 0.04118213802576065, + -0.007020993158221245, + -0.016334742307662964, + 0.04507361724972725, + 0.0038614626973867416, + -0.02042652852833271, + 0.0002108767512254417, + 0.002672328846529126, + -0.060141485184431076, + -0.01668141596019268, + 0.025677170604467392, + 0.03339916467666626, + 0.004520818125456572, + -0.01712276227772236, + 0.048086341470479965, + -0.08527891337871552, + 0.013632882386446, + 0.06907518208026886, + -0.009278885088860989, + -0.04303997382521629, + 0.005387997720390558, + -0.0014785842504352331, + 0.029523629695177078, + 0.08352426439523697, + -0.022892672568559647, + 0.013700504787266254, + 0.00907256081700325, + -0.013171650469303131, + 0.020904336124658585, + 0.03191131725907326, + 9.482925815973431e-05, + 0.00932667963206768, + -0.035906706005334854, + 0.01464091893285513, + -0.0026810206472873688, + -0.027964670211076736, + 0.032681118696928024, + -0.021742329001426697, + -0.017489513382315636, + -0.03555234521627426, + 0.0833098292350769, + -0.0007998396758921444, + -0.03306823596358299, + 0.009965945035219193, + 0.07231251150369644, + -0.010205041617155075, + 0.01685248501598835, + -0.014160770922899246, + 0.0075198570266366005, + -0.0011645243503153324, + 0.026756029576063156, + 0.04832494631409645, + 0.0239093154668808, + 0.0509013757109642, + 0.01287163607776165, + -0.03920849785208702, + 0.0670570433139801, + -0.019096584990620613, + -0.010447044856846333, + -0.0013958961935713887, + -7.220189581857994e-05, + 0.03539417311549187, + -0.04260791838169098, + -0.011021051555871964, + -0.006902801804244518, + 0.01455760933458805, + -0.025900717824697495, + -0.04074167087674141, + 0.01010176818817854, + -0.031113069504499435, + -0.016861554235219955, + -0.0055597685277462006, + 0.047550126910209656, + 0.025212951004505157, + 0.00041232103831134737, + 0.012196971103549004, + -0.01980750821530819, + -0.02428613044321537, + 0.007502933964133263, + -0.013141579926013947, + -0.009560993872582912, + 0.012603106908500195, + -0.08232738822698593, + -0.006733413320034742, + 0.02759813889861107, + -0.03756009787321091, + 0.03922493755817413, + 0.021007375791668892, + -0.019710415974259377, + -0.003536778036504984, + -0.02044828049838543, + 0.02163582295179367, + -0.014385415241122246, + 0.07099820673465729, + 0.02690313383936882, + 0.0047958530485630035, + 0.02951669506728649, + -0.03811837360262871, + -0.058537933975458145, + 0.005376260727643967, + -0.01821133866906166, + 0.01757713407278061, + -0.06880287081003189, + 0.010914847254753113, + -0.0006253015017136931, + -0.021530959755182266, + -0.010989006608724594, + 0.0033559759613126516, + 0.07091875374317169, + 0.019587162882089615, + -0.022728152573108673, + -0.013692052103579044, + -0.030250947922468185, + 0.015972673892974854, + -0.0037381169386208057, + -0.021195214241743088, + -0.0037216811906546354, + 0.008271874859929085, + 0.003892993088811636, + 0.019226348027586937, + -0.003486711997538805, + -0.019172143191099167, + -0.044303443282842636, + -0.01812400110065937, + -0.006605715956538916, + -0.016709977760910988, + 0.0020237963180989027, + 0.03382811322808266, + -0.04788018763065338, + -0.05552292242646217, + 0.01762978546321392, + -0.0035919721703976393, + 0.02560664527118206, + -0.04209975153207779, + 0.012724199332296848, + 0.016828365623950958, + -0.08214700222015381, + 0.021111756563186646, + -0.017184916883707047, + 0.00162928132340312, + -0.008010550402104855, + 0.018508287146687508, + 0.004111042711883783, + -0.04409520700573921, + -0.001204367377795279, + 0.014277013950049877, + -0.0080620888620615, + -0.007405876647680998, + 0.0834527388215065, + 0.04970843344926834, + -0.02859843522310257, + 0.008786485530436039, + 0.07445909082889557, + 0.03289332240819931, + 0.008742382749915123, + -0.07650639861822128, + -0.019133079797029495, + 0.011477326974272728, + 0.015300608240067959, + -0.013409397564828396, + -0.03164109215140343, + -0.006573393475264311, + -0.0038405004888772964, + -0.013908234424889088, + -0.006406405009329319, + 0.023581694811582565, + 0.011800002306699753, + -0.015053009614348412, + 0.025464273989200592, + -0.02133733034133911, + -0.009025435894727707, + 0.0326196625828743, + -0.017987480387091637, + 0.04310722276568413, + 0.01483842171728611, + -0.005630056839436293, + 0.06166146323084831, + 0.024324817582964897, + -0.007566689979285002, + -0.01108337938785553, + 0.012285653501749039, + -0.056167446076869965, + -0.029077332466840744, + 0.005936273839324713, + -0.014197234995663166, + 0.01192473340779543, + 0.020305301994085312, + -0.01991022564470768, + -0.015027700923383236, + -0.008466889150440693, + 0.022611606866121292, + 0.006982762832194567, + -0.01818283274769783, + 0.014213531278073788, + 0.06448065489530563, + 0.03981143608689308, + -0.024084988981485367, + 0.014975057914853096, + -0.025788160040974617, + 0.02792065404355526, + 0.07785792648792267, + 0.0032898052595555782, + 0.044855497777462006, + -0.05096527189016342, + 0.007423741742968559, + 0.0260582584887743, + 0.016194859519600868, + 0.016904067248106003, + -0.04967198148369789, + 0.018292468041181564, + -0.0030668810941278934, + -0.0035748241934925318, + 0.06451473385095596, + -0.009325282648205757, + 0.045178599655628204, + -0.0969148650765419, + -0.01072696689516306, + 0.005390438716858625, + 0.03720513731241226, + -0.032941099256277084, + 0.004008316434919834, + 0.05769084766507149, + -0.05389905348420143, + 0.03996855020523071, + -0.0628516748547554, + -0.0010875260923057795, + 0.009420863352715969, + 0.003877059556543827, + 0.0007394717540591955, + -0.01812862418591976, + -0.07006051391363144, + 0.01875050738453865, + -0.011910855770111084, + -0.0018916451372206211, + 0.0011324830120429397, + 0.010764622129499912, + 0.0032345918007194996, + -0.07483550161123276, + -0.023364640772342682, + -0.008308843709528446, + -0.006583281327039003, + -0.00220142537727952, + 0.011568577960133553, + -0.03617764264345169, + 0.028733430430293083, + 0.01916835829615593, + -0.07367264479398727, + -0.031706858426332474, + 0.03120925836265087, + -0.02762249857187271, + 0.06807909160852432, + 0.008542289957404137, + -0.03707828372716904, + -0.009422342292964458, + -0.02594352513551712, + -0.00037219515070319176, + 0.007157976273447275, + -0.0018350486643612385, + 0.01799379289150238, + -0.030493123456835747, + 0.00022485815861728042, + -0.025816146284341812, + 0.031818635761737823, + -0.02407084032893181, + -0.05311660096049309, + 0.06576012820005417, + 0.03458624333143234, + -0.019420089200139046, + -0.03598175570368767, + -0.02527524158358574, + 0.07398217916488647, + -0.003609397215768695, + -0.02367101050913334, + 0.0008913706988096237, + -0.006251773796975613, + -0.022323429584503174, + 0.007142376620322466, + -0.059456221759319305, + -0.04230966418981552, + -0.01802993379533291, + 0.02880805730819702, + 0.01590067334473133, + -0.009848307818174362, + -9.701848466647789e-05, + -0.01813586801290512, + -0.03545380383729935, + -0.04479832947254181, + -0.041019584983587265, + -0.011214914731681347, + 0.00882210023701191, + -0.00930946134030819, + -0.04897141456604004, + -0.031571757048368454, + 0.02256457507610321, + -0.015939397737383842, + 0.011786326766014099, + -0.02490740828216076, + -0.025937970727682114, + -0.0033607478253543377, + 0.06505870819091797, + -0.00643788231536746, + -0.027012711390852928, + 0.016841944307088852, + 0.003980095498263836, + -0.0384848453104496, + -0.022185076028108597, + -0.005734539125114679, + -0.0037387297488749027, + -0.019227221608161926, + -0.026212329044938087, + -0.034880995750427246, + 0.016024483367800713, + -0.02264089323580265, + -0.02119932509958744, + 0.04846286401152611, + 0.012305873446166515, + -0.023441996425390244, + -0.03075479157269001, + 0.011372596956789494, + -0.020775144919753075, + -0.039062634110450745, + -0.028622232377529144, + 0.020359138026833534, + 0.012777409516274929, + -0.026511136442422867, + 0.018593790009617805, + -0.0065095010213553905, + 0.04284648969769478, + -0.004287300631403923, + -0.019760537892580032, + 0.08047009259462357, + -0.02721417136490345, + 0.011171652935445309, + -0.01864628680050373, + -0.006471359170973301, + -0.00756981922313571, + 0.001776022487320006, + 0.006072620861232281, + 0.004747491329908371, + -0.040652427822351456, + -0.043483931571245193, + -0.006540820002555847, + 0.024216964840888977, + 0.03191274777054787, + 0.006466881837695837, + 0.05026331916451454, + 0.02357686124742031, + 0.013594616204500198, + -0.014198980294167995, + -0.004165276885032654, + -0.012135228142142296, + -0.1394287347793579, + 0.025277230888605118, + 0.00015210566925816238, + 0.020083798095583916, + -0.024445515125989914, + -0.026714226230978966, + 0.0027807611040771008, + -0.04678678512573242, + -0.008573203347623348, + -0.025576695799827576, + -0.03504177927970886, + -0.021970631554722786, + -0.04159926995635033, + -0.02841375395655632, + 0.017492851242423058, + 0.019509701058268547, + 0.04631124064326286, + -0.06233854591846466, + -0.045122165232896805, + -0.03568931296467781, + -0.01632332056760788, + -0.041004084050655365, + 0.017220111563801765, + 0.006358589045703411, + -0.019259219989180565, + 0.023003462702035904, + -8.694939606357366e-05, + 0.058999866247177124, + -0.009531152434647083, + -0.07552265375852585, + 0.01566975936293602, + -0.013478112407028675, + 0.045044656842947006, + 0.024252641946077347, + 0.0005345779354684055, + 0.04610896483063698, + -0.030441153794527054, + 0.04665577411651611, + -0.030078783631324768, + 0.04120422899723053, + 0.030887354165315628, + 0.010034596547484398, + -0.02914249710738659, + 0.0022969883866608143, + -0.0010906746610999107, + 0.02488335408270359, + -0.04106997326016426, + -0.01749281957745552, + -0.024342620745301247, + -0.015631701797246933, + 0.02495526149868965, + 0.0292714424431324, + -0.005629861727356911, + 0.006572250742465258, + 0.015443372540175915, + -0.06993671506643295, + 0.01230456680059433, + -0.003906593658030033, + 0.004729411099106073, + -0.016166197136044502, + -0.021778829395771027, + 0.013313603587448597, + -0.0552736297249794, + -0.06312501430511475, + 0.012945432215929031, + 0.016512570902705193, + -0.006115886382758617, + 0.01656830869615078, + 0.028271671384572983, + -0.01813557744026184, + 0.003390645142644644, + -0.004673527088016272, + 0.011306659318506718, + -0.03399289399385452, + 0.028753647580742836, + -0.009035522118210793, + -0.014027162455022335, + 0.007695179898291826, + -0.008316501043736935, + -0.02224593609571457, + -0.03149869292974472, + -0.035682931542396545, + -0.006986001040786505, + -0.004989295266568661, + 0.05713688209652901, + -0.01038564182817936, + 1.647007593419403e-05, + -0.003391351317986846, + -0.028492674231529236, + 0.009566006250679493, + -0.004910847172141075, + -0.08539250493049622, + -0.025793591514229774, + -0.010450352914631367, + -0.012449276633560658, + 0.005084414035081863, + -0.02202424965798855, + 0.005999813787639141, + 0.046404097229242325, + -0.024614954367280006, + 0.04484901577234268, + -0.04286836460232735, + 0.03956830874085426, + 0.03422538563609123, + -0.018179308623075485, + -0.0020084460265934467, + 0.012072399258613586, + -0.035020891577005386, + -0.0299599077552557, + 0.007099398411810398, + 0.012363160029053688, + 0.032369062304496765, + -0.02255505882203579, + 0.030852073803544044, + -0.07580144703388214, + -0.05273972824215889, + 0.001908484031446278, + 0.03517989069223404, + -0.031177721917629242, + -0.012490849010646343, + 0.06013604626059532, + 0.006070081610232592, + 0.011049003340303898, + -0.026845857501029968, + 0.061894580721855164, + -0.0032837700564414263, + 0.010763063095510006, + 0.023292234167456627, + 0.018122918903827667, + 0.02484261803328991, + -0.015149966813623905, + 0.009263068437576294, + 0.03879786282777786, + 0.014505173079669476, + 0.01767946407198906, + 0.0005572474910877645, + -0.011808211915194988, + 0.01398609671741724, + -0.024077365174889565, + -0.021835874766111374, + -0.008352575823664665, + -0.02138303779065609, + -0.027011755853891373, + -0.03981830179691315, + -0.010734573937952518, + 0.007790328003466129, + -0.03148898109793663, + -0.02023082785308361, + 0.00474722683429718, + -0.044599130749702454, + 0.0005258223973214626, + -0.027857407927513123, + -0.029697872698307037, + 0.05277891457080841, + -0.04519277065992355, + 0.0038303651381284, + -0.004431882873177528, + -0.02382044866681099, + -0.023778587579727173, + -0.01047530211508274, + -0.05420590564608574, + -0.01450466737151146, + 0.03952277451753616, + -0.003572486573830247, + -0.03846855089068413, + -0.005011919420212507, + -0.040885765105485916, + -0.00033310355502180755, + -0.003517892211675644, + 0.032132137566804886, + -0.028094468638300896, + 0.02161428891122341, + -0.016613850370049477, + -0.0069601708091795444, + 0.02876528538763523, + -0.0062313564121723175, + -0.0031004941556602716, + -0.04170084372162819, + 0.03503800183534622, + -0.019309954717755318, + 0.010817165486514568, + 0.03342435136437416, + 0.04786421358585358, + -0.0591215044260025, + 0.05863188952207565, + 0.02736360765993595, + 0.0018520167795941234, + -0.0022129148710519075, + 0.026240525767207146, + -0.0005272978451102972, + -0.01674715243279934, + 0.0027050755452364683, + 0.07229045033454895, + -0.004834776744246483, + -0.008596926927566528, + -0.05121394991874695, + -0.007756112143397331, + 0.019932499155402184, + 0.005251293070614338, + 0.057476893067359924, + -0.044026751071214676, + -0.01640431396663189, + -0.008649605326354504, + -0.04264795407652855, + -0.011806546710431576, + -0.01226531621068716, + 0.028118882328271866, + 0.04222264513373375, + 0.022203968837857246, + 0.08777337521314621, + 0.02048478089272976, + -0.0009346638107672334, + -0.030665762722492218, + 0.015502889640629292, + 0.015611248090863228, + -0.02975541725754738, + 0.004802507348358631, + 0.00848503690212965, + -0.006488860584795475, + 0.023837808519601822, + -0.0030362114775925875, + 0.0023539739195257425, + 0.007180418819189072, + -0.009823661297559738, + -0.025508353486657143, + -0.0472121499478817, + -0.013382846489548683, + -0.014128769747912884, + -0.009750070981681347, + -0.042547713965177536, + -0.020752213895320892, + -0.007366321515291929, + 0.01899307407438755, + 0.04124310985207558, + -0.016395827755331993, + 0.03481457009911537, + 0.0393914170563221, + 0.005656971596181393, + -0.03832949325442314, + 0.007113114930689335, + 0.0035091217141598463, + -0.010535524226725101, + -0.03200741857290268, + -0.017918523401021957 + ], + "start_index": 0, + "end_index": 132, + "token_count": 36, + "file_type": "avap_code", + "filename": "construccion_dinamica_de_objeto.avap", + "addResult": true, + "addVar": true, + "assignment": true, + "call": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "57bb89b1-26ba-5e05-9a04-b0f621e35d44", + "_source": { + "text": "addVar(code, 200)\naddVar(status, \"Success\")\naddResult(code)\naddResult(status)", + "embedding": [ + -0.016452491283416748, + 0.011506898328661919, + -0.018601756542921066, + 0.02609921805560589, + -0.049822092056274414, + -0.004354766570031643, + 0.0075365775264799595, + 0.02233315445482731, + -0.016947129741311073, + -0.0012542627518996596, + -0.04049697890877724, + 0.033948756754398346, + -0.011371142230927944, + 0.00801421981304884, + -0.011254444718360901, + 0.01925831474363804, + 0.0019956661853939295, + -0.02608923241496086, + -0.0026645187754184008, + -0.008946746587753296, + -0.04470476880669594, + 0.049022793769836426, + -0.006608064752072096, + 0.014603930525481701, + -0.019918201491236687, + -0.02098577283322811, + -0.021501386538147926, + -0.031238220632076263, + 0.0018027242040261626, + -0.011023449711501598, + 0.0032951999455690384, + 0.03883974999189377, + -0.01653650403022766, + -0.05990405008196831, + -0.022463615983724594, + -0.004329968243837357, + -0.022862417623400688, + -0.013714601285755634, + -0.04971608519554138, + 0.009855668060481548, + -0.034718528389930725, + 0.02801394648849964, + 0.0023060995154082775, + -0.02864152565598488, + 0.02820894494652748, + -0.006488431245088577, + 0.012813463807106018, + -0.0323583222925663, + -0.026340380311012268, + -0.014863877557218075, + 0.007521805819123983, + 0.014060113579034805, + 0.02917015179991722, + -0.0006452299421653152, + 0.03262406960129738, + 0.032981790602207184, + -0.061490219086408615, + 0.018516676500439644, + -0.04479481279850006, + -0.013834266923367977, + -0.0625838115811348, + 0.005857615731656551, + -0.050210848450660706, + 0.036298878490924835, + -0.026273464784026146, + 0.03166855499148369, + -0.024456756189465523, + -0.0029062756802886724, + -0.0070128352381289005, + 0.017835404723882675, + 0.007254965603351593, + 0.02760842628777027, + -0.025779196992516518, + -0.015618996694684029, + -0.06731469929218292, + -0.0009886621264740825, + 0.023245057091116905, + -0.02436796948313713, + -0.011781761422753334, + -0.032028768211603165, + -0.003267439315095544, + 0.008875798434019089, + 0.01641514152288437, + -0.00019989853899460286, + -0.0009068789076991379, + 0.06476747244596481, + 0.009456365369260311, + 0.003111814148724079, + -0.00907132588326931, + 0.02813752368092537, + -0.02110913023352623, + -0.019975926727056503, + 0.021405702456831932, + -0.05504857376217842, + -0.0018169875256717205, + -0.022221744060516357, + -0.01726478710770607, + 0.01237141340970993, + 0.011332490481436253, + 0.010796701535582542, + -0.020356623455882072, + 0.0326218418776989, + -0.0015980721218511462, + -0.014758615754544735, + 0.0434274896979332, + 0.013578329235315323, + 0.03900373727083206, + -0.019472455605864525, + -0.0065539232455194, + -0.030614156275987625, + 0.007982514798641205, + 0.021152785047888756, + 0.02141062542796135, + 0.006631553638726473, + 0.0001857650640886277, + -0.04043632745742798, + -0.046299051493406296, + -0.016397574916481972, + 0.038567833602428436, + 0.028864765539765358, + 0.02266108989715576, + 0.03419682756066322, + 0.05657815933227539, + -0.030182411894202232, + 0.012694177217781544, + 0.05252586305141449, + 0.0013378617586567998, + 0.04520139843225479, + -0.0264024268835783, + 0.01653832197189331, + -0.02304033935070038, + 0.030169494450092316, + -0.00759976776316762, + 0.004719580989331007, + -0.03766437992453575, + -0.021887939423322678, + 0.004024769179522991, + 0.03317076712846756, + -0.00234211515635252, + -0.036823663860559464, + 0.009076414629817009, + 0.057930562645196915, + -0.006783871911466122, + 0.013509286567568779, + 0.05258491262793541, + -0.0861392617225647, + 0.06577971577644348, + 0.01853402704000473, + 0.025168325752019882, + -0.03487592190504074, + -0.013486363925039768, + -0.002187331672757864, + -0.003244101768359542, + -0.03420276567339897, + 0.028726497665047646, + -0.019092300906777382, + 0.007425746414810419, + 0.013816842809319496, + 0.003931528422981501, + 0.011552434414625168, + -0.06355317682027817, + -0.0020093335770070553, + -0.010426729917526245, + -0.009653625078499317, + 0.03301812335848808, + -0.0017980023985728621, + 0.031287502497434616, + -0.00962555967271328, + -0.025540579110383987, + -0.04439803585410118, + 0.01036753412336111, + 0.000376670592231676, + 0.02388886548578739, + -0.014167491346597672, + 0.007429829798638821, + 0.013538438826799393, + 0.0633864775300026, + 0.020478323101997375, + -0.013971257954835892, + -0.05622580647468567, + 0.012227418832480907, + -0.008878536522388458, + -0.025516318157315254, + -0.0289325974881649, + -0.03275318816304207, + 0.029815830290317535, + -0.010472907684743404, + -0.026492157950997353, + -0.0021272622980177402, + 0.019832367077469826, + -0.020424021407961845, + -0.00231288094073534, + 0.056251831352710724, + -0.006242652423679829, + 0.03473030775785446, + 0.021310023963451385, + 0.004322570748627186, + -0.03380516171455383, + -0.0028216184582561255, + 0.0066501423716545105, + -0.03955693542957306, + 0.031166916713118553, + 0.0061547765508294106, + -0.06651769578456879, + -0.019689934328198433, + 0.03348981589078903, + -0.006582890637218952, + -0.040576089173555374, + 0.01566493883728981, + 0.002400145400315523, + 0.0002590999938547611, + 0.04150030389428139, + -0.03925584629178047, + 0.04015467315912247, + -0.017424307763576508, + 0.011647327803075314, + 0.008303654380142689, + 0.004601785913109779, + -0.0440329872071743, + -0.01025801058858633, + -0.018053406849503517, + 0.05800209939479828, + 0.06743722409009933, + 0.0018465101020410657, + 0.024387463927268982, + -0.023878855630755424, + -0.009950714185833931, + 0.03157862648367882, + 0.0035471611190587282, + -0.04623224213719368, + -0.016136465594172478, + -0.020372776314616203, + 0.00010802442557178438, + -0.028998786583542824, + 0.051693473011255264, + -0.0344596691429615, + 0.011165031231939793, + 0.0509793683886528, + -0.003219808917492628, + -0.017116505652666092, + -0.018097735941410065, + -0.035574477165937424, + 0.0757981538772583, + 0.026317806914448738, + -0.053113531321287155, + 0.016261741518974304, + -0.006591091863811016, + 0.02055843360722065, + -0.03452027216553688, + -0.014857009053230286, + 0.000466991332359612, + -0.027422180399298668, + -0.02936233952641487, + -0.006880819331854582, + -0.01037552859634161, + -0.012122665531933308, + 0.02937212586402893, + 0.0008746834937483072, + -0.04369914159178734, + 0.019690172746777534, + 0.0052352710627019405, + 0.035735540091991425, + 5.975124804535881e-05, + 0.023163121193647385, + 0.04599272087216377, + 0.009514553472399712, + -0.014259456656873226, + 0.026966474950313568, + 0.009280897676944733, + -0.00761248217895627, + 0.01949242129921913, + -0.0005958473775535822, + -0.004140640143305063, + -0.003852034918963909, + 0.011201536282896996, + 0.019667649641633034, + -0.034257687628269196, + -0.045996375381946564, + 0.10137495398521423, + 0.015495429746806622, + 0.004637014586478472, + 0.02120763249695301, + 0.005973310675472021, + -0.03537411615252495, + 0.07874085754156113, + 0.0032488531433045864, + 0.026769490912556648, + -0.027802860364317894, + 0.028968220576643944, + -0.08469167351722717, + 0.00261436915025115, + 0.011431651189923286, + 0.06378307938575745, + -0.005813069175928831, + 0.019055191427469254, + 0.033188845962285995, + 0.0035790500696748495, + -0.16358031332492828, + -0.031749121844768524, + -0.0014846035046502948, + 0.01797921024262905, + -0.0005329817649908364, + 0.019852343946695328, + -0.0334245003759861, + -0.005410596262663603, + -0.05856608599424362, + 0.01609914004802704, + 0.0017329470720142126, + -0.057753369212150574, + 0.00892573781311512, + -0.049020182341337204, + -0.02345334365963936, + -0.041533004492521286, + -0.004079771228134632, + 0.018691271543502808, + 0.010812027379870415, + -0.025946946814656258, + -0.044991254806518555, + -0.021917205303907394, + 0.0661294162273407, + -0.03891877830028534, + -0.04797467961907387, + -0.009751944802701473, + 0.0023520614486187696, + 0.010722174309194088, + -0.02587488852441311, + 0.015453928150236607, + -0.014522082172334194, + 0.03556789830327034, + 0.0042786491103470325, + 0.01453376654535532, + 0.018658122047781944, + 0.07181169837713242, + 0.023785952478647232, + -0.033619411289691925, + 0.044496167451143265, + -0.04274120554327965, + 0.03493552282452583, + 0.052107371389865875, + -0.01575554721057415, + 0.0021052544470876455, + -0.006152754183858633, + -0.04141419753432274, + 0.009856123477220535, + -0.008786322548985481, + -0.022170091047883034, + -0.05803292989730835, + -0.014889641664922237, + -0.03757530823349953, + 0.011241014115512371, + -0.034861739724874496, + -0.0389232262969017, + 0.046905696392059326, + -0.021004656329751015, + 0.005712035112082958, + 0.0005177463172003627, + -0.007540355436503887, + -0.02970138005912304, + -0.0375860258936882, + 0.037505991756916046, + 0.011656536720693111, + 0.01762199029326439, + 0.006449801381677389, + 0.06486502289772034, + 0.022841228172183037, + 0.05815748870372772, + -0.04093855619430542, + 0.046273186802864075, + -0.05204731225967407, + -0.0326816625893116, + -0.004098065197467804, + -0.0024435913655906916, + 0.01743384450674057, + -0.027486557140946388, + -0.05163992941379547, + -0.01860157400369644, + -0.09570493549108505, + 0.019992640241980553, + 0.010398191399872303, + 0.019259463995695114, + 0.040166936814785004, + -0.006057955790311098, + -0.024222880601882935, + -0.04475603997707367, + -0.0014031778555363417, + 0.07577861100435257, + 0.2330741435289383, + 0.008182520046830177, + 0.010383605025708675, + 0.007319730240851641, + 0.07151314616203308, + -0.025147106498479843, + 0.004945529159158468, + 0.007735331542789936, + 0.0045288242399692535, + -0.020887324586510658, + 0.026518389582633972, + 0.004650409333407879, + -0.048810992389917374, + -0.013335653580725193, + 0.016329146921634674, + 0.032667066901922226, + -0.05104570463299751, + 0.028509357944130898, + 0.0486188605427742, + -0.020751584321260452, + -0.003929860889911652, + -0.010764983482658863, + -0.017570609226822853, + -0.0006360451225191355, + -0.03222723677754402, + -0.03470858559012413, + 0.005213342607021332, + -0.018808705732226372, + 0.01600917987525463, + 0.033578697592020035, + -0.02107859216630459, + 0.02125152200460434, + -0.020531916990876198, + 0.021988052874803543, + 0.00010590726014925167, + -0.00941321812570095, + 0.02268780581653118, + -0.016977010294795036, + -0.019276943057775497, + -0.006309714168310165, + 0.028736291453242302, + -0.036798857152462006, + 0.013594823889434338, + 0.03192105516791344, + -0.016826387494802475, + -0.022585297003388405, + 0.03041916899383068, + 0.008085430599749088, + -0.020494023337960243, + -0.023579072207212448, + -0.007188296411186457, + -0.04551691934466362, + -0.024258771911263466, + 0.012949110940098763, + 0.0192677341401577, + -0.01338670402765274, + 0.008465907536447048, + 0.012533183209598064, + -0.02677067182958126, + -0.002346246736124158, + -0.0011733182473108172, + -0.022801097482442856, + 0.0023454981856048107, + 0.0077167535200715065, + -0.006955609656870365, + 0.007020467892289162, + -0.0030504169408231974, + -0.029348164796829224, + 0.00026391263236291707, + 0.042666785418987274, + -0.04570626839995384, + 0.059800196439027786, + 0.01453292928636074, + 0.006357137579470873, + 0.012503108941018581, + -0.0012322606053203344, + 0.025050297379493713, + 0.032646726816892624, + -0.010540539398789406, + 0.030165165662765503, + -0.014422566629946232, + -0.002013690071180463, + -0.0826742872595787, + 0.043115705251693726, + -0.012581207789480686, + 0.006040165200829506, + -0.011642895638942719, + 0.0912046879529953, + 0.006144551560282707, + 0.004744478035718203, + -0.03464560955762863, + 0.010555137880146503, + 0.007428816519677639, + 0.030920572578907013, + 0.00919389259070158, + 0.04936791956424713, + 0.04533379152417183, + 0.024961480870842934, + -0.031589116901159286, + 0.011332478374242783, + -0.025322439149022102, + 0.03298477455973625, + -0.0014517384115606546, + -0.02145482785999775, + 0.047511547803878784, + 0.008676758967339993, + -0.06685472279787064, + -0.04032573848962784, + -0.00421094847843051, + -0.014478919096291065, + -0.05097849667072296, + 0.011400108225643635, + -0.0034907867666333914, + 0.013068598695099354, + -0.028205519542098045, + 0.027714379131793976, + -0.004718932788819075, + -0.006402581464499235, + 0.04531228169798851, + 0.015573346987366676, + -0.020457543432712555, + 0.02339271456003189, + 0.00963805615901947, + 0.007363886572420597, + 0.014607519842684269, + -0.08489103615283966, + 0.025422969833016396, + 0.04105382040143013, + -0.02760820835828781, + 0.01502687856554985, + 0.032241277396678925, + 0.005981356371194124, + 0.004659129306674004, + 0.012726511806249619, + 0.013825854286551476, + 0.008302373811602592, + 0.053083717823028564, + 0.027500538155436516, + 0.013126837089657784, + 0.06938105821609497, + -0.03225741162896156, + 0.02406669408082962, + -0.02493974380195141, + 0.012625182047486305, + 0.0026162476278841496, + -0.00825023464858532, + -0.021456409245729446, + -0.011717463843524456, + -0.01769276335835457, + 0.010457420721650124, + 0.05111677944660187, + 0.05813136696815491, + 0.041744258254766464, + -0.049129147082567215, + -0.03310472145676613, + -0.06311290711164474, + -0.010329300537705421, + 0.002837582491338253, + -0.01950276829302311, + -0.02628621645271778, + 0.0232242401689291, + 0.03194790333509445, + 0.030333159491419792, + 0.03894064202904701, + -0.020010067149996758, + -0.029963528737425804, + -0.019775906577706337, + 0.03182949870824814, + -0.02106255665421486, + 0.016494648531079292, + -0.006562541704624891, + -0.017416641116142273, + -0.041155144572257996, + 0.029623791575431824, + -0.011369321495294571, + 0.014732024632394314, + -0.020847942680120468, + 0.0049838712438941, + -0.028067057952284813, + -0.05961109697818756, + 0.008115260861814022, + -0.04950518161058426, + -0.0355403795838356, + -0.0079598193988204, + 0.018265048041939735, + -0.002519468078389764, + 0.0165147352963686, + -0.007112837862223387, + 0.05706300586462021, + -0.019288189709186554, + -0.025665391236543655, + 0.12372487038373947, + 0.035724639892578125, + -0.028054963797330856, + -0.014258713461458683, + 0.06864628940820694, + 0.02630615234375, + 0.014863932505249977, + -0.024975920096039772, + -0.010244294069707394, + -0.0175601989030838, + 0.02450808882713318, + 0.007173763122409582, + 0.012557934038341045, + 0.006815052125602961, + -0.007953984662890434, + 0.0004895050078630447, + 0.015662861987948418, + 0.007381347473710775, + -0.026417488232254982, + -0.0095890574157238, + -0.00554780475795269, + -0.06800298392772675, + -0.031230788677930832, + 0.037988778203725815, + -0.04820728302001953, + 0.023729095235466957, + 0.015002737753093243, + 0.03042532317340374, + -0.009819204919040203, + -0.045949988067150116, + 0.003635574132204056, + 0.011420474387705326, + 0.015616684220731258, + -0.04157579317688942, + -0.007044301368296146, + 0.00725264847278595, + -0.011656954884529114, + 0.005791066214442253, + -0.034103844314813614, + -0.00827693473547697, + -0.006846205797046423, + 0.022055543959140778, + 0.06462008506059647, + 0.013478120788931847, + 0.0097900265827775, + -0.0160441342741251, + 0.021595751866698265, + 0.02052932046353817, + -0.05058934912085533, + 0.05614686757326126, + 0.016521211713552475, + 0.03721630945801735, + 0.06562784314155579, + -0.007350014057010412, + -0.024217937141656876, + -0.03520626574754715, + -0.04961342364549637, + 0.02554122358560562, + 0.007160588633269072, + -0.030120350420475006, + -0.034566428512334824, + -0.0035209828056395054, + -0.0425100103020668, + -0.0036857682280242443, + 0.017917905002832413, + -0.04133988171815872, + 0.014828241430222988, + -0.01715521514415741, + -0.018785327672958374, + 0.04011835530400276, + 0.04543457552790642, + -0.03227726370096207, + -0.0016366771887987852, + 0.03322860598564148, + -0.06508082896471024, + 0.06157201901078224, + -0.058334965258836746, + -0.009279412217438221, + 0.0039306990802288055, + -0.008060779422521591, + 0.017645524814724922, + -0.024262620136141777, + -0.0023459349758923054, + 0.03737791255116463, + 0.018644152209162712, + -0.003604385070502758, + 0.006537226028740406, + 0.05078979209065437, + -0.004038327373564243, + -0.05297776684165001, + -0.061091348528862, + -0.018432699143886566, + -0.01096286065876484, + 0.01132771372795105, + 0.016762185841798782, + 0.028422338888049126, + 0.016440480947494507, + 0.017612136900424957, + -0.0617310032248497, + -0.019123394042253494, + 0.007219324819743633, + -0.03714480251073837, + 0.04666224867105484, + -0.012249574065208435, + -0.022515427321195602, + 0.011999915353953838, + -0.011532879434525967, + -0.01576615869998932, + -0.02671189419925213, + 0.001406700350344181, + -0.040436968207359314, + 0.017419634386897087, + 0.0337904654443264, + -0.010969783179461956, + 0.018162239342927933, + -0.03579292073845863, + 0.008233057335019112, + 0.06241821125149727, + -0.04569285735487938, + -0.028217865154147148, + -0.07361826300621033, + -0.011933844536542892, + 0.05396397039294243, + -0.004558137152343988, + -0.01801709271967411, + 0.06084968149662018, + -0.04888034239411354, + -0.02181067131459713, + -0.03663184493780136, + 0.0027914349921047688, + -0.02643609791994095, + -0.006386863999068737, + 0.02316809631884098, + -0.003092334372922778, + -0.0014500573743134737, + -0.013012796640396118, + 0.01893524080514908, + -0.03771963715553284, + 0.01492549292743206, + -0.01581459864974022, + 0.0013166075805202127, + -0.05091211944818497, + 0.011197458021342754, + -0.033343903720378876, + -0.0032223770394921303, + 0.02748507261276245, + -0.005055712535977364, + 0.003964680712670088, + -0.03460375964641571, + -0.008362194523215294, + 0.016239183023571968, + 0.05718182772397995, + -0.02542414888739586, + -0.014443515799939632, + -0.008525816723704338, + 0.015944553539156914, + -0.02965748868882656, + -0.011494376696646214, + -0.0033579750452190638, + -0.023022660985589027, + 0.006614249665290117, + -0.0032489632721990347, + -0.05722026899456978, + -0.008038505911827087, + -0.013371800072491169, + 0.008102990686893463, + 0.04916801303625107, + 0.00017071995534934103, + -0.0020023449324071407, + -0.01587812229990959, + -0.013700694777071476, + -0.005527066066861153, + -0.020425964146852493, + -0.05004703998565674, + 0.03630727529525757, + 0.042112406343221664, + 0.034216027706861496, + 0.007209744770079851, + 0.016844820231199265, + 0.02802051603794098, + -0.0001576482754899189, + 0.005705589894205332, + 0.03814025968313217, + -0.009178479202091694, + 0.05033562332391739, + -0.018163636326789856, + 0.0051680696196854115, + 0.006282602436840534, + -0.0007425537914969027, + 0.0001949500583577901, + -0.019210247322916985, + -0.03460748493671417, + -0.04964013770222664, + -0.023968977853655815, + -0.0037831314839422703, + 0.0010976778576150537, + 0.04781078174710274, + 0.06968037039041519, + 0.04977302625775337, + -0.03542449697852135, + -0.001241221441887319, + -0.027823686599731445, + 0.024575872346758842, + -0.1339053362607956, + 0.017438167706131935, + -0.03353242948651314, + 0.014085122384130955, + -0.01844106987118721, + -0.0022537666372954845, + -0.0370933935046196, + -0.012241014279425144, + -0.03816942125558853, + -0.024366090074181557, + -0.03264550492167473, + -0.04479936137795448, + 0.036597609519958496, + -0.011900841258466244, + 0.0069826641120016575, + -0.021876294165849686, + 0.02702394872903824, + -0.022793041542172432, + -0.036338794976472855, + 0.007570262067019939, + 0.011722441762685776, + -0.030368395149707794, + 0.028311647474765778, + 0.0020388069096952677, + 0.009689279831945896, + -0.010460376739501953, + 0.025237005203962326, + 0.008940107189118862, + -0.016551250591874123, + -0.062498386949300766, + -0.01254179049283266, + 0.01759142242372036, + 0.025898786261677742, + 0.0033641010522842407, + 0.023039693012833595, + 0.008292016573250294, + -0.009437465108931065, + 0.07711362093687057, + -0.0030619578901678324, + 0.0443749725818634, + 0.010483781807124615, + 0.0050436765886843204, + -0.0018640013877302408, + 0.0016572860768064857, + 0.06331319361925125, + 0.023922909051179886, + 0.008859599940478802, + -8.475869981339201e-05, + -0.01211104728281498, + -0.027934815734624863, + 0.01441052183508873, + 0.01790570095181465, + 0.008646193891763687, + 0.013652270659804344, + 0.013885391876101494, + -0.0107750678434968, + -0.01466280035674572, + -0.032329853624105453, + -0.01141281332820654, + -0.0005473411874845624, + -0.0067547764629125595, + 0.018373167142271996, + -0.05654846131801605, + -0.04048600047826767, + -0.019611727446317673, + 0.00012520024029072374, + -0.01978348009288311, + 0.013307626359164715, + -0.02920982986688614, + -0.006835632491856813, + -0.01637393794953823, + 0.022223317995667458, + -0.01792697235941887, + -0.05373389273881912, + -0.008861406706273556, + 0.020628672093153, + -0.019684603437781334, + -0.0065927570685744286, + -0.028908459469676018, + -0.04923658445477486, + -0.030962252989411354, + 0.018621083348989487, + 0.0041236719116568565, + 0.0013781157322227955, + 0.06626174598932266, + -0.0044157071970403194, + -0.01820458471775055, + 0.01815684512257576, + -0.12508517503738403, + -0.01256468053907156, + -0.028729284182190895, + -0.042496684938669205, + 0.011205257847905159, + -0.06282765418291092, + -0.01633359119296074, + -0.0042759026400744915, + -0.010680203326046467, + 0.004885661881417036, + 0.0302592683583498, + -0.004611127078533173, + 0.04482808709144592, + -0.011456575244665146, + 0.04799465835094452, + -0.01728011853992939, + -0.009169545955955982, + 0.004910511430352926, + 0.015646643936634064, + -0.016708066686987877, + -0.007643129210919142, + -0.010043572634458542, + -0.0012564555509015918, + 0.01291465014219284, + -0.016312329098582268, + -0.018737711012363434, + -0.015491723082959652, + -0.018497440963983536, + -0.007351094391196966, + 0.052822671830654144, + 0.010237614624202251, + 0.006765630096197128, + 0.00555628864094615, + 0.00678236735984683, + 0.08036534488201141, + -0.017824972048401833, + 0.029863879084587097, + 0.02289501018822193, + 0.013909048400819302, + 0.03597962111234665, + -0.06532815098762512, + 0.005124724470078945, + -0.011756905354559422, + -0.03315134719014168, + 0.030345551669597626, + 0.022363713011145592, + 0.0407169908285141, + -0.014999516308307648, + -0.03232840448617935, + 0.028243206441402435, + -0.015811342746019363, + -0.03392830863595009, + -0.006294415798038244, + -0.07443086802959442, + 0.013123184442520142, + -0.04152464121580124, + 0.019411224871873856, + -0.0034192493185400963, + -0.037185221910476685, + -3.149437907268293e-05, + 0.02641373872756958, + -0.04009387642145157, + 0.017548708245158195, + 0.02719840593636036, + -0.03125239536166191, + 0.06922434270381927, + -0.004604050889611244, + -0.0036285161040723324, + -0.0014091135235503316, + 0.005129430443048477, + -0.02256852760910988, + 0.026174155995249748, + -0.026254557073116302, + -0.020510971546173096, + 0.03299139440059662, + 0.0030541708692908287, + -0.030044101178646088, + -0.015087565407156944, + -0.0332074798643589, + 0.003978371620178223, + -0.007263944484293461, + 0.012405317276716232, + -0.018675420433282852, + 0.01032176148146391, + -0.00940707791596651, + -0.006116959732025862, + 0.021430406719446182, + -0.02054455690085888, + -0.00831141322851181, + -0.0015614042058587074, + 0.05021890252828598, + -0.022969083860516548, + -0.014139746315777302, + 0.03962095081806183, + 0.04896250739693642, + -0.009706846438348293, + 0.027636786922812462, + 0.019071578979492188, + 0.026612289249897003, + 0.040430374443531036, + 0.03687082603573799, + 0.019180461764335632, + 0.024508491158485413, + -0.011950471438467503, + 0.020594635978341103, + -0.024743221700191498, + 0.05734004080295563, + -0.005425388924777508, + 0.009222382679581642, + 0.00883862841874361, + -0.01153411716222763, + -0.000816451502032578, + -0.04476713761687279, + -0.024124622344970703, + -0.023323949426412582, + -0.02712108939886093, + -0.00871520210057497, + -0.03761057183146477, + 0.007617697585374117, + 0.029650507494807243, + 0.04734726995229721, + 0.03804388269782066, + 0.0018419688567519188, + 0.019299812614917755, + -0.01029351819306612, + -0.010607650503516197, + 0.013073630630970001, + -0.029072703793644905, + -0.02121853642165661, + 0.013376668095588684, + 0.016402045264840126, + 0.010267569683492184, + 0.04387989267706871, + 0.010666916146874428, + 0.03562116250395775, + -0.023430779576301575, + -0.010107154957950115, + -0.0037726464215666056, + -0.030058225616812706, + -0.006578395608812571, + -0.020128581672906876, + -0.0061481911689043045, + -0.07109468430280685, + 0.013246134854853153, + 0.004055700730532408, + 0.03407447785139084, + 0.029290631413459778, + 0.0375266931951046, + -0.000746876175981015, + 0.04313468933105469, + -0.04558276757597923, + 0.011025371961295605, + 0.017467336729168892, + 0.02720593847334385, + 0.016881508752703667, + -0.030850499868392944 + ], + "start_index": 0, + "end_index": 77, + "token_count": 24, + "file_type": "avap_code", + "filename": "respuesta_multiple.avap", + "addResult": true, + "addVar": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "da65cb2b-9b04-52d1-9faf-6dd3523ef064", + "_source": { + "text": "replace(\"REF_1234_OLD\",\"OLD\", \"NEW\", ref_actualizada)\naddResult(ref_actualizada)", + "embedding": [ + -0.01654365286231041, + 0.008900974877178669, + -0.01719064451754093, + 0.007513700518757105, + -0.040030062198638916, + -0.009548294357955456, + -0.03160323202610016, + 0.05576980859041214, + -0.01644260622560978, + -0.03240395337343216, + -0.012021971866488457, + 0.02395126409828663, + -0.04531445726752281, + 0.03726440668106079, + 0.005037438124418259, + 0.012049381621181965, + 0.007773995865136385, + 0.016712572425603867, + 0.013201900757849216, + -0.008662217296659946, + -0.05942868813872337, + 0.03701484575867653, + -0.015682881698012352, + 0.027261853218078613, + -0.01055317372083664, + -0.007984505034983158, + 0.014369117096066475, + -0.010010370053350925, + -0.00507160322740674, + -0.019721347838640213, + 0.014487753622233868, + -0.009178075939416885, + -0.007653390057384968, + -0.009875903837382793, + -0.025197375565767288, + 0.00888932403177023, + -0.01686171256005764, + -0.03145250678062439, + -0.05863310769200325, + 0.017719363793730736, + 0.004322008695453405, + -0.042342543601989746, + 0.00631290627643466, + -0.017803076654672623, + 0.046400588005781174, + -0.011270073242485523, + 0.018304845318198204, + -0.021190987899899483, + -0.024214420467615128, + -0.013613972812891006, + 0.0025978079065680504, + -0.012067786417901516, + 0.06775428354740143, + -0.03121527098119259, + -0.028375323861837387, + 0.024522224441170692, + -0.03961487114429474, + -0.018929917365312576, + -0.011976353824138641, + -0.04621925204992294, + -0.031816739588975906, + -0.0493696890771389, + -0.027586037293076515, + 0.044848617166280746, + 0.010567139834165573, + 0.04179724305868149, + 0.05087512731552124, + 0.05313865840435028, + -0.00276851374655962, + -0.04608037695288658, + 0.004507515579462051, + 0.0003367524186614901, + -0.01648728735744953, + -0.04974491521716118, + -0.025803131982684135, + 0.02229074202477932, + 0.0001479981146985665, + -0.014839484356343746, + -0.027042193338274956, + -0.03494105115532875, + 0.002173488726839423, + -0.0004786431381944567, + 0.010849613696336746, + 0.01767580769956112, + -0.015104429796338081, + 0.006909828167408705, + -0.018032457679510117, + 0.023387210443615913, + -0.005493224132806063, + 0.009660246782004833, + -0.024974536150693893, + 0.011076037771999836, + -0.022951925173401833, + -0.02172905020415783, + 0.009316036477684975, + -0.04743689298629761, + 0.02426326647400856, + -0.01635552942752838, + 0.05411157384514809, + -0.014438610523939133, + -0.008410606533288956, + 0.042995695024728775, + 0.03869694098830223, + -0.010011594742536545, + 0.08396545052528381, + -0.0076499455608427525, + -0.012849332764744759, + -0.001738610677421093, + 0.0031713370699435472, + 0.013698816299438477, + -0.013585176318883896, + 0.01254043448716402, + 0.001369189820252359, + 0.007069013547152281, + 0.015176307410001755, + -0.060746487230062485, + -0.009265260770916939, + -0.035236869007349014, + 0.044885508716106415, + 0.022725332528352737, + 0.027883701026439667, + 0.012906241230666637, + 0.04420287534594536, + -0.003399305045604706, + -0.017336547374725342, + 0.05066293478012085, + 0.03165191411972046, + 0.011053795926272869, + -0.010272915475070477, + 0.02140696905553341, + 0.02491377480328083, + 0.024556949734687805, + -0.015136056579649448, + -0.04702545702457428, + -0.04986933246254921, + -0.01351921260356903, + 0.011617984622716904, + 0.016881635412573814, + 0.04643722623586655, + -0.08065410703420639, + 0.003663228591904044, + 0.029707640409469604, + 0.019612014293670654, + -0.0021933678071945906, + 0.020499875769019127, + -0.047847773879766464, + 0.038887619972229004, + 0.028184572234749794, + 0.031716104596853256, + -0.0015597321325913072, + -0.003968772944062948, + -0.015778422355651855, + 0.0030918752308934927, + 0.0006506161298602819, + 0.03249485045671463, + -0.024205103516578674, + 0.027913706377148628, + 0.012580497190356255, + -0.027405530214309692, + -0.010168948210775852, + 0.02208290621638298, + 0.046649020165205, + -0.011265000328421593, + -0.017305336892604828, + 0.0163214523345232, + -0.016986072063446045, + 0.030345197767019272, + -0.006353181786835194, + -0.001256392803043127, + 0.004119382239878178, + 0.049558598548173904, + -0.04981046915054321, + 0.03890691325068474, + -0.003287710715085268, + 0.024840442463755608, + 0.030791470780968666, + 0.04276777058839798, + 0.024395719170570374, + 0.014676126651465893, + -0.04804107919335365, + -0.02763751894235611, + 0.014821857213973999, + -0.026837723329663277, + -0.026132985949516296, + -0.036603450775146484, + 0.025683198124170303, + -0.020228398963809013, + -0.0280650332570076, + -0.004837548825889826, + -0.00486963614821434, + -0.013218403793871403, + -0.043628644198179245, + 0.024138949811458588, + 0.011981140822172165, + 0.014725136570632458, + -0.018502337858080864, + -0.002055919263511896, + 0.02261408045887947, + 0.0279941838234663, + -0.001405764021910727, + 0.011785493232309818, + 0.04653323441743851, + 0.015085515566170216, + 0.004407601431012154, + 0.012620347552001476, + -0.006552373990416527, + 0.013839983381330967, + -0.09273508191108704, + 0.004980672150850296, + 0.0037072047125548124, + 0.012605324387550354, + 0.004389676731079817, + -0.015332608483731747, + 0.02491743490099907, + -0.017116179689764977, + 0.009565102867782116, + 0.0005214886041358113, + 0.04351840540766716, + 0.004627893213182688, + -0.020347297191619873, + -0.0296968761831522, + 0.046694815158843994, + -0.0010288787307217717, + 0.03708300739526749, + -0.001687399111688137, + 0.027961047366261482, + -0.012657159939408302, + 0.022071490064263344, + 0.002289620926603675, + -0.010146821849048138, + 0.02274828404188156, + 0.024733135476708412, + 0.011113671585917473, + -0.014301499351859093, + 0.021167181432247162, + -0.03474254161119461, + 0.008317315019667149, + 0.01119715441018343, + -0.003958666697144508, + -0.005257376469671726, + -0.006425516679883003, + -0.04063720256090164, + 0.009906926192343235, + -0.009067390114068985, + -0.03701341152191162, + -0.011348835192620754, + 0.027821781113743782, + -0.0010531649459153414, + -0.03440780192613602, + -0.04158002510666847, + 0.007435192819684744, + -0.03214237093925476, + -0.03213411942124367, + -0.02156505174934864, + -0.02038966305553913, + -0.011293112300336361, + 0.04259797930717468, + -0.016661187633872032, + -0.00980635080486536, + 0.0324900858104229, + 0.012280929833650589, + 0.02981337532401085, + -0.038764502853155136, + 0.036462124437093735, + 0.012215080671012402, + -0.018388696014881134, + -0.005055529996752739, + 0.0268733948469162, + 0.008178558200597763, + -0.031773075461387634, + -0.00882108323276043, + 0.024752743542194366, + 0.03329145535826683, + 0.005420713685452938, + 0.02105705440044403, + 0.045335184782743454, + -0.014303182251751423, + -0.04351038113236427, + 0.08191239088773727, + 0.0145233403891325, + -0.028216218575835228, + -0.0036248478572815657, + 0.051131535321474075, + -0.013681215234100819, + 0.03120185248553753, + -0.08262703567743301, + 0.0008785356767475605, + 0.0374617725610733, + 0.016157768666744232, + -0.07402746379375458, + 0.007946296595036983, + -0.007834013551473618, + 0.07628139108419418, + -0.005380788818001747, + -0.02722994238138199, + 0.029880892485380173, + -0.0011610724031925201, + -0.15746080875396729, + -0.02413020469248295, + -0.016962941735982895, + 0.05149916559457779, + -0.00687209889292717, + 0.03901667892932892, + -0.023037763312458992, + 0.005246642045676708, + 0.005851477850228548, + -0.00617311941459775, + -0.04008881747722626, + -0.06801479309797287, + -0.03135828301310539, + -0.02138873189687729, + -0.02946583181619644, + 0.02593579702079296, + -0.023950638249516487, + -0.004551765043288469, + -0.002246336080133915, + -0.034503024071455, + -0.06778470426797867, + -0.06379971653223038, + 0.01271936297416687, + -0.08291558921337128, + -0.057601142674684525, + -0.02406766451895237, + -0.03663542866706848, + -0.017600921913981438, + -0.005646156147122383, + 0.025480378419160843, + 0.004932522773742676, + -0.03281835839152336, + -0.012973625212907791, + -0.014202207326889038, + 0.021815286949276924, + 0.05525575205683708, + 0.03766118362545967, + 0.012152114883065224, + -0.018802613019943237, + -0.010353324934840202, + 0.0022926332894712687, + -0.043311260640621185, + 0.01923418417572975, + 0.04572361707687378, + -0.0020587199833244085, + 0.027673397213220596, + 0.006764007266610861, + 0.010292678140103817, + -0.06091254577040672, + 9.650312131270766e-05, + 0.00956870149821043, + -0.04244261980056763, + 0.028555596247315407, + -0.006375117227435112, + -0.03311235085129738, + 0.007019699085503817, + -0.016456259414553642, + 0.050905946642160416, + -0.008489266969263554, + 0.01817232184112072, + -0.01895909756422043, + -0.05303695797920227, + 0.03400573879480362, + 0.03514396771788597, + -0.03345043957233429, + -0.00637101149186492, + 0.010809602215886116, + -0.006689364556223154, + 0.05077696964144707, + -0.021253513172268867, + 0.028964536264538765, + 0.0011479969834908843, + -0.009321816265583038, + -0.0027696972247213125, + 0.0019424592610448599, + 0.009162710048258305, + -0.06875130534172058, + -0.0217097457498312, + 0.008153693750500679, + -0.10442349314689636, + 0.004176213406026363, + 0.05994923785328865, + -0.04344107210636139, + 0.03701113164424896, + -0.004749751649796963, + 0.010644561611115932, + 0.016595451161265373, + 0.021635135635733604, + 0.05282168462872505, + 0.23568522930145264, + 0.016375286504626274, + 0.011753526516258717, + -0.026477200910449028, + 0.017916351556777954, + -0.009607575833797455, + 0.013879853300750256, + -0.0021174789872020483, + 0.05210792273283005, + -0.011224733665585518, + 0.004339477978646755, + 0.019761839881539345, + -0.01767129637300968, + -0.02448269911110401, + 0.011085418052971363, + 0.04722052067518234, + -0.01079220324754715, + 0.0036873428616672754, + 0.0448509156703949, + -0.021780310198664665, + 0.07589230686426163, + -0.014106711372733116, + -0.07794604450464249, + 0.027471181005239487, + -0.050546929240226746, + -0.05280949920415878, + -0.010680591687560081, + 0.0032351817935705185, + -0.02917308360338211, + 0.04710495099425316, + -0.012830303981900215, + 0.01687200367450714, + 0.0014889832818880677, + -0.009960738010704517, + -0.03702905401587486, + 0.024766316637396812, + 0.022695856168866158, + 0.010314353741705418, + -0.013192499987781048, + 0.031759534031152725, + 0.00010426118387840688, + -0.02153763920068741, + 0.0024995424319058657, + 0.1154223307967186, + -0.012504229322075844, + 0.006449982989579439, + 0.02291238307952881, + 0.004702347796410322, + -0.015930769965052605, + 0.004753598943352699, + -0.03581669554114342, + -0.018789922818541527, + -0.00972286518663168, + 0.014222278259694576, + 0.04269494116306305, + -0.03167075663805008, + -0.020391853526234627, + 0.015419797971844673, + -0.022329119965434074, + 0.041105110198259354, + 0.04703393206000328, + -0.003860041033476591, + 0.006013505160808563, + 0.03439046069979668, + 0.007078933995217085, + 0.005061761010438204, + 0.07248000800609589, + 0.00027856850647367537, + 0.008932369761168957, + 0.023129621520638466, + -0.015587566420435905, + 0.025545192882418633, + 0.05635527893900871, + 0.01244698278605938, + 0.025920506566762924, + -0.020701834931969643, + 0.008627446368336678, + 0.03221532702445984, + -0.01501479186117649, + 0.05369161441922188, + -0.01357071753591299, + 0.00745035707950592, + -0.042075157165527344, + 0.029113521799445152, + 0.02330615185201168, + -0.01975688710808754, + 0.02826150879263878, + 0.03992675617337227, + -0.03881072998046875, + -0.02207157202064991, + -0.03180564567446709, + -0.01472912635654211, + -0.047948144376277924, + 0.010030446574091911, + -0.016960537061095238, + -0.0046496014110744, + 0.035696081817150116, + -0.003513668430969119, + -0.03187716752290726, + 0.011902435682713985, + -0.06325343996286392, + -0.007334467023611069, + 0.011277874000370502, + -0.004873042460530996, + 0.02852301485836506, + 0.006416408810764551, + -0.043861012905836105, + -0.05029228702187538, + -0.00012900118599645793, + -0.01319019217044115, + -0.010653169825673103, + 0.018333951011300087, + -0.01885324902832508, + -0.009575244039297104, + -0.027045901864767075, + 0.03786764293909073, + 0.028044767677783966, + 0.01885637268424034, + -0.023104242980480194, + 0.012360947206616402, + -0.025660965591669083, + -0.0031362073495984077, + -0.0023800809867680073, + 0.04597143083810806, + -0.005197984632104635, + -0.007636617869138718, + -0.034416649490594864, + 0.017246123403310776, + -0.05843924358487129, + 0.061734963208436966, + 0.020197812467813492, + -0.03596042841672897, + 0.03068762645125389, + 0.02124682068824768, + -0.00851636566221714, + -0.0035167078021913767, + 0.03958652541041374, + 0.005482410546392202, + 0.015273462049663067, + 0.009502838365733624, + -0.021167708560824394, + 0.009155708365142345, + -0.010788993909955025, + -0.019722433760762215, + -0.00449925335124135, + 0.006383542902767658, + 0.041115254163742065, + -0.0020188677590340376, + -0.0035169608891010284, + 0.06737574189901352, + 0.03329287841916084, + 0.054614875465631485, + 0.05429639294743538, + -0.005683468654751778, + -0.025111429393291473, + -0.0332597941160202, + 0.00575034786015749, + 0.028251521289348602, + -0.04076411575078964, + -0.026751460507512093, + 0.05724131688475609, + -0.010425353422760963, + 0.0064006042666733265, + 0.029370693489909172, + 0.016690896824002266, + -0.020828252658247948, + -0.022130222991108894, + 0.017070826143026352, + -0.03691887483000755, + -0.006917948368936777, + 0.009818704798817635, + -0.01121774222701788, + -0.01836485043168068, + -0.02696908265352249, + 0.007403022143989801, + -0.019645217806100845, + 0.031101232394576073, + 0.03602728620171547, + -0.017328020185232162, + -0.03300391510128975, + -0.004782564472407103, + -0.025221316143870354, + -0.07008904218673706, + -0.018833192065358162, + 0.007763809058815241, + -0.0008687591762281954, + -0.01671789400279522, + 0.0070656780153512955, + 0.026745252311229706, + -0.004930767696350813, + 0.0014887782745063305, + 0.08004070818424225, + -0.011883949860930443, + -0.03342212364077568, + 0.00269148638471961, + 0.043544236570596695, + 0.024449994787573814, + 0.022907061502337456, + -0.010875299572944641, + -0.03277214616537094, + -0.04108656570315361, + 0.016669126227498055, + -0.011335477232933044, + -0.007943053729832172, + -0.02354133129119873, + 0.011823512613773346, + -0.02295760251581669, + 0.029614606872200966, + 0.03644883632659912, + -0.03268497809767723, + -0.019744234159588814, + 0.029856108129024506, + -0.009486397728323936, + 0.0076071638613939285, + 0.02289869450032711, + -0.022632647305727005, + 0.049533769488334656, + 0.010420011356472969, + -0.008946498855948448, + 0.05682490020990372, + -0.004320160020142794, + -0.039050329476594925, + 0.01870300993323326, + 0.00840431172400713, + -0.03831496089696884, + 0.009650382213294506, + -0.028824377804994583, + -0.01234703790396452, + 0.020097406581044197, + 0.01098698191344738, + -0.010982919484376907, + 0.024505844339728355, + -0.04432670772075653, + 0.005065002012997866, + 0.004913314711302519, + 0.028894223272800446, + 0.010174371302127838, + 0.03703121840953827, + 0.020431945100426674, + -0.02568036876618862, + -0.0010261553106829524, + -0.013747132383286953, + 0.025053830817341805, + 0.06297685950994492, + 0.026197565719485283, + 0.0832325741648674, + -0.04652231186628342, + -0.026209643110632896, + 0.02130981720983982, + 0.00392608717083931, + -0.037288106977939606, + -0.005453631281852722, + -0.005685068666934967, + -0.01276393048465252, + -0.004109363537281752, + 0.027807150036096573, + -0.02020644210278988, + 0.01677335798740387, + -0.06514111906290054, + -0.032816290855407715, + -0.004697398282587528, + 0.03631902113556862, + -0.021699361503124237, + -0.025555768981575966, + -0.01092538796365261, + -0.03328504413366318, + 0.08568538725376129, + -0.024953991174697876, + -0.014635419473052025, + -0.030112197622656822, + 0.022062942385673523, + -0.010590997524559498, + -0.036314573138952255, + 0.0009369865292683244, + 0.02508162334561348, + -0.005507922265678644, + -0.0032447371631860733, + -0.03963964432477951, + 0.018353234976530075, + 0.024275891482830048, + -0.013194708153605461, + -0.01889444701373577, + -0.009749420918524265, + -0.010556340217590332, + -0.015403552912175655, + 0.007417857646942139, + 0.033059004694223404, + 0.019362084567546844, + 0.022019287571310997, + -0.05228915065526962, + -0.026544488966464996, + -0.005766808055341244, + -0.0620383620262146, + 0.03598726540803909, + -0.027218464761972427, + -0.07571155577898026, + 0.012922476045787334, + 0.025145234540104866, + -0.02176603116095066, + -0.025838548317551613, + -0.022077538073062897, + 0.006405866704881191, + 0.0010698579717427492, + 0.005149745848029852, + -0.024012187495827675, + 0.04445355013012886, + -0.007342204451560974, + -0.004228690173476934, + 0.09553864598274231, + 0.017752032727003098, + -0.031163938343524933, + -0.05949064716696739, + 0.03450947254896164, + 0.07747593522071838, + 0.031238840892910957, + -0.051155220717191696, + 0.05431748554110527, + -0.015295782126486301, + -0.013944631442427635, + 0.030804218724370003, + 0.022765442728996277, + -0.01412946917116642, + -0.041424140334129333, + 0.042611584067344666, + -0.01062207855284214, + 0.009138934314250946, + -0.01918511651456356, + 0.012056993320584297, + -0.024765338748693466, + -0.023064754903316498, + 0.016685830429196358, + -0.016295742243528366, + -0.007911751046776772, + -0.021329406648874283, + 0.013377811759710312, + -0.00969119556248188, + 0.003086296608671546, + 0.017756730318069458, + -0.006183317396789789, + -0.08526446670293808, + -0.0053648389875888824, + 0.0019171488238498569, + 0.04373973608016968, + -0.009599480777978897, + 0.004401530604809523, + -0.003921370021998882, + -0.011865646578371525, + -0.020396623760461807, + -0.015443474985659122, + 0.0052718715742230415, + -0.03414149954915047, + 0.04492470994591713, + -0.025046145543456078, + -0.04188431054353714, + -0.011026831343770027, + 0.02920995093882084, + -0.05131369084119797, + 0.045703187584877014, + 0.01852087862789631, + 0.035643212497234344, + -0.03239735588431358, + -0.008767726831138134, + -0.055368147790431976, + 0.024111386388540268, + -0.06258498132228851, + 0.04057617485523224, + -0.0007710692007094622, + 0.023526154458522797, + -0.06810440868139267, + 0.012921485118567944, + 0.006400393787771463, + 0.003822899656370282, + 0.0036112952511757612, + 0.030289730057120323, + -0.051776446402072906, + 0.04031779244542122, + -0.06243102625012398, + 0.02833733707666397, + 0.032865025103092194, + -0.012758833356201649, + -0.005976573098450899, + -0.015185958705842495, + -0.03554176911711693, + -0.04490198940038681, + -0.013763386756181717, + 0.020226119086146355, + -0.01461972575634718, + 0.012819451279938221, + 0.05392532795667648, + 0.02858515828847885, + -0.009519970044493675, + -0.010786541737616062, + -0.016530660912394524, + -0.014850147068500519, + -0.1479721963405609, + 0.05525072291493416, + -0.016294682398438454, + -0.006126986816525459, + -0.035388682037591934, + -0.0020416181068867445, + -0.004991733469069004, + -0.042536959052085876, + -0.029295539483428, + -0.03342592716217041, + -0.05175209417939186, + -0.01934623159468174, + 0.046949565410614014, + -0.027564018964767456, + 0.008040896616876125, + -0.0008471597102470696, + -0.0017086862353608012, + 0.005880970507860184, + -0.016262143850326538, + 0.015662401914596558, + 0.017809299752116203, + -0.03047403320670128, + 0.011353292502462864, + 0.013240066356956959, + -0.0006715162307955325, + -0.003782401094213128, + 0.000322983629303053, + 0.06121513620018959, + -0.01694471761584282, + -0.06857419013977051, + -0.0402299202978611, + 0.010696298442780972, + 0.028177939355373383, + 0.0551578588783741, + 0.03850799798965454, + -0.01591702550649643, + 0.0012383784633129835, + 0.019345594570040703, + 0.017405804246664047, + 0.0026504581328481436, + 0.014394783414900303, + 0.012231457978487015, + -0.0651102140545845, + 0.03347824886441231, + 0.02028745226562023, + 0.015851430594921112, + 0.007159620989114046, + -0.010209621861577034, + 0.010268837213516235, + -0.021859919652342796, + 0.026041045784950256, + 0.05489955469965935, + 0.007202570792287588, + 0.026414500549435616, + 0.031194815412163734, + 0.006121601443737745, + -0.03962800279259682, + -0.016699429601430893, + -0.033876217901706696, + 0.036106910556554794, + 0.007294339593499899, + 0.008504943922162056, + -0.036806296557188034, + -0.08840183913707733, + -0.03179707005620003, + 0.022715862840414047, + -0.030469601973891258, + -0.0073941610753536224, + -0.0130001874640584, + 0.010087219998240471, + -0.013786506839096546, + -0.03632858023047447, + -0.022770550101995468, + -0.04971632733941078, + 0.01665368117392063, + -0.021101439371705055, + 0.007031215820461512, + -0.012498456053435802, + -0.018336445093154907, + -0.03907812014222145, + -0.057586003094911575, + 0.022792400792241096, + 0.0008079472463577986, + -0.013577990233898163, + 0.0384189710021019, + 0.013683189637959003, + -0.04486227408051491, + 0.000887659436557442, + -0.04492843523621559, + 0.02515994943678379, + -0.03700009733438492, + -0.07494086027145386, + 0.04150669276714325, + 0.019745197147130966, + -0.005109486635774374, + 0.03949523717164993, + -0.02579505182802677, + 0.0011114272056147456, + 0.01622699946165085, + -0.04101800546050072, + 0.01671340875327587, + -0.034019794315099716, + 0.011453891173005104, + 0.021834280341863632, + -0.022755932062864304, + 0.03457707166671753, + -0.012205556966364384, + 0.004186382982879877, + -0.012286977842450142, + 0.018620925024151802, + 0.009730824269354343, + -0.009458533488214016, + 0.022189386188983917, + 0.029717911034822464, + -0.011186808347702026, + -0.006641475949436426, + -0.0006696327473036945, + 0.05565381422638893, + 0.01703016459941864, + -0.06903581321239471, + 0.012022542767226696, + 0.013726776465773582, + 0.044590212404727936, + -0.03572563827037811, + 0.05880844593048096, + -0.013858325779438019, + -0.030181042850017548, + 0.00852812547236681, + 0.015562199056148529, + 0.022837692871689796, + 0.01642996072769165, + -0.0377114899456501, + 0.005234466399997473, + 0.049203284084796906, + 0.05407309532165527, + -0.0132024846971035, + -0.019959840923547745, + 0.008814812637865543, + -0.06165064126253128, + -0.034533705562353134, + -0.04953240230679512, + -0.026787124574184418, + 0.016764933243393898, + -0.04478802531957626, + 3.410765202715993e-06, + 0.03281426057219505, + 0.004082700703293085, + 0.010566992685198784, + 0.028201904147863388, + -0.017545172944664955, + -0.01039605587720871, + -0.0027931660879403353, + -0.027222739532589912, + 0.01583237573504448, + -0.06000902131199837, + 0.035093095153570175, + 0.0024351913016289473, + -0.02960526943206787, + -0.02077464759349823, + 0.00890013761818409, + -0.02143317274749279, + -0.008572416380047798, + 0.025986775755882263, + -0.00750763388350606, + -8.786321996012703e-05, + -0.020446572452783585, + -0.01956390030682087, + -0.013216737657785416, + -0.01710457168519497, + -0.03204994648694992, + -0.029585914686322212, + 0.0393281951546669, + -0.01326220203191042, + -0.02440490759909153, + 0.018493061885237694, + -0.02740897424519062, + 0.01629628986120224, + -0.020057424902915955, + 0.06287900358438492, + 0.01042868196964264, + -0.017377911135554314, + 0.010404015891253948, + 0.047205448150634766, + -0.026541154831647873, + 0.02141600102186203, + 0.030525702983140945, + -0.007847975008189678, + 0.02798195369541645, + 0.02421029843389988, + -0.008464472368359566, + -0.019928831607103348, + -0.03586854413151741, + 0.011782243847846985, + 0.00708906352519989, + 0.006022334564477205, + -0.009212757460772991, + -0.005944519769400358, + 0.015798691660165787, + 0.005129538476467133, + 0.004966496489942074, + -0.0004405617655720562, + -0.012537729926407337, + -0.04807188734412193, + 0.00470155943185091, + 0.008866244927048683, + -0.025987179949879646, + -0.010920996777713299, + 0.03823893889784813, + 0.04656044393777847, + 0.027927715331315994, + -0.029648464173078537, + -0.006574230268597603, + -0.04739527031779289, + -0.007530153729021549, + -0.01889883726835251, + -0.0043190475553274155, + -0.011231491342186928, + 0.013169470243155956, + 0.021485069766640663, + 0.021147673949599266, + 0.027682442218065262, + 0.039356622844934464, + -0.0033232036512345076, + -0.052663404494524, + -0.007751387543976307, + -0.010947766713798046, + -0.04409409686923027, + 0.007421528454869986, + 0.0013665275182574987, + -0.01724105514585972, + -0.00813958328217268, + -0.04035617783665657, + -0.023921100422739983, + 0.03123232163488865, + 0.03835291787981987, + -0.0032395997550338507, + 0.05339835584163666, + 0.01532464474439621, + -0.023356463760137558, + 0.024117808789014816, + 0.02108667604625225, + 0.036649543792009354, + -0.02293292246758938, + -0.02012684755027294 + ], + "start_index": 0, + "end_index": 80, + "token_count": 25, + "file_type": "avap_code", + "filename": "limpieza_de_strings.avap", + "addResult": true, + "replace": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "01714abd-7a89-5b09-b5ff-458f10af36d8", + "_source": { + "text": "addParam(\"emails\", emails)\ngetQueryParamList(\"lista_correos\", lista_correos)\naddResult(lista_correos)", + "embedding": [ + -0.027936259284615517, + -0.007692413870245218, + 0.012941678054630756, + 9.375994704896584e-05, + -0.03828471526503563, + -0.020366420969367027, + -0.004557539708912373, + 0.03651614114642143, + -0.03797277435660362, + -0.03364400938153267, + -0.00815195869654417, + 0.024551132693886757, + -0.025795545428991318, + 0.01499208528548479, + -0.0020701326429843903, + 0.025692220777273178, + 0.011705033481121063, + 0.004591426346451044, + -0.0034993391018360853, + -0.03634479641914368, + -0.013248319737613201, + 0.0015694970497861505, + 0.017628183588385582, + 0.015648087486624718, + -0.018158555030822754, + -0.03371036797761917, + 0.00707931537181139, + -0.020533118396997452, + -0.02577892877161503, + -0.019495274871587753, + -0.02963174693286419, + -0.027747714892029762, + 0.01541791670024395, + -0.05457102134823799, + -0.002431470202282071, + 0.03286668285727501, + -0.013850959949195385, + -0.04933110624551773, + -0.046737346798181534, + 0.029547687619924545, + -0.022047793492674828, + -0.011533965356647968, + 0.014236759394407272, + -0.05682488903403282, + 0.01623920165002346, + 0.02744928188621998, + 0.002876147860661149, + -0.005850637797266245, + -0.0320884995162487, + -0.05649444833397865, + -0.008235417306423187, + 0.030529681593179703, + 0.0641947016119957, + -0.04539396986365318, + -0.01176918763667345, + 0.036569371819496155, + -0.04511870816349983, + 0.020262954756617546, + -0.039574358612298965, + -0.04595792293548584, + -0.028778938576579094, + -0.010303929448127747, + -0.08919193595647812, + 0.017679952085018158, + 0.003367549739778042, + 0.033341631293296814, + 0.012550155632197857, + 0.020302867516875267, + -0.009144055657088757, + 0.0037982689682394266, + 0.01928882859647274, + 0.021388456225395203, + 0.02022084966301918, + -0.0379425510764122, + -0.04422265291213989, + -0.033427171409130096, + 0.030634766444563866, + -0.011234786361455917, + -0.024085115641355515, + -0.01153209712356329, + -0.007572302594780922, + -0.03673077002167702, + 0.03425019606947899, + -0.005914065986871719, + -0.007500134874135256, + 0.026998110115528107, + 0.0075737303122878075, + 0.023953767493367195, + -0.013053370639681816, + 0.02829054370522499, + -0.01624840497970581, + 0.005390811711549759, + -0.004433045629411936, + -0.04843224212527275, + -0.01069909892976284, + -0.03598801791667938, + 0.03405584767460823, + -0.00696195475757122, + 0.044265978038311005, + 0.011348915286362171, + -0.005723655689507723, + 0.04591931402683258, + 0.027908403426408768, + -0.00029144983272999525, + 0.028825270012021065, + 0.012435490265488625, + 0.005619330331683159, + -0.028504889458417892, + 0.04657761752605438, + 0.0010303145973011851, + 0.015432441607117653, + 0.013530741445720196, + 0.005204260814934969, + 0.0012195694725960493, + 0.015445717610418797, + -0.03590814024209976, + -0.006447878200560808, + -0.018961910158395767, + 0.026894671842455864, + 0.013027302920818329, + 0.03535814583301544, + -0.009726435877382755, + 0.06086844578385353, + 0.01354062557220459, + -0.02566741593182087, + 0.02556608058512211, + 0.00018980231834575534, + 0.022231437265872955, + -0.006837702821940184, + 0.007176443934440613, + 0.034436970949172974, + 0.006502985022962093, + 0.005985247436910868, + 0.00775730237364769, + -0.027987247332930565, + -0.009520651772618294, + -0.025991026312112808, + 0.03823603317141533, + 0.03335371986031532, + -0.0751788392663002, + 0.02850155532360077, + 0.04080178961157799, + 0.0240396186709404, + 0.005227013025432825, + 0.016667073592543602, + -0.053151413798332214, + 0.03350990638136864, + 0.003790630027651787, + -0.007671387866139412, + -0.06121218577027321, + 0.008875483646988869, + 0.021883223205804825, + 0.02101009525358677, + 0.022347165271639824, + 0.02525581791996956, + -0.03293532133102417, + 0.0229578148573637, + -0.011580283753573895, + 0.025975456461310387, + 0.019651198759675026, + 0.01809414103627205, + 0.0358739010989666, + -0.019588449969887733, + 0.007517183665186167, + -0.011582585982978344, + -0.039060503244400024, + 0.04036152362823486, + -0.025205865502357483, + -0.01203259639441967, + -0.018322832882404327, + 0.02581833302974701, + -0.02976539358496666, + -0.011277432553470135, + 0.017412519082427025, + -0.02948133833706379, + 0.018569180741906166, + 0.058043222874403, + 0.00570155493915081, + 0.006174839101731777, + -0.04931587725877762, + -0.014466913416981697, + -0.033427562564611435, + -0.022507427260279655, + -0.04953595623373985, + -0.014140377752482891, + 0.028359781950712204, + 0.01734674535691738, + -0.03614223003387451, + 0.00255616195499897, + 0.030711306259036064, + -0.026797616854310036, + -0.07147519290447235, + 0.07506009936332703, + 0.0031866426579654217, + 0.03456947207450867, + 0.0020672092214226723, + 0.024296145886182785, + 0.022456742823123932, + -0.014298677444458008, + -0.0042255949229002, + -0.023649713024497032, + 0.03153042495250702, + 0.012596627697348595, + -0.015051648020744324, + 0.0029859431087970734, + -0.019886279478669167, + 0.02697683870792389, + -0.06072116643190384, + -0.0012085253838449717, + -0.0050073787569999695, + 0.060283858329057693, + 0.02198486588895321, + -0.10069707781076431, + 0.03600730001926422, + -0.01800733618438244, + -0.014184058643877506, + -0.009311727248132229, + 0.005280320066958666, + -0.02135371044278145, + -0.017810989171266556, + -0.01049700565636158, + 0.0520024336874485, + 0.0007024024380370975, + 0.08118869364261627, + -0.0017953424248844385, + -0.012662569060921669, + 0.01009846106171608, + 0.015620182268321514, + -0.06365371495485306, + -0.012467855587601662, + 0.011766627430915833, + 0.03851483389735222, + 0.001560283126309514, + -0.014912680722773075, + 0.004591057542711496, + -0.04756244271993637, + 0.039284173399209976, + 0.03666471317410469, + 0.007118433713912964, + 0.028787048533558846, + -0.03457985073328018, + -0.034717053174972534, + 0.007373256143182516, + -0.012921677902340889, + -0.024371115490794182, + 0.0014746163506060839, + 0.020825540646910667, + 0.06071259826421738, + -0.050863515585660934, + -0.02689971774816513, + -0.057867567986249924, + 0.002165975281968713, + -0.01797301322221756, + -0.007900654338300228, + -0.028154460713267326, + -0.009055346250534058, + 0.03930063545703888, + -0.009227266535162926, + 0.0024979673326015472, + 0.023073403164744377, + 0.03285455331206322, + 0.02463485114276409, + -0.012658528052270412, + 0.022516800090670586, + 0.028328120708465576, + -0.007017516531050205, + 0.01896524801850319, + 0.029041625559329987, + 0.0059115285985171795, + -0.03223786875605583, + 0.021556498482823372, + -0.04952613264322281, + 0.014310711994767189, + -0.02356247417628765, + -0.0035532088950276375, + 0.01033822726458311, + -0.021069664508104324, + -0.0170240867882967, + 0.09462227672338486, + 0.007211962714791298, + -0.005011816043406725, + 0.01934034191071987, + 0.0005065061850473285, + 0.018064258620142937, + 0.06461740285158157, + -0.021973177790641785, + -0.0011970028281211853, + -0.0024134672712534666, + 0.03488682210445404, + -0.05336179584264755, + -0.03638982027769089, + 0.024986715987324715, + 0.07168908417224884, + 0.0037414412945508957, + 0.03004823811352253, + 0.026139425113797188, + 0.011745813302695751, + -0.14579389989376068, + -0.038649674504995346, + -0.003338211914524436, + -0.013634881004691124, + -0.015344689600169659, + 0.007770412601530552, + -0.020660249516367912, + 0.018886204808950424, + -0.02709101513028145, + 0.03053869865834713, + -0.027566635981202126, + -0.05197007209062576, + -0.03151620179414749, + -0.03901415318250656, + -0.0034789477940648794, + 0.0056152623146772385, + -0.04684634879231453, + 0.03269578516483307, + -0.026515664532780647, + -0.03267423436045647, + -0.03596701845526695, + -0.06919354945421219, + 0.0036574171390384436, + -0.01386153046041727, + -0.041019514203071594, + -0.04347662255167961, + -0.008445012383162975, + -0.02765551581978798, + -0.023940077051520348, + 0.03146858885884285, + -0.00702735036611557, + 0.026533206924796104, + 0.008295422419905663, + -0.007652763742953539, + -0.05541539564728737, + 0.008871146477758884, + 0.014622865244746208, + 0.015211655758321285, + 0.013221860863268375, + -0.006450470071285963, + 0.031905610114336014, + 0.007767746224999428, + 0.006523433141410351, + 0.0011315749725326896, + -0.011881791055202484, + 0.05660482496023178, + 0.021827271208167076, + 0.004049242474138737, + -0.09133777022361755, + -0.012911786325275898, + -0.013559235259890556, + -0.06336624175310135, + 0.016778089106082916, + -0.009014044888317585, + -0.050971079617738724, + 0.01001482829451561, + -0.038386885076761246, + 0.007462180219590664, + 0.020926835015416145, + 0.03366224467754364, + -0.03730201721191406, + -0.04940319061279297, + -0.011153314262628555, + -0.011980823241174221, + 0.005162266083061695, + -0.004724997095763683, + 0.055704981088638306, + 0.019257811829447746, + 0.05985782667994499, + -0.02315988577902317, + 0.053741373121738434, + 0.010564358904957771, + -0.015214353799819946, + 0.004394887946546078, + -0.0014302099589258432, + 0.017416300252079964, + -0.03497624024748802, + -0.003827549982815981, + -0.005752549506723881, + -0.08063431829214096, + -0.021334543824195862, + -0.01130993664264679, + 0.0012308771256357431, + 0.042557455599308014, + -0.049030475318431854, + -0.03160089999437332, + 0.0021160629112273455, + 0.019690265879034996, + 0.0538032166659832, + 0.21586047112941742, + 0.005918620154261589, + 0.03066699579358101, + 0.03981132432818413, + -0.0008299475884996355, + -0.016391919925808907, + 0.00923068355768919, + 0.01700223796069622, + -0.005048772320151329, + -0.008280138485133648, + 0.06036396697163582, + 0.019630176946520805, + -0.02673821523785591, + -0.00945926271378994, + 0.016945544630289078, + 0.04236677289009094, + -0.01931137591600418, + 0.0009953303961083293, + 0.0436227023601532, + 0.026746954768896103, + 0.008042121306061745, + -0.008868715725839138, + -0.08790730684995651, + -0.0003276373026892543, + -0.05449242889881134, + -0.06051944941282272, + -0.034016355872154236, + -0.007575026713311672, + -0.01151958666741848, + 0.031448427587747574, + -0.027890803292393684, + -0.0004657316312659532, + 0.05716010928153992, + 0.03231167048215866, + -0.017013853415846825, + -0.010027308948338032, + 0.02086039073765278, + 0.026554718613624573, + -0.0017418417846783996, + 0.011120283044874668, + 0.03464552387595177, + -0.012613674625754356, + 0.009564578533172607, + 0.10380648076534271, + -0.006388260517269373, + -0.0005445690476335585, + 0.005908184684813023, + -0.012317695654928684, + -0.036826543509960175, + -0.052318062633275986, + 0.0053873611614108086, + -0.03477470204234123, + -0.005490852519869804, + -0.011881907470524311, + -0.004449981264770031, + -0.013692674227058887, + 0.026738744229078293, + 0.03602646291255951, + -0.054348357021808624, + 0.04726652428507805, + 0.05511143431067467, + -0.012096907943487167, + 0.03888707235455513, + -0.001965974923223257, + -0.024570416659116745, + 0.024046821519732475, + 0.058805372565984726, + -0.006390862632542849, + 0.01630362868309021, + 0.04036173224449158, + -0.03213278949260712, + 0.015102461911737919, + 0.04936474189162254, + -0.0030071460641920567, + -0.006382797844707966, + -0.046904854476451874, + 0.03359605371952057, + 0.013133743777871132, + -0.02200402319431305, + 0.03312412276864052, + -0.027754396200180054, + 0.006696757394820452, + -0.05795329064130783, + 0.08680982887744904, + 0.00014999476843513548, + 0.023193517699837685, + 0.018550178036093712, + 0.03992956876754761, + -0.011116549372673035, + 0.01961333677172661, + 0.001192939467728138, + 0.004921807907521725, + -0.005153528414666653, + 0.003938921261578798, + -0.006498786620795727, + 0.0159707423299551, + 0.013542433269321918, + 0.017588365823030472, + -0.019693385809659958, + 0.013661294244229794, + -0.05742192640900612, + 0.008804052136838436, + 0.009589418768882751, + -0.006642144639045, + 0.028250396251678467, + -0.07517004758119583, + 0.027067719027400017, + -0.013775867410004139, + -0.031869594007730484, + -0.0051994845271110535, + -0.06216030940413475, + 0.041435468941926956, + 0.002515908796340227, + 0.009102174080908298, + 0.01262431126087904, + 0.028857380151748657, + 0.027548016980290413, + 0.036985620856285095, + 0.031614650040864944, + -0.012685658410191536, + -0.02697525918483734, + -0.008361190557479858, + -0.017623212188482285, + 0.02352861315011978, + 0.011385152116417885, + -0.07819018512964249, + 0.02368796430528164, + 0.037389494478702545, + -0.031037069857120514, + 0.012176653370261192, + 0.02500120922923088, + -0.02008982002735138, + -0.004811908584088087, + -0.02150239609181881, + 0.04076603427529335, + -0.014958144165575504, + 0.07661149650812149, + 0.01235743798315525, + 0.020161867141723633, + 0.04602719098329544, + -0.046833351254463196, + -0.021321317180991173, + -0.01248218771070242, + -0.01085318997502327, + 0.016112416982650757, + -0.012142149731516838, + -0.0007324226899072528, + -0.017531201243400574, + 0.004733969923108816, + 0.018098941072821617, + 0.02817380242049694, + 0.08042842894792557, + 0.051487408578395844, + -0.029193492606282234, + 0.024677814915776253, + -0.057675231248140335, + 0.01665199175477028, + 0.0056755817495286465, + -0.005423730239272118, + -0.027066323906183243, + 0.005898354109376669, + 0.03441920876502991, + -0.01182623766362667, + 0.04380897060036659, + -0.03372578322887421, + -0.050078101456165314, + 0.0008067068993113935, + 0.01630307547748089, + -0.010974247008562088, + -0.013951071538031101, + 0.001017630216665566, + -0.056134432554244995, + -0.05131352320313454, + 0.013338474556803703, + 0.02821197919547558, + 0.02620193175971508, + 0.007707448210567236, + -0.013556878082454205, + 0.0034396674018353224, + -0.018053611740469933, + 0.014670321717858315, + -0.013534236699342728, + 0.01072674710303545, + -0.0018042454030364752, + 0.04363763704895973, + 0.001079115434549749, + -0.003512265393510461, + 0.01798176020383835, + 0.04406450688838959, + -0.005976206157356501, + -0.01143295131623745, + 0.07835730910301208, + 0.018781132996082306, + -0.03829425573348999, + 0.021677536889910698, + 0.0781780257821083, + 0.04401310160756111, + 0.007666186895221472, + -0.008665747940540314, + -0.020193759351968765, + -0.01743938960134983, + -0.005651229526847601, + -0.008426744490861893, + -0.008078659884631634, + -0.016372572630643845, + -0.008443493396043777, + -0.017451509833335876, + 0.01742127537727356, + 0.026756498962640762, + -0.03732288256287575, + 0.0005897969822399318, + 0.02888554148375988, + -0.0688856840133667, + 0.0017515794606879354, + -0.00040770237683318555, + -0.00919096264988184, + 0.04607752710580826, + -0.018348561599850655, + -0.03816124424338341, + 0.014658685773611069, + -0.0038856156170368195, + -0.037225108593702316, + 0.003652809886261821, + 0.02440541237592697, + -0.047368764877319336, + 0.042828142642974854, + 0.0175168476998806, + 0.022850099951028824, + -0.06856280565261841, + -0.0118141770362854, + -0.016878096386790276, + -0.043458208441734314, + 0.03573489189147949, + 0.005384115967899561, + 0.015271118842065334, + 0.022307859733700752, + 0.01098895538598299, + 0.05080035701394081, + 0.007429664954543114, + -0.011076460592448711, + -0.011124650947749615, + -0.019066359847784042, + 0.07266464084386826, + 0.061287783086299896, + 0.010109132155776024, + 0.09270202368497849, + -0.06935105472803116, + -0.007387801073491573, + 0.02314622700214386, + 0.04548657312989235, + -0.02185339294373989, + -0.0246109776198864, + -0.019782779738307, + -0.008341529406607151, + 0.052108246833086014, + 0.0029402789659798145, + -0.045485157519578934, + 0.03125042840838432, + -0.018550731241703033, + -0.003612791420891881, + 0.0017381334910169244, + 0.017536774277687073, + -0.000896773359272629, + -0.011407120153307915, + 0.0016729442868381739, + -0.06403611600399017, + 0.03308050334453583, + -0.015376110561192036, + -0.03576045483350754, + 0.011441588401794434, + -0.007566067855805159, + -0.0026890768203884363, + -0.020352251827716827, + -0.06197049841284752, + 0.04369092360138893, + -0.004036853555589914, + -0.0339537113904953, + -0.010053765960037708, + 0.03881479427218437, + -0.004066911526024342, + -0.02961142174899578, + -0.026993796229362488, + -0.004903287626802921, + 0.026073511689901352, + 0.04138367250561714, + -0.004378397483378649, + 0.032911211252212524, + 0.03286731243133545, + -0.0020221981685608625, + -0.042402368038892746, + -0.007725733797997236, + 0.001732632052153349, + -0.03421926125884056, + 0.09842156618833542, + -0.031289972364902496, + -0.04579770192503929, + -0.03274661302566528, + 0.012969772331416607, + 0.003185131587088108, + 0.01822904869914055, + -0.00338580459356308, + 0.012253192253410816, + -0.013948584906756878, + 0.015252185985445976, + -0.036118295043706894, + 0.013704519718885422, + -0.028278999030590057, + -0.016800925135612488, + 0.006612823344767094, + 0.044907260686159134, + -0.008682695217430592, + -0.06515416502952576, + 0.012761851772665977, + 0.044026363641023636, + 0.0420355387032032, + -0.011181791312992573, + 0.05902169272303581, + -6.0802143707405776e-05, + -0.02246299758553505, + -0.005774401128292084, + -0.0014993837103247643, + -0.04353976622223854, + -0.02766503393650055, + 0.01150488667190075, + -0.016460949555039406, + -0.0070478650741279125, + -0.039089642465114594, + -0.00761099299415946, + -0.020340247079730034, + -0.0005896390648558736, + -0.03138653561472893, + -0.01846548169851303, + 0.0021843034774065018, + 0.015326128341257572, + -0.04602804780006409, + -0.03897428885102272, + 0.04340376704931259, + 0.015565423294901848, + -0.02668871358036995, + -0.007282389793545008, + -0.01754024438560009, + 0.02507271245121956, + 0.029744425788521767, + -0.009214667603373528, + 0.012296326458454132, + -0.013161935843527317, + -0.04133123159408569, + 0.004548663739115, + -0.04123978316783905, + 0.005950592458248138, + -0.0030439975671470165, + 0.008861251175403595, + -0.028787868097424507, + -0.057737432420253754, + -0.0059990291483700275, + -0.03659199923276901, + -0.02122381329536438, + 0.004096562042832375, + 0.06411009281873703, + 0.017721757292747498, + -0.053490810096263885, + 0.0104867834597826, + -0.04039926081895828, + 0.019337791949510574, + -0.05558859556913376, + 0.012929066084325314, + 0.015868809074163437, + 0.01688532717525959, + -0.025461062788963318, + -0.017761001363396645, + 0.004642793908715248, + 0.004104473628103733, + 0.006123282015323639, + 0.04276493191719055, + -0.02899700403213501, + 0.04103987291455269, + -0.022013923153281212, + -0.023389218375086784, + 0.013795516453683376, + -0.059804271906614304, + 0.0019537059124559164, + -0.024775108322501183, + -0.016111403703689575, + -0.051030635833740234, + -0.013953647576272488, + 0.018237056210637093, + 0.00411310326308012, + 0.00470639206469059, + 0.05070297047495842, + 0.020175691694021225, + -0.007408788427710533, + -0.011568677611649036, + -0.0447610579431057, + -0.009877185337245464, + -0.12381047010421753, + 0.022867359220981598, + -0.004739494528621435, + 0.009575541131198406, + -0.02471126802265644, + -0.007275071460753679, + -0.022400548681616783, + -0.030444450676441193, + -0.00880088284611702, + 0.009038377553224564, + -0.03699168190360069, + -0.023425806313753128, + 0.0071664657443761826, + -0.05370684713125229, + 0.026594635099172592, + 0.014552848413586617, + 0.03818536177277565, + -0.030138464644551277, + -0.03096947632730007, + 0.0314822755753994, + -0.01507981214672327, + -0.048295117914676666, + 0.05513247475028038, + 0.041043952107429504, + -0.0006404374144040048, + 0.03115111030638218, + -0.007785981521010399, + 0.03318644315004349, + -0.018256716430187225, + -0.08285541087388992, + -0.026041163131594658, + 0.011523043736815453, + 0.03525163605809212, + 0.0054573058150708675, + 0.0394011028110981, + 0.005850119981914759, + -0.004779994487762451, + 0.01702636294066906, + -0.01587507128715515, + 0.028571084141731262, + 0.009556840173900127, + 0.013860857114195824, + -0.034958068281412125, + -0.0017197129782289267, + 0.010924911126494408, + -0.00045053305802866817, + -0.010377097874879837, + -0.0008592857629992068, + -0.013149494305253029, + -0.019009210169315338, + -0.01132948324084282, + 0.009731589816510677, + 0.01716616004705429, + 0.051591627299785614, + -0.008551869541406631, + -0.04457438737154007, + -0.057430244982242584, + 0.013836941681802273, + -0.006014485843479633, + 0.03833842650055885, + -0.037920769304037094, + 0.04199643433094025, + -0.028422679752111435, + -0.051122598350048065, + -0.027565525844693184, + 0.01892264187335968, + -0.016891105100512505, + -0.00947605911642313, + 0.011639595031738281, + -0.014730938710272312, + -0.020196814090013504, + -0.01096744928508997, + -0.008277887478470802, + -0.018436139449477196, + 0.0032259197905659676, + 0.040256962180137634, + 0.013444764539599419, + 0.0038343442138284445, + -0.022816337645053864, + -0.036375418305397034, + 0.0006651178118772805, + 0.009629343636333942, + -0.036598559468984604, + -0.025880128145217896, + 0.06285407394170761, + -0.00058578239986673, + -0.02388307824730873, + -0.005610440392047167, + -0.062057532370090485, + 0.03838241845369339, + 0.02247149869799614, + -0.11240939050912857, + -0.014606506563723087, + 0.004149953369051218, + -0.01805376447737217, + 0.03639620542526245, + 0.013199623674154282, + 0.04122542962431908, + 0.013426894322037697, + -0.01723388396203518, + 0.013776070438325405, + 4.918946160614723e-06, + 0.030834946781396866, + 0.0004499900678638369, + -0.04138718545436859, + -0.04647589102387428, + 0.013622546568512917, + 0.0017582476139068604, + 0.010499882511794567, + -0.0016150656156241894, + -0.010158254764974117, + 0.02006722427904606, + 0.0029144915752112865, + 0.02523309551179409, + 0.01329771801829338, + -0.009745223447680473, + 0.013308970257639885, + 0.03279591351747513, + 0.010345355607569218, + 0.03073476254940033, + 0.03569290414452553, + -0.0028135860338807106, + 0.034850113093853, + -0.012091859243810177, + 0.046677518635988235, + 0.0026759705506265163, + -0.014917967841029167, + 0.028184475377202034, + 0.0034967304673045874, + -0.013883814215660095, + -0.01599404774606228, + -0.05162316933274269, + 0.016773471608757973, + 0.0036257924512028694, + 0.003961473703384399, + -0.02064235880970955, + -0.024881796911358833, + 0.03438041731715202, + -0.04185797646641731, + -0.0365375354886055, + -0.04182453826069832, + -0.03777090832591057, + 0.028613490983843803, + -0.045534804463386536, + 0.006614453624933958, + 0.06133240461349487, + -0.03571954369544983, + 0.024604331701993942, + -0.04418216645717621, + -0.03790748491883278, + -0.0034198909997940063, + 0.006867090705782175, + 0.010563558898866177, + 0.043020833283662796, + -0.06422284245491028, + 0.018646543845534325, + -0.01903804950416088, + -0.02296135574579239, + 0.018377451226115227, + -0.0068755303509533405, + -0.032120514661073685, + -0.005285435356199741, + 0.019563326612114906, + 0.0016631800681352615, + 0.010017449036240578, + 0.016940748319029808, + -0.029141223058104515, + 0.007282169535756111, + -0.029497062787413597, + 0.0011647114297375083, + -0.043807003647089005, + -0.007452093530446291, + -0.017841951921582222, + -0.008151331916451454, + 0.04396353289484978, + -0.0022907056845724583, + 0.02136160619556904, + -0.0215798020362854, + 0.05126364901661873, + 0.005806875880807638, + -0.03269709274172783, + 0.05003581941127777, + 0.0361659936606884, + -0.02022751420736313, + 0.020452016964554787, + -0.0038768078666180372, + 0.019516637548804283, + 0.020827027037739754, + 0.027255842462182045, + -0.0007396165165118873, + -0.02756623364984989, + 0.005334458313882351, + 0.06657949090003967, + 0.012013145722448826, + 0.02994779497385025, + 0.018765605986118317, + 0.015496475622057915, + 0.03178561478853226, + 0.021376488730311394, + 0.022614048793911934, + -0.0555797815322876, + 0.013275674544274807, + -0.021450432017445564, + -0.007876870222389698, + -0.012129634618759155, + -0.015274692326784134, + 0.013405228964984417, + -0.0027735691983252764, + -0.020401490852236748, + 0.010200840421020985, + -0.03271230682730675, + 0.013975047506392002, + -0.022684140130877495, + 0.012487286701798439, + 0.006766715086996555, + -0.02740507945418358, + 0.009938238188624382, + 0.014634215272963047, + 0.021024513989686966, + 0.01279175654053688, + 0.006739090196788311, + 0.0062708305194973946, + -0.011002386920154095, + -6.391169154085219e-05, + -0.032642632722854614, + -0.03211350739002228, + -0.010212675668299198, + 0.024238597601652145, + 0.006197669077664614, + -0.0007565231062471867, + -0.012945056892931461, + 0.004750378429889679, + 0.027823716402053833, + 0.02780984155833721, + -0.027297545224428177, + 0.03371302783489227, + 0.023458154872059822, + 0.004185052588582039, + -0.0480109341442585, + -0.002676198957487941, + -0.007605379913002253, + 0.010223395191133022, + -0.014861161820590496, + -0.04380788654088974 + ], + "start_index": 0, + "end_index": 101, + "token_count": 28, + "file_type": "avap_code", + "filename": "captura_de_listas_multiples.avap", + "addParam": true, + "addResult": true, + "getQueryParamList": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "4ac03068-5c38-52d7-8d31-891435ff2c53", + "_source": { + "text": "addParam(\"data_list\", mi_lista)\ngetListLen(mi_lista, cantidad)\naddResult(cantidad)", + "embedding": [ + -0.02923821099102497, + -0.022442344576120377, + -0.02368282526731491, + -0.01437829714268446, + -0.03280436620116234, + 0.004466062877327204, + -0.009622718207538128, + 0.04246864840388298, + -0.02673882246017456, + -0.025915326550602913, + -0.02963162399828434, + 0.02127963863313198, + -0.03216876834630966, + 0.022712329402565956, + 0.011323078535497189, + 0.033635519444942474, + 0.023955022916197777, + -0.012099913321435452, + -0.010963319800794125, + -0.006860318128019571, + 0.013573365285992622, + 0.02102317474782467, + 0.003515997203066945, + 0.08237901329994202, + 0.0003124970244243741, + -0.031207740306854248, + 0.036105647683143616, + -0.02722497470676899, + 0.0031971747521311045, + -0.013884232379496098, + 0.013961872085928917, + -0.03302890434861183, + 0.008428940549492836, + -0.09132272750139236, + -0.024789568036794662, + 0.010401771403849125, + -0.014763835817575455, + -0.023798199370503426, + -0.05299406126141548, + 0.03817545995116234, + 0.0013876059092581272, + 0.005517964251339436, + 0.017379241064190865, + -0.04792095720767975, + 0.0383434034883976, + 0.0015567275695502758, + -0.003535543568432331, + -0.010172710753977299, + -0.04531550034880638, + -0.02181856334209442, + 0.013922576792538166, + 0.01685177907347679, + 0.06892379373311996, + -0.03533346205949783, + -0.023892225697636604, + 0.0414220467209816, + -0.04855035990476608, + 0.034863200038671494, + -0.04008425027132034, + -0.031052742153406143, + -0.021325072273612022, + 0.004205605015158653, + -0.06763991713523865, + 0.028173649683594704, + 0.02282785251736641, + 0.03820371255278587, + 0.03198837488889694, + 0.008270181715488434, + -0.003040904179215431, + -0.0014409025898203254, + 0.002999980468302965, + 0.035905174911022186, + 0.012160382233560085, + -0.014168650843203068, + -0.0738304853439331, + -0.009466168470680714, + 0.02615993656218052, + -0.00981836300343275, + -0.03311062231659889, + -0.013223846442997456, + -0.011249416507780552, + -0.004018211271613836, + 0.0023801508359611034, + -0.023991528898477554, + 0.0019527205731719732, + 0.03665789216756821, + -0.0172116756439209, + 0.03777536377310753, + -0.023440342396497726, + 0.039593156427145004, + -0.0019385096384212375, + 0.0009079281007871032, + 0.007184523157775402, + -0.06233537942171097, + 0.009385602548718452, + -0.0467512346804142, + 0.01602133922278881, + 0.02357625588774681, + 0.06069595366716385, + 0.03233087435364723, + 0.02248144894838333, + 0.010679091326892376, + 0.03333532065153122, + -0.0013523615198209882, + 0.05519010126590729, + -0.012848722748458385, + 0.024865219369530678, + -0.031047318130731583, + 0.0014186203479766846, + -0.004088195972144604, + 0.01729031279683113, + 0.001472040661610663, + 0.010625566355884075, + -0.001847648061811924, + -0.004650006536394358, + -0.03500429913401604, + -0.01651952788233757, + -0.011596065945923328, + 0.03439036384224892, + 0.004661796614527702, + 0.052943360060453415, + -0.006206813268363476, + 0.04487578570842743, + -0.010627072304487228, + -0.013077886775135994, + 0.02310001850128174, + -0.009259570389986038, + -0.002194094005972147, + -0.018199613317847252, + 0.024891197681427002, + 0.030153822153806686, + 0.0032746184151619673, + -0.014421051368117332, + 0.021797800436615944, + -0.038280218839645386, + -0.015674090012907982, + -0.01792285591363907, + 0.042660560458898544, + 0.027765976265072823, + -0.05707776919007301, + -0.016420332714915276, + 0.008436347357928753, + -0.004067698027938604, + -0.0220304224640131, + 0.0518004484474659, + -0.02968538925051689, + 0.032906390726566315, + -0.012162258848547935, + -0.005111997481435537, + -0.029907863587141037, + -0.05121449753642082, + 0.04659631475806236, + 0.03440985083580017, + -0.028635885566473007, + 0.05058541148900986, + 0.02595585770905018, + 0.011685132049024105, + 0.037412043660879135, + 5.002874240744859e-05, + 0.012589176185429096, + 0.030448846518993378, + -0.014107942581176758, + -0.02334054373204708, + -0.02860814519226551, + -0.0045838914811611176, + -0.009736164472997189, + 0.025643836706876755, + -0.032674819231033325, + 0.0014621339505538344, + -0.032219529151916504, + 0.044606950134038925, + 0.012655183672904968, + -0.001579018891789019, + -0.009358999319374561, + -0.015488681383430958, + 0.008452099747955799, + 0.045664187520742416, + 0.012720762751996517, + 0.009427601471543312, + -0.049193352460861206, + -0.025107046589255333, + -0.0277018453925848, + -0.04499390348792076, + -0.04288572072982788, + -0.011447320692241192, + 0.04356071725487709, + 0.03466235101222992, + -0.02437615394592285, + 0.0012663030065596104, + 0.037525784224271774, + -0.011651376262307167, + -0.037307411432266235, + 0.07040336728096008, + -0.02706499956548214, + 0.0526064895093441, + -0.008189968764781952, + 0.005303051322698593, + 0.04468429461121559, + -0.02214084565639496, + -0.008734581992030144, + 0.000783833209425211, + 0.012129796668887138, + 0.012709565460681915, + -0.03440602123737335, + -0.029410678893327713, + -0.0001978923537535593, + 0.019576765596866608, + -0.052568309009075165, + -0.0049258749932050705, + -0.02363291010260582, + 0.035302672535181046, + 0.000549944641534239, + -0.07369986176490784, + 0.03651345893740654, + -0.023800579831004143, + -0.011116529814898968, + 0.013253826647996902, + -0.014824585057795048, + -0.020494801923632622, + -0.015863556414842606, + -0.004142554011195898, + 0.06459441781044006, + 0.024119168519973755, + 0.10019409656524658, + -0.0001811844704207033, + -0.01664460077881813, + -0.0021538666915148497, + 0.0059509482234716415, + -0.02682306244969368, + -0.007122672162950039, + -0.030143363401293755, + 0.003580590710043907, + -0.012294032610952854, + -0.029277339577674866, + 0.03099157102406025, + -0.027309246361255646, + 0.03907078132033348, + 0.038119345903396606, + 0.0045286547392606735, + 0.005247777793556452, + -0.04109695181250572, + -0.04194698482751846, + -0.010000883601605892, + 0.01759331114590168, + -0.06562356650829315, + 0.004844232928007841, + 0.02651965245604515, + 0.048940032720565796, + -0.018655827268958092, + -0.00555570051074028, + -0.03119051828980446, + -0.023174835368990898, + -0.052003584802150726, + 0.0013622586848214269, + -0.014719702303409576, + 0.00040469260420650244, + 0.04326978698372841, + -0.021230755373835564, + -0.029659811407327652, + 0.0443849079310894, + 0.016965124756097794, + -0.004940730985254049, + 0.012858465313911438, + 0.022425176575779915, + 0.021092310547828674, + 0.0018833288922905922, + -0.020280716940760612, + 0.010817620903253555, + 0.00915289856493473, + -0.019888566806912422, + 0.01584492065012455, + -0.034648213535547256, + -0.007360212504863739, + 0.020356513559818268, + 0.016506226733326912, + 0.03902885317802429, + -0.005375639069825411, + -0.010373136959969997, + 0.06874648481607437, + 0.0016976528568193316, + -0.017957476899027824, + -0.01754624769091606, + 0.02613978646695614, + -0.014143670909106731, + 0.08261455595493317, + -0.025000859051942825, + 0.02512594498693943, + -0.0038603106513619423, + 0.0400664396584034, + -0.08359432220458984, + -0.03015824221074581, + 0.004543143790215254, + 0.07102230191230774, + 0.013810602948069572, + 0.030365319922566414, + 0.011745309457182884, + 0.0073280637152493, + -0.14605918526649475, + -0.039359595626592636, + -0.006340356543660164, + -0.01802167296409607, + -0.014523913152515888, + 0.0014775886666029692, + -0.02451951801776886, + -0.009701610542833805, + -0.016226280480623245, + 0.018029790371656418, + -0.021521199494600296, + -0.05021614208817482, + 0.015025900676846504, + -0.035759925842285156, + -0.011069998145103455, + -0.025293877348303795, + -0.03587646409869194, + 0.03542044758796692, + -0.011812618002295494, + -0.036311324685811996, + -0.013442041352391243, + -0.062192343175411224, + 0.012515801936388016, + -0.0196879543364048, + -0.04210435599088669, + -0.02409423515200615, + -0.016594067215919495, + 0.01519799418747425, + -0.04221556708216667, + 0.0018471243092790246, + -0.020017320290207863, + 0.0025851381942629814, + 0.0014780564233660698, + 0.017764987424016, + -0.03967168182134628, + 0.016058409586548805, + 0.008758418262004852, + 0.03151433542370796, + -0.008710581809282303, + 0.04287274181842804, + 0.04244145005941391, + 0.004187085200101137, + 0.004282576031982899, + 0.01671626791357994, + 0.0025452037807554007, + 0.03175957500934601, + 0.0031898929737508297, + -0.017020881175994873, + -0.06867516785860062, + -0.01165043655782938, + -4.8544978199061006e-05, + -0.06357346475124359, + 0.021166948601603508, + 0.0009175997111015022, + -0.02985619194805622, + 0.016809821128845215, + -0.04167948290705681, + 0.012004507705569267, + 0.009833764284849167, + 0.0015874343225732446, + -0.038705743849277496, + -0.010785076767206192, + -0.0017620433354750276, + 0.01035471074283123, + -0.011462531983852386, + -0.02952989749610424, + 0.0562945194542408, + 0.04755295440554619, + 0.054489560425281525, + -0.0358976386487484, + 0.057995494455099106, + -0.026071693748235703, + 0.0013113473542034626, + -0.004203537944704294, + 0.06186804547905922, + 0.018053624778985977, + -0.02987201139330864, + -0.03800289332866669, + 0.04879708215594292, + -0.08682546764612198, + -0.02418864332139492, + -3.2699779694667086e-05, + 0.0034712154883891344, + 0.05350574105978012, + 0.0033556041307747364, + -0.023885400965809822, + -0.016615452244877815, + 0.02708735689520836, + 0.043787065893411636, + 0.22808586061000824, + -0.015042787417769432, + 0.007315598428249359, + 0.007482178974896669, + 0.013588028959929943, + -0.010034325532615185, + 0.011309348978102207, + 0.035673242062330246, + -0.022076549008488655, + -0.0346393845975399, + 0.03531727194786072, + 0.028554273769259453, + -0.016577057540416718, + -0.016946665942668915, + -0.004021223168820143, + 0.04273935407400131, + -0.0399131178855896, + 0.0037685981951653957, + 0.04528777673840523, + 0.0015915700932964683, + 0.02848469838500023, + -0.02411499060690403, + -0.11000166088342667, + 0.0006453680107370019, + -0.052061717957258224, + -0.05427587777376175, + -0.010964367538690567, + -0.028707174584269524, + -0.005538934376090765, + 0.001772011280991137, + -0.02420392446219921, + 0.0030243610963225365, + 0.0563715435564518, + -0.023714175447821617, + 0.02392042987048626, + 0.009609004482626915, + 0.02407309040427208, + 0.0189035777002573, + -0.018178824335336685, + 0.043576352298259735, + 0.031646791845560074, + -0.023286735638976097, + 0.00010643753921613097, + 0.05959516018629074, + -0.008180486038327217, + -0.0234767347574234, + 0.03680305927991867, + -0.004935542121529579, + -0.011628489010035992, + -0.021529091522097588, + 0.013639467768371105, + -0.047015972435474396, + -0.025448881089687347, + -0.010945834219455719, + 0.013508381322026253, + -0.014077099971473217, + 0.013484729453921318, + 0.05611231550574303, + -0.04403295740485191, + 0.03718426451086998, + 0.04475707188248634, + -0.0026516723446547985, + 0.001003265380859375, + -0.0014569505583494902, + -0.039442650973796844, + 0.003201973857358098, + 0.04448960721492767, + 0.0012612134451046586, + 0.00074708869215101, + 0.028997698798775673, + -0.02284483052790165, + -0.0006406114553101361, + 0.010121896862983704, + 0.004077160265296698, + -0.014515465125441551, + -0.041475810110569, + 0.03471999242901802, + -0.007454937323927879, + -0.010692019946873188, + 0.008689694106578827, + -0.04010429233312607, + 0.008706795051693916, + -0.025811096653342247, + 0.0772356241941452, + -0.01707454025745392, + 0.003407828975468874, + 0.03591792285442352, + 0.02803846076130867, + -0.02253156714141369, + -0.022628841921687126, + 0.02367081493139267, + -0.01198606751859188, + -0.0018155050929635763, + 0.00027401791885495186, + -0.005776721052825451, + 0.03668854758143425, + 0.041213057935237885, + 0.02811521664261818, + -0.03554641827940941, + 0.012256782501935959, + -0.09011851996183395, + 0.0031866272911429405, + 0.023867283016443253, + -0.0037330761551856995, + 0.0459059402346611, + -0.06206577271223068, + 0.03500249981880188, + -0.01340532023459673, + -0.017111200839281082, + 0.013101490214467049, + -0.05134792998433113, + 0.03388018161058426, + 0.013955343514680862, + 0.000164455603226088, + 0.011028570123016834, + 0.01625211536884308, + 0.016933917999267578, + 0.01694946177303791, + 0.032591696828603745, + 0.009162839502096176, + -0.028003012761473656, + 0.0064970264211297035, + -0.029036318883299828, + -0.02038690634071827, + 0.014319919049739838, + -0.06905965507030487, + 0.029333461076021194, + 0.023739418014883995, + -0.014519312418997288, + 0.04052538052201271, + 0.04057392477989197, + -0.01034463383257389, + -0.012690775096416473, + -0.00912981852889061, + 0.02039041370153427, + -0.03147698566317558, + 0.030958818271756172, + 0.015128174796700478, + 0.0412042960524559, + 0.007952614687383175, + -0.05505673214793205, + -0.009638125076889992, + -0.04301655665040016, + -0.008871464058756828, + -0.0063505517318844795, + -0.006609310861676931, + 0.024428484961390495, + -0.008420844562351704, + -0.03715866059064865, + 0.020142650231719017, + 0.04688391834497452, + 0.06951246410608292, + 0.08925656229257584, + -0.048216160386800766, + 0.0024333272594958544, + -0.08404683321714401, + 0.0006460939184762537, + -0.015057645738124847, + -0.016637315973639488, + -0.020553108304739, + 0.015195006504654884, + -0.017346296459436417, + 0.0024473494850099087, + 0.040904801338911057, + -0.017131255939602852, + -0.026457011699676514, + -0.01921151950955391, + 0.01387940812855959, + -0.02553679421544075, + -0.023860732093453407, + 0.013878664933145046, + -0.05774431675672531, + -0.05646292492747307, + -0.024330174550414085, + -0.013506286777555943, + -0.005378645844757557, + -0.02900652028620243, + -0.011634448543190956, + -0.0034013374242931604, + -0.044040605425834656, + 0.01069994643330574, + -0.053077563643455505, + 0.0007096012705005705, + 0.004812559112906456, + 0.005851083435118198, + 0.014156421646475792, + -0.02089552767574787, + 0.0026135940570384264, + 0.022183580324053764, + -0.005487991496920586, + -0.03036177158355713, + 0.10638239234685898, + -0.0075864121317863464, + -0.03882152959704399, + 0.0421174056828022, + 0.05341404303908348, + 0.04207596927881241, + 0.016396967694163322, + 0.022141611203551292, + -0.036439310759305954, + 0.014480158686637878, + 0.02039826102554798, + -0.01930929906666279, + -0.03102874755859375, + -0.0048049455508589745, + -0.021863702684640884, + -0.0005045579746365547, + 0.018393848091363907, + 0.028131501749157906, + 0.002309786854311824, + 0.006532852537930012, + -0.00867963582277298, + -0.03435860574245453, + -0.02877754531800747, + 0.02465062588453293, + -0.007383397314697504, + 0.04563139006495476, + -0.006049243733286858, + -0.014967449940741062, + 0.011067621409893036, + -0.017874427139759064, + -0.02000070922076702, + 0.013881612569093704, + 0.012504640966653824, + -0.0603642575442791, + 0.008557156659662724, + 0.036790765821933746, + -0.01180540956556797, + -0.020611176267266273, + -0.014160060323774815, + -0.010279449634253979, + -0.02971574291586876, + 0.031811606138944626, + 0.03344070911407471, + 0.014838396571576595, + -0.014474816620349884, + 0.021046316251158714, + 0.041587308049201965, + 0.005582503508776426, + -0.025981416925787926, + 0.007250557653605938, + -0.04683253541588783, + 0.058679208159446716, + 0.05551221966743469, + 0.008936728350818157, + 0.06276130676269531, + -0.0267043374478817, + -0.001127051655203104, + 0.037883460521698, + 0.015384583733975887, + -0.023479441180825233, + -0.028743993490934372, + -0.028656307607889175, + -0.0240505151450634, + 0.041657883673906326, + 0.018353858962655067, + -0.02750888094305992, + 0.02863505855202675, + -0.05091952532529831, + -5.4674455896019936e-05, + 0.012233640067279339, + 0.03904302045702934, + -0.017115600407123566, + -0.016163984313607216, + 0.006549492012709379, + -0.07418975979089737, + 0.039760082960128784, + -0.07938345521688461, + -0.01925029419362545, + 0.021987855434417725, + -0.02048555016517639, + 0.014007694087922573, + -0.00545199541375041, + -0.06704647094011307, + 0.02193402498960495, + -0.00019526545656844974, + -0.002535242587327957, + -0.006264012772589922, + 0.046670056879520416, + -0.014226920902729034, + -0.02132931351661682, + -0.04729807376861572, + -0.025477493181824684, + 0.03931614011526108, + 0.03504432365298271, + -0.004876031074672937, + -0.008805064484477043, + 0.032572660595178604, + -0.015251656994223595, + -0.07134697586297989, + -0.04358123987913132, + -0.006184928584843874, + -0.04461962357163429, + 0.09531814604997635, + -0.025638854131102562, + -0.04100418835878372, + -0.03206300735473633, + 0.0021105255000293255, + -0.006298613268882036, + -0.02001524344086647, + -0.014709419570863247, + -0.0037984196096658707, + -0.03792363032698631, + 0.00606543617323041, + -0.014433801174163818, + 0.013796470127999783, + -0.04113081470131874, + -0.014201606623828411, + 0.056638628244400024, + 0.010662968270480633, + 0.009202312678098679, + -0.014396869577467442, + 0.005056644789874554, + 0.06283121556043625, + 0.0066927094012498856, + -0.011778576299548149, + 0.055136892944574356, + -0.054994694888591766, + -0.024500982835888863, + -0.004175275564193726, + 0.009686374105513096, + -0.004114441107958555, + -0.014824498444795609, + 0.00617830827832222, + 0.004597678314894438, + -0.00642407638952136, + 0.014472970739006996, + -0.016569074243307114, + -0.02008066512644291, + -0.0006045803311280906, + -0.015727723017334938, + 0.013226905837655067, + -0.030567513778805733, + 0.012014148756861687, + -0.054428644478321075, + -0.056472744792699814, + 0.04681316763162613, + -0.005770176183432341, + -0.00537416897714138, + -0.03663879260420799, + -0.006287057884037495, + 0.021350890398025513, + 0.050838861614465714, + -0.01589909940958023, + 0.024692272767424583, + -0.0062520187348127365, + -0.014903411269187927, + 0.013465234078466892, + -0.022668687626719475, + -0.0019663581624627113, + -0.01372759509831667, + -0.009310228750109673, + -0.03213001787662506, + -0.03438979759812355, + 0.0187278613448143, + -0.061614990234375, + -0.02217104099690914, + 0.019795848056674004, + 0.07621891051530838, + 0.0028310709167271852, + -0.0352792926132679, + -0.004483078606426716, + -0.02694457769393921, + 0.007841075770556927, + -0.03978588432073593, + 0.028888646513223648, + 0.04318937286734581, + 0.016210677102208138, + -0.011103993281722069, + -0.010464333929121494, + -0.002543874317780137, + -0.010657364502549171, + -0.0009758464293554425, + 0.044537127017974854, + -0.026134846732020378, + 0.03580080717802048, + -0.032973647117614746, + 0.0012846809113398194, + 0.016632888466119766, + -0.051501981914043427, + 0.017141347751021385, + -0.019261233508586884, + -0.030546166002750397, + -0.0574357733130455, + -0.018048938363790512, + 0.01245044730603695, + -0.016451984643936157, + 0.012111798860132694, + 0.04462261497974396, + 0.013201681897044182, + 0.0030803687404841185, + -0.023068292066454887, + -0.021109411492943764, + 0.010029655881226063, + -0.13607069849967957, + 0.01479367259889841, + -0.012505938299000263, + -0.013362035155296326, + -0.007166598923504353, + -0.03085435926914215, + -0.03608466312289238, + -0.04676739498972893, + -0.0311110969632864, + 0.004242090508341789, + -0.028111856430768967, + -0.0023777014575898647, + 0.024020584300160408, + -0.054974667727947235, + 0.021841930225491524, + 0.006161076948046684, + 0.008825523778796196, + -0.016399944201111794, + -0.039714034646749496, + 0.02671719156205654, + -0.001949135446920991, + -0.039746981114149094, + 0.04754357784986496, + 0.0159439779818058, + -0.004876773338764906, + 0.03379807993769646, + 0.013721255585551262, + 0.032984063029289246, + -0.035907648503780365, + -0.06203492730855942, + -0.006208854261785746, + -0.02376794070005417, + 0.01756090112030506, + 0.039191748946905136, + 0.009493695572018623, + 0.014417060650885105, + -0.020368177443742752, + 0.04760335385799408, + -0.00646964181214571, + 0.03340961039066315, + -0.012299270369112492, + 0.03158365190029144, + -0.01573868840932846, + -0.0010422137565910816, + 3.208114139852114e-05, + 0.036946170032024384, + 0.002241619164124131, + 0.004950956907123327, + -0.022731995210051537, + -0.0004600314423441887, + 0.01528378576040268, + 0.003561918856576085, + -0.01519244909286499, + 0.03423406928777695, + 0.01464450266212225, + -0.02432754635810852, + -0.019905664026737213, + -0.002226967830210924, + 0.025050727650523186, + 0.027184033766388893, + -0.018280141055583954, + 0.025305168703198433, + -0.039805375039577484, + -0.0670774057507515, + -0.009501513093709946, + 0.024872681125998497, + -0.021481186151504517, + -0.014012345112860203, + 0.025034049525856972, + 0.0011721664341166615, + 0.012838711030781269, + 0.018605617806315422, + 0.007284576538950205, + -0.0549844466149807, + -0.007256482262164354, + 0.019306691363453865, + -0.001922375406138599, + 0.011777035892009735, + -0.018884919583797455, + -0.018029088154435158, + -0.03840925544500351, + 0.02793971635401249, + -0.012751322239637375, + -0.022328540682792664, + 0.036354511976242065, + -0.004183787386864424, + -0.02927609719336033, + 0.009429450146853924, + -0.08795815706253052, + 0.0369621105492115, + 0.024103866890072823, + -0.07088100910186768, + -0.01649582013487816, + -0.003494251985102892, + -0.01960608921945095, + 0.03289337456226349, + 0.005578052252531052, + 0.015341832302510738, + 0.03803322836756706, + 0.013329625129699707, + 0.009600120596587658, + -0.04661879688501358, + -0.0017708255909383297, + 0.016106469556689262, + -0.025798706337809563, + -0.022851325571537018, + 0.008733485825359821, + -0.02106495574116707, + 0.014249486848711967, + 0.012887470424175262, + 0.01041346974670887, + 0.058658625930547714, + 0.011353716254234314, + 0.052466727793216705, + -0.03979072347283363, + -0.034811004996299744, + 0.007535591721534729, + 0.030328936874866486, + 0.016588211059570312, + -0.00581663753837347, + 0.050253067165613174, + -0.006994136609137058, + 0.07136647403240204, + -0.008686414919793606, + 0.044776830822229385, + 0.02600674144923687, + -0.004457746632397175, + 0.013192372396588326, + -0.0057215383276343346, + 0.004836235661059618, + -0.012415757402777672, + -0.005270783789455891, + 0.032529063522815704, + 0.02068088762462139, + 0.03484910726547241, + 0.00570073164999485, + -0.020153723657131195, + 0.04439912363886833, + -0.05042339116334915, + -0.016113165766000748, + -0.007417100016027689, + -0.023010406643152237, + 0.003214161144569516, + -0.024072827771306038, + 0.009933664463460445, + 0.027788516134023666, + 0.010292812250554562, + 0.013431246392428875, + -0.036207254976034164, + -0.03156545013189316, + -0.007691570557653904, + 0.01298148836940527, + -0.014244934543967247, + 0.03195546567440033, + -0.043826282024383545, + -0.013505599461495876, + -0.0273459330201149, + -0.023941252380609512, + 0.039227306842803955, + -0.0016899436013773084, + -0.01790127530694008, + 0.011198007501661777, + 0.016884561628103256, + 0.02195517159998417, + -0.0009688385180197656, + -0.026303719729185104, + -0.013097315095365047, + 0.003971719183027744, + -0.00031943601788952947, + 0.03218201920390129, + -0.033577896654605865, + -0.006275672931224108, + -0.009842462837696075, + -0.003573079127818346, + 0.027971364557743073, + 0.008095532655715942, + 0.006688158959150314, + -0.03284468501806259, + 0.05527157336473465, + 0.009140296839177608, + -0.027164757251739502, + 0.034268151968717575, + 0.03385332226753235, + -0.022679610177874565, + 0.055820416659116745, + 0.014227048493921757, + 0.008332676254212856, + 0.03471069037914276, + 0.043184708803892136, + -0.0075085158459842205, + -0.008027237839996815, + -0.021318204700946808, + 0.022275453433394432, + -0.010428247042000294, + 0.036111000925302505, + 0.039286158978939056, + 0.019220242276787758, + 0.03034837543964386, + -0.000500664405990392, + 0.05095502361655235, + -0.04398355633020401, + -0.005630433559417725, + -0.031213562935590744, + -0.024886002764105797, + 0.0031001130118966103, + -0.036365896463394165, + 0.04869282990694046, + 0.021691851317882538, + 0.030100736767053604, + 0.047635216265916824, + -0.02812160924077034, + -0.019795827567577362, + -0.027312716469168663, + 0.0009654992609284818, + -0.004355828743427992, + -0.04275340959429741, + 0.027343325316905975, + 0.019378075376152992, + 0.02649674564599991, + 0.011983481235802174, + 0.020908303558826447, + 0.010018273256719112, + 0.02680180035531521, + -0.026076771318912506, + -0.030904829502105713, + -0.03241824358701706, + 0.007429045159369707, + 0.018904130905866623, + -0.01934397965669632, + 0.009289520792663097, + -0.049959443509578705, + 0.021844971925020218, + -0.001845282269641757, + 0.025982024148106575, + -0.0005583008169196546, + 0.020214291289448738, + 0.02896534465253353, + 0.023129627108573914, + -0.029966983944177628, + -0.031216321513056755, + -0.013762697577476501, + -0.0035750085953623056, + -0.012644235044717789, + -0.0354280024766922 + ], + "start_index": 0, + "end_index": 82, + "token_count": 21, + "file_type": "avap_code", + "filename": "contador_de_parametros.avap", + "addParam": true, + "addResult": true, + "getListLen": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "c0427664-2cfd-51a4-a4da-fbaa8924df6b", + "_source": { + "text": "addParam(\"client_id\", id_interno)\naddResult(id_interno)", + "embedding": [ + -0.011513665318489075, + 0.007484083995223045, + -0.020719807595014572, + -0.0008873003534972668, + -0.038157202303409576, + 0.011878544464707375, + 0.009105031378567219, + 0.026090290397405624, + -0.01450093649327755, + -0.00906988512724638, + -0.018470417708158493, + 0.019244665279984474, + -0.007025669328868389, + 0.0026618652045726776, + -0.009268355555832386, + 0.07665646821260452, + -0.024228733032941818, + 0.003265829524025321, + 0.009818961843848228, + -0.002787030767649412, + -0.023837590590119362, + 0.02731439284980297, + -0.0023464092519134283, + 0.012481140904128551, + -0.04122201353311539, + -0.01856405846774578, + 0.025811396539211273, + -0.010042879730463028, + 0.003342351410537958, + -0.0070921508595347404, + 0.044650398194789886, + -0.03459949791431427, + -0.005438795778900385, + -0.05297292396426201, + -0.001214633579365909, + 0.00499239144846797, + -0.011003341525793076, + -0.0321647934615612, + -0.05817743390798569, + 0.02604960836470127, + -0.01664115861058235, + 0.010676667094230652, + -0.0017915653297677636, + -0.04525665566325188, + 0.03735627606511116, + -0.013376137241721153, + 0.011642050929367542, + -0.021173065528273582, + -0.020614666864275932, + -0.005595749709755182, + 0.02386465109884739, + 0.026133427396416664, + 0.01222126092761755, + -0.01713908277451992, + -0.02275403030216694, + 0.023244692012667656, + -0.02321651577949524, + 0.009282815270125866, + -0.027310732752084732, + -0.0012471997179090977, + -0.058567941188812256, + -0.0043838839046657085, + -0.05284400284290314, + 0.0017067573498934507, + 0.025964919477701187, + 0.025554437190294266, + 0.01992766186594963, + 0.0003743375127669424, + -0.015527339652180672, + -0.019800100475549698, + -0.00942671112716198, + 0.02619428001344204, + -0.010235077701508999, + -0.02561114728450775, + -0.06991603970527649, + -0.01776302605867386, + 0.029537184163928032, + 0.0037865128833800554, + -0.007419886067509651, + -0.012975617311894894, + -0.023767782375216484, + -0.028028031811118126, + -0.026379765942692757, + 0.012418904341757298, + -0.014126982539892197, + 0.03845478966832161, + -0.0012861400609835982, + 0.026973053812980652, + -0.016806690022349358, + -0.018558865413069725, + -0.010995854623615742, + -0.02166043035686016, + 0.062451694160699844, + -0.044754933565855026, + -0.005920108873397112, + -0.027900194749236107, + 0.015135270543396473, + 0.041290391236543655, + 0.04521622136235237, + 0.022144921123981476, + 0.03737472742795944, + 0.02217831462621689, + 0.013919254764914513, + 0.006747374311089516, + 0.05100792646408081, + 0.020697545260190964, + 0.03844154626131058, + -0.017301512882113457, + 0.01038424950093031, + -0.009905487298965454, + 0.003939675632864237, + 0.046361520886421204, + -0.0010600825771689415, + 0.0326884388923645, + -0.01405394822359085, + -0.0701669231057167, + -0.005187302362173796, + -0.01464160904288292, + 0.03790482506155968, + -0.006819733884185553, + 0.0630761981010437, + -0.0027673374861478806, + 0.023773910477757454, + -0.006819994188845158, + -0.015380392782390118, + 0.07530904561281204, + 0.010899955406785011, + 0.03734811767935753, + -0.05783914029598236, + -0.012292415834963322, + 0.02557852305471897, + 0.015657393261790276, + 0.020675376057624817, + 0.043621961027383804, + -0.04582510143518448, + -0.034756943583488464, + -0.011934577487409115, + 0.06130733713507652, + -0.007992981933057308, + -0.061783891171216965, + 0.02592134103178978, + 0.03443436697125435, + -0.006133261602371931, + -0.04877375811338425, + 0.04455029219388962, + -0.010200985707342625, + 0.043600067496299744, + 0.012451707385480404, + -0.004376797936856747, + -0.04718706011772156, + -0.023445092141628265, + 0.025337625294923782, + 0.005987386219203472, + 0.011272058822214603, + -0.012951218523085117, + -0.06457550823688507, + -0.02271372079849243, + 0.04265221208333969, + 0.05945156142115593, + 0.006343143060803413, + -0.026449300348758698, + 0.018377143889665604, + 0.023462653160095215, + -0.02657228522002697, + -0.02035071700811386, + -0.04621366783976555, + 0.019506078213453293, + -0.03301054611802101, + 0.016856474801898003, + -0.050900865346193314, + 0.025396199896931648, + -0.0005335952155292034, + 0.030025489628314972, + 0.008450930006802082, + 0.0024100863374769688, + 0.003984762821346521, + 0.06416294723749161, + 0.020907564088702202, + -0.006264558061957359, + -0.01893315091729164, + -0.023814721032977104, + -0.02977597713470459, + -0.0197894349694252, + -0.030162405222654343, + -0.01519335713237524, + 0.054428648203611374, + -0.020887693390250206, + -0.0028135792817920446, + 0.009826429188251495, + 0.005361903924494982, + -0.026607459411025047, + -0.03495537117123604, + 0.0877133160829544, + -0.025903597474098206, + 0.024868754670023918, + 0.016927102580666542, + 0.03346406668424606, + 0.01771414466202259, + -0.014128548093140125, + 0.009135408326983452, + -0.021011924371123314, + 0.02030039019882679, + 0.015048590488731861, + -0.033247072249650955, + -0.027647795155644417, + -0.002351162489503622, + 0.007352069485932589, + -0.05712675675749779, + 0.017833098769187927, + -0.019779622554779053, + -0.009739628061652184, + -0.013125672936439514, + -0.0635402575135231, + -0.012472981587052345, + -0.01646992936730385, + 0.03181314468383789, + 0.029929719865322113, + 0.0184245016425848, + -0.01828480325639248, + -0.019395355135202408, + -0.012246761471033096, + 0.07242437452077866, + 0.020589889958500862, + 0.049556754529476166, + -0.0383075550198555, + 0.01107803825289011, + 0.03924363851547241, + 0.002249185461550951, + -0.016694989055395126, + -0.016076235100626945, + -0.008217087015509605, + 0.0017145287711173296, + -0.00502160657197237, + -0.02584344893693924, + 0.011837427504360676, + -0.04785594344139099, + 0.017652833834290504, + 0.02053658477962017, + -0.015068164095282555, + 0.009217496030032635, + -0.060875311493873596, + 0.03355598449707031, + 0.011890190653502941, + 0.024256538599729538, + -0.03482642397284508, + -0.0524478442966938, + -0.02805675007402897, + 0.05001676455140114, + -0.046849507838487625, + -0.023995742201805115, + -0.01328536681830883, + -0.0038604317232966423, + -0.044563956558704376, + 0.00947467889636755, + -0.028583765029907227, + -0.004936510697007179, + 0.06234828382730484, + 1.2840490626331302e-06, + 0.005097538232803345, + 0.019704030826687813, + 0.005347722209990025, + -0.010450785979628563, + -0.008940879255533218, + 0.022167665883898735, + 0.02638598345220089, + 0.00873952079564333, + -0.001345317461527884, + 0.02479797787964344, + 0.022058427333831787, + -0.027450542896986008, + -0.0032139639370143414, + -0.013597985729575157, + 0.0012722165556624532, + 0.02667837217450142, + 0.014596368186175823, + 0.03973739221692085, + -0.028822345659136772, + -0.06703490018844604, + 0.11269211769104004, + 0.026909949257969856, + 0.011547485366463661, + -0.00027395665529184043, + 0.017993295565247536, + -0.0070966496132314205, + 0.0698610469698906, + 0.020598286762833595, + 0.004740352276712656, + -1.3732485967921093e-05, + 0.008970347233116627, + -0.07505153864622116, + -0.0004683772276621312, + 0.003008513478562236, + 0.07690732926130295, + -0.024203356355428696, + -0.0014254276175051928, + 0.02292495407164097, + -0.01754889450967312, + -0.15588121116161346, + -0.006728803273290396, + 0.01926603354513645, + 0.06002272292971611, + -0.023280130699276924, + 0.016936127096414566, + -0.028666142374277115, + -0.010299342684447765, + -0.014513182453811169, + 0.02368166297674179, + -0.015308287926018238, + -0.05918671190738678, + 0.008412892930209637, + -0.055598899722099304, + -0.0397816076874733, + -0.010893515311181545, + -0.03416656330227852, + -0.013139203190803528, + -0.0307046826928854, + -0.03265591338276863, + -0.062190983444452286, + -0.07445521652698517, + 0.05408746004104614, + -0.011580067686736584, + -0.05092393606901169, + -0.0054569910280406475, + -0.027508236467838287, + 0.006597466301172972, + -0.03828679770231247, + -0.007302160374820232, + 0.028360499069094658, + 0.026882318779826164, + 0.005395873915404081, + 0.017693599686026573, + -0.0014706250512972474, + 0.02027156949043274, + -0.017371557652950287, + 0.015997322276234627, + 0.02238594926893711, + -0.014424181543290615, + 0.031986914575099945, + 0.01840338669717312, + 0.0009236259502358735, + 0.030947783961892128, + -0.017765561118721962, + -0.0057068984024226665, + 0.012925085611641407, + -0.02239512838423252, + -0.024798627942800522, + 0.0044443923979997635, + 0.03777973726391792, + -0.042777497321367264, + 0.023442860692739487, + -0.01971939206123352, + -0.025287481024861336, + 0.010038151405751705, + -0.03145243600010872, + 0.02875969000160694, + 0.00031371397199109197, + 0.010586877353489399, + -0.05300121009349823, + -0.043189194053411484, + -0.0008769162814132869, + -0.009314822033047676, + 0.02820681594312191, + -0.015604617074131966, + 0.02775314636528492, + 0.03509724140167236, + 0.022813888266682625, + -0.04885054752230644, + 0.06544911116361618, + -0.03589913621544838, + -0.010649124160408974, + 0.012928197160363197, + 0.031158993020653725, + 0.00541681470349431, + -0.04084734618663788, + -0.03001592308282852, + -0.021636979654431343, + -0.08696193993091583, + -0.035816654562950134, + 0.001564769190736115, + 0.0011007266584783792, + 0.043034233152866364, + -0.01896115206182003, + -0.005512119270861149, + -0.015561085194349289, + 0.0243638064712286, + 0.024441713467240334, + 0.24349753558635712, + 0.042476553469896317, + 0.008299327455461025, + 0.01887541078031063, + 0.03327522054314613, + -0.03270326182246208, + -0.016488006338477135, + 0.030820908024907112, + -0.023375071585178375, + -0.016422100365161896, + 0.018532326444983482, + 0.0046101780608296394, + -0.035729728639125824, + -0.0023965397849678993, + 0.027767572551965714, + 0.03004377707839012, + -0.010477359406650066, + 0.027779536321759224, + 0.03347514569759369, + -0.011265821754932404, + -0.00022880564210936427, + 0.03719330206513405, + -0.0943349227309227, + -0.041118547320365906, + -0.0639418363571167, + -0.038730498403310776, + -0.016265060752630234, + 0.0023680240847170353, + -0.0023635406978428364, + 0.027703681960701942, + -0.009058930911123753, + 0.039735373109579086, + 0.024162372574210167, + -0.006949131842702627, + -0.018891451880335808, + -0.009613693691790104, + 0.01045819092541933, + -0.0028550138231366873, + -0.016032220795750618, + -0.00142854661680758, + 0.023595882579684258, + -0.001221702084876597, + 0.03403633087873459, + 0.030509604141116142, + -0.009776768274605274, + -0.02516402304172516, + 0.03652747720479965, + 0.008255314081907272, + -0.021572619676589966, + -0.0019843215122818947, + 0.009425860829651356, + -0.061406638473272324, + -0.013860593549907207, + 0.018004940822720528, + 0.03325891122221947, + -0.029767075553536415, + -0.006301997695118189, + 0.025601094588637352, + -0.041682418435811996, + 0.009110525250434875, + 0.01261836662888527, + 0.003717144951224327, + 0.004279939457774162, + 0.007304579485207796, + -0.00196787784807384, + 0.024659769609570503, + 0.03563571348786354, + -0.031053707003593445, + 0.007004905957728624, + 0.050886645913124084, + -0.030913088470697403, + 0.025245068594813347, + 0.03709252178668976, + 0.03522174805402756, + 0.04242628812789917, + -0.04722170531749725, + 0.07275471836328506, + 0.05078129097819328, + -0.036842864006757736, + 0.0468965582549572, + -0.034839410334825516, + -0.020315395668148994, + -0.038500167429447174, + 0.046291980892419815, + 0.014807925559580326, + -0.012081664055585861, + -0.01083350833505392, + 0.06240936741232872, + -0.033197417855262756, + -0.010532239452004433, + -0.0029955143108963966, + 0.005416754633188248, + 0.0031379181891679764, + 0.0006447239429689944, + 0.013321212492883205, + 0.022148853167891502, + 0.018888598307967186, + 0.023410098627209663, + -0.032882653176784515, + -0.005340465810149908, + -0.056214652955532074, + -0.01886627823114395, + 0.0028490389231592417, + -0.0072086588479578495, + 0.02865503542125225, + -0.04596445709466934, + 0.034299977123737335, + -0.0073201339691877365, + -0.008182131685316563, + 0.03751436620950699, + -0.020522113889455795, + 0.011858422309160233, + -0.008544904179871082, + -0.00047754767001606524, + -0.019001554697752, + 0.007092582527548075, + 0.019639363512396812, + 0.025115862488746643, + 0.08157699555158615, + 0.004910541232675314, + -0.019522789865732193, + -0.00504259392619133, + 0.008941598236560822, + -0.011260272935032845, + 0.001544159953482449, + -0.022774768993258476, + -0.015019447542726994, + 0.036634594202041626, + -0.04098180681467056, + 0.01883813738822937, + 0.05801209807395935, + -0.017155485227704048, + -0.0009039418073371053, + -0.01808190532028675, + 0.03333678096532822, + -0.02117929980158806, + 0.04921534284949303, + -0.016912080347537994, + 0.0441615991294384, + 0.054124582558870316, + -0.016376499086618423, + -0.06684329360723495, + -0.02744322642683983, + 0.007549424655735493, + 0.022087018936872482, + -0.004984614439308643, + -0.019646303728222847, + -0.018942877650260925, + -0.00461712758988142, + 0.029027186334133148, + 0.016559215262532234, + 0.04457968473434448, + 0.041299737989902496, + -0.04332995042204857, + 0.022424302995204926, + -0.051528122276067734, + 0.03261648491024971, + 0.016291359439492226, + 0.019879698753356934, + -0.011164356023073196, + 0.025325989350676537, + -0.007361923344433308, + -0.025994598865509033, + 0.0503588505089283, + -0.027931977063417435, + 0.007051299326121807, + -0.0070706987753510475, + 0.012920263223350048, + -0.0505821593105793, + -0.01470130868256092, + -0.016098860651254654, + -0.03547384589910507, + -0.034120891243219376, + 0.04620556905865669, + 0.012956669554114342, + 0.019843928515911102, + -0.02244749292731285, + -0.0019849883392453194, + 0.0388023667037487, + -0.02916855365037918, + -0.029790975153446198, + -0.033896997570991516, + -0.04631364718079567, + -0.020091596990823746, + 0.04656170308589935, + -0.010924275033175945, + -0.01863989792764187, + -0.011221254244446754, + 0.04894440621137619, + -0.0321817621588707, + -0.04114934802055359, + 0.10262749344110489, + -0.0059953718446195126, + -0.02156207710504532, + 0.024041596800088882, + 0.08437054604291916, + 0.018022578209638596, + 0.03102036938071251, + -0.025510141626000404, + -0.006353748496621847, + 0.01495602261275053, + 0.01144650112837553, + -0.001869422267191112, + -0.007904884405434132, + 0.002610218245536089, + -0.0013768504140898585, + 0.017117571085691452, + 0.047322824597358704, + 0.006672844756394625, + -0.009881725534796715, + -0.008473213762044907, + 0.012940624728798866, + -0.008563621900975704, + 0.0023450192529708147, + 0.031919367611408234, + 0.003635818138718605, + 0.03296199440956116, + 0.013372601009905338, + -0.008795347064733505, + 0.013764205388724804, + -0.010806662030518055, + -0.034539323300123215, + 0.02285902202129364, + -0.03376638516783714, + -0.06020773947238922, + 0.0006028438801877201, + 0.032785072922706604, + -0.0346645787358284, + -0.009619108401238918, + -0.002423034282401204, + -0.01922055333852768, + -0.017716672271490097, + 0.023905251175165176, + 0.007305762264877558, + 0.029692813754081726, + -0.013813110068440437, + -0.029003798961639404, + 0.020085953176021576, + 0.01752549409866333, + -0.04784073308110237, + 0.0024909742642194033, + -0.030943436548113823, + 0.05453648418188095, + 0.04806753247976303, + 0.029988160356879234, + 0.07122493535280228, + -0.06774554401636124, + -0.030947940424084663, + -0.01177293062210083, + 0.04460649564862251, + -0.004446063656359911, + -0.042528185993433, + 0.026347912847995758, + -0.02253066934645176, + 0.045849647372961044, + 0.025154946371912956, + -0.02088250406086445, + 0.04149875417351723, + -0.02179485373198986, + -0.022421516478061676, + 0.004030776210129261, + 0.07023905217647552, + -0.0195896178483963, + -0.013054301962256432, + 0.0038456518668681383, + -0.06053229048848152, + 0.03728378936648369, + -0.029982835054397583, + -0.027610978111624718, + 0.03229795768857002, + -0.004452635999768972, + -0.004915419965982437, + -0.032400500029325485, + -0.0277192834764719, + 0.05856900289654732, + 0.04540238529443741, + -0.01949005015194416, + 0.025818228721618652, + 0.08027500659227371, + 0.032711662352085114, + -0.048713039606809616, + -0.02391675114631653, + -0.039275750517845154, + 0.02139735035598278, + 0.01256975345313549, + 0.012487786822021008, + 0.031235413625836372, + 0.030081765726208687, + 0.01613420993089676, + -0.10065355151891708, + 0.005894626956433058, + -0.005742492154240608, + -0.0517214797437191, + 0.06037675216794014, + -0.028264030814170837, + -0.01707437075674534, + -0.00833865161985159, + 0.02072536200284958, + -0.0023009751457720995, + -0.009747505187988281, + -0.020803503692150116, + -0.004572619684040546, + -0.009160398505628109, + -0.021120218560099602, + 0.001350934966467321, + 0.008323715068399906, + -0.013482376001775265, + 0.004484060686081648, + 0.013492894358932972, + 0.014365002512931824, + -0.021732812747359276, + -0.08280877023935318, + 0.029305487871170044, + -0.001511124661192298, + 0.0016775830881670117, + 0.002849102020263672, + 0.031426358968019485, + -0.017352089285850525, + -0.015093103051185608, + -0.019209539517760277, + -0.0022191964089870453, + -0.01770727150142193, + -0.022536851465702057, + -0.013564074411988258, + 0.004112000577151775, + 0.0025186704006046057, + -0.02420623227953911, + -0.031738996505737305, + -0.002415681956335902, + -0.015186026692390442, + -0.027119716629385948, + 0.029374975711107254, + -0.04928293451666832, + 0.007405156269669533, + -0.033836521208286285, + -0.013247656635940075, + 0.013496407307684422, + 0.006302016321569681, + -0.007758895866572857, + -0.027860715985298157, + -0.038474202156066895, + -0.04169567674398422, + 0.08332427591085434, + -0.018772896379232407, + -0.014021040871739388, + 0.010953742079436779, + -0.021086791530251503, + -0.0018535954877734184, + -0.027201103046536446, + -0.007385098375380039, + -0.002282804809510708, + -0.0367237888276577, + -0.03798143193125725, + -0.07019167393445969, + -0.01642891764640808, + -0.04863506928086281, + -0.0379011444747448, + 0.011294371448457241, + -6.957225559744984e-05, + 0.01971435546875, + -0.03661274537444115, + 0.01632928103208542, + -0.06180427223443985, + 0.024367349222302437, + -0.03911750763654709, + 0.017855657264590263, + 0.03823205456137657, + 0.018260719254612923, + -0.03820541128516197, + -0.0010282042203471065, + 0.023291178047657013, + -0.0054505690932273865, + 0.012245602905750275, + 0.04335319623351097, + -0.012304943054914474, + 0.032952748239040375, + -0.04407227784395218, + 0.014311864972114563, + 0.0023030659649521112, + -0.030130166560411453, + -0.0008897926309145987, + 0.01609358936548233, + -0.029839230701327324, + -0.050872839987277985, + -2.821875204972457e-05, + 0.015447957441210747, + -0.020963231101632118, + 0.010732109658420086, + 0.025636235252022743, + 0.008300580084323883, + -0.019321361556649208, + -0.018702374771237373, + -0.00978541187942028, + 0.00542053859680891, + -0.12988774478435516, + 0.012578931637108326, + 0.003706044517457485, + 0.004368088208138943, + -0.00554521381855011, + -0.0037721379194408655, + 0.005952092818915844, + -0.02476750686764717, + -0.0039710067212581635, + -0.031969789415597916, + -0.06257347762584686, + -0.023227926343679428, + 0.048784609884023666, + -0.01911013014614582, + -0.020432038232684135, + -0.011845062486827374, + 0.03784007206559181, + -0.0032635098323225975, + -0.01938752457499504, + 0.006379658821970224, + -0.0022927969694137573, + -0.03814791142940521, + 0.05946369096636772, + 0.023286255076527596, + 0.010575948283076286, + -0.013310504145920277, + -0.02188374660909176, + 0.046679165214300156, + -0.03032609634101391, + -0.0525539256632328, + -0.03435184806585312, + 0.0038182430434972048, + 0.030501846224069595, + 0.024468867108225822, + 0.035390909761190414, + 0.022906428202986717, + 0.008011776022613049, + 0.049574170261621475, + -0.019094310700893402, + 0.061661601066589355, + 0.03268924728035927, + 0.018562525510787964, + -0.027233911678195, + -0.0025416503194719553, + 0.006070770788937807, + 0.018619675189256668, + -0.004975263494998217, + -0.0054869442246854305, + -0.0069922953844070435, + -0.03753174468874931, + 0.04091603308916092, + 0.0039411368779838085, + -0.0007503974484279752, + 0.047574691474437714, + 0.023407137021422386, + -0.032747115939855576, + -0.02206289768218994, + -0.021642545238137245, + -0.023889420554041862, + 0.03213779255747795, + -0.0259675532579422, + -0.011760160326957703, + -0.04470834508538246, + -0.0761367604136467, + -0.0031801904551684856, + 0.025228794664144516, + -0.05196660757064819, + -0.007810281123965979, + 0.011435408145189285, + 0.0131746307015419, + -0.0008511449559591711, + 0.009421647526323795, + 0.009966186247766018, + -0.022176392376422882, + 0.006433079019188881, + 0.020919572561979294, + -0.012096034362912178, + 0.03796361759305, + -0.00074931257404387, + -0.03527308627963066, + -0.04562821984291077, + -0.018490459769964218, + 0.002991077257320285, + 0.011654417030513287, + 0.013843553140759468, + 0.001804814557544887, + -0.008812633343040943, + 0.018595557659864426, + -0.0682649314403534, + 0.019940774887800217, + 0.0006059163133613765, + -0.06273254752159119, + 0.019915947690606117, + -0.007358130067586899, + 0.004154879134148359, + 0.026416929438710213, + 0.008811219595372677, + 0.04382029548287392, + 0.012983196415007114, + -0.004433652851730585, + 0.0010310562793165445, + -0.00026644099853001535, + -0.00828684400767088, + 0.0062155756168067455, + -0.03324217349290848, + -0.023216307163238525, + -0.0013424784410744905, + -0.03433311730623245, + -0.014445465989410877, + 0.04051338881254196, + -0.028533410280942917, + 0.030405377969145775, + -0.021686924621462822, + 0.011960385367274284, + -0.07350032776594162, + -0.009889054112136364, + 0.025500478222966194, + 0.02903839759528637, + -0.01501419022679329, + -0.0023430141154676676, + 0.04231606051325798, + 0.007813398726284504, + 0.06271044164896011, + -0.03847980126738548, + 0.07809511572122574, + 0.03024323470890522, + -0.001939857960678637, + 0.01929270289838314, + 0.03183827921748161, + 0.021081099286675453, + -0.020334571599960327, + -0.03708529844880104, + -0.008730404078960419, + 0.016108954325318336, + 0.020338356494903564, + 0.016874337568879128, + 0.030482934787869453, + 0.036550141870975494, + -0.03653265908360481, + -0.04730165749788284, + -0.013248817063868046, + -0.04880557209253311, + 0.0037466760259121656, + -0.0512702614068985, + -0.017413167282938957, + 0.03921014070510864, + -0.026535404846072197, + 0.022009501233696938, + 0.010209452360868454, + -0.03720763325691223, + -0.00644843140617013, + -0.024233998730778694, + -0.004338289611041546, + 0.02323956787586212, + -0.030174488201737404, + 0.01075008511543274, + 0.0009490035590715706, + -0.008626138791441917, + 0.021737853065133095, + -0.015418073162436485, + -0.012478179298341274, + -0.009088207967579365, + 0.01627941057085991, + -0.006827525328844786, + -0.010661893524229527, + -0.023159299045801163, + -0.02023390866816044, + -0.002770673483610153, + -0.017987415194511414, + 0.006908424198627472, + -0.021953530609607697, + -0.009744175709784031, + 0.0025871889665722847, + -0.021660346537828445, + 0.050105053931474686, + -0.0055911242961883545, + 0.018081534653902054, + -0.00690471800044179, + 0.0682782232761383, + 0.002408405998721719, + -0.0074445223435759544, + 0.030486296862363815, + 0.007828958332538605, + -0.045287828892469406, + 0.04528162628412247, + 0.0008408311405219138, + 0.01170250866562128, + 0.04764161258935928, + 0.0396483913064003, + 0.006284424103796482, + -0.0496930256485939, + -0.014627468772232533, + 0.02666446566581726, + -0.027834681794047356, + 0.032908979803323746, + 0.019455639645457268, + 0.004127674736082554, + -0.01012504380196333, + 0.002766515128314495, + 0.012705039232969284, + -0.02411562018096447, + -0.018184300512075424, + -0.02037592977285385, + -0.0016482728533446789, + -0.000528341275639832, + -0.011325731873512268, + 0.018140701577067375, + 0.03680666536092758, + -0.008978568017482758, + 0.020950689911842346, + -0.021672191098332405, + -6.227237463463098e-05, + -0.02258877083659172, + 0.010945776477456093, + -0.01022434700280428, + -0.032145194709300995, + 0.00861244648694992, + 0.025340618565678596, + 0.018190165981650352, + 0.012251952663064003, + 0.039850346744060516, + 0.02155444212257862, + 0.022768044844269753, + 0.000380182231310755, + -0.017814813181757927, + -0.010923797264695168, + -0.0056750839576125145, + -0.016992272809147835, + -0.03960802033543587, + 0.009208339266479015, + -0.05254250392317772, + 0.0020124022848904133, + 1.0156519238080364e-05, + -0.0017729044193401933, + 0.01128772459924221, + 0.025554973632097244, + 0.04082648456096649, + 0.025724370032548904, + -0.04810618236660957, + -0.011565638706088066, + -0.015984047204256058, + 0.0019410974346101284, + -0.02069787122309208, + -0.05408394709229469 + ], + "start_index": 0, + "end_index": 55, + "token_count": 16, + "file_type": "avap_code", + "filename": "captura_de_id.avap", + "addParam": true, + "addResult": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "04857a2c-b9e0-54af-97e5-ff276125b569", + "_source": { + "text": "registerEndpoint(\"/hello_world\",\"GET\",[],\"HELLO_WORLD\",main,result)\naddVar(name,\"Alberto\")\nresult = \"Hello,\" + name \naddResult(result)", + "embedding": [ + 0.02183852158486843, + -0.004541160073131323, + -0.02775968797504902, + 0.03319215029478073, + -0.05086589232087135, + -0.022337306290864944, + -0.028257841244339943, + 0.010096400044858456, + -0.013485381379723549, + -0.019616182893514633, + 0.0005836519994772971, + 0.017917847260832787, + 0.005143383517861366, + 0.0241655595600605, + 0.03128375485539436, + 0.03584741801023483, + 0.018299153074622154, + -0.020609531551599503, + 0.019953466951847076, + -0.011799179017543793, + -0.022405972704291344, + 0.017909696325659752, + 0.022596074268221855, + -0.016527216881513596, + 3.912554166163318e-05, + -0.025179676711559296, + 0.015466940589249134, + -0.024001996964216232, + 0.01576593890786171, + -0.0641888976097107, + 0.010839137248694897, + -0.0011674888664856553, + -0.023929111659526825, + -0.03618532791733742, + -0.0352509468793869, + 0.014426867477595806, + -0.009494654834270477, + 0.005406408570706844, + -0.037648558616638184, + 0.014279273338615894, + -0.002946454333141446, + 0.0015285981353372335, + 0.013201513327658176, + -0.05116823688149452, + 0.025725549086928368, + -0.0042645675130188465, + 0.011240641586482525, + -0.02091849409043789, + -0.05041069537401199, + -0.028982065618038177, + 0.0005053510540165007, + 0.042612429708242416, + 0.017563585191965103, + -0.012850706465542316, + 0.03021804429590702, + 0.05341722071170807, + -0.07657337188720703, + 0.024001436308026314, + -0.04525277018547058, + -0.01867005042731762, + -0.023124687373638153, + 0.010142647661268711, + -0.06618541479110718, + 0.02847512811422348, + 0.007488963659852743, + 0.06900986284017563, + 0.030101539567112923, + 0.026322439312934875, + -0.016813110560178757, + 0.001808627974241972, + 0.0004808388475794345, + 0.003922338597476482, + -0.013439041562378407, + -0.026254205033183098, + -0.07820666581392288, + 0.002416444243863225, + 0.019059835001826286, + 0.00361298443749547, + -0.044704336673021317, + -0.04998847469687462, + -0.006547845900058746, + -0.044636644423007965, + 0.0026843990199267864, + 0.0038376161828637123, + 0.01743554323911667, + 0.0001530493318568915, + 0.016611048951745033, + 0.08131799846887589, + -0.03280533105134964, + 0.0007901377975940704, + -0.052639078348875046, + -0.017215615138411522, + 0.02943136915564537, + -0.016034642234444618, + -0.041780099272727966, + -0.04266735911369324, + -0.01065785065293312, + -0.006513216998428106, + 0.04370199143886566, + 0.020374951884150505, + -0.01583188585937023, + 0.05300664156675339, + 0.04260066896677017, + 0.003397335996851325, + 0.05091242492198944, + 0.007219731342047453, + 0.0337485671043396, + -0.010067250579595566, + 0.03725028783082962, + 0.002729615429416299, + -0.0009817385580390692, + -0.007767789997160435, + 0.02936975099146366, + 0.021856127306818962, + 0.02854817360639572, + -0.024455182254314423, + -0.025570577010512352, + -0.001964494353160262, + 0.03457513451576233, + 0.0014285612851381302, + 0.032154835760593414, + 0.011467546224594116, + 0.08879224210977554, + 0.004001932218670845, + -0.01565960980951786, + 0.0338890366256237, + -0.01640741154551506, + 0.029537729918956757, + -0.004106700886040926, + 0.019362200051546097, + 0.04816363751888275, + 0.006726892199367285, + -0.027420567348599434, + 0.0008092819480225444, + -0.035049621015787125, + -0.020728157833218575, + 0.01785099133849144, + 0.04657800495624542, + 0.011178831569850445, + -0.05995564162731171, + 0.004137152805924416, + 0.06038197875022888, + -0.01868698187172413, + -0.009556790813803673, + 0.024409601464867592, + -0.057745371013879776, + -0.018457308411598206, + 0.03486160933971405, + 0.005781158804893494, + 0.0013109201099723577, + -0.02335597760975361, + 0.022403888404369354, + 0.008042442612349987, + -9.547742956783623e-05, + 0.05173879489302635, + -0.03125857561826706, + -0.02794867940247059, + -0.006824221927672625, + -0.01869030110538006, + 0.015833143144845963, + -0.02788734994828701, + 0.010140350088477135, + -0.009472896344959736, + -0.06646499037742615, + -0.002707150997593999, + -0.04399672895669937, + 0.016770800575613976, + -0.02550956793129444, + 0.013052422553300858, + -0.016477765515446663, + 0.007323502097278833, + 0.009468230418860912, + 0.011944959871470928, + 0.020157143473625183, + -0.026277853175997734, + 0.015543142333626747, + 0.05079895257949829, + 0.020521972328424454, + 0.0433008037507534, + -0.03175528347492218, + -0.036311980336904526, + -0.0028019752353429794, + -0.024430878460407257, + -0.008487371727824211, + -0.021711155772209167, + 0.03772135451436043, + -0.04425961151719093, + 0.00656173937022686, + 0.019799571484327316, + 0.0279215257614851, + 0.012428984977304935, + -0.031924255192279816, + 0.05133815109729767, + -0.0011952186468988657, + 0.006918270140886307, + 0.021955501288175583, + 0.007337065879255533, + -0.005293678026646376, + -0.004996286705136299, + 0.01495063491165638, + -0.04615352302789688, + 0.001208293135277927, + 0.034598544239997864, + -0.0003125371877104044, + -0.024569297209382057, + -0.004501315765082836, + -0.01887403428554535, + -0.04518758878111839, + 0.019962387159466743, + -0.009805295616388321, + 0.01865323819220066, + 0.006818998139351606, + -0.03359253704547882, + -0.017537711188197136, + -0.04988111928105354, + 0.0016267159953713417, + 0.020863790065050125, + 0.013564576394855976, + -0.04707537591457367, + -0.05168044939637184, + -0.030944915488362312, + 0.01949535869061947, + 0.04391370713710785, + 0.024804964661598206, + -0.009576259180903435, + -0.02211517095565796, + -0.020060589537024498, + 0.017120717093348503, + 0.016336822882294655, + 0.012065380811691284, + -0.012126941233873367, + 0.011810481548309326, + 0.015372232533991337, + -0.012199578806757927, + 0.009131462313234806, + -0.05843070149421692, + -0.021964460611343384, + 0.006870737299323082, + -0.002027304843068123, + -0.006703678518533707, + 0.003549982327967882, + -0.0006240962538868189, + 0.012752423994243145, + -0.0014433134347200394, + -0.0503256656229496, + -0.005045159254223108, + -0.042165037244558334, + 0.0455184169113636, + -0.01817365735769272, + 0.01552171166986227, + -0.00725981779396534, + -0.011168718338012695, + -0.032122205942869186, + 0.03413908928632736, + 0.020473124459385872, + 0.00987180508673191, + 0.03873726353049278, + 0.004453527741134167, + -0.025814766064286232, + -0.00487026572227478, + 0.013824908062815666, + -0.004968679044395685, + -0.0028961626812815666, + 0.03027314320206642, + 0.04790566489100456, + -0.013480226509273052, + -0.022844944149255753, + 0.0006025198381394148, + 0.015409005805850029, + -0.014913475140929222, + 0.03896789997816086, + -0.005349989514797926, + 0.049398355185985565, + 0.02731524407863617, + 0.0226542130112648, + 0.0029595261439681053, + -0.05360274016857147, + -0.033582888543605804, + 0.06230204179883003, + 0.02548154443502426, + 0.002435412025079131, + 0.009989570826292038, + 0.04953698068857193, + 0.00754880765452981, + 0.029292525723576546, + 0.00815266091376543, + -0.030266499146819115, + -0.014939161948859692, + -0.004008256830275059, + -0.08216609805822372, + -0.01520735677331686, + 0.0005494506331160665, + 0.07225531339645386, + -0.012267882004380226, + 0.013543078675866127, + 0.020986096933484077, + -0.0022183735854923725, + -0.16657397150993347, + -0.010734057053923607, + -0.01154664158821106, + 0.026649726554751396, + 0.004292159806936979, + 0.01127354335039854, + -0.059284429997205734, + -0.013701641000807285, + 0.0026114361826330423, + 0.06266546994447708, + -0.02988339029252529, + -0.06007978320121765, + 0.00046228698920458555, + -0.01809445396065712, + -0.046131376177072525, + 0.019648388028144836, + -0.030725879594683647, + -0.003670104779303074, + 0.02001030370593071, + -0.04060235619544983, + -0.04536711797118187, + -0.018881961703300476, + 0.06352681666612625, + -0.054002922028303146, + -0.024725960567593575, + -0.028694938868284225, + 0.01733243092894554, + -0.016074392944574356, + -0.025947561487555504, + 0.02517678774893284, + -0.02062785066664219, + 0.0014582854928448796, + 0.000202433395315893, + 0.030232127755880356, + 0.0008499309187754989, + 0.03420301899313927, + 0.0028121687937527895, + 0.029593678191304207, + 0.019548574462532997, + 0.008708152920007706, + 0.03711686655879021, + 0.016552066430449486, + -0.0001688538322923705, + 0.0016299650305882096, + -0.013802783563733101, + 0.001194006996229291, + 0.018772918730974197, + -0.005559734534472227, + -0.04126109927892685, + -0.0027202176861464977, + -0.019056281074881554, + -0.048368096351623535, + 0.006319715175777674, + -0.032862644642591476, + -0.03582969307899475, + 0.020200835540890694, + -0.023899856954813004, + 0.0036659652832895517, + -0.020986799150705338, + 0.03151470422744751, + -0.015074668452143669, + -0.009422486647963524, + 0.012018079869449139, + 0.024519359692931175, + 0.02362024411559105, + -0.0034022917971014977, + 0.033000145107507706, + 0.03313640132546425, + 0.04562812298536301, + -0.018386853858828545, + 0.04828489199280739, + 0.0026400145143270493, + -0.026730937883257866, + -0.011553571559488773, + -0.02118612267076969, + -0.017430415377020836, + 0.010408449918031693, + 0.005831971764564514, + -0.011821725405752659, + -0.10128335654735565, + -0.016233013942837715, + 0.009254884906113148, + -0.003583004465326667, + 0.024329667910933495, + -0.042089421302080154, + 0.006412778049707413, + -0.007046390790492296, + 0.01577295921742916, + 0.04892643168568611, + 0.2583905756473541, + 0.05298084393143654, + -0.003866062965244055, + 0.032856665551662445, + 0.05301628261804581, + -0.0289643332362175, + 0.04809773340821266, + 0.0013847191585227847, + -0.007951418869197369, + -0.015930650755763054, + 0.020656030625104904, + 0.014771698042750359, + -0.02547825686633587, + 0.0032478123903274536, + 0.0054624336771667, + 0.035373982042074203, + -0.04562659189105034, + 0.007432456128299236, + 0.047366730868816376, + -0.004424981772899628, + 0.025315022096037865, + -0.02281934581696987, + -0.04297393560409546, + -0.023322012275457382, + -0.03045676089823246, + -0.035536494106054306, + -0.012204105034470558, + 0.006983221974223852, + -0.004085625521838665, + 0.004297391977161169, + 0.009227472357451916, + 0.03288303315639496, + 0.046570487320423126, + -0.009732261300086975, + -0.043565016239881516, + -0.0436098538339138, + 0.010004041716456413, + -0.013314275071024895, + -0.02542739175260067, + 0.031519729644060135, + 0.03629209101200104, + -0.027310334146022797, + 0.010390530340373516, + 0.03660508990287781, + 0.004261760041117668, + 0.006550916470587254, + 0.04245186597108841, + -0.017893167212605476, + -0.015047783963382244, + -0.013102138414978981, + -0.013417825102806091, + 0.00023767373932059854, + -0.0027565595228224993, + -0.013762837275862694, + 0.031971525400877, + -0.00416777515783906, + 0.02118494175374508, + 0.008552317507565022, + -0.03195997327566147, + -0.03374028578400612, + 0.061557430773973465, + -0.0034035928547382355, + -0.003272428410127759, + -0.04086150974035263, + -0.005983482580631971, + -0.008129790425300598, + 0.0347655788064003, + -0.020921308547258377, + 0.033726274967193604, + 0.06429914385080338, + -0.03754190355539322, + -0.03369521349668503, + 0.02675510197877884, + 0.025245733559131622, + 0.03486223146319389, + -0.03679663687944412, + 0.03413727879524231, + 0.01125410944223404, + -0.018984979018568993, + 0.06476640701293945, + -0.040617600083351135, + 0.0062277899123728275, + -0.03412582352757454, + 0.05729994550347328, + 0.002310703741386533, + -0.006708555854856968, + 0.018405282869935036, + 0.057359516620635986, + 0.008246280252933502, + -0.027078019455075264, + -0.04881434887647629, + -0.014514612033963203, + -0.008676829747855663, + 0.016431009396910667, + -0.00901982095092535, + 0.0018164069624617696, + 0.030804527923464775, + -0.010852531529963017, + -0.03703051432967186, + 0.006674144882708788, + -0.06646527349948883, + 0.001850776025094092, + -0.027604782953858376, + 0.03779234364628792, + 0.034248024225234985, + -0.03090043179690838, + -0.056272219866514206, + -0.017668507993221283, + 0.006945574656128883, + 0.021656285971403122, + -0.03150432929396629, + 0.014237044379115105, + -0.014355681836605072, + 0.022602688521146774, + 0.018104519695043564, + 0.03549030423164368, + 0.054787736386060715, + -0.012723738327622414, + 0.025866961106657982, + -0.020089320838451385, + -0.022679558023810387, + -0.017783014103770256, + -0.009813416749238968, + -0.008640245534479618, + 0.0015858679544180632, + -0.002432284178212285, + -0.01590045355260372, + 0.020828288048505783, + -0.053411468863487244, + 0.03580302372574806, + 0.0232199989259243, + -0.027919601649045944, + -0.03968580812215805, + 0.02688967064023018, + 0.03432757779955864, + 0.016985347494482994, + 0.08595884591341019, + 0.0111200250685215, + -0.004032584838569164, + -0.007858929224312305, + -0.03727523609995842, + 0.018559634685516357, + -0.020937414839863777, + -0.00619656965136528, + -0.01924748346209526, + -0.02910599112510681, + 0.04221057891845703, + 0.006162707228213549, + 0.004107335582375526, + 0.013857082463800907, + 0.024391690269112587, + 0.025263845920562744, + 0.05844235047698021, + -0.02456766366958618, + -0.011316080577671528, + -0.037473682314157486, + -0.008624669164419174, + -0.014664458110928535, + 0.0143020274117589, + -0.023382015526294708, + 0.019535386934876442, + -0.015055255964398384, + 0.0326952300965786, + 0.059590086340904236, + -0.016397278755903244, + -0.01077209785580635, + -0.016553163528442383, + 0.03623522073030472, + -0.018398523330688477, + 0.010860135778784752, + 0.040905747562646866, + -0.03775482624769211, + -0.03599497303366661, + 0.009582781232893467, + 0.002344854176044464, + -0.01970452256500721, + -0.03175627440214157, + -0.012708048336207867, + -0.021882230415940285, + -0.020242098718881607, + 0.019795017316937447, + 0.016455452889204025, + -0.03564184904098511, + -0.01637136936187744, + 0.036654673516750336, + 0.013048617169260979, + 0.009077309630811214, + 0.0015419661067426205, + 0.06639912724494934, + 0.011779947206377983, + 0.02451498992741108, + 0.12052874267101288, + 0.013447499834001064, + -0.03659462556242943, + -0.01894421875476837, + 0.06325755268335342, + 0.0241067036986351, + 0.015159900300204754, + -0.054348304867744446, + -0.036320194602012634, + -0.015978200361132622, + 0.013206299394369125, + 0.009566628374159336, + -0.006869195029139519, + -0.0013350157532840967, + -0.023078933358192444, + -0.02987314574420452, + 0.01143553014844656, + -0.011748428456485271, + 0.014778878539800644, + 0.015570655465126038, + 0.016431009396910667, + -0.05629569664597511, + 0.017496023327112198, + 0.0233272984623909, + -0.03865582495927811, + 0.042086340487003326, + 0.016855614259839058, + 0.016187241300940514, + -0.011285267770290375, + -0.004988625645637512, + 0.008553595282137394, + 0.0008623201283626258, + -0.04328810051083565, + -0.04117441177368164, + -0.007843658328056335, + 0.022434668615460396, + 0.005499802064150572, + 0.004211271181702614, + -0.01545568834990263, + -0.008534363470971584, + -0.03184334561228752, + -0.0031217883806675673, + -0.007221648935228586, + 0.04623449221253395, + -0.02771209180355072, + -0.045578230172395706, + 0.03821532055735588, + -0.003692399710416794, + -0.012376516126096249, + 0.0370115227997303, + -0.01805252768099308, + 0.03657262399792671, + 0.07567466050386429, + 0.02779465541243553, + 0.07147018611431122, + -0.03465797007083893, + -0.02509581670165062, + -0.01907457411289215, + 0.0273392666131258, + -0.045269981026649475, + -0.05522869527339935, + 0.018983399495482445, + -0.0446765273809433, + 0.003245652886107564, + 0.03158027306199074, + -0.008803400211036205, + -0.01606724038720131, + -0.08024028688669205, + 0.0018134048441424966, + 0.028924858197569847, + 0.08536572754383087, + -0.033064376562833786, + -0.03338777646422386, + 0.018595129251480103, + -0.05845995619893074, + 0.04357310011982918, + -0.056889038532972336, + -0.022121140733361244, + 0.013945849612355232, + -0.012719331309199333, + -0.009979140013456345, + 0.019429825246334076, + 0.005629874300211668, + 5.40603869012557e-05, + 0.02430047281086445, + -0.024458851665258408, + 0.004794697742909193, + 0.08591930568218231, + -0.008297756314277649, + -0.04784614220261574, + 0.006728332489728928, + -0.04343296214938164, + 0.0017728500533849, + -0.014772731810808182, + 0.007760105654597282, + -0.03317414969205856, + 0.017120083793997765, + 0.013303256593644619, + -0.06525007635354996, + -0.035347506403923035, + -0.02119850181043148, + -0.0403992161154747, + 0.0840187817811966, + -0.03226298838853836, + -0.02851705253124237, + 0.01884915865957737, + 0.016764551401138306, + -0.01955966278910637, + 0.019502446055412292, + -0.03331673890352249, + 0.011269348673522472, + 0.015188506804406643, + -0.0150613347068429, + -0.010792720131576061, + 0.04624990373849869, + -0.04005422443151474, + 0.004206329118460417, + 0.01933387666940689, + 0.006137591786682606, + 0.014882411807775497, + -0.06773567944765091, + 0.006658422295004129, + 0.008542211726307869, + 0.0225374735891819, + 0.0034124841913580894, + 0.04915047436952591, + -0.02934722974896431, + -0.034861620515584946, + -0.022020597010850906, + 0.0582212395966053, + -0.0448087640106678, + -0.014597143977880478, + -0.002650861395522952, + 0.03298536688089371, + -0.012807196006178856, + -0.051864564418792725, + 0.001429349766112864, + -0.019117362797260284, + -0.0012359850807115436, + 0.011832240037620068, + 0.010283688083291054, + -0.003577780444175005, + 0.006631186231970787, + -0.02699727565050125, + -0.0572991743683815, + 0.03747190162539482, + -0.02575049176812172, + -0.01384128537029028, + -0.03383635729551315, + 0.030753042548894882, + 0.02078111283481121, + 0.07514023035764694, + -0.034190233796834946, + -0.014185023494064808, + -0.036554209887981415, + -0.043325863778591156, + -0.018632490187883377, + -0.012036843225359917, + 0.02420876733958721, + -0.013441895134747028, + 0.02099526673555374, + -0.049590107053518295, + -0.05314598232507706, + 0.02751532755792141, + -0.00528934458270669, + -0.01903488300740719, + 0.03223326429724693, + 0.013657725416123867, + -0.01597382128238678, + -0.030704958364367485, + 0.009897986426949501, + -0.021052349358797073, + 0.0265185609459877, + 0.011290911585092545, + 0.03284391760826111, + -0.0005382033414207399, + 0.022320153191685677, + -0.010647041723132133, + -0.011572426185011864, + 0.02499411813914776, + -0.012183387763798237, + 0.008294756524264812, + 0.044871143996715546, + -0.028290409594774246, + 0.04217531159520149, + -0.025349032133817673, + 0.010525093413889408, + 0.03237845376133919, + 0.026739489287137985, + -0.007965191267430782, + -0.004746655002236366, + -0.052248600870370865, + -0.0460856556892395, + -0.01757003180682659, + 0.0056162490509450436, + 0.02278617024421692, + 0.03184174373745918, + 0.03757370635867119, + 0.049434125423431396, + -0.0325707271695137, + -0.03313678503036499, + -0.0207962803542614, + -0.005164045374840498, + -0.1506546437740326, + -0.0011065962025895715, + -0.04307789355516434, + -0.0011966530000790954, + -0.006477072834968567, + 0.0055492897517979145, + -0.04834149777889252, + -0.03851470723748207, + -0.019278308376669884, + -0.01142891775816679, + -0.06941957771778107, + 0.0003230731235817075, + -0.0048165712505578995, + -0.02387683279812336, + 0.026678062975406647, + -0.01914484053850174, + 0.0067995768040418625, + -2.6142606657231227e-05, + -0.050920724868774414, + 0.0017591308569535613, + 0.015189176425337791, + -0.03111308068037033, + 0.027218636125326157, + 0.01755126379430294, + 0.02486886829137802, + -0.0037375050596892834, + -0.04786243662238121, + 0.027111759409308434, + -0.031335774809122086, + -0.031053386628627777, + -0.026925915852189064, + 0.008420590311288834, + 0.00359136494807899, + 0.01453061681240797, + 0.009545350447297096, + 0.022512312978506088, + 0.035791460424661636, + 0.02196487784385681, + -0.012142861261963844, + 0.04348596930503845, + 0.01359991729259491, + 0.03939735144376755, + -0.07166475057601929, + -0.01909981295466423, + 0.004326964262872934, + 0.016192715615034103, + -0.03936687484383583, + -0.011038880795240402, + -0.028899552300572395, + -0.04441795498132706, + 0.01955854892730713, + 0.025311067700386047, + 0.031097453087568283, + 0.024805860593914986, + 0.0007185690919868648, + -0.018057694658637047, + -0.04331070929765701, + -0.007895616814494133, + -0.014706015586853027, + -0.006185637786984444, + -0.031109005212783813, + 0.010825653560459614, + -0.01096382923424244, + -0.015504934825003147, + -0.032846931368112564, + 0.017484834417700768, + -0.03376101329922676, + 0.01992829144001007, + 0.01910027489066124, + -0.00430716760456562, + 0.028226474300026894, + 0.011475766077637672, + 0.008125930093228817, + -0.022000515833497047, + 0.018757183104753494, + 0.01554037630558014, + 0.004919304046779871, + -0.017535651102662086, + -0.019666148349642754, + -0.02818644978106022, + -0.04559537395834923, + -0.015021063387393951, + -0.021433649584650993, + 0.002818870125338435, + 0.05992044135928154, + -0.013206886127591133, + -0.03126329556107521, + 0.008449116721749306, + -0.08579304069280624, + 0.01940075308084488, + -0.0317908376455307, + -0.03836790472269058, + -0.015506924130022526, + -0.04056617245078087, + -0.010431913658976555, + 0.00505957193672657, + -0.01745758019387722, + 0.02168259024620056, + 0.025919374078512192, + -0.019124282523989677, + 0.011291632428765297, + -0.021562742069363594, + 0.03701360896229744, + 0.01153817679733038, + -0.0011253692209720612, + -0.014873295091092587, + 0.0012352395569905639, + -0.016024844720959663, + -0.0014084571739658713, + -0.028752345591783524, + -0.029134932905435562, + -0.03901802748441696, + 0.003278611693531275, + 0.028270266950130463, + -0.013071692548692226, + 0.004748729057610035, + 0.0023675658740103245, + 0.04942212253808975, + -0.014611572027206421, + 0.0010739682475104928, + 0.005173344165086746, + -0.031630370765924454, + 0.012199816294014454, + -0.02496730163693428, + 0.04341106861829758, + 0.006361482664942741, + -0.03495777025818825, + 0.03377332165837288, + -0.018443215638399124, + 0.027458498254418373, + -0.0015235322061926126, + -0.025596357882022858, + 0.02377188764512539, + 0.013791926205158234, + 0.008507302030920982, + -0.0005370078142732382, + -0.0005111269420012832, + 0.016509808599948883, + -0.038128044456243515, + 0.0035464970860630274, + 0.009020420722663403, + -0.019736479967832565, + 0.004063194151967764, + -0.032934993505477905, + -0.02587849274277687, + 0.0220352690666914, + -0.022420087829232216, + 0.030033592134714127, + -0.006663327105343342, + -0.0009198551415465772, + 0.007411598693579435, + -0.010538730770349503, + -0.027574783191084862, + 0.03192755579948425, + -0.04517434537410736, + 0.04260095953941345, + -0.013221106491982937, + -0.00015118569717742503, + -0.017117701470851898, + 0.007344540674239397, + -0.0379917174577713, + -0.023520726710557938, + 0.028459779918193817, + -0.032679665833711624, + -0.018760425969958305, + 0.008364485576748848, + -0.04446403682231903, + 0.002587253227829933, + -0.023819219321012497, + 0.012759916484355927, + -0.0250491201877594, + 0.03232067450881004, + -0.021804699674248695, + -0.013469609431922436, + 0.08692104369401932, + -0.00791915599256754, + -0.0022713185753673315, + -0.028363335877656937, + 0.06897276639938354, + 0.0038484460674226284, + 0.0026012721937149763, + 0.02226444147527218, + 0.04110215976834297, + -0.02451976016163826, + 0.0015692044980823994, + -0.0051298486068844795, + 0.05423411354422569, + 0.058033015578985214, + 0.03650396317243576, + 0.037823379039764404, + -0.01969708688557148, + 0.03834514692425728, + 0.013599831610918045, + -0.00461844215169549, + 0.028942720964550972, + 0.0017493858467787504, + 0.016122320666909218, + -0.005706741940230131, + -0.026434965431690216, + 0.0034199384972453117, + -0.05583813413977623, + -0.038332726806402206, + -0.036563750356435776, + -0.012276215478777885, + -0.012333345599472523, + -0.030453436076641083, + 0.03042449615895748, + 0.012660274282097816, + 0.03691497817635536, + 0.0006526241777464747, + -0.0038414413575083017, + -0.00211418978869915, + -0.02489433065056801, + 0.0018210280686616898, + -0.028260407969355583, + 0.013381722383201122, + 0.01717672497034073, + 0.0010388829978182912, + 0.055374838411808014, + -0.0029980260878801346, + 0.011107674799859524, + 0.029114967212080956, + 0.011669841594994068, + 0.000906058237887919, + -0.028918657451868057, + 0.0255437009036541, + 0.03290626034140587, + -0.014954443089663982, + -0.002749865874648094, + -0.05787143111228943, + -0.046472951769828796, + -0.015182949602603912, + -0.006236748304218054, + 0.052091214805841446, + -0.002157953567802906, + 0.013911639340221882, + 0.07497305423021317, + 0.08069514483213425, + -0.013785557821393013, + -0.0023981945123523474, + 0.012465383857488632, + 0.041580066084861755, + -0.02458850108087063, + -0.014207866974174976 + ], + "start_index": 0, + "end_index": 134, + "token_count": 36, + "file_type": "avap_code", + "filename": "hello_world.avap", + "addResult": true, + "addVar": true, + "assignment": true, + "registerEndpoint": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "99ca8954-e0b7-566d-92d3-288192d930f0", + "_source": { + "text": "startLoop(i,1,10)\n item = \"item_%s\" % i\n AddvariableToJSON(item,'valor_generado',mi_json)\nendLoop()\naddResult(mi_json)\n\n", + "embedding": [ + 0.0017258437583222985, + -0.0072496384382247925, + -0.01732221059501171, + 0.038777682930231094, + -0.03033374436199665, + 0.009367491118609905, + -0.053437698632478714, + 0.06645520776510239, + -0.01685408689081669, + -0.019248859956860542, + 0.011249803937971592, + 0.015170875005424023, + -0.04874924570322037, + 0.013470579870045185, + 0.013765531592071056, + 0.02318677119910717, + 0.006478926166892052, + 0.01760498248040676, + 0.018252821639180183, + -0.010346587747335434, + 0.03357471525669098, + 0.015253324992954731, + -0.032134778797626495, + 0.0662914589047432, + 0.007263515144586563, + -0.04312381148338318, + 0.020945707336068153, + -0.011252164840698242, + 0.016169430688023567, + 0.023938380181789398, + -0.0118096387013793, + -0.025006964802742004, + -0.010407433845102787, + -0.08742137253284454, + -0.04865546151995659, + -0.016807490959763527, + -0.031023159623146057, + 0.008180270902812481, + -0.04960811138153076, + 0.05920261889696121, + -0.01586027443408966, + 0.004835090599954128, + -0.009117675013840199, + -0.027507510036230087, + 0.040259331464767456, + -0.01819627545773983, + 0.018585877493023872, + -0.015572205185890198, + -0.007232194300740957, + -0.019588639959692955, + -0.01150162611156702, + 0.023602938279509544, + 0.042793624103069305, + -0.009750799275934696, + 0.05754260718822479, + 0.030422300100326538, + -0.0805671364068985, + -0.01563064567744732, + -0.05572650581598282, + -0.010535643436014652, + -0.010277717374265194, + 0.008425974287092686, + -0.03223250433802605, + 0.03802153095602989, + 0.009495553560554981, + 0.03870118036866188, + 0.012609210796654224, + -0.011287855915725231, + -0.00404235627502203, + 0.036757130175828934, + 0.000853492587339133, + 0.012076012790203094, + -0.028598781675100327, + 0.0014402229571714997, + -0.06389909982681274, + -0.0033035525120794773, + 0.03499395772814751, + 0.0014572357758879662, + -0.022559676319360733, + -0.005380980204790831, + -0.005676737055182457, + -0.014601604081690311, + -0.011366801336407661, + -0.012773508206009865, + 0.01772567629814148, + -0.005180211737751961, + -0.001451057381927967, + 0.04590921103954315, + -0.03169900178909302, + 0.017750320956110954, + 0.012404078617691994, + -0.0021677103359252214, + 0.0020328382961452007, + -0.03312503919005394, + -0.018832627683877945, + -0.04406466707587242, + -0.012726482935249805, + 0.048927176743745804, + 0.04142384231090546, + 0.013379788026213646, + 0.017446549609303474, + -0.009573424234986305, + 0.048662181943655014, + 0.009278266690671444, + 0.07497788965702057, + -0.0017346673412248492, + 0.05085054039955139, + -0.008636285550892353, + -0.001768796006217599, + -0.0017146846512332559, + 0.000897071382496506, + 0.015550777316093445, + 0.022804411128163338, + -0.02262088656425476, + -0.011521300300955772, + -0.03348703309893608, + -0.03387417644262314, + -0.010219111107289791, + 0.03884803131222725, + -0.0010783481411635876, + 0.048923976719379425, + -0.013129767961800098, + 0.08087480068206787, + -0.009727339260280132, + 0.0024601726327091455, + -0.010274938307702541, + 0.012556665576994419, + 0.02078414522111416, + 0.0018888131016865373, + 0.020035361871123314, + 0.025789227336645126, + 0.019115570932626724, + 0.029384499415755272, + 0.03187485411763191, + -0.04700683429837227, + -0.04350271821022034, + -0.006498935632407665, + 0.047187428921461105, + 0.04480159282684326, + -0.03468431532382965, + 0.010790431872010231, + 0.029324619099497795, + 0.007054927293211222, + -0.02396976202726364, + 0.04841009899973869, + -0.05168459936976433, + 0.026617873460054398, + 0.005457031540572643, + 0.02619735524058342, + -0.03543075546622276, + -0.03282208740711212, + 0.01771806925535202, + 0.009919138625264168, + -0.0371723398566246, + 0.039852604269981384, + -0.00981965009123087, + -0.03633955866098404, + 0.006093247327953577, + -0.019731005653738976, + 0.03288981691002846, + 0.030581166967749596, + 0.008948229253292084, + -0.021268926560878754, + -0.001260822406038642, + 0.02530750073492527, + -0.004469725303351879, + 0.029232840985059738, + -0.025780726224184036, + -0.006600661668926477, + -0.04923281446099281, + 0.042880065739154816, + -0.022191641852259636, + 0.019521992653608322, + 0.025318097323179245, + -0.005315002519637346, + 0.017641505226492882, + 0.050629112869501114, + 0.007383804302662611, + -0.018537117168307304, + -0.023973463103175163, + -0.01028191763907671, + 0.02896764688193798, + -0.00773970689624548, + -0.03005036897957325, + -0.033632997423410416, + 0.03409719094634056, + -0.003577831434085965, + -0.03063873201608658, + 0.014218284748494625, + 0.06547452509403229, + 0.0037651879247277975, + -0.02538808435201645, + 0.03904185816645622, + -0.013603908009827137, + 0.06394308805465698, + -0.0033755525946617126, + 0.004854100290685892, + -0.0039999461732804775, + -0.017093967646360397, + -0.007000751793384552, + -0.05763159319758415, + 0.017201486974954605, + 0.036478932946920395, + -0.022946322336792946, + -0.025066684931516647, + 0.01043601706624031, + -0.0057746185921132565, + -0.05635637044906616, + 0.019982818514108658, + 0.029803456738591194, + 0.01949630118906498, + 0.010199056938290596, + -0.05509459972381592, + 0.00562562420964241, + -0.0390164740383625, + 0.004008345305919647, + 0.016479235142469406, + -0.02330418862402439, + 0.016488881781697273, + -0.02467735856771469, + -0.02660885453224182, + 0.042772069573402405, + 0.020581092685461044, + 0.08355224132537842, + 0.013994351029396057, + 0.010026277974247932, + 0.0022171318996697664, + -0.0008819716167636216, + 0.010343165136873722, + -0.015104568563401699, + -0.03044208511710167, + 0.013779280707240105, + 0.01610880345106125, + -0.024216225370764732, + 0.015464968048036098, + -0.010611273348331451, + 0.007712041959166527, + 0.014918792061507702, + 0.00015922753664199263, + -0.026710452511906624, + -0.031791966408491135, + -0.013368844985961914, + 0.014651105739176273, + -0.012809776701033115, + -0.04354223608970642, + -0.013469386845827103, + -0.010450274683535099, + 0.030988913029432297, + -0.03254794701933861, + -0.0038118287920951843, + -0.012113734148442745, + -0.008608397096395493, + -0.03638029843568802, + 0.008986684493720531, + -0.006981574930250645, + -0.010131142102181911, + 0.014498387463390827, + -0.01738280989229679, + -0.01706642657518387, + -0.0011304145446047187, + 0.00747325224801898, + -0.02206200361251831, + 0.016811171546578407, + 0.007640814874321222, + 0.052523981779813766, + -0.04004555568099022, + -0.024160893633961678, + 0.02339945361018181, + 0.008898847736418247, + -0.005102335941046476, + 0.018765583634376526, + 0.005314096808433533, + 0.016902625560760498, + 0.021127136424183846, + 0.014063159935176373, + 0.013164529576897621, + -0.01789715327322483, + -0.027079064399003983, + 0.046190038323402405, + 0.03721945360302925, + -0.029761429876089096, + 0.025706952437758446, + 0.006167468149214983, + -0.013309376314282417, + 0.05478421598672867, + -0.04410529136657715, + 0.029338527470827103, + -0.027484336867928505, + -0.011338718235492706, + -0.03230328857898712, + -0.013021353632211685, + -0.041210148483514786, + 0.07685740292072296, + -0.025667106732726097, + 0.0013274275697767735, + 0.007572554983198643, + -0.016563259065151215, + -0.1501011699438095, + -0.022369110956788063, + -0.03274396434426308, + 0.011947061866521835, + -0.004839308559894562, + 0.009815874509513378, + -0.03855566680431366, + 0.003978246822953224, + -0.0805588960647583, + 0.04391642287373543, + -0.012896648608148098, + -0.047724608331918716, + -0.014001606963574886, + 0.001683417009189725, + -0.01322160754352808, + -0.005920811556279659, + -0.010123955085873604, + 0.004999240394681692, + 0.006389789283275604, + -0.0272783562541008, + -0.012094284407794476, + -0.031399983912706375, + 0.02841072902083397, + -0.03977911174297333, + -0.05888121947646141, + -0.018152613192796707, + -0.007786141242831945, + 0.0016433530254289508, + -0.03534722328186035, + -0.006717301905155182, + -0.04067029431462288, + 0.010636890307068825, + 0.003337382571771741, + 0.029890812933444977, + -0.014680550433695316, + 0.04267392307519913, + 0.010628340765833855, + 0.02167191356420517, + 0.030558733269572258, + 0.03182101249694824, + 0.015403542667627335, + 0.01705099828541279, + -0.018299525603652, + 0.0011244529159739614, + -0.005134659819304943, + 0.002840461442247033, + 0.009445362724363804, + 0.02008892595767975, + -0.0560113824903965, + 0.035684894770383835, + -0.025647422298789024, + -0.042334750294685364, + 0.01352585107088089, + -0.039403557777404785, + -0.03294117748737335, + 0.007292137015610933, + -0.022631164640188217, + 0.020285045728087425, + -0.024294164031744003, + 0.0055257538333535194, + -0.02471812814474106, + -0.0022831065580248833, + -0.00973670743405819, + 0.02487202361226082, + -0.0019110721768811345, + -0.03343828395009041, + 0.03815963491797447, + -0.0019319349667057395, + 0.0526270717382431, + -0.02321852557361126, + 0.04749497398734093, + -0.05175736919045448, + -0.0037749898619949818, + 0.002062834333628416, + 0.0038443440571427345, + 0.011612443253397942, + 0.010649953968822956, + -0.039750270545482635, + 0.04457202926278114, + -0.0990038812160492, + -0.007442472502589226, + 0.008158321492373943, + -0.005312433000653982, + 0.06902442872524261, + -0.013960703276097775, + 0.025233032181859016, + -0.0016736892284825444, + 0.019007451832294464, + 0.004003371577709913, + 0.24303175508975983, + -0.04426588490605354, + 0.00032563539571128786, + 0.026299333199858665, + 0.033707745373249054, + -0.04718535766005516, + 0.006282264832407236, + -0.02178015001118183, + -0.03443729877471924, + -0.0258613470941782, + -0.009349607862532139, + 0.030977826565504074, + -0.006630288437008858, + -0.010615565814077854, + -0.0023817254696041346, + 0.04553715139627457, + -0.02517128922045231, + 0.02807060442864895, + 0.036224428564310074, + 0.007525094784796238, + 0.04761720448732376, + -0.02320672757923603, + -0.03197858855128288, + 0.0077376761473715305, + -0.043410755693912506, + -0.014396676793694496, + -0.013173033483326435, + -0.018041666597127914, + -0.01023893617093563, + 0.013970579952001572, + -0.02711493894457817, + -0.00018943425675388426, + 0.01003994606435299, + -0.005133882164955139, + 0.010614612139761448, + 0.02259785681962967, + 0.04058705270290375, + 0.011301994323730469, + 0.03632189333438873, + 0.019430402666330338, + 0.0025837852153927088, + 0.009415545500814915, + 0.01266805175691843, + 0.025145940482616425, + -0.009503623470664024, + -0.02745894342660904, + 0.04934893548488617, + 0.005377317778766155, + -0.03442973271012306, + -0.0018400135450065136, + 0.02485755644738674, + -0.03423159942030907, + 0.0008001501555554569, + 0.028811266645789146, + 0.05011886730790138, + 0.022184904664754868, + -0.00939935352653265, + 0.05605291202664375, + -0.035510722547769547, + -0.005026067607104778, + 0.07056412100791931, + 0.004838967230170965, + -0.0013243305729702115, + -0.03975089639425278, + 0.022518638521432877, + -0.010797906666994095, + 0.04556252434849739, + -0.033069953322410583, + 0.020937638357281685, + 0.0026276970747858286, + -0.0007950529688969254, + -0.009139555506408215, + 0.009105284698307514, + -0.020515399053692818, + -0.026065044105052948, + -0.036878664046525955, + 0.01710529997944832, + -0.01058951672166586, + -0.006515361834317446, + 0.013947772793471813, + -0.03497932478785515, + 0.00596178974956274, + -0.032882798463106155, + 0.06061233952641487, + -0.007200913969427347, + -0.014215553179383278, + -0.005076376721262932, + 0.05766613781452179, + 0.005629820749163628, + 0.019937975332140923, + -0.00825012568384409, + -0.020542439073324203, + -0.018434127792716026, + 0.030412526801228523, + 0.027642667293548584, + 0.04551294445991516, + 0.04554486274719238, + 0.00976306851953268, + -0.052985675632953644, + 0.05739143118262291, + -0.03022131882607937, + -0.014976747334003448, + 0.025875691324472427, + 0.04308624565601349, + 0.001722794841043651, + -0.05078675597906113, + -0.046876419335603714, + -0.014773467555642128, + 0.017208825796842575, + -0.032768767327070236, + -0.042394962161779404, + -0.003984410781413317, + -0.011088931001722813, + -0.04129660874605179, + 0.02621246688067913, + 0.04170868545770645, + 0.025323983281850815, + 0.041340965777635574, + 0.0014891157625243068, + -0.04148760065436363, + -0.01113155297935009, + 0.02664065919816494, + -0.021733956411480904, + -0.005194018594920635, + 0.02371854893863201, + -0.0639672577381134, + 0.0061194864101707935, + 0.00029311515390872955, + -0.047022271901369095, + 0.06429284065961838, + 0.022873567417263985, + -0.0192610714584589, + 0.006537746172398329, + -0.03148607909679413, + 0.046266086399555206, + 0.006713517475873232, + 0.0903768464922905, + 0.004493222571909428, + -0.00029475323390215635, + 0.021483996883034706, + -0.014468275010585785, + -0.016799092292785645, + -0.01906583085656166, + 0.015762653201818466, + 0.00748229306191206, + 0.0031845506746321917, + 0.01556335762143135, + -0.020349258556962013, + -0.04787730053067207, + 0.0008559185662306845, + 0.011843319050967693, + 0.045908551663160324, + 0.039685796946287155, + -0.0021003226283937693, + -0.04723453149199486, + -0.04273519292473793, + -0.027754219248890877, + -0.011582026258111, + -0.00892855878919363, + -0.008375164121389389, + 0.01576405204832554, + 0.021146316081285477, + 0.020412256941199303, + 0.03569997474551201, + -0.020201385021209717, + -0.011845254339277744, + 0.019022921100258827, + -0.01692466251552105, + -0.016795489937067032, + -0.056046392768621445, + -0.003944429103285074, + -0.0813165232539177, + -0.01817219704389572, + -0.020960502326488495, + -0.01909351907670498, + 0.009293584153056145, + -0.05217321589589119, + 0.0024141687899827957, + -0.06554362177848816, + -0.061909470707178116, + -0.028300011530518532, + -0.01627121865749359, + 0.0024512147065252066, + -0.00020280166063457727, + 0.004679880104959011, + 0.000619360595010221, + -0.013927577063441277, + 0.001064953044988215, + 0.006953032687306404, + -0.011690330691635609, + -0.003860876429826021, + 0.10694476217031479, + 0.018033284693956375, + -7.484878733521327e-05, + 0.02849464863538742, + 0.026751043274998665, + 0.0375153012573719, + -0.02726992405951023, + -0.05137249454855919, + -0.020399421453475952, + 0.0051516699604690075, + 0.03220942243933678, + 0.006209929008036852, + -0.013985675759613514, + 0.030915871262550354, + -0.0023892081808298826, + -0.02330540493130684, + -0.007436824031174183, + 0.018647031858563423, + 0.01333331037312746, + -0.010596080683171749, + -0.01811431720852852, + -0.008704864419996738, + -0.005455776117742062, + 0.004857266787439585, + -0.030765673145651817, + 0.060969073325395584, + 0.008957787416875362, + -0.0071313511580228806, + 0.01969020813703537, + 0.00523162679746747, + 0.010709662921726704, + -0.019748279824852943, + -0.004368987400084734, + -0.0582609586417675, + 0.0014719183091074228, + 0.030687879770994186, + -0.014957044273614883, + 0.03181562200188637, + -0.0021279524080455303, + -0.01308298110961914, + -0.040904562920331955, + -0.02331795170903206, + -0.022284401580691338, + 0.0024909384083002806, + 0.006709088105708361, + -0.013312681578099728, + 0.054450999945402145, + 0.03776221349835396, + -0.03187983110547066, + 0.007332067470997572, + -0.06981340050697327, + 0.014211596921086311, + 0.08584814518690109, + -0.030494071543216705, + 0.047417107969522476, + -0.0055717783980071545, + 0.005107597913593054, + 0.04019205644726753, + 0.013685120269656181, + -0.01864541508257389, + -0.05384022369980812, + 0.02624388039112091, + -0.026651009917259216, + 0.004160747863352299, + 0.04493844509124756, + -0.027661431580781937, + 0.017209479585289955, + -0.060481008142232895, + -0.015191000886261463, + -0.0240227859467268, + 0.02510887384414673, + -0.03931126371026039, + 0.01857510209083557, + 0.013895027339458466, + -0.062061332166194916, + 0.011918438598513603, + -0.07600560784339905, + -0.016570085659623146, + -0.0009402452269569039, + -0.010461433790624142, + -0.030499445274472237, + -0.0004351468523964286, + -0.05923786759376526, + 0.04203120246529579, + 0.03816065564751625, + 0.015244010835886002, + 0.00602076156064868, + 0.027234548702836037, + -0.017778372392058372, + -0.03507568687200546, + -0.007030921056866646, + 0.004904894158244133, + 0.0041051628068089485, + 0.006815144792199135, + -0.023214271292090416, + -0.029155682772397995, + 0.054200928658246994, + 0.01768164336681366, + -0.05780944228172302, + 0.015609062276780605, + 0.04325961321592331, + -0.030022108927369118, + 0.06257361173629761, + 0.009701860137283802, + -0.04050661623477936, + -0.045883312821388245, + -0.009311176836490631, + 0.007158290594816208, + 0.015544763766229153, + -0.0021987073123455048, + -0.020217502489686012, + -0.030271824449300766, + 0.005194181576371193, + -0.005552749149501324, + 0.031526993960142136, + -0.0036358374636620283, + -0.029617201536893845, + 0.032308656722307205, + 0.05667409673333168, + 0.016410531476140022, + -0.0147538548335433, + -0.024293385446071625, + 0.05969131737947464, + -0.012289660051465034, + 0.01341361366212368, + 0.050549790263175964, + -0.04569024592638016, + -0.001522150239907205, + 0.016747722402215004, + -0.03173033893108368, + -0.021022334694862366, + -0.02481798268854618, + 0.005552465561777353, + 0.0013900058111175895, + -0.004085998050868511, + 0.00312788225710392, + -0.008634286932647228, + -0.039706867188215256, + -0.046646781265735626, + -0.02180674858391285, + -0.026456240564584732, + -0.008908692747354507, + 0.0012624579248949885, + -0.05012214928865433, + -0.049256905913352966, + 0.010195187292993069, + 0.022957101464271545, + -0.0059435442090034485, + -0.03888577222824097, + -0.004847114440053701, + 0.024068431928753853, + 0.09568333625793457, + -0.037883710116147995, + 0.026222478598356247, + -0.0079467399045825, + -0.011485539376735687, + -0.04217724874615669, + 0.033170185983181, + -0.015542827546596527, + 0.014801781624555588, + 0.019916243851184845, + -0.016364330425858498, + -0.04680723696947098, + 0.03621329367160797, + -0.030145393684506416, + -0.009719280526041985, + 0.04463641345500946, + 0.034477196633815765, + -0.053847331553697586, + -0.01662583090364933, + -0.035774439573287964, + -0.03191518411040306, + -0.02701273001730442, + -0.03860476240515709, + 0.03252219781279564, + 0.0393623486161232, + 0.002233556006103754, + 0.0339965894818306, + -0.01869203895330429, + 0.02087961696088314, + -0.0267665833234787, + -0.025357315316796303, + 0.06599604338407516, + -0.0027317244093865156, + 0.025684721767902374, + -0.02111990936100483, + -0.024065539240837097, + 0.0202407855540514, + 0.018409602344036102, + -0.019358331337571144, + 0.011940876953303814, + -0.032234758138656616, + -0.03524096682667732, + -0.012925910763442516, + -0.003718792228028178, + 0.011598394252359867, + 0.021568695083260536, + 0.0866260752081871, + 0.07477983832359314, + -0.002794240601360798, + 0.005449481308460236, + -0.02933475188910961, + 0.013838361948728561, + -0.13735400140285492, + 0.006899257656186819, + -0.014008136466145515, + 0.017704809084534645, + -0.009521164000034332, + -0.011525742709636688, + -0.019230997189879417, + -0.04360661655664444, + -0.029971709474921227, + -0.039545390754938126, + -0.006742415949702263, + -0.007283629383891821, + -0.0030830800533294678, + 0.0035658858250826597, + -0.007013912778347731, + 0.01705567166209221, + 0.017000485211610794, + -0.06155248358845711, + -0.03977987542748451, + 0.0017908386653289199, + -0.030817387625575066, + -0.032180096954107285, + 0.01737196557223797, + 0.0058966041542589664, + -0.014261710457503796, + 0.006387924775481224, + 0.038553282618522644, + 0.053150199353694916, + -0.02334887720644474, + -0.025351611897349358, + -0.01966647244989872, + -0.025489483028650284, + 0.03457249701023102, + 0.07347133010625839, + 0.011496606282889843, + 0.03813309594988823, + -0.0021065506152808666, + 0.04343734681606293, + -0.011947535909712315, + 0.06886833906173706, + 0.026730971410870552, + 0.021670259535312653, + -0.027236420661211014, + 0.016513420268893242, + -0.007226348388940096, + 0.03339333459734917, + 0.0051794713363051414, + -0.014750267378985882, + -0.023068642243742943, + -0.016367614269256592, + 0.0242573544383049, + 0.03551695495843887, + -0.014010714367032051, + 0.0065413848496973515, + -0.027400512248277664, + -0.02124207466840744, + -0.03545751795172691, + 0.01584722474217415, + 0.03855575621128082, + -0.03606843948364258, + -0.014989083632826805, + 0.041413016617298126, + -0.046424347907304764, + -0.07951967418193817, + 0.018996981903910637, + 0.005887225735932589, + -0.023958666250109673, + 0.006612355355173349, + 0.014585562981665134, + -0.03954211249947548, + 0.03701246529817581, + 0.03056745044887066, + -0.0011226502247154713, + -0.04678205028176308, + 0.0273058470338583, + 0.02181212790310383, + 0.010922021232545376, + 0.008351245895028114, + -0.0015563324559479952, + 0.00021751082385890186, + -0.04938811436295509, + -0.04064919799566269, + -0.02262035757303238, + -0.0077619836665689945, + 0.02983977273106575, + 0.018429378047585487, + -0.0002062576822936535, + 0.020008502528071404, + -0.07398829609155655, + -0.020795462653040886, + 0.031957246363162994, + -0.062163326889276505, + 0.0003624286619015038, + 0.0024255269672721624, + -0.033829737454652786, + 0.06972355395555496, + -0.03802315145730972, + 0.03934238851070404, + 0.028664380311965942, + -0.02801184356212616, + 0.018849488347768784, + 0.002968728309497237, + 0.04095261171460152, + 0.004430955741554499, + -0.014895531348884106, + -0.0024447015020996332, + -0.022836020216345787, + -0.019597182050347328, + 0.013562466017901897, + 0.009383201599121094, + -0.020155178382992744, + 0.027904437854886055, + -0.005785110406577587, + 0.02501552924513817, + -0.034194909036159515, + -0.013519064523279667, + 0.008346655406057835, + 0.045233532786369324, + -0.023597268387675285, + -0.038131918758153915, + -0.0005427628057077527, + -0.042516760528087616, + 0.0175981055945158, + 0.004771232604980469, + 0.0198501143604517, + 0.012837744317948818, + 0.03714628890156746, + 0.022090241312980652, + 0.04333509877324104, + 0.027875272557139397, + -0.015622777864336967, + -0.02110065333545208, + 0.04887955263257027, + 0.028813976794481277, + 0.05074167624115944, + 0.02314012125134468, + -0.007108770310878754, + 0.03039383515715599, + -0.03493209928274155, + -0.03898667171597481, + 0.02063261903822422, + 0.009068205021321774, + -0.005158229731023312, + -0.045392099767923355, + 0.010530983097851276, + -0.018454669043421745, + -0.01908339001238346, + -0.027332566678524017, + -0.018096690997481346, + -0.0169060155749321, + -0.02774771861732006, + -0.005031912587583065, + -0.023818183690309525, + 0.05315731465816498, + -0.033692747354507446, + 0.025647642090916634, + -0.0020498342346400023, + -0.02554386854171753, + 0.004754568450152874, + -0.0073748123832046986, + -0.0415891595184803, + -0.04428272321820259, + 0.004616070073097944, + 0.02288031205534935, + -0.024504387751221657, + 0.009161241352558136, + -0.04798194766044617, + 0.015601097606122494, + -0.027048945426940918, + 0.025002475827932358, + -0.015019898302853107, + 0.017110932618379593, + -0.04259960725903511, + -0.0028670935425907373, + 0.012713263742625713, + 0.02367442473769188, + 0.02168084867298603, + -0.00895270798355341, + 0.043234340846538544, + -0.01736854761838913, + -0.01857888326048851, + 0.010582942515611649, + 0.03479894623160362, + -0.04793078824877739, + 0.0536593422293663, + 0.0317615270614624, + 0.009757849387824535, + 0.02052680402994156, + 0.03125463426113129, + -0.02361285872757435, + -0.0167680773884058, + -0.026330038905143738, + 0.056582048535346985, + -0.01541213784366846, + 0.02310367487370968, + -0.015630008652806282, + 0.022756189107894897, + 0.024977238848805428, + -0.018370619043707848, + 0.0396437793970108, + -0.035744182765483856, + -0.033788710832595825, + -0.006669315043836832, + -0.053421419113874435, + -0.007299681194126606, + -0.027336178347468376, + 0.02054145745933056, + 0.047425925731658936, + -0.02193303592503071, + 0.03198764845728874, + -0.027315516024827957, + -0.00660950131714344, + -0.024520564824342728, + 0.021609382703900337, + 0.02804907225072384, + -0.040914393961429596, + 0.02655782923102379, + 0.03665749356150627, + -0.003874050220474601, + 0.01046678889542818, + -0.019517267122864723, + -0.0024382255505770445, + -0.00841272622346878, + -0.03868955373764038, + -0.044038526713848114, + -0.06156817823648453, + -0.021034009754657745, + -0.0009472654201090336, + -0.006983715109527111, + -0.013823228888213634, + -0.047940030694007874, + -0.027194205671548843, + 0.004309650976210833, + 0.04430749639868736, + -0.0009682238451205194, + 0.03236448019742966, + 0.0391366146504879, + 0.03386371582746506, + -0.025061510503292084, + -0.003402531147003174, + 0.02724432572722435, + -0.049853429198265076, + 0.007180821616202593, + -0.010340038686990738 + ], + "start_index": 0, + "end_index": 134, + "token_count": 42, + "file_type": "avap_code", + "filename": "bucle_1_10.avap", + "addResult": true, + "assignment": true, + "call": true, + "startLoop": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "02286de9-cc62-5ee3-87e5-63b84f74fb47", + "_source": { + "text": "encodeSHA256(\"payload_data\", checksum)\naddResult(checksum)", + "embedding": [ + -0.01694221794605255, + -0.022779181599617004, + -0.0043154251761734486, + -0.035034243017435074, + -0.04883315786719322, + 0.030939744785428047, + 0.0015261482913047075, + 0.037397079169750214, + -0.014068817719817162, + -0.006909445859491825, + -0.010263812728226185, + 0.016435997560620308, + -0.00225588446483016, + -0.006285218987613916, + 0.030279332771897316, + -0.019500907510519028, + 0.01908748224377632, + -0.04020887240767479, + 0.00598957110196352, + -0.02095377817749977, + -0.019648011773824692, + 0.009428372606635094, + -0.06319082528352737, + 0.02632884494960308, + 0.025746090337634087, + 0.010256401263177395, + 0.031285203993320465, + -0.024152841418981552, + 0.010854850523173809, + -0.025408368557691574, + 0.01260278932750225, + 0.019015708938241005, + -0.002393340924754739, + -0.04786524176597595, + -0.022923452779650688, + -0.010343537665903568, + -0.002193345222622156, + 0.001042078947648406, + -0.042156919836997986, + 0.007177939638495445, + 0.0010029820259660482, + -0.0003509812813717872, + -0.010313981212675571, + -0.01992742344737053, + 0.05441544950008392, + -0.040749356150627136, + 0.03009386919438839, + -0.03830815106630325, + -0.025431962683796883, + -0.03171742707490921, + 0.023019813001155853, + 0.03586449474096298, + 0.031923096626996994, + -0.02714218944311142, + 0.059127453714609146, + 0.005408884026110172, + -0.08250624686479568, + 0.009469060227274895, + -0.09428709745407104, + -0.021263593807816505, + -0.03001718409359455, + 0.007131739053875208, + -0.06870705634355545, + -0.019613664597272873, + 0.02844594046473503, + 0.050617918372154236, + 0.030915837734937668, + 0.01370946504175663, + -0.027291161939501762, + 0.023081203922629356, + 0.007134700194001198, + 0.006438217591494322, + -0.03532710298895836, + 0.0021923407912254333, + -0.09088839590549469, + -0.0002347098634345457, + 0.033553365617990494, + 0.04174729436635971, + -0.01849789172410965, + -0.04320904240012169, + -0.0006991379777900875, + -0.03990571200847626, + -0.005052892491221428, + 0.01919446513056755, + -0.03690430149435997, + 0.06225088611245155, + -0.037375275045633316, + 0.038370613008737564, + -0.01574406400322914, + 0.015271272510290146, + 0.011391273699700832, + 0.02666076458990574, + 0.03544112667441368, + -0.07958915084600449, + -0.025353359058499336, + -0.041667256504297256, + 0.014789190143346786, + 0.006977085955440998, + 0.0316266268491745, + 0.036150481551885605, + 0.015969304367899895, + 0.05358371138572693, + 0.017454968765378, + 0.018847227096557617, + 0.0020099959801882505, + 0.0038053791504353285, + 0.02675560675561428, + -0.001345310127362609, + -0.017054717987775803, + -0.040811192244291306, + 0.0010231193155050278, + 0.006880191154778004, + 0.018201621249318123, + 0.03901297226548195, + 0.0035301835741847754, + -0.012166755273938179, + -0.030927231535315514, + 0.01506039872765541, + 0.04281998425722122, + -0.00895710103213787, + 0.05737834423780441, + -0.007629720494151115, + 0.0445326529443264, + -0.044909801334142685, + 0.025651682168245316, + 0.011137832887470722, + -0.014973950572311878, + 0.025928035378456116, + -0.019704356789588928, + -0.03287461772561073, + -0.01840721070766449, + 0.04552876204252243, + -0.030279744416475296, + 0.001659168628975749, + -0.049235474318265915, + -0.005275113973766565, + 0.0162589680403471, + 0.030508384108543396, + 0.012865662574768066, + -0.062208086252212524, + 0.03904706984758377, + 0.021992046386003494, + -0.024717023596167564, + -0.025093382224440575, + 0.04247318208217621, + -0.09200919419527054, + 0.021805336698889732, + 0.02662593685090542, + -0.0024659328628331423, + -0.004247445613145828, + -0.001618863781914115, + 0.03020351193845272, + 0.014276762492954731, + -0.005200081970542669, + 0.03475285694003105, + -0.0002145639737136662, + 0.00525903794914484, + 0.010855699889361858, + -0.03785577043890953, + 0.07296987622976303, + 0.028001241385936737, + 0.006859208922833204, + -0.0030786090064793825, + -0.02110922895371914, + 0.014113004319369793, + -0.012097079306840897, + 0.031828876584768295, + 0.026268476620316505, + -0.005703835282474756, + -0.015212924219667912, + 0.017120614647865295, + -0.04491123557090759, + 0.03182360529899597, + 0.03871792554855347, + -0.009550599381327629, + -0.004136406816542149, + 0.07921361923217773, + 0.01158763375133276, + 0.018360823392868042, + -0.05884283035993576, + -0.01783912628889084, + 0.0014671275857836008, + -0.026865841820836067, + -0.008505994454026222, + -0.013793651945888996, + 0.014278764836490154, + 0.027054307982325554, + -0.02599608711898327, + -0.005466643255203962, + 0.020335989072918892, + -0.015213273465633392, + -0.024335745722055435, + 0.03433810919523239, + -0.020314306020736694, + 0.020643431693315506, + 0.03277451545000076, + 0.0360562726855278, + 0.004831679165363312, + -0.024787312373518944, + 0.010106067173182964, + -0.003830741625279188, + 0.01141089666634798, + -0.005646264646202326, + -0.04388519749045372, + -0.015998344868421555, + 0.005079916212707758, + -0.014957006089389324, + -0.06633764505386353, + 0.011763058602809906, + 0.03518316149711609, + 0.043843310326337814, + 0.03602723404765129, + -0.02283881977200508, + 0.017016315832734108, + -0.006653354503214359, + -0.023414207622408867, + 0.001533792121335864, + -0.0005159786669537425, + -0.019517384469509125, + -0.030722353607416153, + -0.006874145474284887, + 0.06015731394290924, + 0.03592463582754135, + 0.04607819765806198, + 0.0025891452096402645, + -0.006462988443672657, + 0.00255490536801517, + 0.027379030361771584, + 0.020727714523673058, + -0.013239387422800064, + -0.02521245926618576, + 0.02582687698304653, + -0.029576949775218964, + -0.00874193012714386, + 0.011503701098263264, + -0.023433012887835503, + -0.020985452458262444, + 0.038644321262836456, + -0.007132350001484156, + -0.031487151980400085, + -0.021386072039604187, + -0.05939343199133873, + 0.03887849301099777, + -0.03127623721957207, + -0.05480480566620827, + -0.014378098770976067, + 0.004467684309929609, + 0.045908015221357346, + -0.026716558262705803, + -0.00033121765591204166, + -0.009226609952747822, + -0.015125634148716927, + -0.027223702520132065, + 0.010451898910105228, + 0.027655737474560738, + 0.031839799135923386, + 0.05019497126340866, + -0.030633773654699326, + -0.020683476701378822, + 0.023427197709679604, + 0.024378037080168724, + 0.0009109412203542888, + 0.020367752760648727, + 0.047518327832221985, + 0.017708946019411087, + -0.010595472529530525, + -0.05485627427697182, + 0.016985801979899406, + 0.04064809903502464, + -0.0016570704756304622, + 0.020157283172011375, + 0.012484368868172169, + 0.002766505815088749, + -0.009618277661502361, + -0.006963471416383982, + 0.025189658626914024, + -0.029564298689365387, + -0.04087824001908302, + 0.08397190272808075, + -0.026064375415444374, + 0.023904690518975258, + 0.01789076440036297, + -0.006297669373452663, + -0.05532798171043396, + 0.05873117595911026, + -0.020217236131429672, + -0.005286735016852617, + -0.039548300206661224, + 0.006705349311232567, + -0.08507482707500458, + -0.07707072794437408, + 0.026338111609220505, + 0.06751030683517456, + 0.0014177573611959815, + 0.004517700988799334, + 0.009638780727982521, + -0.001899732043966651, + -0.16698235273361206, + -0.050959065556526184, + -0.007734050042927265, + 0.014308908022940159, + -0.035102952271699905, + -0.002029039664193988, + -0.049747154116630554, + 0.025491440668702126, + -0.023178542032837868, + 0.03143217787146568, + -0.004998174030333757, + -0.06751172244548798, + 0.02923058718442917, + -0.020846590399742126, + -0.005246319808065891, + -0.010519996285438538, + 0.019254170358181, + -0.0250486321747303, + 0.046043459326028824, + -0.023824302479624748, + -0.06452805548906326, + 0.0039098975248634815, + 0.015367087908089161, + -0.011093790642917156, + -0.0428323894739151, + -0.01296602375805378, + 0.024250324815511703, + -0.013044092804193497, + -0.048437539488077164, + 0.0012584656942635775, + -0.0011092406930401921, + 0.008976560086011887, + 0.004599099513143301, + 0.012629284523427486, + -0.009896524250507355, + 0.01762044057250023, + 0.0022488113027065992, + -0.011653777211904526, + 0.03816286101937294, + -0.0010606967844069004, + 0.04085632041096687, + 0.021124225109815598, + -0.00512939877808094, + 0.02370496094226837, + -0.017481625080108643, + 0.004110630601644516, + 0.05230892822146416, + 0.021222339943051338, + -0.04903525859117508, + -0.003938919398933649, + -0.018252702429890633, + -0.027393916621804237, + 0.007794095668941736, + 0.01660757139325142, + -0.049224067479372025, + 0.00871281512081623, + -0.0322716198861599, + 0.001533139729872346, + -0.014846223406493664, + 0.0001781600876711309, + -0.028300674632191658, + -0.04050819203257561, + 0.0010877738241106272, + 0.005154293496161699, + 0.0008504927391186357, + -0.03113059513270855, + 0.024286549538373947, + 0.003837238298729062, + 0.03216297924518585, + -0.01842137612402439, + 0.07859797775745392, + -0.026484142988920212, + -0.012933819554746151, + -0.0162477046251297, + -0.029688647016882896, + -0.0018362374976277351, + -0.03405115753412247, + -0.016486937180161476, + -0.020318925380706787, + -0.13021713495254517, + 0.015002625063061714, + -0.014218378812074661, + -0.006598317995667458, + 0.07571402192115784, + -0.005758612882345915, + 0.014353064820170403, + -0.0020481336396187544, + 0.021211029961705208, + 0.03320649638772011, + 0.2209465652704239, + 0.002438267692923546, + -0.06767547875642776, + -0.01828734017908573, + 0.025731278583407402, + -0.004889358766376972, + -0.0317641943693161, + -0.004508520010858774, + 0.006792825181037188, + -0.031429845839738846, + 0.017998363822698593, + 0.018269944936037064, + -0.02763129584491253, + -0.011935176327824593, + 0.024911003187298775, + 0.022367918863892555, + -0.059277329593896866, + 0.008213399909436703, + 0.06843111664056778, + 0.004119875840842724, + 0.008468030020594597, + -0.0044331238605082035, + -0.018231801688671112, + 0.02593407593667507, + -0.038263581693172455, + -0.03963661938905716, + -0.034004129469394684, + 0.009916475974023342, + 0.023488495498895645, + 0.0036664814688265324, + -0.005799338221549988, + 0.032127223908901215, + 0.02072547748684883, + 0.05841929465532303, + -0.006118520628660917, + 0.009484268724918365, + 0.029933655634522438, + -0.005505459848791361, + 0.0022075166925787926, + 0.02088240534067154, + 0.015668772161006927, + -0.012933258898556232, + 0.02879972755908966, + 0.030420314520597458, + -0.018179571256041527, + -0.0279952734708786, + 0.006433982402086258, + -0.002399166114628315, + 0.01368205901235342, + -0.004681382793933153, + -0.017617052420973778, + -0.07070379704236984, + -0.03876359388232231, + 0.007234873715788126, + 0.02336340770125389, + 0.005403811112046242, + -0.020945904776453972, + -0.017881032079458237, + -0.018528850749135017, + -6.346145528368652e-05, + 0.027153179049491882, + 0.015699977055191994, + -0.019161006435751915, + 0.03994328901171684, + -0.005380143411457539, + -0.006846139207482338, + 0.02978024072945118, + -0.034510545432567596, + 0.0345059335231781, + 0.026438521221280098, + 0.025614654645323753, + 0.05148089677095413, + 0.0010455751325935125, + -0.014413055032491684, + 0.03311866894364357, + -0.04680076241493225, + 0.03530966863036156, + 0.0666627362370491, + -0.02496388927102089, + 0.0391240231692791, + -0.07078809291124344, + -0.0014502913691103458, + -0.06976691633462906, + 0.05515607073903084, + -0.014589676633477211, + -0.008016206324100494, + -0.01010978315025568, + 0.054637450724840164, + -0.004385862499475479, + -0.028918685391545296, + -0.044533468782901764, + 0.008274518884718418, + 0.0028956145979464054, + 0.01621607318520546, + 0.031158292666077614, + 0.08167320489883423, + 0.03552623093128204, + -0.0026581285055726767, + -0.03710509091615677, + 0.009557324461638927, + -0.03209628164768219, + 0.005374752916395664, + -0.007469008211046457, + -0.017342817038297653, + 0.02598402090370655, + -0.03253468498587608, + -0.03339880704879761, + -0.031825996935367584, + -0.04624170809984207, + -0.031197816133499146, + -0.03865029290318489, + 0.048132192343473434, + 0.006691711954772472, + 0.03503426909446716, + -0.014697358012199402, + 0.022245507687330246, + -0.017137745395302773, + 0.025999456644058228, + 0.06907489895820618, + 0.04883123189210892, + -0.05682999640703201, + 0.011173352599143982, + -0.02983250841498375, + 0.03850306570529938, + 0.02637505903840065, + 0.00034346026950515807, + -0.029415348544716835, + 0.01745370402932167, + -0.0001972591271623969, + 0.058561716228723526, + 0.01849815994501114, + -0.01903003640472889, + 0.022525906562805176, + -0.018958810716867447, + 0.014019074849784374, + -0.015075651928782463, + 0.03594445437192917, + 0.038700226694345474, + 0.01336331944912672, + 0.014306674711406231, + -0.03487594425678253, + -0.016608059406280518, + -0.03022337146103382, + 0.00346211064606905, + 0.004252143204212189, + -0.032280005514621735, + 0.018963055685162544, + -0.011860906146466732, + -0.01390922162681818, + 0.05679577216506004, + 0.007240548264235258, + 0.06474907696247101, + 0.010368903167545795, + -0.045630890876054764, + -0.02671867050230503, + -0.06111983582377434, + -0.009855514392256737, + -0.0066866460256278515, + -0.04002107307314873, + -0.03886396437883377, + 0.013929756358265877, + 0.004095776472240686, + 0.02789885364472866, + 0.06061263382434845, + 0.0026196110993623734, + -0.0016591046005487442, + -0.03155745565891266, + 0.03665456920862198, + -0.01887538842856884, + -0.006587648298591375, + -0.0029144450090825558, + -0.0035312906838953495, + -0.06428544223308563, + 0.024156615138053894, + 0.016818953678011894, + -0.013478166423738003, + -0.05180272459983826, + -0.027214277535676956, + 0.01055638026446104, + -0.0336390845477581, + 0.05037766695022583, + -0.0034792039077728987, + -0.054018549621105194, + -0.031006863340735435, + 0.014508345164358616, + -0.014360042288899422, + -0.018788442015647888, + -0.010336475446820259, + 0.024417158216238022, + -0.04830075800418854, + -0.025655541568994522, + 0.09993354231119156, + -0.03674314171075821, + -0.006464883219450712, + -0.011541021056473255, + 0.05190595984458923, + -0.012324930168688297, + -0.007598035968840122, + -0.0073920562863349915, + -0.030499981716275215, + 0.04477089270949364, + 0.03677905723452568, + 0.006021032575517893, + -0.022163566201925278, + -0.003698027227073908, + -0.01774577423930168, + -0.00982694886624813, + 0.011196838691830635, + -0.005300386343151331, + -0.04887966439127922, + -0.044122494757175446, + -0.0026163863949477673, + -0.0414016991853714, + -0.010409642942249775, + 0.03725709766149521, + -0.0018045019824057817, + 0.04772551357746124, + -0.02028820291161537, + 0.037935372442007065, + -0.02597247064113617, + -0.006909992080181837, + -0.0035544633865356445, + 0.012501752004027367, + 0.006621585693210363, + -0.022259345278143883, + 0.01506735384464264, + 0.025404125452041626, + -0.021465910598635674, + 0.0027516577392816544, + -0.0031016769353300333, + -0.004945463966578245, + -0.025654638186097145, + -0.030707744881510735, + -0.005232291296124458, + 0.06140238046646118, + 0.013176674023270607, + -0.01121443696320057, + 0.0584028922021389, + 0.03709310665726662, + -0.04298761114478111, + 0.036313023418188095, + 0.0055252015590667725, + 0.01805306226015091, + 0.033619895577430725, + 0.03457861393690109, + 0.039722371846437454, + -0.07530727237462997, + -0.005140914116054773, + 0.0055604781955480576, + -0.03912797197699547, + -0.005091098602861166, + -0.03826497867703438, + 0.010274483822286129, + -0.045462481677532196, + 0.039439234882593155, + 0.025608720257878304, + -0.026763932779431343, + 0.014400932937860489, + -0.05931678041815758, + 0.0014674118719995022, + -0.018202463164925575, + 0.019673915579915047, + -0.028150785714387894, + 0.0022993197198957205, + 0.0010666967136785388, + -0.07284048944711685, + 0.01605311781167984, + -0.05492939427495003, + -0.0224143136292696, + 0.01903696544468403, + 0.013914629817008972, + -0.020148305222392082, + 0.013512931764125824, + -0.008694593794643879, + 0.018730923533439636, + 0.02058050036430359, + -0.003762222360819578, + -0.015913929790258408, + 0.042507581412792206, + 0.001819573575630784, + -0.029527371749281883, + -0.00010933116573141888, + 0.014338372275233269, + 0.061957716941833496, + -0.013140740804374218, + -0.01022054348140955, + 0.037346385419368744, + 0.032641731202602386, + 0.024012068286538124, + -0.04621832072734833, + -0.006585732102394104, + -0.002916836878284812, + -0.04514042288064957, + 0.08070802688598633, + -0.029940366744995117, + -0.024631569162011147, + -0.013287446461617947, + 0.046411458402872086, + -0.01806296408176422, + -0.010039851069450378, + -0.03184535726904869, + -0.02272079326212406, + -0.01119553204625845, + 0.018671056255698204, + -0.0152501929551363, + -0.002876059617847204, + -0.018267307430505753, + -0.032444197684526443, + 0.03975459933280945, + -0.005583127960562706, + -0.022531410679221153, + -0.023819580674171448, + 0.003297986928373575, + 0.021091075614094734, + 0.0031125866807997227, + -0.0033419120591133833, + 0.044766686856746674, + -0.010876084677875042, + -0.0018416960956528783, + -0.015596786513924599, + -0.00667742220684886, + -0.03874659165740013, + -0.008172201924026012, + -0.021506715565919876, + 0.012557447887957096, + 0.026213591918349266, + 0.025224225595593452, + 0.02568039484322071, + -0.03440900146961212, + -0.0118767861276865, + -0.0014813494635745883, + -0.013560992665588856, + -0.014524929225444794, + 0.00552657525986433, + 0.04167629033327103, + -0.010489439591765404, + 0.045307427644729614, + 0.025521904230117798, + 0.0008610043441876769, + -0.049332018941640854, + -0.056715577840805054, + -0.011073777452111244, + 0.050795651972293854, + -0.06069478765130043, + -0.021088959649205208, + -0.040774159133434296, + -0.011817188002169132, + -0.02393200434744358, + 0.017164260149002075, + -0.016898231580853462, + 0.007121946197003126, + 0.00019085052190348506, + -0.028633294627070427, + -0.03869108855724335, + -0.008235761895775795, + 0.0026611851062625647, + 0.01440526358783245, + 0.03543519973754883, + -0.01886839233338833, + -0.0107627734541893, + -0.014985166490077972, + -0.010064215399324894, + -0.0379769504070282, + 0.0056312354281544685, + -0.03276550769805908, + 0.04257715865969658, + 0.06228724494576454, + 0.04021238163113594, + 0.00960207637399435, + -0.02746843360364437, + -0.017435358837246895, + -0.019070105627179146, + 0.013141109608113766, + 0.038373854011297226, + -0.0439155139029026, + 0.0468326061964035, + -0.01994953490793705, + 0.001937050954438746, + 0.025887805968523026, + -0.026669520884752274, + 0.0013826440554112196, + 0.0016726790927350521, + -0.015751449391245842, + -0.05831090360879898, + -0.01401014905422926, + 0.030655262991786003, + -0.037468962371349335, + 0.018785510212183, + 0.015860116109251976, + 0.03643256798386574, + -0.029815807938575745, + -0.024233970791101456, + 0.0007415298605337739, + 0.026148207485675812, + -0.14938516914844513, + 0.02816719561815262, + -0.014125796966254711, + -0.005662000738084316, + -0.028948083519935608, + -0.006275127176195383, + -0.037516865879297256, + -0.04349417984485626, + -0.015170899219810963, + -0.004822505638003349, + -0.055075548589229584, + 0.0039639463648200035, + 0.047997165471315384, + -0.022727537900209427, + -0.051048457622528076, + -0.013641017489135265, + -0.00200442923232913, + 0.007813287898898125, + -0.02741285227239132, + 0.03427693620324135, + -0.006238415837287903, + -0.03694406524300575, + -0.022150466218590736, + 0.02415919117629528, + -0.025231963023543358, + 0.01683981530368328, + 0.006998625583946705, + 0.010189207270741463, + -0.0020193778909742832, + -0.03574764356017113, + 0.00019377010175958276, + -0.006250782869756222, + 0.028916440904140472, + 0.056087031960487366, + 0.0031424653716385365, + 0.0057340082712471485, + 0.010819199495017529, + 0.010985495522618294, + -0.020605068653821945, + 0.01605701446533203, + -0.0531981959939003, + 0.040290623903274536, + -0.030951134860515594, + -0.04135659337043762, + 0.05658042058348656, + 0.036000754684209824, + -0.015545664355158806, + 0.0014438709476962686, + -0.017169639468193054, + -0.000914236472453922, + 0.012989445589482784, + -0.035087887197732925, + 0.0038179822731763124, + 0.009194762445986271, + -0.01828116737306118, + -0.019827833399176598, + -0.03709134832024574, + -0.018449272960424423, + 0.006087523885071278, + 0.0027537785936146975, + -0.0005471069598570466, + 0.030614405870437622, + -0.038754213601350784, + -0.06212347745895386, + -0.007737557869404554, + 0.015654182061553, + -0.039216626435518265, + -0.01755109801888466, + 0.021625090390443802, + 0.0026090354658663273, + -0.037867508828639984, + 0.007958605885505676, + 0.01164034940302372, + -0.03874305635690689, + 0.00922602042555809, + 0.04163774475455284, + 0.028593817725777626, + 0.032202403992414474, + -0.012840558774769306, + -0.0061881402507424355, + 0.0023358240723609924, + -0.019706010818481445, + -0.019604438915848732, + 0.025024302303791046, + 0.038886383175849915, + -0.005748721770942211, + -0.007360408082604408, + 0.04012556001543999, + -0.036372311413288116, + -0.011837188154459, + -0.02452106960117817, + -0.04160898178815842, + 0.0003908807993866503, + -0.009082570672035217, + -0.015445093624293804, + 0.0051404996775090694, + 0.016965728253126144, + 0.029201876372098923, + -0.0015487478813156486, + -0.007020943332463503, + 0.04930686950683594, + 0.015072910115122795, + 0.00840557087212801, + 0.02013845555484295, + 0.002684257924556732, + -0.02419406920671463, + 0.057936202734708786, + 0.0008388960850425065, + 0.02831875905394554, + 0.02595219947397709, + 0.03679628297686577, + 0.030312126502394676, + -0.007593938149511814, + 0.01216762326657772, + -0.05254148319363594, + -0.023652732372283936, + 0.0010972495656460524, + -0.0007486817776225507, + -0.031288329511880875, + -0.018596166744828224, + 0.006779962684959173, + 0.014222248457372189, + 0.009074688889086246, + -0.025024352595210075, + 0.058407120406627655, + -0.020768942311406136, + 0.01455299835652113, + 0.004043166060000658, + -0.024593768641352654, + -0.01730141043663025, + -0.012500420212745667, + -0.047279417514801025, + 0.03178958222270012, + 0.0017137040849775076, + 0.024315176531672478, + -0.011919795535504818, + 0.010452931746840477, + 0.054037608206272125, + 0.015016931109130383, + 1.4767166248930153e-05, + 0.023008255288004875, + -0.040111348032951355, + 0.0012189639965072274, + 0.0003967667289543897, + 0.005816470365971327, + -0.0025819758884608746, + 0.00927300751209259, + 0.01139742974191904, + 0.020818818360567093, + -0.03506668657064438, + -0.01365247368812561, + 0.01831168122589588, + -0.016499316319823265, + 0.020295005291700363, + -0.023185458034276962, + 0.004303127992898226, + 0.004601034801453352, + 0.014253072440624237, + -0.008333799429237843, + 0.029583469033241272, + 0.0016418112209066749, + 0.01517585851252079, + 0.011776043102145195, + -0.0025891850236803293, + 0.008119629696011543, + -0.00443275598809123, + -0.01947956345975399, + 0.012679862789809704, + 0.011537358164787292, + 0.02673936076462269, + 0.024489233270287514, + -0.017254715785384178, + -0.0338703989982605, + -0.03586270660161972, + 0.041317377239465714, + 0.03295527771115303, + 0.0033136203419417143, + -0.023330392315983772, + 0.07217594236135483, + 0.03959843888878822, + -0.006357527803629637, + 0.009223654866218567, + 0.04514897242188454, + -0.014713993296027184, + -0.0039047864265739918, + 0.06535021215677261, + 0.020375069230794907, + 0.026083270087838173, + 0.001988898264244199, + -0.03445257619023323, + 0.003985922317951918, + 0.016437897458672523, + -0.014159089885652065, + -0.041272152215242386, + 0.046261753886938095, + 0.05630997568368912, + 0.02160372957587242, + -0.021470744162797928, + -0.03371889889240265, + 0.019235529005527496, + -0.012043455615639687, + -0.022482598200440407, + -0.02705642580986023, + -0.007302905898541212, + -0.01709451712667942, + 0.014058435335755348, + 0.009385903365910053, + 0.05614743381738663, + 0.006966656539589167, + 0.03697705268859863, + -0.04072298854589462, + 0.027892520651221275, + -0.03616253286600113, + -0.025687020272016525, + -0.03738949075341225, + -0.044418953359127045, + -0.027224289253354073, + -0.0013011334231123328, + 0.02905677817761898, + -0.017348242923617363, + 0.003662081202492118, + 0.015966614708304405, + 0.02991732396185398, + 0.01645246334373951, + -0.01409200206398964, + -0.01726902648806572, + 0.020057236775755882, + -0.005708296317607164, + 0.0033794103655964136, + 0.0019269937183707952, + -0.05556850507855415, + 0.022992990911006927, + 0.01497991755604744, + 0.03405534848570824, + 0.023022230714559555, + -0.0072550093755126, + -0.012211674824357033, + 0.035878099501132965, + -0.03163297101855278, + 0.039409685879945755, + 0.004229109734296799, + 0.01021509151905775, + -0.020260512828826904, + 0.010503371246159077 + ], + "start_index": 0, + "end_index": 58, + "token_count": 16, + "file_type": "avap_code", + "filename": "hash_SHA256_para_integridad.avap", + "addResult": true, + "crypto_ops": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "ac9c6425-c7ce-5584-ba0e-9beffc11a7e5", + "_source": { + "text": "function suma(a, b){\n total = a + b\n return(total)\n }\nresultado = suma(10, 20)\naddResult(resultado)", + "embedding": [ + 0.003641928778961301, + 0.023930096998810768, + -0.051180463284254074, + -0.01960495300590992, + -0.04103487357497215, + 0.003822495462372899, + -0.012930412776768208, + 0.04629286006093025, + -0.020254947245121002, + -0.0299979317933321, + -0.012378410436213017, + 0.05228815972805023, + -0.0157368965446949, + -0.021585773676633835, + -0.028879815712571144, + 0.042404208332300186, + 0.01431647501885891, + 0.011991779319941998, + 0.009157463908195496, + -0.011807585135102272, + 0.006084959022700787, + 0.04525190219283104, + -0.02928965538740158, + 0.009289105422794819, + -0.02800855226814747, + -0.010398708283901215, + 0.011466799303889275, + -0.0064638047479093075, + -0.0010820790193974972, + 0.0022461856715381145, + 0.02432142198085785, + -0.04123279079794884, + -0.01142759621143341, + -0.05553213506937027, + -0.04137143865227699, + 0.02340480126440525, + -0.02725582756102085, + -0.027194559574127197, + -0.0338352732360363, + 0.03814266622066498, + -0.02067461423575878, + -0.008096162229776382, + -0.02771918661892414, + -0.017285646870732307, + 0.015369358472526073, + 0.011775636114180088, + 0.010134201496839523, + -0.020752953365445137, + -0.031151924282312393, + -0.0531667061150074, + -0.007027789019048214, + 0.019170153886079788, + 0.05328969284892082, + -0.0024451131466776133, + 0.0009140258189290762, + 0.03441715985536575, + -0.009587903507053852, + 0.014113793149590492, + -0.01737406477332115, + -0.013146637007594109, + -0.04379221796989441, + 0.02912926860153675, + -0.05841747671365738, + -0.010149005800485611, + 0.007825746200978756, + 0.025110391899943352, + 0.017121639102697372, + -0.005463305860757828, + 0.0016652311896905303, + 0.015981176868081093, + 0.016495689749717712, + 0.05494624748826027, + -0.027944179251790047, + -0.039708901196718216, + -0.06589158624410629, + 0.00884294044226408, + -0.019423622637987137, + -0.013522966764867306, + 0.0007466860697604716, + 0.01999262347817421, + -0.0021566376090049744, + -0.032733842730522156, + -0.006101347040385008, + 0.002742509823292494, + -0.06555511057376862, + 0.018467122688889503, + 0.046701863408088684, + 0.015574593096971512, + -0.06128412485122681, + 0.046153925359249115, + -0.01617571897804737, + -0.03054421953856945, + 0.019759802147746086, + 0.002711288630962372, + -0.01587117649614811, + -0.06249929219484329, + 0.01798189803957939, + -0.027466541156172752, + 0.019372275099158287, + 0.030716946348547935, + 0.029747530817985535, + 0.03702940419316292, + 0.041434988379478455, + -0.011794976890087128, + 0.015204021707177162, + -0.005269862711429596, + 0.02342773601412773, + -0.019707022234797478, + 0.06536877155303955, + -0.011452139355242252, + 0.04282816872000694, + 0.011573126539587975, + 0.013110565952956676, + 0.00030745723051950336, + 0.0023421954829245806, + -0.002616426208987832, + -0.011861402541399002, + 0.040243640542030334, + 0.05697618052363396, + 0.023487307131290436, + 0.009235632605850697, + 0.018289249390363693, + -0.00010889081022469327, + -0.010081564076244831, + -0.01786724478006363, + 0.011359506286680698, + -0.03109562397003174, + 0.012367242947220802, + -0.004320926498621702, + 0.02073979750275612, + 0.0020391540601849556, + 0.04097074642777443, + 0.011310196481645107, + 0.04076794907450676, + -0.03930845111608505, + -0.02868283912539482, + 0.04467563331127167, + 0.04959150776267052, + 0.010982397012412548, + -0.04635737091302872, + -0.005968501325696707, + -0.006712006404995918, + -0.0009699915535748005, + -0.02523077093064785, + 0.05357741564512253, + -0.08716200292110443, + 0.009206854738295078, + -0.03664432466030121, + -0.002287128008902073, + 0.016724998131394386, + -0.01645107939839363, + 0.03399413824081421, + 0.012678501196205616, + -0.016747497022151947, + 0.02548132836818695, + 0.004575369879603386, + 0.013551043346524239, + 0.023393556475639343, + -0.016997266560792923, + -0.0027195829898118973, + 0.04373033717274666, + 0.0270902831107378, + 0.019496619701385498, + -0.00788345467299223, + 0.0002040289982687682, + -0.04269922897219658, + 0.008267363533377647, + 0.028916211798787117, + 0.015245968475937843, + -0.050724927335977554, + -0.008816718123853207, + -0.06936807185411453, + 0.03475796803832054, + 0.021607408300042152, + 0.01079300232231617, + 0.033980343490839005, + 0.05149979144334793, + 0.01420837827026844, + 0.003062234725803137, + -0.054919250309467316, + -0.007688341196626425, + -0.060272812843322754, + 0.024192484095692635, + -0.03287341445684433, + -0.025332991033792496, + 0.05571141839027405, + 0.004900815896689892, + 0.018844861537218094, + 0.030368715524673462, + 0.03176884725689888, + 0.012547342106699944, + -0.049470189958810806, + 0.06313955038785934, + -0.010019952431321144, + 0.004192765336483717, + 0.00019337402773089707, + 0.023374786600470543, + -0.013320645317435265, + -0.011594641022384167, + 0.01589428447186947, + -0.016276013106107712, + 3.135242513963021e-05, + 0.001337231369689107, + -0.030260330066084862, + -0.01316444855183363, + -0.012445257976651192, + -0.049853574484586716, + -0.05777803808450699, + -0.010924520902335644, + 0.015550930052995682, + 0.038348060101270676, + 0.03941306099295616, + -0.02077481336891651, + 0.03138672187924385, + -0.0020070236641913652, + -0.002083690371364355, + 0.02612764947116375, + -0.0032065785489976406, + 0.002864405745640397, + -0.026768919080495834, + -0.022081077098846436, + 0.06237354502081871, + 0.03742789849638939, + 0.08674218505620956, + -0.026804843917489052, + -0.042537134140729904, + 0.02312861569225788, + -0.023341448977589607, + -0.009929021820425987, + 0.0011647322680801153, + -0.014793348498642445, + 0.017785511910915375, + 0.01716519705951214, + -0.04027427360415459, + 0.007742296904325485, + -0.03027450665831566, + 0.0047407434321939945, + 0.03546886518597603, + -0.013276037760078907, + 0.012012232095003128, + -0.03942622244358063, + -0.01967555098235607, + -0.0007595933275297284, + 0.004667956382036209, + -0.025427119806408882, + 0.018121177330613136, + 0.005509556271135807, + 0.030651329085230827, + -0.012335148639976978, + -0.05831745266914368, + 0.005037552211433649, + -0.03468500077724457, + 0.01624378003180027, + 0.013328290544450283, + 0.008562439121305943, + 0.011053119786083698, + 0.036932166665792465, + -0.016426634043455124, + -0.04366756230592728, + -0.010748818516731262, + 0.005792328156530857, + 0.013029689900577068, + 0.004492543172091246, + 0.021178899332880974, + 0.014536692760884762, + 0.012783221900463104, + -0.0017577089602127671, + 0.02904297038912773, + -0.006369945127516985, + -0.04988754913210869, + -0.008283067494630814, + -0.0006873938837088645, + -0.05731935426592827, + -0.004772684536874294, + 0.003636049572378397, + 0.024859508499503136, + 0.004868076182901859, + -0.010790025815367699, + 0.07604631036520004, + -0.022264281287789345, + -0.009433661587536335, + -0.03137463703751564, + -0.019620276987552643, + 0.003328263061121106, + 0.04475119337439537, + -0.06648910790681839, + 0.00863603875041008, + 0.004592894576489925, + 0.011610623449087143, + -0.08730713278055191, + -0.0012045011390000582, + -0.015184478834271431, + 0.06203553080558777, + -0.013236671686172485, + -0.035695623606443405, + 0.022302914410829544, + -0.0063154613599181175, + -0.15008555352687836, + -0.05225560814142227, + 0.017334941774606705, + -0.027317067608237267, + -0.0159857627004385, + 0.028384221717715263, + -0.03251670300960541, + -0.009318435564637184, + -0.008467493578791618, + 0.0570414774119854, + -0.041705530136823654, + -0.06548257917165756, + -0.012997293844819069, + -0.055669330060482025, + 0.003417644649744034, + -0.005968086421489716, + -0.035774748772382736, + 0.008338726125657558, + -0.015360509045422077, + -0.014919743873178959, + -0.024198025465011597, + -0.023247329518198967, + -0.008565529249608517, + -0.030739489942789078, + -0.062374576926231384, + -0.015729112550616264, + 0.0061988793313503265, + 0.022106923162937164, + -0.04294884577393532, + 0.021523792296648026, + -0.042485881596803665, + 0.001388484612107277, + -0.012646225281059742, + 0.0002893985656555742, + 0.015346323139965534, + 0.04195719584822655, + 0.0005843542166985571, + 0.019675390794873238, + 0.021280428394675255, + 0.011856160126626492, + 0.009585985913872719, + 0.016880687326192856, + -0.005019970238208771, + 0.03526884689927101, + 0.0034678287338465452, + 0.007984057068824768, + 0.015121860429644585, + 0.03716019541025162, + -0.07511839270591736, + 0.0061082737520337105, + -0.014082618989050388, + -0.05073259398341179, + 0.011611344292759895, + -0.02415156178176403, + -0.03376469388604164, + -0.0017398573691025376, + -0.039432063698768616, + 0.02000197023153305, + 0.006281513255089521, + 0.05057268962264061, + -0.029490264132618904, + 0.017092067748308182, + -0.008924298919737339, + -0.020189732313156128, + -0.019457442685961723, + 0.005256993230432272, + 0.02158145233988762, + 0.02523832581937313, + 0.027036989107728004, + -0.051799576729536057, + 0.06160835549235344, + -0.05565545707941055, + -0.010127446614205837, + 0.019588293507695198, + -0.01394995953887701, + -0.019043350592255592, + -0.028096390888094902, + -0.0475560687482357, + 0.05099328234791756, + -0.11098451167345047, + -0.010737933218479156, + -0.022509142756462097, + 0.00781322829425335, + 0.04715399444103241, + 0.00937338825315237, + -0.06630834937095642, + -0.046254243701696396, + -0.018369035795331, + 0.012718942947685719, + 0.22683069109916687, + -0.0003024666220881045, + 0.028766963630914688, + -0.009010610170662403, + 0.018400153145194054, + -0.011599257588386536, + -0.007543935906141996, + -0.030505811795592308, + 0.0015635627787560225, + -0.046466246247291565, + 0.002187456004321575, + 0.04667564108967781, + -0.018746474757790565, + -0.01669319160282612, + -0.025627296417951584, + 0.027299830690026283, + -0.03452208638191223, + 0.04442382976412773, + 0.053242605179548264, + -0.021390210837125778, + 0.04402865096926689, + -0.02051839604973793, + -0.07310066372156143, + 0.03757493570446968, + -0.0654563456773758, + -0.0552467443048954, + -0.023257985711097717, + 0.03207339346408844, + -0.027100911363959312, + 0.025554371997714043, + -0.024576600641012192, + -0.010874702595174313, + 0.01003822311758995, + -0.010892105288803577, + 0.021690543740987778, + -0.04232921451330185, + 0.031733158975839615, + 0.015009253285825253, + 0.032344184815883636, + 0.03311201184988022, + 0.04051998257637024, + -0.03500697761774063, + 0.008320963010191917, + 0.06168738007545471, + -0.011031486093997955, + 0.005118044558912516, + 0.026375334709882736, + -0.03712616115808487, + 0.014617592096328735, + -0.017186980694532394, + 0.04356079176068306, + -0.029154526069760323, + -0.008443663828074932, + -0.009826303459703922, + -0.010255116969347, + -0.0002667304943315685, + 0.02594762295484543, + 0.03929727524518967, + 0.014901803806424141, + -0.013848637230694294, + 0.028077490627765656, + 0.0061899209395051, + 0.04357214644551277, + -0.01857038587331772, + 0.012062660418450832, + -0.002529434859752655, + 0.011233900673687458, + -0.027700060978531837, + 0.02563304826617241, + 0.017841942608356476, + -0.001926405355334282, + 0.012832539156079292, + 0.006990788038820028, + 0.004940991755574942, + 0.0015613563591614366, + -0.007929520681500435, + 0.019551964476704597, + -0.034957155585289, + 0.00010727575863711536, + 0.010585135780274868, + -0.040733110159635544, + -0.021801866590976715, + -0.056841783225536346, + -0.004619591403752565, + 0.013146900571882725, + 0.007464475464075804, + -0.03248308598995209, + 0.051825691014528275, + 0.01935582049190998, + 0.006193966139107943, + -0.07505326718091965, + 0.00238418229855597, + 0.01783989556133747, + -0.019451182335615158, + 0.0028375783003866673, + 0.02522764354944229, + 0.015472723171114922, + 0.002589118666946888, + -0.04209831357002258, + 0.022461017593741417, + -0.006177649833261967, + 0.013282961212098598, + 0.02991901896893978, + 0.017950579524040222, + 0.03961430490016937, + -0.027290912345051765, + -0.045934487134218216, + 0.0008356962352991104, + 0.000743761716876179, + -0.0038723174948245287, + -0.05375347286462784, + 0.01174530666321516, + 0.0052796765230596066, + 0.009828848764300346, + 0.026596782729029655, + 0.007413220126181841, + 0.032749567180871964, + 0.02143390290439129, + 0.024964774027466774, + -0.0069908942095935345, + -0.012237867340445518, + 0.004543536342680454, + -0.06221245974302292, + -0.03203214332461357, + 0.0013931379653513432, + -0.04374176263809204, + 0.005751300603151321, + -0.001318243332207203, + -0.0006327346782200038, + 0.013039059937000275, + 0.05205103009939194, + -0.020335517823696136, + -0.026290835812687874, + 0.0008498879615217447, + 0.03945792466402054, + 0.01677011512219906, + 0.043164703994989395, + -0.012990632094442844, + 0.011991197243332863, + 0.026708688586950302, + -0.0055667925626039505, + -0.034306611865758896, + -0.027735747396945953, + -0.0010640094988048077, + -0.027367260307073593, + 0.0221367496997118, + 0.05478120967745781, + 0.025664005428552628, + -0.029520178213715553, + 0.02855498343706131, + 0.049292467534542084, + 0.04095732048153877, + 0.050507552921772, + 2.2139034626889043e-05, + 0.003985797520726919, + -0.06554439663887024, + -0.015416953712701797, + -0.015824193134903908, + -0.025808924809098244, + -0.01750352792441845, + 0.00555305415764451, + 0.015427673235535622, + -0.027675341814756393, + 0.024154620245099068, + -0.0008326403913088143, + -0.024196166545152664, + -0.019795946776866913, + -0.014646163210272789, + -0.0033686580136418343, + -0.0056748222559690475, + 0.03936127945780754, + -0.01634282059967518, + 0.016054917126893997, + -0.023399917408823967, + 0.017832918092608452, + -0.031017469242215157, + -0.026651743799448013, + -0.00525812478736043, + -0.01743270643055439, + -0.04166324436664581, + -0.0012857721885666251, + -0.010022493079304695, + -0.0010654265061020851, + -0.008334323763847351, + 0.018609927967190742, + 0.018421797081828117, + 0.007831892929971218, + -0.0074874842539429665, + 0.057381756603717804, + -0.007641292177140713, + -0.05000046268105507, + 0.09760846942663193, + 0.002320569008588791, + -0.02766634337604046, + 0.002022772328928113, + 0.03213608264923096, + 0.0004114982730243355, + -0.013826373964548111, + -0.006073311902582645, + -0.0313250869512558, + 0.057529907673597336, + 0.056301843374967575, + -0.017248380929231644, + 0.013966396450996399, + -0.030521739274263382, + -0.031089426949620247, + 0.0075438544154167175, + -0.011462339200079441, + 0.060219407081604004, + 0.008502944372594357, + -0.05297257378697395, + 0.00814105849713087, + -0.005888267885893583, + -0.0007638066308572888, + 0.036181505769491196, + -0.013266363181173801, + 0.046092525124549866, + -0.046576932072639465, + 0.02885030023753643, + -0.003959306515753269, + -0.03589024394750595, + 0.003778507700189948, + -0.02026430517435074, + 0.0013057405594736338, + -0.02947610430419445, + 0.0454866960644722, + -0.004628942348062992, + -0.015314537100493908, + -0.026744307950139046, + -0.03092825412750244, + -0.00797598622739315, + -0.041810307651758194, + -0.009696858003735542, + 0.03013293258845806, + 0.005983878392726183, + 0.038092873990535736, + -0.03500344976782799, + 0.030529161915183067, + 0.018914498388767242, + -0.05221369490027428, + 0.01235900353640318, + 0.012978479266166687, + 0.04074389860033989, + 0.06990911066532135, + -0.009569846093654633, + 0.07686720043420792, + -0.06454095244407654, + 0.03534293919801712, + 0.02853456698358059, + -0.001733326120302081, + -0.043091967701911926, + -0.025027817115187645, + -0.016807928681373596, + -0.03457067534327507, + -0.006562769878655672, + -0.005322668235749006, + -0.03315068036317825, + 0.026506198570132256, + 0.01505773700773716, + -0.04319246485829353, + 0.018808811902999878, + 0.0092983553186059, + 0.002628741320222616, + -0.012595903128385544, + 0.007206969894468784, + -0.07770975679159164, + 0.051528412848711014, + -0.039340630173683167, + -0.01977119967341423, + -0.028293052688241005, + -0.022198257967829704, + -0.01912599429488182, + 0.0066541521809995174, + -0.006477463524788618, + -0.004349525086581707, + 0.05174872279167175, + -0.007288721390068531, + -0.06754250824451447, + 0.06242075935006142, + -0.004989468026906252, + -0.0024532699026167393, + -0.01279089692980051, + 0.01742866262793541, + 0.020572438836097717, + -0.004096306394785643, + -0.004820853937417269, + -0.014710321091115475, + 0.03155136480927467, + -0.00852194707840681, + -0.06352230906486511, + -0.015202724374830723, + 0.001814327435567975, + -0.02057478576898575, + 0.0873783528804779, + -0.02435014769434929, + -0.0371650792658329, + -0.021451329812407494, + -0.012985949404537678, + -0.01037611160427332, + -0.03297581151127815, + -0.008994951844215393, + 0.010417803190648556, + 0.005345561541616917, + 0.004074052441865206, + -0.02440297231078148, + -0.0033429653849452734, + -0.018480632454156876, + -0.013321987353265285, + 0.038738712668418884, + -0.010388159193098545, + 0.002620686311274767, + -0.0554368831217289, + 0.027124598622322083, + 0.08579495549201965, + -0.0010288450866937637, + -0.046529293060302734, + 0.059094611555337906, + -0.03962574526667595, + -0.0035173101350665092, + -0.021448004990816116, + 0.01671772636473179, + -0.030626196414232254, + -0.03234460577368736, + -0.01841154880821705, + -0.015284396708011627, + -0.005058230832219124, + -0.0001449055998818949, + 0.0023051623720675707, + -0.03556835278868675, + 0.014527981169521809, + 0.00778317591175437, + -0.0036439262330532074, + -0.011059140786528587, + 0.02538881078362465, + -0.04550355300307274, + -0.02295728214085102, + 0.02767105959355831, + -0.022090598940849304, + 0.040985189378261566, + -0.0712125226855278, + -0.0434759259223938, + 0.009867008775472641, + 0.09457041323184967, + -0.028341015800833702, + 0.00963443424552679, + 0.011500881053507328, + -0.040507711470127106, + -0.021032292395830154, + -0.0008852742030285299, + -0.03247009217739105, + 0.023413803428411484, + 0.04415496066212654, + -0.034520622342824936, + -0.037882763892412186, + 0.020314740017056465, + -0.013483106158673763, + 0.014156014658510685, + 0.03063652664422989, + 0.04130730777978897, + 0.013953344896435738, + -0.0717511773109436, + -0.004692690912634134, + 0.006458844989538193, + -0.003605482168495655, + -0.06603582948446274, + 0.04770738631486893, + -6.52694288874045e-05, + 0.053464535623788834, + -0.023716557770967484, + 0.014315556734800339, + -0.008267640136182308, + 0.01472876314073801, + -0.01494977343827486, + 0.04218524321913719, + -0.06145216524600983, + 0.0375366248190403, + -0.02870081551373005, + -0.015083023346960545, + 0.018005484715104103, + -0.03817552700638771, + -0.003878340357914567, + -0.04024169221520424, + -0.0386425256729126, + -0.03763964772224426, + -0.04375724494457245, + 0.006525562610477209, + -0.008436355739831924, + 0.007687277626246214, + 0.07596101611852646, + 0.015422347001731396, + -0.06537975370883942, + -0.0051603978499770164, + -0.014018149115145206, + 0.025144105777144432, + -0.13618361949920654, + 0.047897618263959885, + -0.013780479319393635, + 0.01587625779211521, + -0.016699293628335, + -0.011325955390930176, + 0.009764965623617172, + 0.004166905302554369, + -0.019699446856975555, + -0.018181048333644867, + -0.008178829215466976, + 0.021608522161841393, + 0.04847952350974083, + -0.026279494166374207, + 0.003610586980357766, + 0.018715305253863335, + 0.04911915585398674, + 0.004980742931365967, + -0.027377722784876823, + 0.054352834820747375, + -0.011260337196290493, + -0.03646485507488251, + -0.005505391396582127, + -0.02680186927318573, + -0.011703762225806713, + 0.007007151376456022, + 0.014391625300049782, + 0.08831073343753815, + -0.021296657621860504, + -0.02392982505261898, + 0.0217711441218853, + 0.010303612798452377, + -0.004693193361163139, + 0.030525263398885727, + -0.00016344463801942766, + 0.041248030960559845, + -0.03114011324942112, + 0.045868661254644394, + 0.049729932099580765, + -0.003324700752273202, + -0.005286660976707935, + 0.03448290005326271, + -0.06270000338554382, + -0.012893117032945156, + 0.013994347304105759, + 0.0198383666574955, + -0.021250726655125618, + 0.01380496472120285, + -0.030944056808948517, + -0.0008532165084034204, + 0.030314138159155846, + 0.028902137652039528, + 0.005589551758021116, + 0.0018824724247679114, + -0.008583342656493187, + -0.019713787361979485, + -0.02177690714597702, + -0.044802337884902954, + 0.009716378524899483, + 0.0005343572702258825, + -0.009300380013883114, + 0.03821314871311188, + -0.0317651703953743, + 0.0011163849849253893, + 0.007930059917271137, + 0.023332785815000534, + 0.0012838449329137802, + 0.005520065780729055, + 0.03001708723604679, + -0.03168648108839989, + -0.021385520696640015, + 0.06096690148115158, + 0.0008022721740417182, + -0.023114612326025963, + 0.012175563722848892, + 0.04393039271235466, + 0.0025307799223810434, + 0.008868912234902382, + -0.02217603288590908, + 0.0069078425876796246, + -0.05612679943442345, + -0.01720833219587803, + -0.008504891768097878, + -0.01586046814918518, + 0.003373349318280816, + -0.008461844176054, + -0.018697846680879593, + 0.018197376281023026, + -0.05024930462241173, + 0.005543087143450975, + 0.003550376510247588, + -0.06753285229206085, + -0.043647248297929764, + -0.03250782564282417, + -0.02360713668167591, + 0.006681701168417931, + -0.019796717911958694, + 0.013239714317023754, + 0.004952958784997463, + -0.03285882622003555, + 0.014544167555868626, + -0.010720338672399521, + 0.022014157846570015, + -0.007072667591273785, + -0.01358112134039402, + -0.0005873123882338405, + -0.00044484861427918077, + -0.0012434106320142746, + 0.015126720070838928, + 0.036498088389635086, + 0.0006566660013049841, + 0.001830252935178578, + -0.0007868627435527742, + -0.0002728166291490197, + -0.03642229735851288, + -0.012194243259727955, + 0.02165732905268669, + 0.03934083878993988, + 0.00778950285166502, + -0.04775989055633545, + 0.041527945548295975, + -0.01986509934067726, + 0.044162001460790634, + 0.0010327186901122332, + 0.02187458425760269, + 0.0035220575518906116, + -0.01930859126150608, + -0.0008576823165640235, + -0.013087213970720768, + 0.01688867062330246, + -0.02553696557879448, + -0.06228615716099739, + 0.040307749062776566, + 0.031100571155548096, + 0.03243781998753548, + 0.008164231665432453, + -0.022504039108753204, + 0.03566180169582367, + -0.016946299001574516, + 0.011409744620323181, + 0.00914478488266468, + -0.01766340062022209, + 0.02276713214814663, + -0.02749529294669628, + -0.015533149242401123, + -0.0021243724040687084, + 0.007437525317072868, + 0.025700179859995842, + 0.015198406763374805, + 0.0006685547414235771, + 0.03385443612933159, + 0.01651706174015999, + -0.04163256660103798, + 0.04351692274212837, + -0.050628289580345154, + 0.0009227915434166789, + -0.013094116002321243, + -0.017094701528549194, + 0.008902453817427158, + 0.0002399308723397553, + -0.028171200305223465, + 0.019613364711403847, + 0.0022505815140902996, + -0.0071151480078697205, + 0.016219275072216988, + 0.007701946888118982, + -0.023853672668337822, + 0.01691448502242565, + 0.01392209343612194, + 0.022022180259227753, + 0.02833784744143486, + 0.007441704627126455, + -0.015241717919707298, + -0.0028390376828610897, + 0.0599900558590889, + 0.02036360092461109, + 0.027604063972830772, + -0.025981497019529343, + 0.020757092162966728, + 0.04839862510561943, + -0.021950868889689445, + 0.04599930718541145, + 0.06913939863443375, + -0.006343688350170851, + 0.007983853109180927, + 0.05370607599616051, + -0.023539867252111435, + 0.026423893868923187, + 0.061599601060152054, + -1.6076635802164674e-05, + -0.034151673316955566, + -0.0022519202902913094, + 0.0284268818795681, + 0.002952150534838438, + 0.019848864525556564, + 0.02269686385989189, + -0.009463931433856487, + 0.04147861897945404, + 0.03412972390651703, + -0.001580488053150475, + -0.06067061796784401, + 0.017922870814800262, + -0.02733386494219303, + -0.02271316573023796, + 0.016260063275694847, + -0.006587661802768707, + 0.04242590069770813, + 0.03741947188973427, + 0.015517878346145153, + -0.0052948021329939365, + -0.015789398923516273, + 0.007360423915088177, + -0.01501564309000969, + 0.04395482689142227, + -0.00956125371158123, + 0.024566754698753357, + 0.012842481955885887, + 0.031583309173583984, + 0.025872355327010155, + 0.0044049774296581745, + 0.006074863485991955, + 0.014105871319770813, + 0.04083281010389328, + -0.014348946511745453, + 0.0006854780949652195, + -0.03249949961900711, + -0.0013590861344709992, + 0.005550821777433157, + -0.05020872876048088, + -0.025726046413183212, + -0.07862760871648788, + 0.020937923341989517, + 0.004732413217425346, + 0.0393388532102108, + -0.027920182794332504, + 0.0058403657749295235, + 0.0046772402711212635, + 0.018573714420199394, + -0.03303101658821106, + -0.0003213289310224354, + 0.00993508379906416, + 0.00521052023395896, + -0.05507092550396919, + -0.002963047008961439 + ], + "start_index": 0, + "end_index": 116, + "token_count": 34, + "file_type": "avap_code", + "filename": "funcion_de_suma.avap", + "addResult": true, + "assignment": true, + "function": true, + "return": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "60da3149-eb9f-5cea-8684-ee003eea9f9f", + "_source": { + "text": "addParam(\"userrype\", user_type)\naddParam(\"sells\", compras)\nif(None, None, \" user_type == 'VIP' or compras > 100\")\n addVar(descuento, 0.20)\nend()\naddResult(descuento)", + "embedding": [ + -0.03525520861148834, + -0.024623412638902664, + 0.00014216822455637157, + 0.04959205165505409, + -0.05019155889749527, + 0.0037836695555597544, + 0.051521796733140945, + 0.04312223941087723, + 0.006776305381208658, + -0.0018931961385533214, + -0.0027899304404854774, + 0.015133815817534924, + -0.027230307459831238, + 0.01002673339098692, + 0.0005963282892480493, + -0.022164413705468178, + 0.008720614947378635, + -0.011182026006281376, + 0.012099969200789928, + -0.010283553041517735, + 0.0016095711616799235, + 0.0015488232020288706, + 0.023330284282565117, + 0.047430116683244705, + -0.03624514490365982, + -0.005385998170822859, + -0.015111085958778858, + -0.005660946946591139, + 0.019063973799347878, + -0.008755208924412727, + -0.014676113612949848, + -0.0004412880225572735, + -0.026755204424262047, + -0.04496387764811516, + -0.040935538709163666, + 0.005704457871615887, + -0.0203019380569458, + 0.022391902282834053, + -0.047747183591127396, + 0.03512128069996834, + -0.028687389567494392, + -0.029454592615365982, + -0.004906820598989725, + -0.023732300847768784, + -0.0020845134276896715, + -0.007754626218229532, + 0.011564685963094234, + -0.015169485472142696, + -0.02728351205587387, + -0.04138103872537613, + 0.013410205952823162, + 0.0019434988498687744, + 0.05240317061543465, + -0.05024837702512741, + 0.02310156635940075, + 0.0458383783698082, + -0.04503757506608963, + -0.017178675159811974, + -0.03054863028228283, + -0.008602137677371502, + -0.06265965849161148, + 0.012429280206561089, + -0.02246822975575924, + 0.0171615332365036, + 0.039254847913980484, + 0.03710419312119484, + -0.0031761203426867723, + 0.02261652611196041, + -0.005332948174327612, + -0.002948489971458912, + 0.0018141389591619372, + 0.03702927380800247, + 0.027138184756040573, + -0.0011618180433288217, + -0.0757041648030281, + -0.027176691219210625, + 0.016280552372336388, + 0.004097384866327047, + -0.010636866092681885, + -0.017485950142145157, + 0.00021019091946072876, + -0.003246841486543417, + 0.04468392953276634, + 0.006032062228769064, + 0.025514211505651474, + 0.047498248517513275, + 0.0149146793410182, + 0.010211015120148659, + -0.014893395826220512, + 0.004916874226182699, + 0.01618218794465065, + -0.008697432465851307, + 0.0310038011521101, + -0.03851501643657684, + 0.017676670104265213, + -0.03276396170258522, + -0.006919970270246267, + -0.024483537301421165, + 0.04402967914938927, + -0.0002845587150659412, + -0.036500994116067886, + 0.025566846132278442, + 0.028527606278657913, + -0.02249198965728283, + 0.029671775177121162, + 0.004288400989025831, + -0.010486258193850517, + 0.004535848740488291, + 0.04872288182377815, + -0.012491796165704727, + 0.0012699326034635305, + 0.010410366579890251, + 0.032812848687171936, + -0.0054788002744317055, + -0.0024788081645965576, + -0.04384341463446617, + 0.013865053653717041, + -0.012965541332960129, + 0.060972802340984344, + -0.01371847279369831, + -0.015167389065027237, + 0.005582230165600777, + 0.017640618607401848, + 0.0076774428598582745, + 0.008951260708272457, + 0.06829578429460526, + -0.010854105465114117, + 0.03756963461637497, + -0.001988832140341401, + 0.001013440079987049, + 0.05185067653656006, + 0.004402670077979565, + -0.02247108332812786, + 0.015822885558009148, + -0.05104535445570946, + -0.029476460069417953, + 0.011104992590844631, + 0.037564847618341446, + 0.01013169065117836, + -0.0867672860622406, + -0.001545378239825368, + 0.032319437712430954, + -0.026817340403795242, + -0.016158122569322586, + 0.07952827960252762, + -0.03771345689892769, + 0.022820014506578445, + -0.013039149343967438, + -0.0008754732552915812, + -0.0462825782597065, + -0.02153540588915348, + 0.007954150438308716, + 0.008683391846716404, + -0.009861387312412262, + -0.013735586777329445, + -0.027153419330716133, + 0.015288814902305603, + 0.06543578207492828, + 0.021099742501974106, + 0.01189327985048294, + -0.009701509028673172, + 0.0039002597332000732, + -0.021793397143483162, + -0.019481392577290535, + 0.014368622563779354, + -0.0055479975417256355, + 0.005962105467915535, + -0.026219837367534637, + -0.004305705893784761, + -0.00582301476970315, + 0.024928683415055275, + -0.007046571001410484, + 0.051284193992614746, + 0.005772694479674101, + -0.022705167531967163, + 0.016232788562774658, + 0.05094362795352936, + 0.02218756452202797, + -0.008700357750058174, + -0.056081902235746384, + -0.030368797481060028, + -0.01817302778363228, + -0.03707043081521988, + -0.03533608838915825, + -0.007991787977516651, + 0.04381479695439339, + 0.04408898204565048, + 0.003546216757968068, + 0.019490081816911697, + 0.026261525228619576, + 0.01782371662557125, + -0.030842749401926994, + 0.029193980619311333, + -0.01851125806570053, + 0.0489497035741806, + -0.026836952194571495, + -0.002707549137994647, + -0.010078996419906616, + -0.012652532197535038, + -0.044597428292036057, + -0.03959311917424202, + 0.048642758280038834, + 0.0018662918591871858, + -0.03734778240323067, + -0.022737188264727592, + -0.026627864688634872, + -0.022338878363370895, + -0.0009621289209462702, + 0.012026365846395493, + -0.04307469725608826, + 0.04329487308859825, + 0.0027061025612056255, + -0.02837011031806469, + 0.032854605466127396, + -0.047677844762802124, + -0.012485044077038765, + 0.015834840014576912, + 0.009958265349268913, + -0.009240132756531239, + -0.023635167628526688, + -0.02342502400279045, + 0.0343363918364048, + 0.009200312197208405, + 0.05788927152752876, + 0.03082806058228016, + 0.03013627789914608, + 0.005775495897978544, + -0.014894909225404263, + -0.0467713363468647, + 0.008002269081771374, + -0.007894911803305149, + 0.039882414042949677, + 0.002347348490729928, + 0.0032715406268835068, + 0.06226961314678192, + -0.02726961486041546, + -0.013008369132876396, + 0.019135519862174988, + -0.007316829636693001, + 0.042026154696941376, + -0.050712015479803085, + -0.008702557533979416, + 0.0265915896743536, + 0.022952813655138016, + -0.038970574736595154, + 0.007089225575327873, + -0.025908801704645157, + 0.07620719075202942, + -0.00903555192053318, + -0.040586426854133606, + -0.03473319113254547, + -0.014629119075834751, + -0.005874999333173037, + 0.014367438852787018, + -0.04477880522608757, + -0.022889066487550735, + 0.043837856501340866, + -0.011034153401851654, + -0.022500457242131233, + -0.009477085433900356, + 0.02101491391658783, + 0.01392958965152502, + 0.0024394544307142496, + 0.0028149099089205265, + -0.02014101669192314, + 0.005095789209008217, + 0.0020111596677452326, + 0.027196573093533516, + -0.015539322048425674, + 0.023195775225758553, + 0.019093003123998642, + -0.020690951496362686, + 0.003011202672496438, + -0.006077155936509371, + 0.038614422082901, + 0.03624303638935089, + -0.04086913913488388, + -0.02961914800107479, + 0.09810920804738998, + 0.025957398116588593, + 0.01840496063232422, + 0.022791726514697075, + -0.009680475108325481, + -0.04033803194761276, + 0.035246092826128006, + -0.04501604288816452, + 0.0026071537286043167, + 0.006539033260196447, + 0.04595373943448067, + -0.07794321328401566, + -0.0658792182803154, + 0.018810616806149483, + 0.084463931620121, + 0.023642374202609062, + -0.011098740622401237, + -0.032114557921886444, + -0.019041577354073524, + -0.16684909164905548, + -0.048961739987134933, + -0.026099368929862976, + -0.010342179797589779, + -0.01636631228029728, + 0.01674751564860344, + -0.031166955828666687, + 0.0006845091702416539, + -0.06527422368526459, + 0.015341540798544884, + -0.027370672672986984, + -0.06175879016518593, + -0.0005443796399049461, + -0.011560026556253433, + -0.0021137467119842768, + -0.01256908755749464, + -0.015028877183794975, + 0.008056876249611378, + 0.009299353696405888, + -0.0326235368847847, + -0.015599439851939678, + -0.05567917227745056, + 0.013816116377711296, + -0.03735892474651337, + -0.034957319498062134, + -0.01889929734170437, + 0.00043854574323631823, + 0.023674657568335533, + -0.034285034984350204, + -0.004125027451664209, + 0.003326360136270523, + -0.0072959489189088345, + 0.018224291503429413, + 0.03478294610977173, + 0.021102380007505417, + 0.04111502692103386, + 0.005723029375076294, + -0.013667448423802853, + 0.04193182662129402, + -0.014083926565945148, + 0.017879705876111984, + 0.005246730521321297, + -0.00043558108154684305, + 0.010455640964210033, + -0.024410000070929527, + 0.02753770723938942, + -0.005117566324770451, + 0.003646878059953451, + -0.040892839431762695, + 0.0071735321544110775, + -0.022758033126592636, + -0.022556796669960022, + 0.01822078414261341, + -0.029457425698637962, + -0.04982980340719223, + 0.02165229059755802, + 0.01100283581763506, + 0.03401591256260872, + 0.006435636430978775, + 0.015213500708341599, + -0.03241601958870888, + -0.0174331683665514, + -0.007932416163384914, + -0.003912592772394419, + -0.019487395882606506, + -0.001048586331307888, + 0.018134701997041702, + 0.031912241131067276, + 0.034762270748615265, + -0.014909143559634686, + 0.012796679511666298, + -0.0528215728700161, + -0.03215057775378227, + -0.019038064405322075, + 0.024815093725919724, + 0.0010812643449753523, + -0.02400738000869751, + -0.01897319033741951, + 0.026247290894389153, + -0.11863139271736145, + -0.0017097293166443706, + -0.019957473501563072, + -0.008721241727471352, + 0.044064879417419434, + -0.015338444150984287, + -0.03573884069919586, + -0.021494118496775627, + -0.022046910598874092, + 0.048586294054985046, + 0.22128552198410034, + 0.009987682104110718, + 0.04985664784908295, + 0.039813559502363205, + 0.017827125266194344, + -0.023944653570652008, + 0.017547348514199257, + 0.044674698263406754, + -0.011666486971080303, + -0.015169179998338223, + 0.0044138506054878235, + 0.01572834700345993, + 2.43885770032648e-05, + -0.018882084637880325, + 0.007005126681178808, + -0.0005298563046380877, + -0.03039526380598545, + -0.004486466757953167, + 0.02883327379822731, + -0.008576981723308563, + 0.01952481083571911, + -0.009846467524766922, + -0.07736404985189438, + 0.011412675492465496, + -0.05291091650724411, + -0.01982617937028408, + -0.009849842637777328, + -0.008368040435016155, + -0.023893482983112335, + 0.06090762838721275, + -0.014949142001569271, + 9.03644468053244e-05, + 0.03324886038899422, + -0.02344876155257225, + 0.0009526120848022401, + -0.049343984574079514, + 0.01667267642915249, + -0.018026065081357956, + -0.006406349129974842, + 0.05526250973343849, + 0.0159718357026577, + -0.01686040312051773, + 0.024457424879074097, + 0.08491192013025284, + -0.004308406263589859, + -0.01272563822567463, + 0.0454966202378273, + 0.01836729235947132, + -0.007481306325644255, + -0.008112897165119648, + 0.022174766287207603, + -0.05514474958181381, + 0.0028826906345784664, + -0.012861012481153011, + 0.03718610852956772, + 0.001502040307968855, + 0.014806888997554779, + 0.03454866632819176, + -0.06084632873535156, + 0.018635768443346024, + 0.009349188767373562, + -0.02007278986275196, + 0.003019982483237982, + -0.005909997969865799, + 0.00303711392916739, + 0.0020189257338643074, + 0.03447812795639038, + -0.0017688822699710727, + 0.01518783438950777, + 0.03940315544605255, + -0.042856670916080475, + 0.05288848653435707, + 0.040652886033058167, + 0.012386050075292587, + 0.016241207718849182, + 0.012787030078470707, + -0.01831892691552639, + -0.028294455260038376, + 0.01678558997809887, + 0.00036543403984978795, + -0.027840428054332733, + 0.0005191771197132766, + -0.05124742537736893, + 0.0422285832464695, + 0.007418065331876278, + -0.021589437499642372, + 0.016635829582810402, + 0.08194602280855179, + 0.0309906043112278, + -0.00039234411087818444, + 0.036095745861530304, + 0.023834679275751114, + 0.04014124721288681, + 0.050943098962306976, + 0.013151240535080433, + -0.0007132063037715852, + 0.008285998366773129, + 0.03624746948480606, + -0.035683728754520416, + 0.06251513212919235, + -0.022435206919908524, + 0.0021498026326298714, + 0.04246360808610916, + 0.007268377114087343, + 0.0009431856451556087, + -0.06619220972061157, + 0.02262827195227146, + -0.031028708443045616, + -0.00397466029971838, + -0.030739346519112587, + -0.05424567312002182, + 0.03178159147500992, + -0.041072312742471695, + 0.004170517437160015, + 0.013441285118460655, + 0.04463065415620804, + -0.011225711554288864, + 0.048894982784986496, + 0.015050261281430721, + -0.0031300545670092106, + -0.03263489529490471, + 0.009210249409079552, + 0.016461150720715523, + -0.006263352930545807, + 0.031002802774310112, + -0.05236322805285454, + 0.004050679504871368, + 0.03394366428256035, + -0.03545328974723816, + 0.005069295410066843, + -0.012151706963777542, + -0.013066320680081844, + -0.023292355239391327, + 0.014286408200860023, + 0.020598366856575012, + -0.017658492550253868, + 0.037884924560785294, + -0.04024234786629677, + 0.040953803807497025, + 0.03294364735484123, + -0.0277728158980608, + -0.037887025624513626, + -0.0024596620351076126, + -0.03242544084787369, + 0.03112899884581566, + 0.011042742058634758, + 0.024040691554546356, + -0.020929688587784767, + -0.021579479798674583, + 0.023379215970635414, + 0.014969849959015846, + 0.0737234503030777, + 0.047472789883613586, + -0.03832023963332176, + -0.052742574363946915, + -0.05720265209674835, + 0.028845643624663353, + 0.008752051740884781, + -0.023345116525888443, + -0.009104453958570957, + 0.0077866455540061, + -0.037269819527864456, + 0.0003829269844572991, + 0.02111675776541233, + -0.04101750999689102, + -0.040157902985811234, + -0.0008128852350637317, + -0.00846204161643982, + -0.059805236756801605, + 0.01974797435104847, + 0.014584224671125412, + -0.049577463418245316, + -0.041924767196178436, + -0.004243932198733091, + 0.020958034321665764, + 0.00637718103826046, + 0.024443337693810463, + -0.010811672545969486, + 0.003284815698862076, + -0.05504091456532478, + -0.0019274505320936441, + -0.014362160116434097, + -0.025987355038523674, + 0.017625125125050545, + 0.028445471078157425, + -0.04579651728272438, + 0.017803151160478592, + 0.0023403167724609375, + -0.0008078402024693787, + 0.008216793648898602, + -0.027748268097639084, + 0.07186301797628403, + -0.0031521632336080074, + -0.04263870045542717, + 0.03727580979466438, + 0.0682968869805336, + 0.012950113974511623, + -0.0003986501251347363, + -0.009745130315423012, + 0.0025686572771519423, + -0.033367499709129333, + 0.027753734961152077, + -0.02054114267230034, + -0.035252515226602554, + -0.0081441979855299, + -0.02736486680805683, + -0.01323730405420065, + 0.02047056332230568, + 0.0009013013914227486, + -0.014185410924255848, + -0.006809829734265804, + 0.023554250597953796, + -0.04880387336015701, + 0.004246375523507595, + 0.043256811797618866, + -0.0019146136473864317, + 0.04201103746891022, + 0.01789049245417118, + -0.03283737972378731, + 0.002086157677695155, + 0.0027322459500283003, + 0.005518640857189894, + -0.01046154648065567, + -0.04051223397254944, + -0.05202358961105347, + 0.0034046564251184464, + 0.03792719542980194, + 0.0050321314483881, + -0.0009482332970947027, + -0.025803985074162483, + -0.011941628530621529, + -0.025799967348575592, + 0.04190516099333763, + 0.012999890372157097, + 0.0033238150645047426, + -0.02996106818318367, + -0.00479627912864089, + 0.043145954608917236, + 0.0007910353597253561, + -0.040263429284095764, + 0.009575508534908295, + -0.04162394255399704, + 0.028320390731096268, + 0.054443735629320145, + -0.02295542322099209, + 0.06055808812379837, + -0.08191197365522385, + 0.020171023905277252, + 0.04249180108308792, + 0.04869440943002701, + -0.04246049374341965, + -0.04660408943891525, + 0.02206261269748211, + -0.0524170957505703, + -0.01602517068386078, + 0.03707415610551834, + -0.01794847659766674, + 0.04475763812661171, + -0.01898077502846718, + -0.019296137616038322, + 0.012768534943461418, + 0.04575927183032036, + -0.03228996694087982, + 0.006743048317730427, + 0.0025557761546224356, + -0.03151405602693558, + 0.057294927537441254, + -0.06289784610271454, + -0.0165205430239439, + -0.023598887026309967, + 0.02852572128176689, + -0.029939893633127213, + -0.006130819208920002, + -0.06627694517374039, + 0.046140532940626144, + 0.013128981925547123, + -0.003075840650126338, + 0.0068377903662621975, + 0.07303617149591446, + 0.0033770925365388393, + -0.039100926369428635, + -0.006878409534692764, + -0.025666315108537674, + 0.007826339453458786, + -0.0005951361381448805, + -0.004125564359128475, + -0.0019158523064106703, + 0.021482354030013084, + -0.0038952534087002277, + -0.06677591055631638, + -0.02877611480653286, + 0.01262020505964756, + -0.06354162842035294, + 0.059290967881679535, + 0.018997767940163612, + -0.04879044368863106, + -0.01624363474547863, + 0.004502404946833849, + -0.026589399203658104, + 0.014891162514686584, + 0.005525664892047644, + 0.006430954206734896, + -0.020069975405931473, + 0.017871061339974403, + -0.022726546972990036, + -0.01692057214677334, + -0.02026144601404667, + -0.03484826534986496, + 0.03203786164522171, + 0.05094277858734131, + 0.003139735199511051, + -0.03979865461587906, + -0.017848346382379532, + 0.028488585725426674, + -0.009333214722573757, + 0.03788159042596817, + 0.07249776273965836, + 0.007783790118992329, + -0.005864019971340895, + -0.0061619165353477, + -0.025058027356863022, + -0.021839886903762817, + -0.03467721864581108, + 0.00976666621863842, + -0.013945698738098145, + 0.02536480687558651, + -0.03673974797129631, + -0.010441170074045658, + -0.004614915233105421, + 0.018673669546842575, + -0.00012516265269368887, + 0.011110702529549599, + -0.03194538131356239, + 0.013592484407126904, + -0.04072561860084534, + -0.03397690877318382, + 0.040913525968790054, + -0.019581401720643044, + -0.017283253371715546, + -0.015134669840335846, + -0.008044075220823288, + -0.0027465769089758396, + 0.054668717086315155, + -0.0008338590851053596, + -0.006440619006752968, + 0.0008757371106185019, + -0.017050636932253838, + -0.009103463962674141, + -0.0687800720334053, + 0.005754215642809868, + -0.047060783952474594, + -0.015592388808727264, + -0.023398766294121742, + -0.03914085030555725, + 0.008329366333782673, + -0.08146509528160095, + -0.014389502815902233, + 0.05711087957024574, + 0.03067404218018055, + 0.002361970953643322, + -0.06657949835062027, + 0.006808735430240631, + 0.028463419526815414, + 0.0020333626307547092, + -0.027472129091620445, + 0.05190275236964226, + 0.02874160185456276, + 0.026250632479786873, + 0.017953356727957726, + -0.003134691622108221, + 0.04221698269248009, + -0.0055863745510578156, + -0.03152049332857132, + 0.03488381206989288, + -0.004388638772070408, + 0.05289749801158905, + -0.020856769755482674, + 0.017277183011174202, + 0.03434942662715912, + -0.04939083755016327, + -0.026156481355428696, + -0.03530193492770195, + -0.044704657047986984, + -0.02679491974413395, + 0.00846890825778246, + 0.002685708226636052, + -0.006318166386336088, + 0.01590842194855213, + 0.0870494544506073, + 0.036086391657590866, + -0.0014996911631897092, + 0.008413964882493019, + -0.023690614849328995, + 0.008909002877771854, + -0.12867192924022675, + 0.01453110296279192, + 0.007512419484555721, + 0.026257704943418503, + -0.013991530984640121, + -0.012766238301992416, + -0.013759125955402851, + -0.02741156332194805, + -0.03324586898088455, + -0.05659390240907669, + -0.046687494963407516, + -0.015810664743185043, + -0.002821162575855851, + -0.0403798446059227, + 0.049330998212099075, + 0.021880023181438446, + 0.018776139244437218, + -0.026143092662096024, + -0.0162961483001709, + -0.0016147007700055838, + -0.01641339808702469, + -0.03256187587976456, + 0.05049639195203781, + 0.03521101549267769, + -0.0028891395777463913, + -0.027325814589858055, + 0.027474375441670418, + 0.05955958738923073, + -0.02212348021566868, + -0.07106464356184006, + -0.018002891913056374, + 0.05170023813843727, + 0.029069768264889717, + 0.008933871984481812, + 0.019189130514860153, + -0.007284336723387241, + -0.01666896976530552, + 0.057303037494421005, + 0.0004438926698639989, + 0.03367118909955025, + 0.010538962669670582, + 0.028591709211468697, + -0.021878071129322052, + -0.01835455559194088, + 0.03551475331187248, + 0.04942250996828079, + -0.022165661677718163, + 0.005005883518606424, + -0.012370200827717781, + -0.006300737615674734, + 0.02833903580904007, + 0.010605823248624802, + 0.02002791501581669, + 0.019103657454252243, + -0.0004634498618543148, + -0.0014421881642192602, + -0.045135363936424255, + 0.021190213039517403, + -0.009720031172037125, + 0.03163837641477585, + 0.02270422875881195, + 0.02430047281086445, + -0.022866224870085716, + -0.033675938844680786, + -0.017108479514718056, + 0.014404362067580223, + -0.04269546642899513, + 0.0045524477027356625, + 0.05981827899813652, + -0.04056308791041374, + 0.010637412779033184, + 0.01822446472942829, + -0.014769655652344227, + -0.0538274422287941, + 0.019677231088280678, + -0.0031750667840242386, + -0.03053218498826027, + 0.015201244503259659, + -0.037451617419719696, + -0.027378655970096588, + 0.014905340038239956, + -0.021594947203993797, + -0.007450308185070753, + -0.0037005103658884764, + 0.045394670218229294, + 0.015834229066967964, + -0.004296677187085152, + -0.002279412467032671, + -0.07901149243116379, + 0.014399409294128418, + -0.039810456335544586, + -0.07276292145252228, + 0.007100794464349747, + -0.008649964816868305, + -0.0008075976511463523, + 0.0013193846680223942, + -0.031199226155877113, + 0.017788570374250412, + 0.037067122757434845, + -0.042309485375881195, + 0.01072072796523571, + -0.017894787713885307, + 0.02982904203236103, + 0.019329607486724854, + 0.0053482078947126865, + -0.011149664409458637, + -0.030597113072872162, + -0.025698769837617874, + -0.0021333752665668726, + -0.03725568577647209, + -0.037581562995910645, + 0.017129063606262207, + -0.02621627226471901, + 0.018550381064414978, + -0.03347098082304001, + -0.022558672353625298, + 0.009463305585086346, + 0.05933266133069992, + 0.004699090961366892, + -0.021699680015444756, + 0.017629345878958702, + -0.029777726158499718, + 0.010269418358802795, + -0.016278432682156563, + 0.021494170650839806, + 0.04149018973112106, + -0.010913676582276821, + 0.025753553956747055, + 0.00418330542743206, + 0.03744594752788544, + -0.006496488116681576, + -0.010353012941777706, + 0.002953035058453679, + 0.014697468839585781, + -0.0013036003801971674, + -0.02077668346464634, + -0.018856937065720558, + 0.052028805017471313, + 0.02166905254125595, + -0.008079676888883114, + -0.013522001914680004, + -0.020253701135516167, + 0.014725700952112675, + -0.025249876081943512, + -0.0039061238057911396, + 0.015925193205475807, + 0.011647260747849941, + -0.005413048435002565, + -0.026862353086471558, + -0.05408431962132454, + 0.001632114639505744, + -0.010133634321391582, + -0.0132480189204216, + 0.04355974122881889, + -0.03795802965760231, + 0.0007870853878557682, + -0.006680835038423538, + -0.008244050666689873, + 0.01648850366473198, + 0.029739227145910263, + -0.05690419673919678, + -0.014127562753856182, + 0.013782203197479248, + -0.028970640152692795, + 0.02129444293677807, + 0.013187545351684093, + -0.029666287824511528, + 0.014050310477614403, + 0.005035174544900656, + 0.03730054572224617, + -0.030594391748309135, + 0.0075512779876589775, + -0.014379370957612991, + 0.030415380373597145, + 0.048052020370960236, + 0.015306995250284672, + 0.005501916632056236, + -0.04635067284107208, + 0.03207765519618988, + -0.004406440071761608, + -0.00509252306073904, + 0.0498361736536026, + 0.04059571400284767, + -0.00287097180262208, + 0.06034303084015846, + 0.01571943797171116, + 0.0033457144163548946, + 0.010824084281921387, + 0.03324154391884804, + -0.013029482215642929, + -0.007043473422527313, + -0.012529511004686356, + 0.06629669666290283, + -0.017527559772133827, + 0.015571820549666882, + -0.029875312000513077, + -0.002033241093158722, + 0.0031936645973473787, + -0.010589326731860638, + 0.03139461576938629, + -0.019257161766290665, + -0.03323519602417946, + -0.006805263459682465, + -0.03272981941699982, + -0.0062004439532756805, + 0.005337944254279137, + 0.00588765274733305, + 0.019180240109562874, + 0.0007033551810309291, + 0.0636884942650795, + -0.015776077285408974, + -0.0076168254017829895, + -0.026584913954138756, + 0.013562868349254131, + 0.023193389177322388, + -0.021191323176026344, + 0.0559421069920063, + 0.044684477150440216, + 0.023835893720388412, + -0.004081954248249531, + 0.019231194630265236, + 0.014867689460515976, + 0.019116174429655075, + -0.046938057988882065, + -0.022107210010290146, + -0.03547387197613716, + 0.004475367721170187, + -0.020494332537055016, + -0.026582159101963043, + -0.00599173316732049, + -0.024207482114434242, + -0.021968910470604897, + 0.018658744171261787, + 0.013963313773274422, + 0.0026737810112535954, + -0.0032888054847717285, + 0.06232680380344391, + 0.01576084829866886, + -0.07142236828804016, + -0.0030939176212996244, + 0.030617887154221535, + -0.0067977942526340485, + -0.04129546880722046, + -0.0172154251486063 + ], + "start_index": 0, + "end_index": 168, + "token_count": 59, + "file_type": "avap_code", + "filename": "expresion_compleja.avap", + "addParam": true, + "addResult": true, + "addVar": true, + "if": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "1725023c-232a-5b2b-b470-6f32302a441b", + "_source": { + "text": "addVar(mensaje, \"Hola mundo desde AVAP\")\naddResult(mensaje)", + "embedding": [ + -0.014872868545353413, + 0.003729891264811158, + 0.006656635086983442, + 0.019730018451809883, + -0.05371580272912979, + -0.028430383652448654, + -0.007149603683501482, + 0.002692228415980935, + -0.023863252252340317, + -0.0029879373032599688, + -0.007682041730731726, + 0.0038545439019799232, + -0.027162622660398483, + 0.019825980067253113, + 0.014013386331498623, + 0.03901230916380882, + 0.030507467687129974, + -0.03641433268785477, + 0.022926567122340202, + 0.006938634905964136, + -0.06614319980144501, + 0.02620181068778038, + 0.006677078548818827, + -0.004378989804536104, + -0.007083763834089041, + -0.017100762575864792, + -0.04892365634441376, + -0.04222811758518219, + 0.022945575416088104, + -0.039047494530677795, + 0.03282264247536659, + 0.01621123217046261, + -0.04471039026975632, + -0.06262456625699997, + 0.005561891011893749, + 0.013302966021001339, + -0.034587208181619644, + -0.0006667961133643985, + -0.04758762568235397, + 0.02706831693649292, + -0.039002761244773865, + -0.00154977070633322, + -0.044879745692014694, + -0.05224992707371712, + 0.043215688318014145, + -0.009429407306015491, + -0.01673399843275547, + -0.008113829419016838, + -0.021449090912938118, + -0.03394562751054764, + 0.0015483017778024077, + 0.05058673024177551, + 0.032844074070453644, + -0.033789534121751785, + 0.022460903972387314, + 0.02849559485912323, + -0.04828299954533577, + 0.0126040019094944, + -0.0326535589993, + -0.025355665013194084, + -0.048778779804706573, + -0.024497387930750847, + -0.04250146076083183, + 0.017768539488315582, + 0.004338108468800783, + 0.07600277662277222, + 0.015660608187317848, + 0.004447140730917454, + -0.021832862868905067, + 0.0009082902688533068, + 0.001415979233570397, + 0.03612402081489563, + -0.009326143190264702, + 0.0026563506107777357, + -0.08981561660766602, + -0.006639184430241585, + 0.0005265584331937134, + -0.013387482613325119, + -0.034328099340200424, + -0.013933547772467136, + -0.008590435609221458, + -0.008322019129991531, + 0.016469478607177734, + 0.02010268345475197, + 0.011188870295882225, + 0.004509869497269392, + 0.0031222891993820667, + 0.031225109472870827, + -0.006939756218343973, + 0.018359912559390068, + -0.02416270785033703, + 0.015268965624272823, + 0.05104736611247063, + -0.03673107177019119, + -0.04334195330739021, + -0.05865638330578804, + -0.06330188363790512, + -0.001247202162630856, + 0.04407236725091934, + 0.009688855148851871, + 0.005134941078722477, + 0.024197636172175407, + -0.00962885096669197, + 0.001276311231777072, + 0.0480060912668705, + -0.022760987281799316, + 0.04387858137488365, + 0.03865085542201996, + 0.0008366264519281685, + 0.0074081989005208015, + 0.004779364448040724, + 0.00952230766415596, + 0.02052243985235691, + 0.017168564721941948, + 0.010491748340427876, + -0.018295342102646828, + -0.03161097690463066, + -0.020565668120980263, + 0.05404921993613243, + 0.01241182442754507, + 0.035065773874521255, + 0.0132847735658288, + 0.05402738228440285, + -0.018282363191246986, + 0.024512879550457, + 0.07267247140407562, + 0.023089630529284477, + 0.029086310416460037, + -0.04625766724348068, + 0.0017969465116038918, + 0.03100995533168316, + -0.006055560428649187, + -0.018437113612890244, + -0.00740100396797061, + -0.006133226212114096, + 0.009551724418997765, + -0.012080756016075611, + 0.007519016042351723, + 0.01594598777592182, + -0.05408313870429993, + 0.0313229002058506, + 0.05660850182175636, + -0.025621429085731506, + 0.009149335324764252, + 0.016334472224116325, + -0.08145208656787872, + 0.02232220396399498, + 0.016231246292591095, + 0.0281047485768795, + -0.04368175193667412, + -0.06822613626718521, + 0.020715026184916496, + 0.005897085182368755, + -0.002067835535854101, + 0.014391772449016571, + -0.01097001601010561, + 0.01689675822854042, + 0.04665436968207359, + 0.012505738995969296, + 0.029408596456050873, + -0.05530014634132385, + -0.009597726166248322, + -0.05994870886206627, + 0.004528751131147146, + 0.008655074052512646, + -0.010056568309664726, + 0.03780756890773773, + -0.019421763718128204, + 0.00530553562566638, + -0.0074309613555669785, + 0.020953137427568436, + -0.0035839772317558527, + 0.03710504248738289, + 0.004797716625034809, + -0.014606352895498276, + 0.02766500413417816, + 0.07744692265987396, + 0.034632403403520584, + 0.026789778843522072, + -0.04080085828900337, + -0.012134178541600704, + 0.011480399407446384, + -0.02716553770005703, + -0.028250476345419884, + -0.036097507923841476, + 0.021384775638580322, + -0.0038921635132282972, + -0.027527647092938423, + 0.003370526246726513, + 0.016572795808315277, + 0.007306861691176891, + -0.02569710649549961, + 0.09960232675075531, + -0.034873414784669876, + 0.04636848717927933, + 0.011802172288298607, + 0.025449970737099648, + 0.025632262229919434, + -0.008658378385007381, + -0.006685485597699881, + -0.01515634823590517, + 0.015670906752347946, + 0.006701696198433638, + -0.011539549566805363, + -0.016673291102051735, + 0.004338589496910572, + -0.012341458350419998, + -0.037741661071777344, + 0.01756458356976509, + -0.003401275957003236, + 0.019435955211520195, + 0.010001827031373978, + 0.0003393534279894084, + -0.012038325890898705, + -0.04745751619338989, + -0.016016963869333267, + -0.0034693190827965736, + 0.0018048796337097883, + -0.034951869398355484, + -0.014784717001020908, + -0.02097608707845211, + 0.04990074038505554, + -0.017878683283925056, + 0.03122960776090622, + -0.029908638447523117, + -0.00972475204616785, + -0.027688797563314438, + 0.023571966215968132, + 0.018873674795031548, + 0.0008512286003679037, + 0.018469616770744324, + 0.016508182510733604, + 0.01898994669318199, + -0.017574092373251915, + 0.009948350489139557, + -0.03055126592516899, + -0.022235099226236343, + 0.021515309810638428, + 0.016033604741096497, + 0.023460399359464645, + -0.024969059973955154, + -0.012386871501803398, + 0.035764116793870926, + 0.017091915011405945, + -0.06352946907281876, + 0.03451788052916527, + 0.020538894459605217, + 0.06107829883694649, + -0.029944732785224915, + -0.029786599799990654, + -0.03339991718530655, + -0.012509267777204514, + -0.0012873461237177253, + -0.016550488770008087, + -0.009879550896584988, + 0.006995399948209524, + 0.04659887030720711, + 0.01222255825996399, + -0.004572741687297821, + -0.017775462940335274, + 0.017125697806477547, + 0.012844509445130825, + -0.019496377557516098, + 0.023137889802455902, + 0.018194634467363358, + 0.005086106713861227, + -0.03801986947655678, + 0.04731519892811775, + 0.03654740750789642, + -0.02623278833925724, + 0.04022612050175667, + -0.007635277695953846, + 0.00433226628229022, + -0.014451676048338413, + -8.888955198926851e-05, + 0.039779044687747955, + -0.03705114871263504, + -0.03328526392579079, + 0.10452964156866074, + 0.03425583243370056, + 0.00014803370868321508, + 0.03378843143582344, + 0.012291650287806988, + -0.009937127120792866, + 0.0448569692671299, + 0.009489274583756924, + -0.008649852126836777, + 0.009370683692395687, + 0.0003532867121975869, + -0.07427125424146652, + 0.005883343052119017, + 0.015020380727946758, + 0.06786736100912094, + -0.03368641063570976, + 0.012070463970303535, + 0.06698986142873764, + -0.017176924273371696, + -0.1271008998155594, + -0.00034907268127426505, + -0.022649487480521202, + 0.021633591502904892, + -0.0011840533697977662, + 0.03252596780657768, + -0.008956820704042912, + 0.004823526833206415, + -0.03130336478352547, + 0.017699096351861954, + -0.004569370299577713, + -0.06715857237577438, + -0.0032439494971185923, + -0.009168866090476513, + -0.02921544760465622, + -0.013044404797255993, + -0.013342210091650486, + -0.017094479873776436, + 0.004831514786928892, + -0.03277033567428589, + -0.04723276197910309, + -0.0015846522292122245, + 0.016878247261047363, + -0.04753687232732773, + -0.01264178566634655, + -0.05886179208755493, + 0.011263732798397541, + -0.01432707253843546, + -0.016428327187895775, + 0.0016646351432427764, + -0.023842131718993187, + 0.0213359072804451, + -0.0031090890988707542, + 0.01522996835410595, + -0.013402706012129784, + 0.02661217749118805, + -0.01561263483017683, + 0.009601347148418427, + 0.028347838670015335, + -0.00011288903624517843, + -0.01005553174763918, + 0.04924449324607849, + 0.0010192189365625381, + -0.019950900226831436, + -0.009692179039120674, + 0.007569079753011465, + -0.0025311328936368227, + -9.258431236958131e-05, + -0.024630751460790634, + -0.017428787425160408, + -0.008268728852272034, + -0.040012530982494354, + -0.008088035508990288, + -0.0065022618509829044, + -0.036243293434381485, + 0.016393261030316353, + -0.03122405707836151, + -0.014412758871912956, + 0.021670984104275703, + 0.014420326799154282, + -0.004930716939270496, + 0.015710623934864998, + 0.0211029089987278, + 0.00606205128133297, + -0.0039044467266649008, + 0.006553564686328173, + 0.061081621795892715, + 0.02701939083635807, + 0.0734146237373352, + -0.03764427453279495, + 0.06611812859773636, + -0.013048921711742878, + -0.05105762183666229, + -0.010934082791209221, + -0.013101564720273018, + 0.008479474112391472, + 0.019928868860006332, + -0.0013304316671565175, + -0.01721540279686451, + -0.0648425817489624, + 0.008038044907152653, + 0.03231482207775116, + -0.013725370168685913, + 0.05690935254096985, + -0.05577578768134117, + -0.02641003392636776, + -0.022913629189133644, + 0.001722387271001935, + 0.06956824660301208, + 0.214049831032753, + 0.03478483483195305, + -0.006198529619723558, + 0.03207869082689285, + 0.06760367751121521, + -0.03280123695731163, + 0.03487198054790497, + 0.008479948155581951, + 0.013608723878860474, + -0.02508152276277542, + 0.0210296381264925, + -0.010754474438726902, + -3.652432860690169e-05, + 0.0057422323152422905, + 0.009599034674465656, + 0.05480917543172836, + -0.0313430055975914, + 0.044793445616960526, + 0.07250197231769562, + 0.009951483458280563, + 0.004134227521717548, + -0.024216752499341965, + -0.05106380581855774, + -0.008370162919163704, + -0.05129399523139, + -0.011883462779223919, + -0.017531756311655045, + -0.003563282312825322, + 0.026034744456410408, + 0.022976284846663475, + -0.02019348181784153, + 0.04275864362716675, + -0.012262629345059395, + 0.012174169532954693, + -0.04826449230313301, + -0.01931195706129074, + -0.017916643992066383, + -0.06059484928846359, + 0.0022763849701732397, + -0.01788449101150036, + 0.011376060545444489, + -0.028842005878686905, + 0.04511679336428642, + 0.03442380204796791, + -0.012951837852597237, + -0.01419902965426445, + -0.00230304803699255, + 0.0062525332905352116, + -0.06102905049920082, + -0.03057749941945076, + 0.019416943192481995, + -0.0323706790804863, + -0.013614744879305363, + 0.02491912804543972, + 0.050624947994947433, + -0.014510177075862885, + 0.02258257009088993, + 0.011854663491249084, + -0.007243768777698278, + -0.01395038515329361, + 0.05636961758136749, + 0.0017854267498478293, + 0.026259349659085274, + -0.045185819268226624, + -0.035717010498046875, + -0.010166581720113754, + 0.05697861686348915, + 0.006158595904707909, + -0.005568264983594418, + 0.05913262814283371, + -0.007795913144946098, + 0.024399196729063988, + 0.013815932907164097, + 0.009395337663590908, + -0.0005165513721294701, + -0.009918625466525555, + 0.01922997646033764, + 0.009170574136078358, + 0.008614586666226387, + 0.022059667855501175, + -0.011840196326375008, + 0.04792199656367302, + -0.05680537596344948, + 0.022896425798535347, + 0.010811385698616505, + -0.013777431100606918, + -0.011349220760166645, + 0.05259387940168381, + -0.00020455458434298635, + 0.03213713318109512, + -0.0381881482899189, + -0.00714768934994936, + -0.0363793708384037, + 0.00575309107080102, + 0.038330793380737305, + 0.034161366522312164, + 0.021397564560174942, + 0.002411669585853815, + -0.008209886960685253, + 0.04291349649429321, + -0.03932248055934906, + 0.015867037698626518, + -0.011545822955667973, + 0.011262313462793827, + 0.015404307283461094, + 0.013777428306639194, + -0.016651613637804985, + -0.04132619872689247, + 0.015610622242093086, + -0.019002841785550117, + -0.03378637880086899, + -0.0044134617783129215, + -0.0007290691137313843, + 0.019752558320760727, + 0.0039871023036539555, + 0.05913454666733742, + 0.02236313372850418, + 0.01052065845578909, + 0.05151299759745598, + -0.021353185176849365, + -0.03153451159596443, + -0.025187460705637932, + -0.013426688499748707, + 0.021924074739217758, + 0.00778990937396884, + -0.04763878881931305, + -0.0031521639320999384, + 0.08548253029584885, + -0.0586201474070549, + 0.030695244669914246, + -0.004269258119165897, + -0.002843858441337943, + 0.00973872747272253, + 0.005242479499429464, + 0.019587120041251183, + 0.013060878030955791, + 0.050231147557497025, + 0.048190243542194366, + -0.011815903708338737, + 0.029541032388806343, + -0.0036218261811882257, + -0.0179960485547781, + 0.001692860503681004, + -0.023149825632572174, + 0.028348257765173912, + -0.006339408922940493, + -0.03487011790275574, + -0.0033917224500328302, + 0.0030065649189054966, + 0.025693045929074287, + 0.028866980224847794, + 0.08500056713819504, + 0.06633742898702621, + -0.04583503678441048, + -0.04187537729740143, + -0.05749722197651863, + 0.010866682045161724, + 0.005280775483697653, + -0.007562635000795126, + -0.006317288614809513, + 0.009387384168803692, + 0.017101872712373734, + 0.01564336195588112, + 0.04760138317942619, + -0.03652290627360344, + 0.004353107884526253, + -0.025581341236829758, + -0.00020096021762583405, + -0.027969203889369965, + 0.00662076473236084, + 0.022812452167272568, + -0.07213926315307617, + -0.05037378519773483, + 0.0077372025698423386, + -0.02101319469511509, + 0.0018493861425668001, + -0.01199061144143343, + 0.031543564051389694, + -0.003901383141055703, + -0.008737662807106972, + 0.011288286186754704, + -0.008319397456943989, + -0.018991975113749504, + -0.01798875816166401, + 0.029501020908355713, + -0.013644788414239883, + -0.018448276445269585, + -0.010758068412542343, + 0.040297091007232666, + -0.012192171066999435, + -0.022747503593564034, + 0.0957251489162445, + 0.049491655081510544, + -0.031248264014720917, + -0.03417135775089264, + 0.058157749474048615, + 0.05418400838971138, + 0.05062152445316315, + -0.033166322857141495, + -0.04199807718396187, + 0.030885055661201477, + -0.0017158039845526218, + 0.020704621449112892, + -0.019577564671635628, + -0.024540146812796593, + -0.01795356348156929, + -0.025434041395783424, + 0.00839528813958168, + -0.015123317018151283, + 0.00117551872972399, + 0.028202876448631287, + 0.011908892542123795, + -0.032299723476171494, + -0.028926175087690353, + 0.0059029459953308105, + -0.011585947126150131, + 0.041345931589603424, + -0.0010026185773313046, + -0.0017364044906571507, + -0.015108099207282066, + -0.036559995263814926, + -0.004895472899079323, + 0.007403360214084387, + -0.0032548264134675264, + -0.03728172183036804, + -0.0021345852874219418, + -0.013835527002811432, + -0.0216334480792284, + -0.02365397848188877, + -0.016045348718762398, + -0.004297045525163412, + -0.050004590302705765, + 0.02186388522386551, + 0.018003933131694794, + 0.04367754980921745, + -0.02163025736808777, + -0.033776380121707916, + 0.03372751176357269, + -0.018925229087471962, + 0.002527425531297922, + 0.0034115277230739594, + 0.006758308969438076, + 0.03046492673456669, + 0.0441429577767849, + 0.007893245667219162, + 0.005755513906478882, + -0.01632774993777275, + -0.047038380056619644, + 0.037042614072561264, + 0.02745562046766281, + -0.05352375656366348, + -0.03904503211379051, + 0.012944318354129791, + -0.03632274270057678, + 0.015938574448227882, + 0.014811673201620579, + 0.007444491609930992, + 0.035454560071229935, + -0.05232427641749382, + -0.0017252909019589424, + 0.03644672781229019, + 0.02640748769044876, + -0.04627841338515282, + -0.03800413757562637, + 0.025980958715081215, + -0.019293662160634995, + 0.07405281811952591, + -0.04635649546980858, + 0.012732323259115219, + 0.01776719093322754, + 0.00495493970811367, + -0.027990907430648804, + -0.007642299868166447, + -0.028068246319890022, + 0.02921944670379162, + -0.002921520499512553, + -0.03724486380815506, + -0.009799320250749588, + 0.07811503857374191, + 0.02304568514227867, + -0.05600147694349289, + -0.007593749091029167, + -0.047065574675798416, + 0.018596939742565155, + 0.03208949416875839, + -0.010712160728871822, + 0.0014736623270437121, + 0.005037669558078051, + 0.017666323110461235, + -0.06523309648036957, + -0.024991044774651527, + -0.008188282139599323, + -0.03934502601623535, + 0.04979115352034569, + -0.038509201258420944, + -0.0267338789999485, + 0.005193476565182209, + 0.01760418526828289, + 0.01413680985569954, + -0.015735149383544922, + -0.025978390127420425, + -0.040846385061740875, + 0.0007930333376862109, + 0.006372997071594, + -0.028980232775211334, + 0.02601967379450798, + -0.03159771487116814, + -0.03206288814544678, + 0.02170509286224842, + -0.010575887747108936, + -0.02373448759317398, + -0.09027553349733353, + 0.0005788549315184355, + 0.032689690589904785, + 0.032114870846271515, + -0.03310493007302284, + 0.027143236249685287, + -0.036960966885089874, + -0.007320647593587637, + -0.046683311462402344, + 0.0016474468866363168, + -0.011380198411643505, + 0.009621279314160347, + -0.0006447504856623709, + 0.034306105226278305, + 0.008942696265876293, + -0.005576013121753931, + 0.003060567658394575, + -0.006050874944776297, + 0.015236171893775463, + 0.02305429056286812, + 0.026468323543667793, + -0.002217252505943179, + -0.006929341703653336, + -0.06391524523496628, + -0.021410109475255013, + 0.034694693982601166, + 0.026614701375365257, + -0.048980552703142166, + -0.0396219901740551, + -0.04538146033883095, + 0.039801981300115585, + 0.0335305854678154, + -0.00974997878074646, + 0.0016138444188982248, + 0.008355223573744297, + -0.002965663094073534, + -0.022244025021791458, + 0.05815503001213074, + -0.021691342815756798, + -0.028226489201188087, + -0.0033126461785286665, + -0.03609223663806915, + -0.06823006272315979, + 0.004888791125267744, + 0.040231380611658096, + -0.03329312428832054, + 0.03295687213540077, + -0.005943042691797018, + 0.008192691020667553, + -0.0002518476394470781, + 0.042253464460372925, + -0.023665932938456535, + 0.005985767114907503, + -0.0247025229036808, + 0.05279839038848877, + 0.019508348777890205, + 0.054893601685762405, + -0.022174322977662086, + -0.016181735321879387, + 0.032559845596551895, + 0.01839669793844223, + 0.008362521417438984, + 0.02246795780956745, + -0.0005449228920042515, + 0.02913713827729225, + -0.04022124782204628, + 0.0573459230363369, + 0.038811784237623215, + 0.0026906400453299284, + -0.011596836149692535, + -0.013305398635566235, + -0.013296396471560001, + -0.04903320223093033, + -0.01141330972313881, + -0.055075328797101974, + 0.007941992953419685, + 0.018592311069369316, + 0.007439511828124523, + 0.028182758018374443, + -0.07019408047199249, + -0.0321219339966774, + -0.03985627368092537, + 0.015677478164434433, + -0.13313089311122894, + -0.0037228045985102654, + -0.011435747146606445, + -0.0031209562439471483, + -0.010127244517207146, + 0.0029899764340370893, + -0.017525972798466682, + -0.05599904805421829, + -0.0011234949342906475, + -0.02905873954296112, + -0.0745791345834732, + -0.02010251022875309, + -0.01466344390064478, + -0.029268870130181313, + -0.0034221468959003687, + -0.02332887053489685, + 0.03512885421514511, + 0.0218758936971426, + -0.008890311233699322, + 0.037961047142744064, + 0.004299605265259743, + -0.012619798071682453, + 0.06896655261516571, + 0.028735896572470665, + 0.01143632922321558, + -0.007297709584236145, + -0.046443525701761246, + -0.015754053369164467, + -0.016977744176983833, + -0.02760162390768528, + -0.04346904158592224, + 0.023793024942278862, + 0.029770459979772568, + 0.02319660224020481, + 0.010147420689463615, + -0.010414937511086464, + 0.004938938654959202, + 0.038019515573978424, + 0.005695995409041643, + 0.023852847516536713, + 0.01917555183172226, + 0.030827179551124573, + -0.052846554666757584, + -0.007155348546802998, + 0.027383742853999138, + 0.02313615195453167, + -0.03062860108911991, + -0.007403153460472822, + -0.03723480924963951, + -0.027528176084160805, + 0.0496361218392849, + 0.012383979745209217, + 0.06075407192111015, + 0.01183506939560175, + 0.0038009481504559517, + -0.02479943260550499, + -0.025431351736187935, + 9.276860509999096e-05, + 0.026352915912866592, + 0.006039534229785204, + -0.022153960540890694, + 0.004591330885887146, + -0.03633395954966545, + -0.07088631391525269, + -0.0134915541857481, + -0.0055098463781178, + -0.02870822511613369, + 0.050623729825019836, + -0.00883476622402668, + -0.010259588249027729, + -0.035403281450271606, + -0.004901256877928972, + 0.0021379850804805756, + 0.0015958021394908428, + 0.035879362374544144, + 0.01763990893959999, + 0.043464936316013336, + -0.00634001474827528, + -0.05355734005570412, + -0.05465327948331833, + -0.04872670769691467, + -0.02402946725487709, + -0.04939749091863632, + -0.06337106227874756, + 0.026805471628904343, + -0.00540841743350029, + -0.00046563820797018707, + 0.017695698887109756, + -0.11594071239233017, + -0.010106037370860577, + -0.04268614947795868, + -0.050886765122413635, + -0.010138733312487602, + -0.02807186171412468, + -0.009549062699079514, + 0.0056214663200080395, + -0.005400760564953089, + 0.0016834994312375784, + 0.000902338360901922, + -0.03292298689484596, + 0.02772616595029831, + -0.029170915484428406, + 0.019360944628715515, + 0.004911103751510382, + 0.011851681396365166, + 0.0007843035855330527, + 0.01848469488322735, + -0.01899687945842743, + -0.014755542390048504, + -0.01922040618956089, + -0.060744065791368484, + -0.006548133213073015, + -0.001648148987442255, + 0.016968868672847748, + 0.009854856878519058, + 0.00554930092766881, + 0.015040627680718899, + 0.034160010516643524, + -0.017849955707788467, + 0.023144038394093513, + -0.029475565999746323, + -0.0036981559824198484, + 0.06138413026928902, + -0.014147660695016384, + 0.03389296680688858, + 0.007338374387472868, + -0.012800218537449837, + 0.036333393305540085, + -0.02084001712501049, + -0.01214203517884016, + 0.01758466102182865, + -0.04614998400211334, + 0.03551170602440834, + 0.00395324919372797, + 0.0022586919367313385, + 0.03461888059973717, + -0.04272863268852234, + 0.03496336564421654, + -0.002393177477642894, + -0.024757198989391327, + 0.015797827392816544, + -0.037583332508802414, + -0.00583531754091382, + -0.045226894319057465, + -0.020252730697393417, + 0.023662270978093147, + -0.03829413279891014, + -0.021740566939115524, + -0.008123662322759628, + -0.0172708872705698, + 0.030723659321665764, + -0.03238396346569061, + -0.0035511767491698265, + 0.02360895462334156, + -0.032343700528144836, + 0.02050183340907097, + -0.00548516632989049, + -0.0025192725006490946, + -0.009116514585912228, + 0.013430561870336533, + -0.03448450565338135, + 0.011907640844583511, + 0.027888784185051918, + -0.010274258442223072, + -0.01209021732211113, + 0.0014655505074188113, + -0.019998013973236084, + 0.0021287191193550825, + -0.03180680051445961, + 0.012616733089089394, + -0.012164628133177757, + -0.021011222153902054, + -0.02548111043870449, + -0.03138289600610733, + 0.046914197504520416, + -0.04977131634950638, + -0.0017294965218752623, + -0.03857680410146713, + 0.056640367954969406, + -0.022550266236066818, + -0.013577611185610294, + 0.02408067137002945, + 0.055810753256082535, + 0.00041610817424952984, + -0.02126186154782772, + 0.0002111858339048922, + 0.019530050456523895, + 0.03364882245659828, + 0.024453595280647278, + 0.03376081958413124, + 0.009301001206040382, + 0.006889787968248129, + 0.058769360184669495, + -0.025675861164927483, + 0.0204178374260664, + -0.01009461097419262, + 0.008185436949133873, + 0.00014649503282271326, + -0.0348893441259861, + 0.004244901705533266, + -0.04845571890473366, + -0.011113788932561874, + -0.018717877566814423, + -0.058818668127059937, + -0.013334755785763264, + -0.0004229450423736125, + 0.006067209877073765, + 0.02710002474486828, + 0.04144766181707382, + 0.070103719830513, + 0.0077473982237279415, + 0.002365168184041977, + -0.03686108440160751, + 0.024339986965060234, + -0.011991449631750584, + 0.015555168502032757, + 0.022241825237870216, + 0.021543700248003006, + -0.007149122189730406, + 0.008528178557753563, + 0.017379533499479294, + 0.016004880890250206, + 0.03285058215260506, + -0.015355903655290604, + -0.00562696810811758, + 0.038023073226213455, + -0.012361292727291584, + -0.03334012255072594, + -0.0030201978515833616, + -0.03240656852722168, + -0.02104892022907734, + 0.029661940410733223, + 0.015099311247467995, + 0.04437089338898659, + -0.016872167587280273, + 0.016441287472844124, + 0.038190167397260666, + 0.05839753895998001, + -0.023659653961658478, + 0.02188548631966114, + 0.0033308789134025574, + 0.045320503413677216, + -0.02813892625272274, + -0.047897107899188995 + ], + "start_index": 0, + "end_index": 59, + "token_count": 17, + "file_type": "avap_code", + "filename": "hola_mundo.avap", + "addResult": true, + "addVar": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "f5daf73a-837a-53ca-b413-83c3231ae8ae", + "_source": { + "text": "randomString(\"[A-Z]\\d\", 32, token_seguridad)\naddResult(token_seguridad)", + "embedding": [ + -0.02831176295876503, + 0.009878169745206833, + 0.005322923883795738, + -0.02521114982664585, + -0.04065392538905144, + 0.020117681473493576, + 0.008959462866187096, + 0.03929710388183594, + -0.045917559415102005, + -0.03336183726787567, + -0.011035691015422344, + 0.026615995913743973, + -0.013527531176805496, + -0.025877224281430244, + 0.054601285606622696, + 0.004891911521553993, + 0.009968172758817673, + 0.010467566549777985, + -0.0033665336668491364, + -0.01519799791276455, + -0.03601809963583946, + 0.0231699887663126, + -0.030266854912042618, + 0.03711309656500816, + -0.01220095157623291, + -0.007347166538238525, + -0.0036986633203923702, + -0.004885694943368435, + -0.010033826343715191, + 0.007157785352319479, + 0.03423536196351051, + 0.030608370900154114, + 0.013343952596187592, + -0.09493916481733322, + -0.016828665509819984, + -8.572026126785204e-05, + -0.02208179235458374, + -0.05408557504415512, + -0.03870534151792526, + -0.005999766290187836, + -0.007593424059450626, + 0.01589880883693695, + 0.017545579001307487, + -0.006834763567894697, + 0.04726481810212135, + -0.02923329919576645, + 0.07677585631608963, + -0.022510048002004623, + -0.019881844520568848, + -0.03492726758122444, + 0.028889818117022514, + 0.02339818701148033, + 0.04384481906890869, + -0.0006386576569639146, + -0.022380923852324486, + -0.0012636546744033694, + -0.00878056325018406, + 0.01890689693391323, + -0.013879307545721531, + -0.08850562572479248, + 0.007723520044237375, + -0.005516315810382366, + -0.05624387413263321, + 0.02930835634469986, + 0.016499295830726624, + 0.029065508395433426, + 0.006841255351901054, + 0.00013925429084338248, + -0.0014868230791762471, + -0.03454935550689697, + 0.01767314039170742, + 0.032133232802152634, + -0.0003276783390901983, + -0.034301578998565674, + -0.05903851240873337, + 0.011732173152267933, + 0.020794369280338287, + 0.03537745773792267, + -0.026301871985197067, + -0.022083159536123276, + -0.0024700171779841185, + 0.027687501162290573, + -0.019925102591514587, + 0.006727422587573528, + -0.02208155207335949, + 0.015154599212110043, + -0.02235155552625656, + 0.027673644945025444, + 0.006160734221339226, + 0.0072172232903540134, + -0.023542067036032677, + -0.01907050423324108, + 0.05136767774820328, + -0.035402875393629074, + 0.002607638482004404, + -0.027712784707546234, + 0.021076545119285583, + -0.013496702536940575, + 0.04988010227680206, + 0.031567398458719254, + 0.0072002471424639225, + -0.011360662057995796, + -0.005276599433273077, + -0.0004692870134022087, + 0.05244572460651398, + 0.0052388133481144905, + 0.04288258031010628, + 0.03978873789310455, + 0.001368330093100667, + 0.016133692115545273, + 0.015403400175273418, + -0.011482568457722664, + 0.02375730872154236, + 0.005071757826954126, + -0.0115092433989048, + -0.02623356506228447, + -0.020517271012067795, + 0.01994054950773716, + 0.017559992149472237, + -0.008719787932932377, + 0.026865558698773384, + -0.004065139684826136, + 0.03876207768917084, + -0.05494380742311478, + 0.018647026270627975, + 0.034718889743089676, + -0.006381755229085684, + 0.018609782680869102, + -0.009991087950766087, + 0.004497600253671408, + 0.002026025904342532, + 0.020152561366558075, + 0.011919819749891758, + 0.009329661726951599, + -0.08411423116922379, + -0.017862392589449883, + -0.018091324716806412, + 0.02005232311785221, + 0.00983712263405323, + -0.05713276565074921, + 0.015904894098639488, + 0.038230910897254944, + 0.03537655249238014, + -0.03318571671843529, + 0.04741765931248665, + -0.024676768109202385, + 0.02560783177614212, + -0.010074273683130741, + 0.005342123564332724, + -0.01070916373282671, + 0.0024048492778092623, + 0.006376755889505148, + 0.017625462263822556, + -0.02369285561144352, + 0.03312182426452637, + -0.00821446068584919, + -0.004991586320102215, + 0.003919695504009724, + -0.009675557725131512, + 0.03500394523143768, + 0.00932131428271532, + -0.01960776001214981, + -0.01165673416107893, + 0.002731496235355735, + -0.008424653671681881, + -0.02843242697417736, + 0.010001622140407562, + -0.033157508820295334, + -0.008836861699819565, + -0.015620140358805656, + -0.001242639496922493, + -0.057856518775224686, + -0.005351645406335592, + -0.005616785958409309, + 0.01961113139986992, + 0.01998724974691868, + 0.07184644788503647, + 0.032376907765865326, + 0.010157751850783825, + -0.05345636606216431, + -0.018728293478488922, + -0.01846390590071678, + -0.004283121321350336, + -0.017406173050403595, + -0.006811520084738731, + -0.017991546541452408, + 0.040374547243118286, + -0.006433077156543732, + -0.013652387075126171, + 0.023065829649567604, + -0.009352531284093857, + -0.01784888096153736, + 0.030869988724589348, + -0.03549132123589516, + 0.014868673868477345, + 0.01191898062825203, + 0.01716689206659794, + 0.018117457628250122, + 0.026511067524552345, + -0.004974090028554201, + -0.037079818546772, + 0.033894747495651245, + 0.03297247365117073, + -0.03175866976380348, + -0.004530385602265596, + -0.006352185737341642, + 0.007433111779391766, + -0.04112771153450012, + 0.024874892085790634, + 0.018114030361175537, + 0.02489575184881687, + 0.03825989365577698, + 0.0076550147496163845, + 0.008768430911004543, + -0.009550136514008045, + 0.023825742304325104, + -0.014331741258502007, + 0.010743778198957443, + -0.017684753984212875, + -0.027358032763004303, + -0.019198887050151825, + 0.07239002734422684, + -0.012317335233092308, + 0.0811641588807106, + 0.011288582347333431, + 0.009564654901623726, + -0.005655547603964806, + 0.05019303411245346, + -0.016742775216698647, + 0.014744270592927933, + -0.025317374616861343, + 0.010783841833472252, + -0.026678001508116722, + -0.0460001677274704, + 0.030106231570243835, + -0.015283268876373768, + 0.004971042275428772, + -0.0028614874463528395, + 0.04799753427505493, + -0.04885724559426308, + -0.011517850682139397, + -0.020549912005662918, + 0.06204375624656677, + 0.0020583386067301035, + -0.044785574078559875, + 0.022475507110357285, + -0.03157617524266243, + 0.029731370508670807, + -0.021820465102791786, + -0.04560675844550133, + -0.018639614805579185, + -0.0501936674118042, + -0.04100922495126724, + 0.0373355858027935, + 0.011628188192844391, + 0.009392785839736462, + 0.06856818497180939, + -0.011544370092451572, + -0.02385612018406391, + 0.020649457350373268, + 0.023944487795233727, + -0.0013137683272361755, + 0.03240392729640007, + 0.017398757860064507, + 0.05269043147563934, + 0.029848016798496246, + 0.02143705077469349, + 0.02457473985850811, + 0.023134732618927956, + -0.05786548927426338, + 0.019457463175058365, + 0.02070719562470913, + 0.01125924102962017, + -0.017435729503631592, + -0.030532684177160263, + 0.003611499909311533, + -0.035709965974092484, + -0.03851357102394104, + 0.06924151629209518, + 0.029574858024716377, + -0.05201857537031174, + -0.03326975181698799, + 0.028189582750201225, + -0.0041437153704464436, + 0.028878403827548027, + -0.009345903061330318, + 0.013107530772686005, + -0.04070045053958893, + 0.0009815515950322151, + -0.04521124064922333, + -0.021200604736804962, + -0.011547875590622425, + 0.07100369781255722, + -0.024286650121212006, + 0.03179889917373657, + 0.008802033960819244, + -0.01814398169517517, + -0.123893603682518, + -0.0035160542465746403, + 0.002428425243124366, + 0.02366403490304947, + -0.0006953160627745092, + 0.008119478821754456, + -0.04833684489130974, + -0.012090152129530907, + -0.01648877188563347, + 0.025522887706756592, + 0.012548244558274746, + -0.059337127953767776, + 0.035694997757673264, + -0.03788404539227486, + 0.004937672056257725, + -0.031001046299934387, + 0.01420525647699833, + 0.01264934428036213, + 0.004854748025536537, + -0.0259667057543993, + -0.014599497430026531, + 0.000659123354125768, + 0.017421741038560867, + -0.0063344272784888744, + -0.04858580231666565, + -0.038116276264190674, + 0.01612255722284317, + -0.013863137923181057, + 8.539698319509625e-05, + 0.0028332583606243134, + 0.026630107313394547, + 0.013851163908839226, + -0.01652325503528118, + 0.030739132314920425, + 0.04517980292439461, + 0.010299053974449635, + 0.027418052777647972, + -0.0030098282732069492, + -0.007901269942522049, + -0.0014927828451618552, + 0.013663040474057198, + 0.008860244415700436, + 0.012045522220432758, + 0.03177645057439804, + -0.009663225151598454, + 0.001537707052193582, + 0.02618219703435898, + -0.034300126135349274, + -0.053547389805316925, + -0.0024478177074342966, + -0.022000810131430626, + -0.05729338526725769, + 0.01649736799299717, + -0.012969608418643475, + -0.031063994392752647, + 0.05171498656272888, + -0.06758128106594086, + -0.0015258201165124774, + -0.0333838127553463, + -0.02856755629181862, + -0.050923291593790054, + 0.0034473412670195103, + -0.021024007350206375, + -0.007586674764752388, + 0.0364503413438797, + -0.0042672911658883095, + 0.07054223865270615, + 0.01828235201537609, + 0.04097478464245796, + -0.03413496911525726, + 0.05402562767267227, + -0.038783229887485504, + -0.01130474079400301, + -0.007235886994749308, + 0.02929508127272129, + 0.011710911057889462, + -0.013595184311270714, + -0.032230790704488754, + 0.022414060309529305, + -0.09000084549188614, + -0.027760138735175133, + -0.005148487165570259, + 0.020297838374972343, + 0.040860243141651154, + -0.0005318084731698036, + -0.02505800873041153, + -0.015803741291165352, + 0.007232272066175938, + 0.01615055650472641, + 0.22152414917945862, + -0.021103326231241226, + -0.02275046892464161, + -0.024324070662260056, + 0.01164664514362812, + -0.011098894290626049, + 0.02886953204870224, + 0.005957743152976036, + -0.031219415366649628, + -0.035459499806165695, + -0.010916863568127155, + 0.04328887164592743, + -0.017519794404506683, + 0.019691701978445053, + 0.022796718403697014, + 0.08064862340688705, + -0.014412971213459969, + 0.02093552239239216, + 0.050662003457546234, + -0.018613506108522415, + 0.021345529705286026, + -0.02926068753004074, + -0.07591328024864197, + -0.00563017325475812, + -0.0841144248843193, + -0.0446716770529747, + -0.008271841332316399, + 0.015385245904326439, + 0.008825370110571384, + 0.047219615429639816, + 0.00032127322629094124, + 0.07197392731904984, + -0.0015958118019625545, + 0.022683408111333847, + 0.014170372858643532, + 0.03092966228723526, + 0.026841316372156143, + -0.01797628030180931, + -0.020577136427164078, + 0.016503913328051567, + 0.02766617387533188, + -0.0004418205062393099, + 0.004833064507693052, + 0.045839518308639526, + 0.006927665323019028, + 0.03507606312632561, + -0.002511146944016218, + -0.020152194425463676, + 0.008115206845104694, + -0.00615147827193141, + -0.05611754581332207, + -0.031624022871255875, + -0.0230639036744833, + -0.007007994223386049, + 0.004709000699222088, + -0.035636164247989655, + -0.024892931804060936, + -0.009153439663350582, + -0.010726962238550186, + 0.019682370126247406, + 0.06628578901290894, + 0.021591689437627792, + -0.03577493503689766, + 0.052286211401224136, + 0.023650769144296646, + -0.021560482680797577, + 0.014612499624490738, + -0.013169187121093273, + 0.03765464574098587, + 0.03920517861843109, + 0.03282627463340759, + 0.0029157097451388836, + 0.0015970778185874224, + -0.014405765570700169, + 0.005890817381441593, + 0.0007502212538383901, + 0.055625069886446, + 0.038336701691150665, + 0.018881993368268013, + 0.007573474198579788, + -0.008935179561376572, + 0.02432316169142723, + -0.04250096529722214, + 0.0048420061357319355, + -0.010331050492823124, + -0.002792490879073739, + 0.002623861888423562, + 0.03238270431756973, + 0.006104737985879183, + 0.003388831624761224, + -0.037922222167253494, + -0.006233258172869682, + -0.03030269593000412, + -0.017582563683390617, + 0.0021181378979235888, + 0.05398017168045044, + 0.03535482659935951, + 0.021972140297293663, + -0.02890842594206333, + -0.007254160474985838, + -0.03189028799533844, + -0.023274116218090057, + -0.02249859645962715, + -0.028006000444293022, + 0.03706400841474533, + -0.006118203513324261, + -0.017358923330903053, + -0.014475328847765923, + 0.0057420614175498486, + 0.016383344307541847, + -0.0830586701631546, + 0.019847845658659935, + 0.0024834154173731804, + -0.01276086550205946, + 0.001132522476837039, + 0.011467690579593182, + -0.0024259828496724367, + -0.0004680989368353039, + 0.044994767755270004, + 0.031807128340005875, + -0.0411982387304306, + -0.045189447700977325, + 0.018945084884762764, + 0.026292957365512848, + 0.010534589178860188, + -0.011435311287641525, + -0.016819842159748077, + 0.022769015282392502, + -0.023317396640777588, + 0.072667196393013, + 0.029324302449822426, + -0.015923641622066498, + 0.030362125486135483, + 0.0031185434199869633, + -0.006603051442652941, + -0.02229388616979122, + 0.08562733978033066, + 0.022925229743123055, + 0.029764268547296524, + 0.02572963573038578, + 0.008146625943481922, + 0.04051835089921951, + -0.03942614421248436, + -0.007240223232656717, + -0.003430201904848218, + -0.010674665682017803, + 0.0051240636967122555, + 0.002880662214010954, + -0.021055147051811218, + 0.03658244386315346, + 0.035445038229227066, + 0.03650118038058281, + 0.045661404728889465, + -0.018880048766732216, + -0.008149716071784496, + -0.05879225954413414, + -0.01228482648730278, + 0.019147664308547974, + -0.040993768721818924, + -0.04950771480798721, + 0.005243111867457628, + 0.012663530185818672, + 0.05358542129397392, + 0.01754141040146351, + -0.0041099716909229755, + -0.005292065907269716, + -0.01883150078356266, + -0.010596862062811852, + -0.02772696688771248, + -0.034969210624694824, + -0.009655523113906384, + -0.016526207327842712, + -0.056998759508132935, + -0.014050074853003025, + 0.03421912342309952, + -0.024639861658215523, + -0.024041706696152687, + -0.04224647209048271, + -0.0204177089035511, + -0.016351008787751198, + 0.009559934027493, + -0.06774547696113586, + -0.03607967868447304, + 0.009995526634156704, + 0.012453802861273289, + -0.011303906328976154, + 0.00571032240986824, + -0.01323623489588499, + 0.009500274434685707, + -0.041877467185258865, + -0.012333123944699764, + 0.09262868762016296, + 0.0028513758443295956, + 0.005119347013533115, + 0.006852299440652132, + 0.013032426126301289, + -0.0025915757287293673, + 0.04777196794748306, + -0.005087671335786581, + -0.0071830712258815765, + -0.007639190182089806, + 0.0062525346875190735, + -0.015652382746338844, + 0.014170118607580662, + -0.03146323561668396, + -0.028327634558081627, + -0.035213373601436615, + 0.03139399737119675, + 0.033923424780368805, + 0.021300621330738068, + -0.014443988911807537, + 0.0011889634188264608, + 0.008525227196514606, + 0.0030591688118875027, + 0.02526061236858368, + 0.003109317971393466, + 0.03207763284444809, + -0.013416362926363945, + 0.011238784529268742, + 0.014934682287275791, + -0.014643372967839241, + -0.04914158210158348, + 0.03416261076927185, + 0.015201632864773273, + -0.055311523377895355, + 0.017906153574585915, + 0.002495371038094163, + -0.06472938507795334, + -0.012201318517327309, + 0.0029225728940218687, + -0.014515774324536324, + -0.01634158380329609, + -0.02612428553402424, + 0.01842319965362549, + 0.04676463082432747, + 0.006356038618832827, + -0.019681286066770554, + 0.052201252430677414, + 0.035843297839164734, + -0.06614598631858826, + 0.027968639507889748, + 0.01282536517828703, + 0.032668326050043106, + 0.04646730050444603, + 0.022301634773612022, + 0.11516492813825607, + -0.03125346824526787, + -0.03815317153930664, + -0.007563402876257896, + 0.01409191358834505, + -0.007740865461528301, + -0.06541275978088379, + 0.006643167696893215, + -0.004224461503326893, + 0.040370915085077286, + 0.006214686669409275, + -7.20317693776451e-05, + 0.0015765608986839652, + -0.04155560955405235, + -0.013677077367901802, + -0.02589927241206169, + 0.057427000254392624, + -0.04889203608036041, + -0.0027473957743495703, + -0.010094551369547844, + -0.07204291969537735, + 0.040602076798677444, + -0.10496893525123596, + -0.009572165086865425, + -0.026066699996590614, + -0.018992511555552483, + -0.0036755299661308527, + 0.012530595064163208, + -0.014816613867878914, + 0.015286855399608612, + 0.019207051023840904, + -0.05130918696522713, + -0.008705790154635906, + 0.029020870104432106, + 0.01999465376138687, + -0.0494423508644104, + -0.009003894403576851, + -0.03714798018336296, + 0.022997668012976646, + -0.001365880947560072, + 0.016747860237956047, + -0.010085180401802063, + -0.03492322936654091, + 0.017406713217496872, + -0.050285715609788895, + 0.008664765395224094, + -0.0026146606542170048, + -0.01113949902355671, + 0.06226690113544464, + -0.0579393170773983, + -0.025344008579850197, + -0.03443555161356926, + 0.008128004148602486, + 0.012184705585241318, + -0.041194211691617966, + -0.03368367999792099, + -0.020854054018855095, + -0.03692544996738434, + 0.014521118253469467, + -0.006997925229370594, + 0.012317363172769547, + -0.05746794492006302, + 0.01257958635687828, + 0.06720557063817978, + -0.01564497873187065, + 0.00911075808107853, + -0.06009315699338913, + 0.015185341238975525, + 0.012782920151948929, + -0.02682741917669773, + -0.013427729718387127, + 0.02743948996067047, + -0.028472572565078735, + 0.01550503633916378, + 0.0010397171135991812, + 0.0005416171043179929, + -0.033711228519678116, + -0.028212513774633408, + 0.016158873215317726, + 0.06218927353620529, + 0.030850239098072052, + -0.01710326224565506, + 0.01957772672176361, + -0.004307971801608801, + -0.01762046292424202, + -0.02238827757537365, + -0.001043267548084259, + -0.039744216948747635, + 0.01142314076423645, + -0.031243043020367622, + 0.01550964917987585, + 0.021605947986245155, + -0.008615068159997463, + -0.025806479156017303, + -0.0615183487534523, + 0.021847233176231384, + -0.00017445263802073896, + 0.0916680246591568, + -0.0505991205573082, + -0.0024549171794205904, + -0.006145232357084751, + -0.03354900702834129, + 0.023474333807826042, + -0.022094475105404854, + 0.009007344953715801, + -0.008279671892523766, + 0.02782472036778927, + -0.05277326703071594, + -0.04125455766916275, + 0.008265293203294277, + -0.006505245808511972, + -0.013056490570306778, + 0.016474176198244095, + 0.04293638840317726, + 0.03605898097157478, + -0.015443875454366207, + -0.021699393168091774, + -0.014563164673745632, + -0.01869845949113369, + -0.04355723783373833, + 0.0152051392942667, + 0.057405877858400345, + 0.016814464703202248, + -0.026879966259002686, + -0.016587192192673683, + -0.044617749750614166, + 0.019044727087020874, + -0.03286899998784065, + 0.016478782519698143, + -0.029915355145931244, + 0.04638408124446869, + -0.020342551171779633, + 0.005501520819962025, + 0.03686093911528587, + -0.020642291754484177, + 0.0039041091222316027, + -0.0038122732657939196, + -0.03756309300661087, + -0.03729547560214996, + 0.011247350834310055, + -0.004779811482876539, + -0.08529248833656311, + -0.008084006607532501, + 0.038778889924287796, + 0.04382462799549103, + -0.03796346113085747, + -0.00909650232642889, + -9.10707822185941e-05, + 0.030246945098042488, + -0.1584014594554901, + 0.010429364629089832, + -0.009745679795742035, + 0.005708394106477499, + 0.006311581004410982, + -0.010994105599820614, + -0.004970963578671217, + -0.06739404797554016, + -0.02462504431605339, + -0.030824018642306328, + -0.0225260928273201, + 0.0036901538260281086, + 0.0028347463812679052, + -0.04441288858652115, + 0.0026133705396205187, + -0.033011335879564285, + 0.017032450065016747, + 0.02537567727267742, + -0.026210205629467964, + 0.03657941892743111, + -0.022888774052262306, + -0.04328058660030365, + 0.0369722843170166, + -0.017346827313303947, + -0.05100627616047859, + 0.01894618198275566, + -0.02697509154677391, + 0.02968275360763073, + -0.03528155758976936, + -0.06392566114664078, + -0.022078361362218857, + -0.010949403047561646, + 0.04347466677427292, + 0.07226193696260452, + -0.018963206559419632, + -0.0008755748276598752, + -0.007668116129934788, + 0.012218260206282139, + 0.03031543269753456, + 0.023824885487556458, + 0.017329543828964233, + 0.03500983864068985, + -0.02979523502290249, + 0.009849832393229008, + 0.007340716663748026, + 0.05493433400988579, + 0.0056779575534164906, + -0.0005779220955446362, + -0.03728349879384041, + -0.006463906262069941, + 0.04280826076865196, + 0.01884079910814762, + -0.040450569242239, + -0.018498867750167847, + 0.003712334670126438, + -0.01644161529839039, + -0.04229740425944328, + -0.0017270148964598775, + 0.03248395770788193, + 0.035828277468681335, + -0.0011829178547486663, + -0.00850591715425253, + -0.05124716833233833, + -0.027619149535894394, + -0.01943855918943882, + 0.03925463184714317, + -0.036762118339538574, + -0.006675092503428459, + 0.03760622441768646, + 0.0016156368656083941, + -0.013207369484007359, + -0.00023111874179448932, + -0.025148699060082436, + -0.0329781137406826, + 0.009809143841266632, + 0.05977124720811844, + -0.03178877755999565, + 0.013888539746403694, + -0.0349835604429245, + -0.07020016759634018, + 0.010197426192462444, + -0.02752899006009102, + -0.034605707973241806, + -0.005370238330215216, + -0.012835802510380745, + 0.007911236956715584, + -0.0047574169002473354, + 0.022622134536504745, + -0.0441235788166523, + 0.006091538816690445, + -0.005768080707639456, + -0.06561201065778732, + -0.02521960809826851, + 0.0071643381379544735, + -0.012619849294424057, + 0.008378187194466591, + 0.007477546110749245, + 0.0036165588535368443, + 0.0019141031662002206, + -0.03147122263908386, + 0.054880037903785706, + -0.004922484513372183, + 0.03884044289588928, + 0.012521634809672832, + -0.03854583203792572, + 0.009828559122979641, + 0.06720218807458878, + -0.028876731172204018, + 0.0015852361684665084, + -0.010842098854482174, + 0.008630034513771534, + 0.025649122893810272, + -0.025239285081624985, + 0.006828134413808584, + 0.019122853875160217, + -0.016228947788476944, + -0.018604883924126625, + 0.04275063797831535, + -0.009032380767166615, + -0.020050065591931343, + 0.020198451355099678, + -0.024956000968813896, + 0.035206303000450134, + -0.017843320965766907, + 0.030494192615151405, + 0.028538424521684647, + 0.037572409957647324, + -0.016884025186300278, + -0.024737292900681496, + -0.002822046633809805, + -0.009514919482171535, + -0.024317799136042595, + 0.025584595277905464, + 0.025608235970139503, + 0.03318582847714424, + -0.03439418226480484, + -0.04467467963695526, + 0.02818184904754162, + -0.019050123170018196, + -0.00630989158526063, + 0.024186842143535614, + -0.004945792723447084, + 0.002813325496390462, + -0.03121679648756981, + -0.001213783398270607, + 0.012065703980624676, + 0.03689054399728775, + -0.019632326439023018, + 0.0456930547952652, + -0.036886077374219894, + 0.009354858659207821, + 0.004214313812553883, + -0.023221038281917572, + 0.04718770831823349, + -0.04510318487882614, + 0.03249324858188629, + 0.00531001714989543, + 0.017659813165664673, + 0.004289439879357815, + 0.022271472960710526, + 0.00047359749441966414, + -0.026450544595718384, + -0.0002035822399193421, + 0.010544732213020325, + 0.005123781971633434, + -0.03862529620528221, + -0.020748568698763847, + 0.011677708476781845, + 0.0039658318273723125, + 0.02958761528134346, + 0.02449377439916134, + 0.005606798455119133, + -0.018904980272054672, + 0.020399250090122223, + 0.054671090096235275, + -0.021087229251861572, + 0.045962125062942505, + -0.02260158210992813, + 0.06660673767328262, + 0.01498646941035986, + -0.01631038635969162, + 0.006905646994709969, + 0.03268962353467941, + 0.008255033753812313, + 0.02385348081588745, + 0.015585963614284992, + 0.006386340595781803, + 0.05704425275325775, + 0.0023339432664215565, + -0.05424885079264641, + 0.012259062379598618, + -0.03587194159626961, + 0.009734530001878738, + -0.0460100993514061, + 0.03277148678898811, + -0.0019790949299931526, + 0.011946847662329674, + -0.054671239107847214, + -0.017302485182881355, + 0.05488627403974533, + -0.07747398316860199, + -0.032301243394613266, + -0.0009754132479429245, + -0.008037533611059189, + -0.007314424961805344, + -0.032469864934682846, + -0.024978650733828545, + 0.004361591301858425, + -0.033175814896821976, + 0.027147293090820312, + -0.016172869130969048, + -0.008568033576011658, + -0.006078025326132774, + 0.01343858428299427, + -0.011002955958247185, + -0.02198343351483345, + 0.057629652321338654, + 0.02427530288696289, + 0.009413888677954674, + 0.01930423453450203, + 0.012554174289107323, + 0.013823782093822956, + 0.05161537230014801, + -0.029057705774903297, + -0.025646816939115524, + 0.04536956921219826, + -0.0137944296002388, + 0.020681187510490417, + -0.030530620366334915, + -0.020689979195594788, + -0.05471188947558403, + -0.015192430466413498, + 0.00433733407407999, + 0.03166402503848076, + 0.009538848884403706, + -0.007936551235616207, + 0.0162497591227293, + 0.03368900343775749, + -0.04924494028091431, + 0.0583207868039608, + 0.007324725389480591, + 0.009410136379301548, + 0.009481361135840416, + 0.009851367212831974 + ], + "start_index": 0, + "end_index": 71, + "token_count": 22, + "file_type": "avap_code", + "filename": "generador_de_tokens_aleatorios.avap", + "addResult": true, + "randomString": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "ea662a07-5715-590a-8ec9-446f65c79f70", + "_source": { + "text": "subtotal = 150.50\niva = subtotal * 0.21\ntotal = subtotal + iva\naddResult(total)", + "embedding": [ + -0.035112183541059494, + 0.009696710854768753, + -0.005025655962526798, + 0.05282774940133095, + -0.02798144705593586, + -0.012424253858625889, + 0.025130126625299454, + 0.06491677463054657, + -0.0052635944448411465, + 0.0036917845718562603, + -0.03625331446528435, + 0.021012304350733757, + -0.04547009617090225, + 0.010109282098710537, + -0.016622167080640793, + -0.012685215100646019, + 0.009619985707104206, + 0.03308326378464699, + 0.010581069625914097, + -0.00723144831135869, + 0.005876073148101568, + 0.02001642994582653, + -0.004510887898504734, + 0.0015204297378659248, + -0.008103461004793644, + -0.0042470479384064674, + -0.0008275578147731721, + -0.00048401165986433625, + 1.5696276022936217e-05, + -0.018590331077575684, + 0.013478009030222893, + -0.04023251309990883, + -0.028437772765755653, + -0.04630570486187935, + -0.04747287929058075, + 0.007001523394137621, + -0.032024141401052475, + -0.032893698662519455, + -0.043895844370126724, + 0.06122085079550743, + 0.004290368873625994, + 0.026090919971466064, + -0.04306875914335251, + -0.023768432438373566, + 0.045142028480768204, + 0.003342412179335952, + -0.022575141862034798, + -0.024451235309243202, + -0.04279308021068573, + -0.010019779205322266, + 0.011307431384921074, + -0.01604342646896839, + 0.04137545824050903, + -0.026758119463920593, + 0.007811633870005608, + 0.008946036919951439, + -0.0073493109084665775, + 0.020570410415530205, + -0.04843053221702576, + 0.00527050020173192, + -0.026059133931994438, + 0.04515356570482254, + -0.06744791567325592, + -0.004007130395621061, + 0.02904837764799595, + 0.014094638638198376, + 0.015181738883256912, + 0.047552019357681274, + 0.005682001821696758, + 0.004738309886306524, + -0.007109106983989477, + 0.005094572436064482, + 0.011712230741977692, + -0.045463740825653076, + -0.04943074658513069, + -0.011656094342470169, + 0.009857314638793468, + 0.008776507340371609, + 0.008787527680397034, + -0.018238913267850876, + 0.0004745793412439525, + -0.010544752702116966, + -0.02214423194527626, + 0.005175274331122637, + -0.07186126708984375, + 0.036548394709825516, + -0.0029060090892016888, + 0.01906707137823105, + -0.028994213789701462, + 0.019563734531402588, + -0.03315313532948494, + -0.033989258110523224, + 0.0019572831224650145, + -0.02774660289287567, + 0.0011693293927237391, + -0.020873546600341797, + -0.014682537876069546, + 0.027459481731057167, + 0.02542305365204811, + 0.01755191572010517, + 0.046451836824417114, + 0.04373618960380554, + 0.0221480093896389, + -0.0008809346472844481, + 0.033010054379701614, + -0.023945631459355354, + 0.04715539142489433, + -0.01536555401980877, + 0.04956574738025665, + -0.020924651995301247, + 0.007298410404473543, + 0.013571714051067829, + 0.004117256961762905, + 0.019824553281068802, + 0.02147275023162365, + 0.0023210153449326754, + -0.03284238278865814, + 0.005860698875039816, + 0.09491367638111115, + -0.003386136842891574, + 0.04009899124503136, + 0.01635928452014923, + 0.00616492098197341, + -0.03805605322122574, + 0.01016446016728878, + 0.01576334610581398, + 0.01906042918562889, + 0.008026211522519588, + 0.022784700617194176, + 0.022780777886509895, + -0.012337098829448223, + -0.003351320279762149, + -0.03556020185351372, + 0.00823496375232935, + -0.0346393845975399, + -0.03747337684035301, + 0.012600675225257874, + 0.040524162352085114, + -0.002409410895779729, + -0.04107861593365669, + 0.03744116425514221, + 0.03674573451280594, + -0.007199876941740513, + -0.01858409121632576, + 0.0516938678920269, + -0.05593039095401764, + 0.0185253769159317, + -0.0215653907507658, + -0.008300877176225185, + -0.03971089422702789, + 0.008816488087177277, + 0.05632375180721283, + 0.0001893754379125312, + -0.030508512631058693, + 0.024225832894444466, + 0.018843967467546463, + 0.018384132534265518, + -0.01025613583624363, + -0.017898142337799072, + 0.0010697831166908145, + 0.0009400009294040501, + 0.04774178937077522, + 0.002712772460654378, + -0.028535990044474602, + -0.007783500012010336, + -0.013906680047512054, + 0.024893293157219887, + 0.030242931097745895, + 0.0031407431233674288, + -0.04899638146162033, + 0.04672015830874443, + 0.011800563894212246, + 0.017687136307358742, + -0.0016321985749527812, + 0.015661483630537987, + 0.023526985198259354, + 0.08721917122602463, + -0.0028295163065195084, + -0.013031641021370888, + -0.05686507374048233, + 0.0026809547562152147, + 0.005560551304370165, + -0.02299802005290985, + -0.013666575774550438, + -0.057975973933935165, + 0.026260478422045708, + 0.02242446318268776, + 0.02551337517797947, + 0.006917815655469894, + 0.053264595568180084, + 0.0016659535467624664, + 0.008523223921656609, + 0.005926614627242088, + -0.028149811550974846, + 0.018750309944152832, + 0.008613979443907738, + 0.007309631910175085, + -0.023933015763759613, + 0.013080013915896416, + 0.014395184814929962, + -0.00567387230694294, + 0.015371930785477161, + -0.02418763004243374, + -0.04668310657143593, + -0.026152536273002625, + 0.017891177907586098, + -0.03717172145843506, + -0.017796264961361885, + 0.023678172379732132, + -0.002806249773129821, + -0.02278430573642254, + 0.009186153300106525, + -0.005675152409821749, + 0.004575347062200308, + 0.04097165912389755, + 0.011205142363905907, + 0.02943522110581398, + -0.03322554752230644, + 0.013681283220648766, + 0.002879638457670808, + -0.03598249331116676, + 0.03189485892653465, + 0.053668368607759476, + 0.052852191030979156, + 0.000606629007961601, + -0.0038727696519345045, + -0.017886582762002945, + 0.01979963295161724, + -0.00018204280058853328, + -0.011289327405393124, + -0.04922971501946449, + 0.02705271914601326, + 0.02091815508902073, + -0.04197894409298897, + 0.028767161071300507, + -0.007697115186601877, + 0.003616752102971077, + 0.0475613959133625, + -0.020080983638763428, + 0.014858136884868145, + -0.007049286738038063, + 0.009421476162970066, + -0.00808620359748602, + -0.021929657086730003, + -0.025104323402047157, + -0.01022935938090086, + -0.00751227792352438, + 0.031831204891204834, + -0.045842014253139496, + -0.05137253552675247, + -0.0016338241985067725, + -0.018236735835671425, + -0.016963662579655647, + 0.02911430038511753, + -0.025723077356815338, + -0.005845250561833382, + -0.020579762756824493, + -0.009087230078876019, + -0.042486462742090225, + 0.02010922133922577, + 0.01384579949080944, + -0.03422550857067108, + -0.0010152824688702822, + 0.02175293304026127, + -0.003232566174119711, + -0.009004233404994011, + -3.054130502277985e-05, + 0.018644845113158226, + -0.031380198895931244, + -0.014680727384984493, + 0.046414315700531006, + 0.030692176893353462, + -0.04057041183114052, + 0.03297067806124687, + -0.02472340688109398, + 0.06184275075793266, + -0.0398382768034935, + 0.00874130055308342, + 0.057629864662885666, + 0.03709808737039566, + 0.03560731187462807, + -0.0036211085971444845, + 0.010976766236126423, + -0.07580918818712234, + 0.05848562344908714, + -0.018949314951896667, + 0.0023556568194180727, + 0.014712253585457802, + 0.01235008705407381, + -0.02559232898056507, + -0.017203854396939278, + -0.029031123965978622, + 0.06408686190843582, + 0.012127307243645191, + -0.04640199616551399, + 0.022524116560816765, + -0.013924568891525269, + -0.1791238635778427, + 0.005363918375223875, + -0.021263359114527702, + -0.004763323348015547, + -0.015726443380117416, + 0.009837801568210125, + -0.012952920980751514, + -0.0035921826492995024, + -0.03327270597219467, + 0.07462137937545776, + 0.03245781734585762, + -0.07023879140615463, + 0.04495643824338913, + -0.02718701772391796, + 0.0005728491814807057, + -0.018243324011564255, + -0.016682635992765427, + -0.03061484917998314, + 0.03395945578813553, + -0.01795141026377678, + -0.033610232174396515, + -0.04143243655562401, + 0.0013219175161793828, + -0.025184018537402153, + -0.04771162569522858, + -0.01737981289625168, + -0.040726516395807266, + 0.04397452622652054, + -0.005700296722352505, + -0.0014987211907282472, + -0.05260476842522621, + 0.005866997875273228, + 0.012082163244485855, + 0.03448917716741562, + -0.0012303958646953106, + 0.059643879532814026, + -0.011741110123693943, + 0.01652691140770912, + 0.02626040391623974, + 0.026611527428030968, + 0.014395388774573803, + -0.0055667562410235405, + 0.011278538033366203, + 0.05168304219841957, + -0.03288833424448967, + 0.04712209105491638, + 0.021146515384316444, + 0.03075476922094822, + -0.028929267078638077, + 0.002078855875879526, + -0.012406585738062859, + -0.02150449901819229, + 0.019488465040922165, + -0.03509321063756943, + -0.034565795212984085, + 0.0032659941352903843, + -0.0057233176194131374, + 0.04237079992890358, + -0.0224576685577631, + 0.003876800648868084, + -0.04165145754814148, + -0.007367995567619801, + -0.025513071566820145, + -0.014024278149008751, + 0.022579150274395943, + -0.013666462153196335, + 0.00749244587495923, + 0.030591126531362534, + 0.020257633179426193, + -0.02244594879448414, + 0.04254733398556709, + -0.03986288607120514, + 0.0021640234626829624, + -0.04198681563138962, + 0.02435363084077835, + -0.02373429201543331, + -0.03665822371840477, + -0.0067824735306203365, + 0.060779083520174026, + -0.11929261684417725, + -0.02586016245186329, + -0.020554866641759872, + -0.016496824100613594, + 0.036327533423900604, + -0.024689989164471626, + -0.019840354099869728, + 0.008062453009188175, + 0.02285124734044075, + -0.006313261575996876, + 0.24434000253677368, + 0.021576637402176857, + 0.030781351029872894, + -0.009633184410631657, + 0.00022979281493462622, + -0.06309200823307037, + -0.0024022753350436687, + -0.03345818445086479, + -0.004793787375092506, + -0.03443613648414612, + 0.011295212432742119, + 0.039423342794179916, + -0.017657067626714706, + 0.002331930911168456, + -0.04252438619732857, + 0.029203543439507484, + -0.01761460117995739, + 0.04375342279672623, + 0.025402724742889404, + -0.0041924952529370785, + 0.039508167654275894, + -0.040441934019327164, + 0.005093118641525507, + 0.023259863257408142, + -0.021568605676293373, + -0.031973909586668015, + -0.006761033087968826, + -0.00530970748513937, + -0.007863604463636875, + 0.04159346967935562, + -0.018750613555312157, + 0.023392951115965843, + 0.019663751125335693, + 0.017846135422587395, + 0.008057954721152782, + -0.02324201539158821, + -0.025297299027442932, + 0.00011134446685900912, + 0.040380094200372696, + 0.006360248662531376, + 0.02588214911520481, + -0.030359547585248947, + 0.01916509121656418, + 0.03076225332915783, + -0.00539092393592, + -0.007843611761927605, + 0.05495426058769226, + -0.0010499580530449748, + 0.011893139220774174, + -0.00335571076720953, + 0.04943180829286575, + -0.04022955894470215, + 0.005807841196656227, + 0.009962410666048527, + 0.01018909178674221, + 0.0005472656921483576, + 0.016872067004442215, + 0.024872373789548874, + -0.01938517950475216, + -0.02278565987944603, + 0.018864180892705917, + -0.008370934054255486, + 0.022465605288743973, + -0.027391349896788597, + 0.04482034593820572, + -0.019196446985006332, + 0.005613555666059256, + -0.006651261355727911, + 0.03184899315237999, + 0.007032978348433971, + -0.03140191361308098, + 0.022956565022468567, + -0.002932229544967413, + 0.0032460482325404882, + 0.01687091588973999, + -0.03557201474905014, + 0.012639575637876987, + -0.009948862716555595, + 0.00964041706174612, + 0.015170767903327942, + -0.06136234849691391, + -0.026656342670321465, + -0.043849341571331024, + 0.01633223332464695, + 0.01449822448194027, + -0.006749603431671858, + -0.027718711644411087, + 0.03701837733387947, + -0.021161628887057304, + -0.011965625919401646, + -0.037389229983091354, + -0.003057653782889247, + 0.009629550389945507, + 0.0028717361856251955, + -0.024547932669520378, + 0.02893969602882862, + -0.0015316089848056436, + -0.0103975934907794, + -0.09147022664546967, + 0.03712598606944084, + -0.00871008075773716, + 0.019706707447767258, + 0.015704531222581863, + -0.0173374954611063, + 0.0646819993853569, + -0.05458785220980644, + -0.0012790466425940394, + -0.004033396951854229, + -0.024883387610316277, + 0.015497149899601936, + -0.02411094307899475, + 0.00043894373811781406, + 0.02371080033481121, + 0.012834202498197556, + -0.006454546935856342, + 0.025393100455403328, + 0.014729335904121399, + 0.06062125042080879, + 0.04606623947620392, + 0.0029215728864073753, + -0.010116808116436005, + -0.037698473781347275, + -0.05281846225261688, + -0.018258463591337204, + 0.04608989134430885, + 0.0264129638671875, + 0.010766199789941311, + 0.01164202019572258, + -0.02213575318455696, + 0.043977025896310806, + 0.029885973781347275, + -0.01422953512519598, + -0.03724130988121033, + 0.008133365772664547, + -0.02943491004407406, + 0.019533386453986168, + 0.004384202416986227, + -0.004318471532315016, + -0.025220898911356926, + -0.016715887933969498, + -0.03730899095535278, + -0.02069343626499176, + 0.018478261306881905, + -0.01902920939028263, + 0.0361754447221756, + -0.006124671548604965, + 0.030511902645230293, + 0.004835230298340321, + -0.03340289741754532, + 0.03026093915104866, + -0.007598424796015024, + 0.024456102401018143, + 0.038870081305503845, + -0.027702922001481056, + -0.017320705577731133, + -0.07240208238363266, + -0.004976821132004261, + -0.026939094066619873, + -0.0033991571981459856, + -0.03972446545958519, + 0.0523294135928154, + -0.06289006024599075, + 0.01473627332597971, + -0.0012030311627313495, + -0.009369296953082085, + -0.0004385932406876236, + -0.032440416514873505, + 0.023516273126006126, + -0.035413164645433426, + -0.020953020080924034, + -0.0069702183827757835, + -0.023538852110505104, + -0.002571923192590475, + -0.002951152389869094, + 0.0291329026222229, + -0.04147060215473175, + -0.03757460042834282, + -0.011312740854918957, + -0.004362728912383318, + -0.06629585474729538, + -0.0019920975901186466, + 0.00034273401251994073, + -0.011302291415631771, + 0.00881386548280716, + 0.04970814660191536, + -0.02427188865840435, + -0.03613925725221634, + -0.011613904498517513, + 0.03371621295809746, + -0.0646006315946579, + -0.0015904135070741177, + 0.10313688218593597, + -0.029581598937511444, + -0.030407536774873734, + 0.00022987506235949695, + 0.04005616158246994, + -0.014930269680917263, + 0.0016422298504039645, + -0.030281655490398407, + -0.03633389621973038, + 0.02463088370859623, + 0.042764727026224136, + 0.039324868470430374, + -0.006760884076356888, + 0.019586650654673576, + -0.005675444845110178, + 0.007970232516527176, + 0.03522610664367676, + 0.043477863073349, + -0.029593905434012413, + 0.010472895577549934, + 0.008403586223721504, + 0.02261432260274887, + -0.017340723425149918, + 0.03427600488066673, + -0.01942087523639202, + 0.055471573024988174, + -0.026883317157626152, + -0.0016058316687121987, + -0.028117621317505836, + -0.013517783023416996, + -0.011977992951869965, + 0.0001906372926896438, + -0.03616153448820114, + -0.03220769017934799, + 0.05544506013393402, + -0.005477372091263533, + -0.010051925666630268, + 0.0030240239575505257, + -0.011878469958901405, + -0.011591722257435322, + -0.00023840270296204835, + 0.03543517738580704, + 0.03240456059575081, + -0.02127007208764553, + -0.0034063842613250017, + -0.001598204136826098, + 0.017916224896907806, + 0.0506061427295208, + -0.013046033680438995, + 0.048602666705846786, + 0.0019570777658373117, + 0.05224866420030594, + 0.10498204827308655, + -0.025584863498806953, + 0.03841397911310196, + -0.06606128066778183, + 0.016631901264190674, + 0.05424429476261139, + 0.0013729146448895335, + -0.01737130433320999, + -0.07467150688171387, + 0.04365381598472595, + -0.02545681595802307, + -0.04393615573644638, + 0.03254907205700874, + -0.03597480431199074, + 0.009021773003041744, + -0.028832819312810898, + -0.02034190110862255, + 0.002754985122010112, + 0.011239539831876755, + -0.00868113525211811, + 0.023153135553002357, + -0.013108269311487675, + -0.07397568225860596, + 0.05451253056526184, + -0.01753493957221508, + -0.0023297639563679695, + -0.005872976500540972, + 0.004072627518326044, + -0.009848875924944878, + -0.03651644289493561, + -0.06849905848503113, + 0.010193107649683952, + 0.03940761461853981, + -0.062324631959199905, + -0.01592779904603958, + 0.007010950706899166, + -0.0051766508258879185, + -0.02576095424592495, + 0.011350110173225403, + 0.01283994410187006, + 0.060283876955509186, + -0.004098943434655666, + 0.008727091364562511, + -0.01059050764888525, + 0.04088146612048149, + 0.008267730474472046, + -0.038648251444101334, + -0.03759920224547386, + -0.00042289900011382997, + -0.01430920884013176, + 0.10832884162664413, + 0.009511444717645645, + -0.028247682377696037, + 0.0179885346442461, + -0.012401017360389233, + -0.03516695275902748, + -0.007588971871882677, + -0.010063724592328072, + -0.02859286032617092, + -0.009605016559362411, + 0.0011428551515564322, + -0.028040610253810883, + 0.008628313429653645, + 0.014272930100560188, + -0.02859368547797203, + 0.0331256240606308, + 0.009348094463348389, + -0.009868841618299484, + -0.06627266854047775, + -0.01700766384601593, + 0.06691555678844452, + 0.024427618831396103, + -0.022376790642738342, + 0.06680509448051453, + 0.01083055417984724, + 0.0008658579899929464, + 0.003734063822776079, + 0.005369278602302074, + -0.030448442324995995, + -0.004035912919789553, + -0.01034658495336771, + -0.031519755721092224, + 0.029727205634117126, + 0.006742783822119236, + -0.03374195843935013, + 0.0023953288327902555, + -0.020465528592467308, + -0.0074110617861151695, + -0.021635666489601135, + -0.0038024340756237507, + 0.012872086837887764, + -0.028386874124407768, + -0.013940740376710892, + 0.01804940775036812, + -0.029831089079380035, + 0.022315578535199165, + -0.06707113981246948, + -0.03146103024482727, + -0.025934705510735512, + 0.08870922029018402, + -0.004089816007763147, + -0.007082279305905104, + 0.012955445796251297, + 0.007869378663599491, + -0.009752540849149227, + -0.003557034535333514, + -0.03032914735376835, + 8.277166489278898e-05, + 0.021025296300649643, + -0.017751947045326233, + -0.04671308025717735, + 0.008927829563617706, + -0.011441202834248543, + -0.021563643589615822, + 0.007399286143481731, + 0.03919188305735588, + -0.012395597994327545, + -0.0747627541422844, + 4.6123499487293884e-05, + 0.008535109460353851, + -0.027112986892461777, + -0.06245895475149155, + -0.0023831846192479134, + 0.010097676888108253, + -0.0015715284971520305, + -0.038437068462371826, + 0.024051887914538383, + 0.016838382929563522, + -0.024314094334840775, + -0.01374884508550167, + 0.04707125574350357, + -0.03204159438610077, + 0.04955914989113808, + -0.02740146592259407, + 0.04317406564950943, + 0.008032680489122868, + -0.008977577090263367, + -0.008386337198317051, + -0.011398949660360813, + -0.048963095992803574, + -0.0030072052031755447, + -0.02502206526696682, + 0.0034422525204718113, + -0.004972226917743683, + 0.009119548834860325, + 0.060053832828998566, + 0.04892615228891373, + -0.018423739820718765, + -0.026468101888895035, + -0.045640215277671814, + 0.052169669419527054, + -0.14908623695373535, + 0.0412132702767849, + 0.005659323185682297, + -0.013804450631141663, + 0.007071235217154026, + -0.002817582804709673, + -0.02052682638168335, + -0.004993387497961521, + 0.0032170508056879044, + -0.0050843385979533195, + -0.024373292922973633, + -0.011885016225278378, + 0.023420769721269608, + -0.020155714824795723, + -0.005994887091219425, + 0.009734736755490303, + 0.018621006980538368, + -0.008053912781178951, + -0.06743867695331573, + 0.04956159368157387, + -0.010393911972641945, + -0.037359461188316345, + -0.007233214098960161, + -0.004011405631899834, + -0.015922827646136284, + 0.026540197432041168, + 0.027921274304389954, + 0.006310500670224428, + -0.01563996449112892, + -0.014222308062016964, + -0.011426509357988834, + -0.032701000571250916, + 0.016205521300435066, + 0.039545804262161255, + 0.0067974841222167015, + 0.032950080931186676, + -0.0018644301453605294, + 0.03306380286812782, + 0.004900977481156588, + 0.02159764990210533, + 0.039706725627183914, + 0.015081577934324741, + -0.05434844270348549, + -0.04394960403442383, + 0.04376194253563881, + 0.01823594979941845, + 0.001317952061071992, + 0.003250578185543418, + -0.04110896214842796, + -0.03070812299847603, + -0.0039421371184289455, + 0.03497864678502083, + 0.010055042803287506, + 0.005742618348449469, + 0.026275446638464928, + -0.029612114652991295, + -0.010415824130177498, + -0.027509426698088646, + 0.010236612521111965, + -0.0319274477660656, + -0.022623812779784203, + 0.005094683263450861, + -0.05078383535146713, + -0.05528423562645912, + 0.02520429715514183, + -0.015367917716503143, + -0.0027589253149926662, + -0.019641103222966194, + -0.0027210956905037165, + -0.014223871752619743, + -0.01086959894746542, + 0.07594704627990723, + 0.027475332841277122, + -0.05358383059501648, + 0.027348164469003677, + 0.019513530656695366, + 0.017147235572338104, + 0.0018430582713335752, + -0.007504712790250778, + 0.014681297354400158, + -0.025958046317100525, + -0.01821967400610447, + -0.0009023413294926286, + -0.014451803639531136, + 0.017472947016358376, + 0.004170693457126617, + -0.04634525254368782, + 0.0028351065702736378, + -0.04396898299455643, + -0.0013661097036674619, + -0.008302136324346066, + -0.037344370037317276, + -0.05734788626432419, + -0.026524653658270836, + 0.022011712193489075, + 0.0012290416052564979, + 0.01941002532839775, + 0.021684538573026657, + 0.03492129221558571, + -0.02507183514535427, + 0.06594542413949966, + -0.04517819359898567, + 0.024101952090859413, + -0.01018706988543272, + -0.012362535111606121, + 0.01925482787191868, + 0.02583671733736992, + -0.016692183911800385, + 0.02434350736439228, + -0.0059332475066185, + -0.002407494466751814, + -0.0010913665173575282, + -0.04714294895529747, + 0.005731635261327028, + -0.05665966868400574, + 0.0033104477915912867, + 0.0090556088835001, + 0.05630042031407356, + 0.0031711405608803034, + -0.007141506299376488, + 0.03883681818842888, + -0.06635060161352158, + 0.02160145528614521, + -0.012388113886117935, + 0.03830232471227646, + 0.0029477125499397516, + 0.00019215002248529345, + -0.0016249633627012372, + -0.036702994257211685, + 0.048066262155771255, + -0.010607259348034859, + -0.029195398092269897, + 0.02859620936214924, + -0.013263395056128502, + 0.01322335097938776, + 0.026426590979099274, + 0.011223169974982738, + 0.042058538645505905, + -0.043301261961460114, + 0.017328472808003426, + 0.003276463830843568, + -0.017707929015159607, + -0.011367838829755783, + -0.025727275758981705, + -0.01223413459956646, + 0.006316500715911388, + -0.008738811127841473, + 0.005459500942379236, + 0.0006175604648888111, + -0.010001745074987411, + -0.003939712420105934, + -0.0022107434924691916, + -0.054554373025894165, + 0.06888138502836227, + -0.042630139738321304, + -0.009411633014678955, + -0.02234368957579136, + -0.014202408492565155, + -0.004482481628656387, + 0.005301356315612793, + -0.010544928722083569, + -0.013556811958551407, + 0.01932610012590885, + -0.0041015008464455605, + -0.004240944050252438, + 0.011983481235802174, + -0.03608790785074234, + 0.01665276102721691, + 0.02252720482647419, + -0.023864464834332466, + -0.039797183126211166, + -0.018443219363689423, + -0.013899059034883976, + 0.03571315109729767, + -0.004736445378512144, + 0.045543331652879715, + -0.030360493808984756, + -0.023428022861480713, + 0.024383975192904472, + 0.028897583484649658, + -0.015383479185402393, + 0.0644584521651268, + 0.07283493131399155, + -0.00566771300509572, + 0.044992316514253616, + 0.06110507249832153, + 0.00350069347769022, + -0.006411266513168812, + 0.039382342249155045, + -0.04389464482665062, + 0.008656933903694153, + -0.054129425436258316, + 0.02178555354475975, + 0.005634341388940811, + 0.05589067190885544, + 0.018024425953626633, + -0.005658884532749653, + 0.026032598689198494, + -0.004810934420675039, + 0.03533443808555603, + -0.016703279688954353, + 0.0072526209987699986, + -0.04932882636785507, + -0.025515204295516014, + -0.007105657830834389, + -0.0016038591274991632, + 0.010997247882187366, + 0.04498879611492157, + 0.006598794367164373, + -0.008012676611542702, + -0.013569655828177929, + 0.024133967235684395, + -0.014660503715276718, + 0.03176231309771538, + -0.02294684387743473, + 0.00838722288608551, + -0.019468076527118683, + 0.030270909890532494, + 0.04833756759762764, + 0.0029869319405406713, + 0.039797764271497726, + 0.045217886567115784, + -0.03262525051832199, + 0.007262095343321562, + 0.015053344890475273, + -0.05208425223827362, + 0.029568050056695938, + -0.01570250280201435, + -0.033858880400657654, + -0.02124713733792305, + -0.04425794631242752, + 0.009246934205293655, + -0.02846178226172924, + 0.04523914307355881, + -0.007455907296389341, + 0.018589984625577927, + -0.02157670445740223, + 0.020377308130264282, + -0.026245420798659325, + -0.002438710769638419, + 0.006872610654681921, + 0.0056662121787667274, + -0.04361158609390259, + -0.0034080392215400934 + ], + "start_index": 0, + "end_index": 79, + "token_count": 31, + "file_type": "avap_code", + "filename": "asignacion_matematica.avap", + "addResult": true, + "assignment": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "9f4c791b-1164-5b55-aa8c-50e2248ec517", + "_source": { + "text": "encontrado = False\nstartLoop(i, 1, 10)\n if(i, 5, \"==\")\n encontrado = True\n i = 11 \n end()\nendLoop()\naddResult(encontrado)", + "embedding": [ + 0.005827106535434723, + -0.03268983215093613, + -0.014529561623930931, + 0.02324928715825081, + -0.06164548918604851, + 0.014038906432688236, + -0.03387092053890228, + 0.05758602172136307, + -0.03230379894375801, + -0.02891239896416664, + -0.021486155688762665, + -0.024279817938804626, + -0.032146207988262177, + 0.01722683757543564, + 0.005414891522377729, + 0.02168426848948002, + 0.0031807441264390945, + 0.017914675176143646, + 0.017095107585191727, + 0.00433932663872838, + -0.004236828535795212, + 0.026995418593287468, + -0.0011156724067404866, + 0.06406858563423157, + -0.0323026143014431, + -0.007621550466865301, + -0.012960150837898254, + -0.022583574056625366, + -0.03521990776062012, + 0.02859817072749138, + -0.016407636925578117, + -0.02121577598154545, + 0.001850756467320025, + -0.05934811010956764, + -0.01743345707654953, + 0.008658705279231071, + -0.015763817355036736, + -0.023845214396715164, + -0.0268462635576725, + 0.03546727076172829, + 0.017486680299043655, + -0.036040566861629486, + 0.014807581901550293, + -0.01102902740240097, + 0.04393487423658371, + 0.008713667280972004, + 0.0276381466537714, + -0.018756719306111336, + -0.008753721602261066, + -0.07245796173810959, + -0.014379487372934818, + 0.006184904836118221, + 0.03658484295010567, + -0.012767406180500984, + 0.01722613163292408, + 0.06309109181165695, + -0.03069990500807762, + -0.013510914519429207, + -0.009999830275774002, + -0.06398425251245499, + -0.0240927804261446, + 0.013818081468343735, + -0.056458212435245514, + 0.0024872461799532175, + -0.028461076319217682, + 0.017117638140916824, + -0.00993594154715538, + 0.0011791149154305458, + 0.001597183640114963, + 0.02007639780640602, + 0.014022735878825188, + 0.043811846524477005, + -0.024257443845272064, + -0.012043318711221218, + -0.05707833915948868, + -0.010387320071458817, + 0.00828730408102274, + -0.003602660959586501, + -0.03704027831554413, + -0.01904464326798916, + 0.031822845339775085, + -0.011162086389958858, + 0.02653094381093979, + 0.025541070848703384, + -0.012797041796147823, + 0.01432548277080059, + 0.040179766714572906, + -0.00646846042945981, + -0.03569171205163002, + -0.0013615015195682645, + 0.006251904182136059, + 0.00040280158282257617, + -0.02643708325922489, + -0.005920213181525469, + 0.00913077313452959, + -0.045085106045007706, + 4.552955579129048e-05, + 0.014963476918637753, + 0.04487580806016922, + -0.009414016269147396, + 0.026981232687830925, + 0.04615974426269531, + 0.042459744960069656, + -0.002669352339580655, + 0.03925064951181412, + -0.02307470515370369, + 0.04121372848749161, + -0.0052621751092374325, + 0.051203981041908264, + -0.0020407438278198242, + 0.025661423802375793, + -0.010755106806755066, + 0.014991514384746552, + 0.0015158271417021751, + -0.017371857538819313, + -0.024791844189167023, + -0.03151710703969002, + -0.006673016585409641, + 0.0446295365691185, + -0.03507082164287567, + 0.043791513890028, + 0.017583781853318214, + 0.08971285074949265, + 0.025693584233522415, + -0.052713699638843536, + 0.007895530201494694, + -0.0012302326504141092, + 0.02687840722501278, + 0.036094747483730316, + 0.0002595836413092911, + 0.04556366428732872, + 0.02971458062529564, + -0.0012728875735774636, + 0.007646946702152491, + -0.07288751006126404, + -0.024146145209670067, + 0.013042334467172623, + -0.0002672012778930366, + 0.023409584537148476, + -0.06628115475177765, + 0.0018397992243990302, + 0.010146928951144218, + -0.016299694776535034, + -2.5663022825028747e-05, + 0.058695174753665924, + -0.05884334444999695, + 0.039930298924446106, + 0.00041968750883825123, + 0.028834495693445206, + -0.020680325105786324, + -0.022907888516783714, + 0.04437451809644699, + -0.024842869490385056, + -0.019106075167655945, + 0.03491637855768204, + -0.012606021948158741, + -0.0029803900979459286, + -0.00938408449292183, + -0.016636652871966362, + 0.039060018956661224, + 0.000309990398818627, + 0.022167010232806206, + -0.00673543568700552, + -0.017019521445035934, + 0.004530011676251888, + -0.013085194863379002, + 0.003433387028053403, + 0.023876361548900604, + -0.0035814859438687563, + -0.07267339527606964, + -0.008287415839731693, + -0.04475128650665283, + 0.049347084015607834, + 0.02180664800107479, + -0.04053566977381706, + 0.03412189334630966, + 0.07009923458099365, + 0.01956794038414955, + -0.010843808762729168, + -0.05107353627681732, + -0.028472140431404114, + 0.01960483193397522, + -0.00515396986156702, + -0.0719328373670578, + -0.043574802577495575, + 0.025424888357520103, + -0.007105897646397352, + -0.039953120052814484, + 0.005533881951123476, + 0.02285357564687729, + 0.008638044819235802, + -0.023905925452709198, + 0.08484861999750137, + -0.010591990314424038, + 0.032961346209049225, + -0.0001860258198576048, + 0.01857324130833149, + -0.007981723174452782, + -0.017637435346841812, + -0.003179059596732259, + -0.04135556146502495, + -0.014847573824226856, + 0.02627182938158512, + -0.009626862592995167, + -0.01920369826257229, + 0.033752117305994034, + -0.00733441486954689, + -0.06476860493421555, + 0.0006199046620167792, + 0.003720235778018832, + 0.020564980804920197, + 0.019350290298461914, + -0.033944644033908844, + 0.03471117466688156, + -0.016110284253954887, + 0.005043047480285168, + 0.03383580595254898, + 0.008866045624017715, + 0.0029479588847607374, + -0.03156130760908127, + -0.014944040216505527, + 0.05552287399768829, + 0.021361347287893295, + 0.05479326471686363, + -0.012005297467112541, + -0.0008681129547767341, + 0.010043630376458168, + -0.0006236631888896227, + -0.0349448025226593, + -0.029422594234347343, + 0.027902137488126755, + -0.006407374050468206, + -0.03789571300148964, + -0.017808012664318085, + -0.009915133006870747, + -0.0514230951666832, + 0.03501623123884201, + 0.005576184950768948, + -0.01842789724469185, + -0.00468195928260684, + -0.06257008016109467, + -0.04020380973815918, + 0.04691612720489502, + 0.02255578339099884, + 0.0038785766810178757, + -0.03391021117568016, + 0.015176995657384396, + 0.03634408116340637, + -0.035562995821237564, + -0.011661835014820099, + -0.012187288142740726, + -0.03847424313426018, + -0.018154075369238853, + 0.008969813585281372, + 0.008463398553431034, + 0.013019213452935219, + 0.01758488267660141, + -0.019337721168994904, + -0.01776960864663124, + 0.005169883370399475, + -0.006954302079975605, + 0.010358337312936783, + -0.0008550568018108606, + 0.0182631928473711, + -0.01136048324406147, + -0.03083919920027256, + -0.0136032123118639, + -0.0036025571171194315, + -0.007380337454378605, + -0.036353081464767456, + -0.004727686755359173, + -0.008108703419566154, + 0.0006065506604500115, + 0.0037801479920744896, + -0.01335971150547266, + -0.009323330596089363, + 0.004644196946173906, + -0.044862717390060425, + 0.09460970759391785, + 0.008172973059117794, + -0.021297980099916458, + 0.04055403918027878, + 0.005788382608443499, + 0.027793794870376587, + 0.02153925970196724, + -0.07990732043981552, + 0.005099283065646887, + -0.03652351722121239, + 0.019932011142373085, + -0.043946146965026855, + 0.004046191461384296, + -0.002769218757748604, + 0.07858571410179138, + 0.007477594539523125, + -0.02879064902663231, + -0.008962131105363369, + 0.00020513348863460124, + -0.18068017065525055, + -0.006604471709579229, + -0.008923097513616085, + 0.0029902069363743067, + -0.007668059319257736, + 0.020283596590161324, + -0.0037563685327768326, + 0.013565278612077236, + -0.07425659149885178, + 0.05054156109690666, + -0.04269867390394211, + -0.06258279085159302, + -0.02437633089721203, + -0.026032153517007828, + 0.016172679141163826, + -0.0026614568196237087, + -0.0359145849943161, + 0.008549939841032028, + -0.010049400851130486, + -0.03562961146235466, + -0.06460096687078476, + -0.020891444757580757, + 0.025803709402680397, + -0.03920973464846611, + -0.056441016495227814, + -0.017355430871248245, + -0.013720273040235043, + -0.030682891607284546, + -0.05968286097049713, + 0.04630782827734947, + 0.0049135093577206135, + 0.029009195044636726, + -0.0004963419050909579, + 0.004489743150770664, + 0.010373185388743877, + 0.045662228018045425, + 0.004339488688856363, + 0.061704348772764206, + 0.006116117350757122, + 0.008246798068284988, + 0.01009311992675066, + -0.00835492555052042, + -0.018219072371721268, + 0.023166801780462265, + 0.004149201326072216, + 0.01876564882695675, + 0.002159969648346305, + 0.0018876194953918457, + -0.059820741415023804, + -0.015936747193336487, + -0.017598265781998634, + -0.01790047436952591, + 0.03664800152182579, + -0.04145292192697525, + -0.02274498902261257, + 0.00886217039078474, + 0.0004944407846778631, + -0.010228101164102554, + -0.046420492231845856, + 0.03505760058760643, + -0.015336661599576473, + -0.03637617081403732, + 0.030419357120990753, + 0.028309863060712814, + -0.008177665993571281, + -0.036350831389427185, + -0.02126293070614338, + 0.009410751052200794, + 0.018155548721551895, + -0.04557591304183006, + 0.042917441576719284, + 0.01598823443055153, + 0.011256767436861992, + -0.022308561950922012, + -0.022949950769543648, + 0.003948586527258158, + -0.022322475910186768, + -0.0230327770113945, + 0.03323179483413696, + -0.10664445906877518, + 0.016963975504040718, + -0.020444100722670555, + -0.005857997573912144, + 0.06100268289446831, + -0.0040025063790380955, + -0.004005452152341604, + -0.004562734626233578, + 0.006774392444640398, + 0.022678786888718605, + 0.23130421340465546, + 0.02855345793068409, + 0.02584981545805931, + -0.0011082994751632214, + 0.02259289287030697, + -0.023458249866962433, + 0.011277137324213982, + -0.00546440901234746, + -0.013477444648742676, + -0.028041837736964226, + -0.0061981710605323315, + 0.06465398520231247, + -0.021527260541915894, + -0.017290739342570305, + -0.0007202698034234345, + 0.022887302562594414, + -0.019735515117645264, + 0.013170726597309113, + 0.04562663659453392, + -0.03172954544425011, + 0.05033966898918152, + -0.023721909150481224, + -0.06997589766979218, + 0.034225594252347946, + -0.058169785887002945, + -0.031050436198711395, + -0.012504945509135723, + -0.005753547418862581, + -0.03651972487568855, + 0.0017433015163987875, + -0.02585035003721714, + 0.017523398622870445, + -0.016849063336849213, + -0.0064003379084169865, + -0.01545934472233057, + 0.008816469460725784, + 0.030741803348064423, + 0.019116153940558434, + 0.04280674457550049, + -0.002685477025806904, + 0.008008833974599838, + -0.0038109933957457542, + -0.019788572564721107, + 0.07880803197622299, + 0.002368688816204667, + 0.0005240307073108852, + 0.03428611531853676, + -0.01953456923365593, + -0.028618646785616875, + -0.02187967859208584, + -0.018062476068735123, + -0.015816442668437958, + 0.01901993900537491, + 0.01695321314036846, + -0.01688012108206749, + 0.02221684902906418, + -0.002884946996346116, + 0.04498736187815666, + -0.016732515767216682, + -0.022506706416606903, + 0.02825961448252201, + 0.000934657349716872, + 0.03758152201771736, + -0.020055875182151794, + 0.004852059297263622, + -0.004740606527775526, + 0.013401459902524948, + -0.027941584587097168, + 0.02284976653754711, + 0.03120463900268078, + -0.0066505842842161655, + -0.002618689788505435, + 0.04340814799070358, + -0.007536935620009899, + -0.000796949490904808, + -0.0429232120513916, + 0.008919463492929935, + -0.00017422564269509166, + -0.0009809075854718685, + 0.032386600971221924, + -0.050754398107528687, + -0.04363834485411644, + -0.03680246323347092, + 0.0831320509314537, + -0.012794342823326588, + -0.005501204170286655, + 0.012215351685881615, + 0.07269717007875443, + -0.007379063870757818, + -0.028274333104491234, + -0.01633230224251747, + -0.017823316156864166, + -0.024260399863123894, + -0.01466330885887146, + -0.02665482647716999, + 0.03032168373465538, + 0.029121963307261467, + 0.010956722311675549, + -0.05491776764392853, + 0.0366438664495945, + -0.0237119197845459, + -0.0012853643856942654, + 0.0012039849534630775, + 0.06808490306138992, + 0.048520635813474655, + -0.04052064195275307, + -0.02043546922504902, + -0.03568693995475769, + -0.021832244470715523, + 0.00487687299028039, + -0.04668395221233368, + 0.01954924315214157, + 0.008932269178330898, + -0.03203988075256348, + 0.019692037254571915, + 0.05288149416446686, + 0.027879733592271805, + 0.013729422353208065, + 0.010233367793262005, + 0.005482640583068132, + -0.020081112161278725, + -0.02168160118162632, + -0.034646715968847275, + -0.008065714500844479, + -0.002996607217937708, + -0.023520592600107193, + 0.009692578576505184, + -0.0061339158564805984, + -0.026202315464615822, + 0.03255246579647064, + 0.011132903397083282, + -0.03606138005852699, + -0.021232638508081436, + -0.0038229641504585743, + 0.04265289008617401, + 0.010744328610599041, + 0.08321593701839447, + -0.025383388623595238, + 0.03182554990053177, + 0.03929918631911278, + -0.0268732700496912, + 0.012750443071126938, + -0.014933144673705101, + 0.003921779338270426, + -0.0047150785103440285, + 0.05042899027466774, + 0.016969526186585426, + -0.03472571074962616, + -0.01550815999507904, + 0.013523679226636887, + 0.010347719304263592, + 0.04323180764913559, + 0.01754484884440899, + -0.026000473648309708, + 0.001738757942803204, + -0.05572377145290375, + 0.0036111066583544016, + 0.02411850541830063, + -0.03343493863940239, + -0.02121923305094242, + 0.025723189115524292, + 0.010075366124510765, + 0.007708132732659578, + 0.01579396054148674, + -0.01212117075920105, + -0.01193215511739254, + -0.001986464485526085, + 0.007242199964821339, + -0.017549803480505943, + -0.04741173982620239, + 0.001838288619183004, + -0.04774367809295654, + -0.017254842445254326, + -0.006880647968500853, + 0.013862923718988895, + -0.008197944611310959, + -0.009532022289931774, + -0.029555104672908783, + -0.021191785112023354, + -0.00872102566063404, + -0.034075915813446045, + 0.024531353265047073, + -0.0020457191858440638, + 0.0066043175756931305, + 0.010530549101531506, + 0.00034438323928043246, + -0.03495607152581215, + -0.01309499517083168, + 0.02706521935760975, + -0.012910595163702965, + -0.014143051579594612, + 0.11320124566555023, + 0.003973009996116161, + -0.023957757279276848, + 0.0029324358329176903, + 0.033286139369010925, + 0.02119453437626362, + -0.021450676023960114, + -0.029492471367120743, + -0.028337698429822922, + 0.017235834151506424, + -0.0014006904093548656, + 0.0007979912334121764, + 0.0109367361292243, + -0.003876650473102927, + -0.022380810230970383, + -0.0504341796040535, + 0.004556670784950256, + 0.029715046286582947, + -0.007518574129790068, + -0.004530526697635651, + 0.013136496767401695, + -0.0063872872851789, + -0.005073906853795052, + 0.023341499269008636, + -0.014160153456032276, + 0.08188802748918533, + -0.019033391028642654, + 0.009115167893469334, + 0.007879835553467274, + -0.03506597876548767, + 0.004389808047562838, + 0.008911961689591408, + 0.006852187681943178, + -0.017972098663449287, + 0.041185442358255386, + 0.004344325978308916, + -0.03245477005839348, + 0.018884286284446716, + -0.02636316791176796, + -0.0007115268963389099, + -0.012128372676670551, + 0.004739074502140284, + 0.011666987091302872, + 0.03139956668019295, + 0.010041973553597927, + -0.0019255313090980053, + 0.02615899220108986, + 0.03908925503492355, + -0.024179231375455856, + 0.046061813831329346, + -0.018805038183927536, + 0.040884315967559814, + 0.10386810451745987, + -0.02511095255613327, + 0.10109657049179077, + -0.02848399244248867, + -0.020191464573144913, + 0.020449580624699593, + -0.00927567295730114, + -0.021808112040162086, + -0.03912655636668205, + -0.0215352363884449, + -0.014729967340826988, + 0.06720862537622452, + 0.022607428953051567, + -0.0452737957239151, + 0.0466507263481617, + -0.04097642004489899, + -0.03025198169052601, + 0.012668636627495289, + 0.02515963837504387, + -0.037044815719127655, + 0.0006890810909681022, + 0.02726093865931034, + -0.04256168380379677, + 0.046525705605745316, + -0.04552057012915611, + -0.027686674147844315, + -0.03146733343601227, + 0.00048724625958129764, + -0.03579336777329445, + -0.02576345019042492, + -0.011224490590393543, + 0.0026471843011677265, + 0.03659752756357193, + 0.003995181526988745, + -0.07860999554395676, + 0.05697650462388992, + -0.01257260236889124, + -0.013160970993340015, + 0.015058889985084534, + -0.016504667699337006, + -0.016856933012604713, + 0.023031217977404594, + 0.014044090174138546, + -0.01409019622951746, + 0.024279266595840454, + 0.01987673155963421, + -0.053816087543964386, + -0.006171714514493942, + -0.01051522046327591, + -0.06840240955352783, + 0.04353245720267296, + -0.008647019974887371, + -0.03433320298790932, + -0.05435386672616005, + 0.025761140510439873, + -0.030272362753748894, + 0.01943613402545452, + -0.019798563793301582, + -0.00770177086815238, + -0.01673675701022148, + 0.0027891304343938828, + -0.03571659326553345, + 0.015017975121736526, + 0.026187527924776077, + -0.026103077456355095, + 0.03345722332596779, + 0.03802105784416199, + -0.01959831826388836, + -0.01847108267247677, + 0.008352317847311497, + 0.09446321427822113, + 0.005944788455963135, + -0.026797190308570862, + 0.0809267982840538, + -0.05397980287671089, + -0.0234979297965765, + -0.008360912092030048, + -0.0007056547328829765, + -0.018403371796011925, + -0.009724408388137817, + 0.010665187612175941, + -0.019232381135225296, + 0.006199164316058159, + -0.03735710307955742, + -0.015572839416563511, + -0.030034566298127174, + -0.02996690198779106, + 0.0012028610799461603, + -0.0022482045460492373, + 0.006540839094668627, + 0.0373511016368866, + -0.040306996554136276, + -0.0216484684497118, + -0.045146308839321136, + -0.004807763267308474, + -0.0023778523318469524, + -0.0557730607688427, + 0.002708559390157461, + 0.019902821630239487, + 0.07588416337966919, + -0.02736123837530613, + 0.02764640562236309, + 0.026840800419449806, + -0.04025571793317795, + -0.02594142034649849, + 0.0005579091375693679, + -0.0035159762483090162, + 0.00040640434599481523, + 0.008694017305970192, + -0.02790679596364498, + -0.062041573226451874, + 0.012117414735257626, + -0.004733164329081774, + 0.005172809585928917, + 0.034904029220342636, + 0.022917192429304123, + -0.01736217550933361, + -0.0817050039768219, + -0.006399039179086685, + -0.02560952678322792, + 0.004475240129977465, + -0.06729595363140106, + 0.057894475758075714, + 0.045429594814777374, + 0.046875178813934326, + -0.004509954247623682, + -0.01075709331780672, + 0.008592029102146626, + 0.01429119985550642, + 0.01520156767219305, + 0.010252390056848526, + -0.007580683566629887, + 0.02645212598145008, + -0.019155189394950867, + -0.02354959398508072, + 0.04616297036409378, + 0.008905819617211819, + -0.013832863420248032, + 0.028880007565021515, + -0.038882382214069366, + -0.01591155305504799, + -0.043083928525447845, + 0.028389452025294304, + 0.0007722844602540135, + 0.039838388562202454, + 0.07865234464406967, + 0.037498608231544495, + -0.0038621246349066496, + 0.002209992380812764, + -0.0387021005153656, + -0.003114749677479267, + -0.13650484383106232, + 0.04125411435961723, + -0.023347022011876106, + 0.014941130764782429, + -0.03274232894182205, + 0.013429533690214157, + -0.015481620095670223, + -0.028629779815673828, + -0.01187339797616005, + -0.0139082670211792, + -0.03424706682562828, + -0.004967020358890295, + 0.025630511343479156, + -0.021907970309257507, + 0.004840112291276455, + 0.014881747774779797, + 0.03356363996863365, + -0.025178750976920128, + -0.019424764439463615, + -0.013102197088301182, + -0.0174863263964653, + -0.030947932973504066, + -0.014181194826960564, + -0.03769180551171303, + -0.017548419535160065, + 0.016636965796351433, + -0.01643616519868374, + 0.019646329805254936, + -0.013645457103848457, + -0.04280170798301697, + -0.023956259712576866, + 0.014741560444235802, + 0.016392972320318222, + 0.03813905641436577, + 0.03788789361715317, + 0.011283493600785732, + -0.015180468559265137, + 0.06167299300432205, + 0.0246847253292799, + 0.05365503951907158, + -0.005433640908449888, + 0.029029756784439087, + -0.03017488867044449, + 0.004375934600830078, + -0.003178896615281701, + 0.008700555190443993, + -0.002455940702930093, + 0.015092913061380386, + -0.009559741243720055, + 1.4926476978871506e-05, + -0.0007178834639489651, + 0.023856423795223236, + -0.01000723522156477, + 0.02502269856631756, + -0.0005890049505978823, + 0.0040916018187999725, + -0.036223553121089935, + 0.003366052871569991, + 0.008273707702755928, + -0.007743975147604942, + -0.022531067952513695, + 0.0401608869433403, + -0.030114999040961266, + -0.02288489043712616, + -0.015442817471921444, + 0.013048777356743813, + -0.007509134244173765, + 0.0076788379810750484, + 0.024994900450110435, + -0.06561125814914703, + 0.017904916778206825, + 0.027695072814822197, + -0.029482007026672363, + -0.060639988631010056, + 0.0011208975920453668, + 0.048204705119132996, + 0.014718686230480671, + 0.021519243717193604, + -0.0036430442705750465, + 0.01313026063144207, + -0.09169250726699829, + -0.0015162943163886666, + -0.006282777991145849, + -0.03213672712445259, + 0.03301757201552391, + -0.029705172404646873, + -0.035950917750597, + 0.009973958134651184, + -0.05419275909662247, + 0.036896124482154846, + -0.02557484805583954, + -0.0681048259139061, + 0.00900307297706604, + 0.0006634543533436954, + -0.004717305302619934, + 0.03616611659526825, + -0.021136082708835602, + 0.03515421599149704, + 0.02339630015194416, + -0.01692316122353077, + 0.005967110861092806, + -0.024041838943958282, + 0.0230255089700222, + 0.02610471472144127, + -0.03223438188433647, + -0.009333617985248566, + 0.017067991197109222, + 0.007240360137075186, + 0.014340396039187908, + 0.023678969591856003, + 0.016777396202087402, + 0.011837839148938656, + 0.010193400084972382, + 0.02113407850265503, + 0.014756251126527786, + -0.018120869994163513, + 0.029805442318320274, + 0.0429583303630352, + 0.02235950529575348, + -0.019233552739024162, + -0.0004232328792568296, + -0.005175607278943062, + 0.04743953049182892, + 0.00032490846933797, + -0.01593572273850441, + -0.0017667862121015787, + 0.00010736365948105231, + 0.010806670412421227, + 0.05106997862458229, + -0.032870471477508545, + 0.012502506375312805, + -0.04354720190167427, + -0.014489250257611275, + 0.016967326402664185, + 0.05089222639799118, + -0.028427843004465103, + -0.010768463835120201, + 0.03646298497915268, + -0.011492778547108173, + -0.01251464243978262, + 0.008985631167888641, + -0.009704760275781155, + 0.006111461203545332, + -0.02530420944094658, + 0.013030164875090122, + -0.010118314996361732, + 0.013103030622005463, + 0.02635323815047741, + 0.003250290174037218, + -0.034635867923498154, + 0.010021241381764412, + 0.01494358479976654, + -0.00815623626112938, + 0.044575463980436325, + -0.051489174365997314, + 0.03109326772391796, + 0.005866281222552061, + -0.030742058530449867, + 0.005435104016214609, + -0.00046452475362457335, + -0.017333749681711197, + 0.035436175763607025, + 0.016391243785619736, + 0.00910532008856535, + 0.039112213999032974, + 0.03244750201702118, + -0.039083950221538544, + 0.020250344648957253, + -0.0025957548059523106, + -0.012891051359474659, + 0.0045297592878341675, + 0.020381413400173187, + -0.019196875393390656, + 0.013596558943390846, + 0.0567828007042408, + -0.008909149095416069, + 0.04408697783946991, + 0.004220279864966869, + 0.0328165665268898, + -0.015944598242640495, + -0.002747810911387205, + 0.03925987333059311, + 0.04562673717737198, + -0.009066763333976269, + -0.004408281296491623, + 0.029788421466946602, + 0.0164460688829422, + 0.05624837055802345, + 0.0034782830625772476, + -0.011610389687120914, + -0.009924969635903835, + -0.03828277811408043, + -0.00221524597145617, + -0.021837430074810982, + 0.021028395742177963, + 0.0009909103391692042, + 0.013388842344284058, + 0.00643774913623929, + 0.029279448091983795, + 0.005703500937670469, + -0.07642102241516113, + -0.043416306376457214, + -0.011030463501811028, + -0.03298736736178398, + -0.011047939769923687, + -0.006470838095992804, + 0.03766408935189247, + 0.022126400843262672, + 0.005440115928649902, + 0.04362812638282776, + -0.010953405871987343, + -0.03909023851156235, + -0.03090624511241913, + 0.02598155476152897, + -0.013041271828114986, + -0.007040639407932758, + 0.03952405974268913, + 0.03717203810811043, + 0.038230545818805695, + 0.025110475718975067, + -0.007250438444316387, + 0.03172368183732033, + 0.0025353722739964724, + -0.04668359085917473, + -0.04695267975330353, + -0.004860587418079376, + -0.021578051149845123, + 0.011058817617595196, + 0.005729423835873604, + 0.00012728502042591572, + -0.04653621092438698, + 0.003005393547937274, + -0.0035852754954248667, + 0.06359775364398956, + -0.0037090021651238203, + 0.02492416836321354, + 0.01003714557737112, + 0.01632348820567131, + -0.028351696208119392, + 0.0033589238300919533, + -0.0011541685089468956, + -0.009219163097441196, + -0.004663410596549511, + 0.0011898670345544815 + ], + "start_index": 0, + "end_index": 141, + "token_count": 50, + "file_type": "avap_code", + "filename": "salida_bucle_correcta.avap", + "addResult": true, + "assignment": true, + "if": true, + "startLoop": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "2a020d6f-a96e-51d3-aaa0-a13da58d9d34", + "_source": { + "text": "registros = ['1','2','3']\ngetListLen(registros, total)\ncontador = 0\nstartLoop(idx, 0, 2)\n actual = registros[int(idx)]\nendLoop()\naddResult(actual)", + "embedding": [ + -0.009447759948670864, + -0.008348238654434681, + -0.03024095855653286, + -0.007106331177055836, + -0.046504102647304535, + 0.012385803274810314, + -0.03973357379436493, + 0.042036958038806915, + -0.010526704601943493, + -0.03248121589422226, + -0.020993662998080254, + 0.01037872675806284, + 0.003675259882584214, + 0.0146086560562253, + 0.007909988984465599, + 0.0352943018078804, + -0.015822257846593857, + 0.03086371161043644, + -0.006760552059859037, + -0.03245165944099426, + 0.0011630505323410034, + 0.00028440458117984235, + -0.011840352788567543, + 0.038859982043504715, + 0.012561759911477566, + -0.023236894980072975, + -0.0010935507016256452, + -0.03153315559029579, + -0.0005801275838166475, + -0.005698454100638628, + -0.011118009686470032, + -0.01430627703666687, + 0.013512367382645607, + -0.0635102242231369, + -0.031789280474185944, + 0.013736953027546406, + -0.0006427058833651245, + -0.03759925439953804, + -0.047259338200092316, + 0.04918837174773216, + 0.004510915372520685, + 0.03241686895489693, + 0.014624576084315777, + -0.04486909508705139, + 0.00949053280055523, + 0.014826851896941662, + 0.012648645788431168, + -0.018226398155093193, + -0.026977818459272385, + -0.013980132527649403, + -0.01840486377477646, + 0.03506889194250107, + 0.03850684314966202, + -0.05325300246477127, + -0.020591869950294495, + 0.058369021862745285, + -0.04339376091957092, + 0.014946755021810532, + -0.02749418094754219, + -0.007384493947029114, + -0.024749135598540306, + 0.04030665010213852, + -0.04045441746711731, + 0.004341058898717165, + 0.01640855148434639, + 0.023500369861721992, + 0.013646957464516163, + 0.02401495911180973, + 0.001347990590147674, + 0.006018126383423805, + 0.0017771369311958551, + 0.02422364242374897, + 0.004422100260853767, + -0.005499124526977539, + -0.06941287964582443, + -0.03289565071463585, + 0.04411663860082626, + 0.008112145587801933, + -0.020053965970873833, + -0.027006328105926514, + -0.0021513698156923056, + -0.003245536470785737, + 0.01223429013043642, + 0.026709120720624924, + -0.03995399549603462, + 0.04757395386695862, + 0.004483871627599001, + 0.06073012202978134, + -0.03569599241018295, + 0.02771877869963646, + -0.0010297851404175162, + -0.0386371836066246, + 0.014065398834645748, + -0.022439230233430862, + -0.008123807609081268, + -0.06302396208047867, + 0.011020191013813019, + 0.013038872741162777, + 0.025461388751864433, + 0.01248596329241991, + 0.04205780476331711, + 0.0035447245463728905, + 0.037014082074165344, + -0.012936090119183064, + 0.04466050863265991, + 0.011696072295308113, + 0.05046255141496658, + -0.030290594324469566, + 0.03359462320804596, + 0.008857186883687973, + 0.01206749677658081, + 0.01054351031780243, + 0.022164927795529366, + 0.005075712688267231, + -0.0007982277893461287, + -0.03267957270145416, + -0.05679670348763466, + 0.0035601735580712557, + 0.017029138281941414, + -0.01851612702012062, + 0.037979912012815475, + 0.005823023151606321, + 0.055521246045827866, + -0.019070332869887352, + -0.023247182369232178, + 0.0017429632134735584, + 0.0038556468207389116, + 0.01999519392848015, + 0.069432333111763, + 0.042216382920742035, + 0.047997426241636276, + 0.06217453256249428, + 0.0038699640426784754, + 0.02995041199028492, + -0.03836129605770111, + -0.005344965495169163, + 0.005021015647798777, + 0.02568732015788555, + 0.055222272872924805, + -0.046149950474500656, + -0.016095703467726707, + 0.030658990144729614, + -0.011672506108880043, + -0.008379100821912289, + 0.025815293192863464, + -0.044682327657938004, + 0.019152266904711723, + 0.005410697311162949, + -0.008186865597963333, + 0.004865915048867464, + -0.04844261705875397, + 0.04572809860110283, + -0.028358006849884987, + -0.006281737238168716, + 0.06631094217300415, + 0.0357951819896698, + -0.006316675338894129, + 0.017246492207050323, + -0.03227725252509117, + 0.007754466962069273, + 0.016350245103240013, + 0.029237600043416023, + 0.0009393871878273785, + -0.04716920107603073, + -0.008792608976364136, + 0.02690943330526352, + 0.00990299228578806, + -0.03961515799164772, + 0.017950361594557762, + -0.03663291037082672, + 0.03110256977379322, + -0.0070519838482141495, + 0.013269655406475067, + 0.018588179722428322, + -0.03315441682934761, + 0.01614258624613285, + 0.04320057854056358, + 0.003198017831891775, + 0.020115969702601433, + -0.043789930641651154, + -0.05606753006577492, + 0.016417555510997772, + 0.0005784440436400473, + -0.04418184980750084, + 0.0023402750957757235, + 0.04208464175462723, + 0.007333012297749519, + -0.018232645466923714, + 0.0044403583742678165, + 0.06551709026098251, + -0.018148405477404594, + -0.009758951142430305, + 0.03942204266786575, + -0.03522351384162903, + 0.039513640105724335, + 0.026071302592754364, + 0.002287974813953042, + 0.011187930591404438, + 0.004486702382564545, + -0.004667358938604593, + -0.04454149305820465, + 0.023928403854370117, + 0.009793326258659363, + -0.010840985924005508, + -0.005035951733589172, + 0.010815945453941822, + 0.01017436571419239, + -0.012974211946129799, + 0.013313621282577515, + 0.0024877183604985476, + -0.019059961661696434, + 0.0006291363388299942, + -0.02675219625234604, + 0.027679510414600372, + 0.0011296771699562669, + 0.03015546128153801, + 0.017240874469280243, + -0.010742253623902798, + 0.014817765913903713, + -0.05548888072371483, + -0.014428182505071163, + 0.08010196685791016, + 0.014415048062801361, + 0.05797590687870979, + 0.015266576781868935, + -0.04516323283314705, + 0.028213264420628548, + -0.012289134785532951, + -0.024254625663161278, + -0.015721525996923447, + -0.044217366725206375, + -0.01004751306027174, + -0.0019171277526766062, + -0.039022184908390045, + 0.0219305120408535, + -0.01835821568965912, + 0.04170779883861542, + 0.024770040065050125, + -0.01580021157860756, + 0.009005638770759106, + -0.04719814658164978, + -0.006787847261875868, + 0.024825826287269592, + -0.01135223638266325, + -0.03955994173884392, + -0.05668843165040016, + 0.031428493559360504, + 0.05127269774675369, + -0.05059731379151344, + 0.009643175639212132, + -0.0018973852274939418, + -0.04468229413032532, + -0.009559446014463902, + 0.02088758908212185, + -0.011467542499303818, + 0.011667966842651367, + -0.015887906774878502, + -0.01565517857670784, + -0.033515457063913345, + 0.0015618510078638792, + -0.008998039178550243, + -0.0008067654562182724, + -0.015100696124136448, + 0.015336656011641026, + 0.055359579622745514, + 0.004403156228363514, + -0.005420390982180834, + 0.0030862505082041025, + -0.017135947942733765, + -0.011921842582523823, + 0.02338072657585144, + -0.015567597001791, + 0.007858597673475742, + 0.0169701986014843, + -0.009448540396988392, + 0.004181627184152603, + 0.017771638929843903, + -0.00997206661850214, + 0.06892205029726028, + 0.022623464465141296, + -0.027102500200271606, + -0.0032895191106945276, + 0.017772069200873375, + -0.006380729842931032, + 0.03916539251804352, + -0.025787387043237686, + 0.028828177601099014, + -0.021671971306204796, + 0.05366375297307968, + -0.03216193988919258, + -0.007797611877322197, + 0.0037518786266446114, + 0.08383774012327194, + -0.0006356237572617829, + 0.02825814113020897, + 0.030979624018073082, + 0.019127393141388893, + -0.14918829500675201, + -0.010147932916879654, + -0.052740465849637985, + 0.020744524896144867, + -0.01588353142142296, + 0.026315871626138687, + -0.05708876997232437, + -0.008273052051663399, + -0.07653135806322098, + 0.02380342409014702, + 0.002420722274109721, + -0.06753513962030411, + -0.0037298318929970264, + -0.040907423943281174, + -0.0013775808038190007, + -0.034655939787626266, + -0.01481417752802372, + 0.017004916444420815, + -0.027109257876873016, + -0.038607534021139145, + -0.03784669563174248, + -0.03534073010087013, + -0.008124517276883125, + -0.0033297196496278048, + -0.06115154176950455, + 0.00536824157461524, + 0.009726854972541332, + -0.020297037437558174, + -0.03487984463572502, + 0.010804401710629463, + 0.010007469914853573, + 0.014769669622182846, + 0.005586266051977873, + -0.026362482458353043, + -0.02464423142373562, + 0.055145975202322006, + 0.018120858818292618, + 0.061707016080617905, + -0.01959635689854622, + 0.03596675768494606, + 0.01377482246607542, + 0.0059480806812644005, + 0.009916300885379314, + 0.04569733515381813, + 0.011097915470600128, + 0.017539359629154205, + 0.009790878742933273, + -0.007706886623054743, + -0.09468615800142288, + -0.005675340071320534, + -0.05178147554397583, + -0.02675454318523407, + -0.0020834675524383783, + -0.016187215223908424, + -0.03546207398176193, + 0.01897786557674408, + 0.0034076289739459753, + 0.025000162422657013, + 0.004502161871641874, + 0.02326059155166149, + -0.05673767253756523, + 0.005691397935152054, + 0.008270186372101307, + 0.03651980683207512, + -0.0016130984295159578, + -0.009133183397352695, + 0.04219445213675499, + 0.007234507240355015, + 0.010025899857282639, + -0.03392929211258888, + 0.03962241858243942, + 0.006674886681139469, + 0.017191283404827118, + -0.0175583828240633, + 0.0035870543215423822, + 0.006781764794141054, + -0.05223526060581207, + -0.049100521951913834, + 0.03961028903722763, + -0.10601506382226944, + -0.036702945828437805, + 0.004687377251684666, + -0.0035027621779590845, + 0.05333896353840828, + 0.008038850501179695, + 0.007832019589841366, + -0.005011299159377813, + 0.013500524684786797, + 0.0026641967706382275, + 0.24547915160655975, + -0.007501921616494656, + 0.003489025868475437, + 0.00017936855147127062, + 0.03528744354844093, + -0.041577260941267014, + 0.002239352324977517, + -0.03413711115717888, + -0.017583703622221947, + -0.028696084395051003, + 0.0028295665979385376, + 0.05769220367074013, + -0.013341751880943775, + -0.002194055588915944, + -0.019578441977500916, + 0.054347243160009384, + -0.010732383467257023, + -0.0052796960808336735, + 0.044709015637636185, + 0.019525470212101936, + 0.0673469603061676, + 0.006363123655319214, + -0.06447886675596237, + -0.01033361442387104, + -0.06392734497785568, + -0.051703423261642456, + -0.008742931298911572, + 0.018664507195353508, + -0.04112248122692108, + 0.029142774641513824, + -0.010134676471352577, + 0.04529565945267677, + 0.007920344360172749, + -0.02130172960460186, + 0.006263415329158306, + 0.05149291828274727, + 0.05606449022889137, + 0.015816915780305862, + -0.013171245343983173, + 0.013015995733439922, + 0.027388397604227066, + -0.027628088369965553, + -0.005442596971988678, + 0.030536340549588203, + -0.003314945148304105, + -0.002353789983317256, + 0.021134601905941963, + 0.020507408306002617, + -0.02014945261180401, + -0.016646798700094223, + 0.013975090347230434, + -0.04198455065488815, + -0.017507124692201614, + -0.0007815896533429623, + 0.0038394483271986246, + -0.009921560063958168, + 0.027771856635808945, + 0.026731163263320923, + -0.03506162390112877, + 0.015207423828542233, + 0.02060193382203579, + -0.012354881502687931, + 0.022318873554468155, + 0.015154891647398472, + 0.022120274603366852, + -0.04523230716586113, + 0.03745734319090843, + -0.021034982055425644, + 0.0028653377667069435, + 0.004834637977182865, + 0.024504363536834717, + -0.0317157618701458, + 0.01691916584968567, + -0.005467339418828487, + -0.02979079820215702, + -0.049768026918172836, + 0.006392424926161766, + 0.012182538397610188, + -0.026801034808158875, + 0.011293652467429638, + -0.036582548171281815, + -0.004192055203020573, + -0.023043712601065636, + 0.09114615619182587, + 0.014795368537306786, + 0.0016017868183553219, + 0.0018861268181353807, + 0.05270678922533989, + -0.006593324244022369, + -0.03471294790506363, + -0.025282910093665123, + -0.03219104930758476, + -0.019035259261727333, + 0.0002810380537994206, + -0.017621146515011787, + 0.005619663279503584, + 0.020299704745411873, + 0.01178207527846098, + -0.0393635630607605, + 0.05316878482699394, + -0.03682321682572365, + 0.0020292610861361027, + -0.016864638775587082, + 0.007665983401238918, + 0.06128779053688049, + -0.0652359202504158, + -0.004258688073605299, + -0.0055056363344192505, + -0.011706857942044735, + 0.03129018098115921, + -0.05602234974503517, + 0.038698166608810425, + -0.002523410366848111, + -0.0310205165296793, + 0.03442069888114929, + 0.007783566135913134, + 0.08538816124200821, + 0.028360692784190178, + 0.007125534117221832, + -0.010479764081537724, + -0.00784397218376398, + 9.588405373506248e-05, + -0.01029534637928009, + -0.01293592993170023, + 0.01632584258913994, + -0.0365457609295845, + 0.006940076593309641, + -0.03356507048010826, + -0.010917244479060173, + 0.032858382910490036, + 0.03450850024819374, + -0.01700522191822529, + -0.05374755337834358, + -0.01700521819293499, + 0.02360481768846512, + 0.0011116998502984643, + 0.06205335259437561, + 0.0010926268296316266, + 0.01488561648875475, + 0.014724962413311005, + -0.059829894453287125, + -0.007747650146484375, + -0.030597126111388206, + 0.02296324260532856, + -0.028909757733345032, + 0.007068203296512365, + 0.057074274867773056, + -0.044287052005529404, + -0.015999438241124153, + 0.023998426273465157, + 0.018745893612504005, + 0.02727358415722847, + 0.059472981840372086, + -0.017868733033537865, + 0.010631952434778214, + -0.06386474519968033, + -0.011042698286473751, + 0.010404156520962715, + -0.03887056186795235, + -0.023345137014985085, + 0.03396380692720413, + 0.0012274619657546282, + 0.005117764696478844, + 0.01738848350942135, + 0.007852715440094471, + -0.03554011136293411, + -0.009035765193402767, + 0.030675556510686874, + -0.013576856814324856, + -0.03295900300145149, + 0.02103816345334053, + -0.03377494215965271, + -0.04221222922205925, + -0.031571146100759506, + 0.019455304369330406, + -0.05630005523562431, + -0.04697926342487335, + -0.031165836378932, + -0.013769734650850296, + -0.01913624443113804, + -0.007057615090161562, + -0.002415845636278391, + -0.014922617003321648, + 0.027619758620858192, + 0.0336957685649395, + -0.032347530126571655, + -0.05203823000192642, + 0.002749909181147814, + 0.02563200332224369, + 0.011053238064050674, + 0.007514073979109526, + 0.11384005844593048, + 0.027964243665337563, + -0.029896508902311325, + 0.014289096929132938, + 0.016404690220952034, + 0.013748941011726856, + -0.018709324300289154, + -0.003985916264355183, + -0.04292967915534973, + 0.031602632254362106, + -0.0019760695286095142, + -0.004225247073918581, + -0.030523128807544708, + -0.03247571736574173, + -0.011286952532827854, + -0.05479658022522926, + 0.017367396503686905, + 0.04042955860495567, + 0.024978162720799446, + 0.03974466770887375, + -0.0030210816767066717, + 0.012606240808963776, + -0.029841944575309753, + 0.05598362907767296, + -0.0018327966099604964, + 0.04740763455629349, + -0.006792337633669376, + 0.005195636302232742, + -0.01774396002292633, + -0.025928860530257225, + -0.0031596729531884193, + 0.010017024353146553, + -0.01491346675902605, + -0.03433707356452942, + 0.020926278084516525, + 0.012350247241556644, + -0.012379925698041916, + 0.0022376468405127525, + -0.00708455266430974, + -0.0034772618673741817, + -0.002303215442225337, + 0.028439875692129135, + 0.023170605301856995, + 0.027372712269425392, + 0.027711408212780952, + 0.011133715510368347, + 0.03706458956003189, + 0.0033426634036004543, + -0.025468220934271812, + 0.03524608910083771, + -0.0169454887509346, + 0.014191867783665657, + 0.043733492493629456, + 0.009072498418390751, + 0.1321822851896286, + -0.02056468278169632, + -0.021096158772706985, + -0.019433647394180298, + 0.025774454697966576, + -0.02518952265381813, + -0.025266755372285843, + -0.01754080131649971, + -0.010412986390292645, + 0.029281362891197205, + 0.05080518499016762, + -0.049907833337783813, + -0.0023259781301021576, + -0.05477047711610794, + -0.06207437068223953, + 0.015065769664943218, + 0.035300590097904205, + -0.02449078857898712, + -0.005444364622235298, + -0.007451372221112251, + -0.07538949698209763, + 0.03350168839097023, + -0.04080044850707054, + -0.007330824621021748, + -0.02492316998541355, + 0.0019147935090586543, + 0.009155145846307278, + -0.020954973995685577, + -0.04082841798663139, + 0.013359214179217815, + 0.012591143138706684, + 0.00392627390101552, + -0.02570374310016632, + 0.054160747677087784, + -0.01623314432799816, + -0.014963900670409203, + -0.003190368879586458, + 0.003956871572881937, + 0.016940653324127197, + -0.003120218636468053, + -0.005089077167212963, + -0.014131622388958931, + -0.0018209069967269897, + 0.01495139766484499, + -0.07647768408060074, + -0.037733446806669235, + 0.0018935146508738399, + -0.05572587624192238, + 0.05858021229505539, + -0.014811329543590546, + -0.01985752396285534, + -0.03672241419553757, + -0.00027310888981446624, + -0.013075958006083965, + -0.0026598391123116016, + -0.02669616974890232, + -0.02406291849911213, + -0.015722084790468216, + -0.01257529016584158, + -0.04911123216152191, + 0.016627531498670578, + -0.021609434857964516, + 0.010659346356987953, + 0.029548466205596924, + 0.0037958852481096983, + -0.007210310082882643, + -0.025417372584342957, + 0.02705109491944313, + 0.09148138016462326, + 0.011355453170835972, + -0.004758312366902828, + 0.06688658148050308, + -0.06192180886864662, + -0.006034146063029766, + -0.0027974157128483057, + 0.01072489283978939, + -0.025661105290055275, + -0.043429188430309296, + 0.002187298610806465, + -0.005411777179688215, + 0.004955511074513197, + -0.0053474451415240765, + 0.007398539688438177, + -0.0025152552407234907, + -0.02079129032790661, + -0.017810162156820297, + 0.0023038596846163273, + -0.008473580703139305, + 0.01051692571491003, + -0.023453157395124435, + -0.039279092103242874, + -0.00889547262340784, + -0.03256705775856972, + -0.016079016029834747, + -0.026143712922930717, + 0.0012012131046503782, + -0.012963654473423958, + 0.06131600961089134, + -0.03213542699813843, + 0.03006448782980442, + 0.01795218698680401, + -0.02250640280544758, + -0.009964099153876305, + -0.01307858619838953, + 0.004176316317170858, + -0.013569997623562813, + 0.03623202443122864, + -0.01940923184156418, + -0.06461521983146667, + -0.011435764841735363, + -0.03496672213077545, + -0.006487944629043341, + 0.036796294152736664, + 0.04783405736088753, + -0.01583113521337509, + -0.04224923998117447, + 0.019448891282081604, + -0.03626467287540436, + -0.0010351722594350576, + -0.02695154771208763, + 0.019510159268975258, + 0.05157959833741188, + -0.0065386733040213585, + 0.0011756737949326634, + -0.008021377958357334, + 0.01045110821723938, + -0.007062249816954136, + -0.02799861505627632, + 0.023814087733626366, + -0.027615074068307877, + 0.04173498600721359, + 0.01395696122199297, + -0.03643026202917099, + -0.012101216241717339, + 0.020537490025162697, + -0.007852201350033283, + 0.0004776890855282545, + -0.04246332868933678, + -0.031759265810251236, + -0.00902839470654726, + 0.0036901512648910284, + -0.017023123800754547, + -0.0019270430784672499, + 0.10030768811702728, + -0.0059842015616595745, + 0.003299328265711665, + -0.024050280451774597, + -0.0174676775932312, + -0.021613337099552155, + -0.13091520965099335, + 0.03203887119889259, + -0.019080989062786102, + -0.008921381086111069, + -0.01012405939400196, + -0.012244850397109985, + -0.03785433992743492, + -0.028404735028743744, + -0.006183086894452572, + 0.019904715940356255, + -0.058325644582509995, + 0.007333579007536173, + 0.0013213868951424956, + -0.03890173137187958, + -0.009581783786416054, + 0.0010694497032091022, + 0.0149119533598423, + -0.007989566773176193, + -0.025593753904104233, + 0.007490487769246101, + -0.03440534323453903, + -0.03708536550402641, + 0.0042411647737026215, + 0.008249858394265175, + 0.01828661561012268, + 0.0673716738820076, + 0.004276192747056484, + 0.054876379668712616, + -0.027442220598459244, + -0.0327460803091526, + 0.019741926342248917, + 0.007369746919721365, + 0.008749784901738167, + 0.025410648435354233, + -0.005773425102233887, + 0.008151834830641747, + -0.04700874537229538, + 0.015906844288110733, + 0.01894802413880825, + 0.008020290173590183, + -0.008155470713973045, + 0.024738069623708725, + -0.007756123319268227, + 0.012381460517644882, + -0.0024910690262913704, + 0.016508866101503372, + 0.022294918075203896, + 0.008610171265900135, + -0.022503070533275604, + -0.03238275274634361, + 0.004638496786355972, + 0.020089980214834213, + -0.026603763923048973, + 0.023861894384026527, + 0.010077198036015034, + 0.00789671204984188, + -0.050242889672517776, + -0.0024151199031621218, + -0.024862034246325493, + -0.007472516968846321, + -0.028010603040456772, + 0.005840357393026352, + -0.045001525431871414, + -0.038822345435619354, + -0.02495506964623928, + 0.04874406009912491, + 0.00534987123683095, + 0.0033182967454195023, + -0.01915372721850872, + -0.04862372949719429, + 0.03927905112504959, + 0.020879797637462616, + -0.013224853202700615, + -0.04323860630393028, + -0.008096127770841122, + 0.024217495694756508, + 0.004457972478121519, + 0.018302608281373978, + -0.007217051461338997, + 0.002000146545469761, + -0.06895726919174194, + 0.05872179567813873, + -0.027325140312314034, + 0.01731397584080696, + 0.013634615577757359, + 0.008894582279026508, + -0.03825637325644493, + -0.010215021669864655, + -0.06502636522054672, + 0.044567205011844635, + 0.005743430927395821, + -0.049459367990493774, + -0.03538481146097183, + 0.01926964893937111, + 0.008311116136610508, + 0.0015361253172159195, + -0.048573896288871765, + 0.018505269661545753, + 0.04261200875043869, + 0.00042033015051856637, + 0.023123713210225105, + -0.021064164116978645, + 0.03214002028107643, + 0.025558944791555405, + -0.05601435527205467, + -0.01607527583837509, + 0.017683088779449463, + -0.010807264596223831, + 0.01693860813975334, + 0.011217094957828522, + 0.05406291037797928, + 0.018986113369464874, + 0.021254783496260643, + 0.032350536435842514, + -0.04432862251996994, + -0.04715810716152191, + 0.00988356675952673, + 0.0141218276694417, + 0.027784066274762154, + -0.014810503460466862, + 0.02501165121793747, + -0.011466937139630318, + 0.009744289331138134, + 0.004758674185723066, + 0.02426227740943432, + -0.0009168142569251359, + -0.022961203008890152, + 0.019087210297584534, + -0.014219610020518303, + 0.026573671028017998, + -0.021952185779809952, + -0.013301816768944263, + 0.013366354629397392, + 0.05944491922855377, + 0.032258592545986176, + -0.01697777956724167, + -0.014798084273934364, + 0.034601274877786636, + -0.052487533539533615, + -0.014670103788375854, + -0.015619643032550812, + 0.0024414900690317154, + 0.0038944666739553213, + -0.028522606939077377, + -0.003529331414029002, + 0.023638339713215828, + -0.016553988680243492, + 0.03043343313038349, + -0.0273666400462389, + -0.025597088038921356, + -0.018726523965597153, + 0.009055943228304386, + -0.007223871536552906, + 0.015237802639603615, + -0.04671495407819748, + -0.0012752035399898887, + 0.01860586181282997, + 0.0011181054869666696, + -0.02181215211749077, + -0.042185571044683456, + 0.0009997033048421144, + 0.011043842881917953, + 0.019244031980633736, + 0.000963872647844255, + 0.025738416239619255, + -0.013149300590157509, + -0.03643510863184929, + 0.0049447910860180855, + -0.003689349861815572, + 0.03407762572169304, + -0.02175823599100113, + -0.01302904263138771, + -0.017519783228635788, + 0.03403315320611, + 0.03128717094659805, + 0.05228360742330551, + 0.022145936265587807, + 0.007303987164050341, + 0.05942048132419586, + 0.0157631766051054, + -0.0138681810349226, + 0.03649572283029556, + 0.045603759586811066, + -0.018875116482377052, + 0.029746122658252716, + 0.02979963645339012, + 0.06905866414308548, + 0.03954263776540756, + 0.05485287308692932, + 0.019239256158471107, + 0.014637824147939682, + -0.00043638318311423063, + 0.011359396390616894, + -0.0020056634675711393, + 0.02579965442419052, + -0.008712466806173325, + 0.005021165125072002, + 0.013998887501657009, + 7.155244384193793e-05, + 0.04187306761741638, + -0.07664816826581955, + -0.02871590293943882, + -0.05021710693836212, + -0.030022062361240387, + 0.0225648432970047, + -0.017886683344841003, + 0.07761270552873611, + 0.01183644961565733, + 0.006775882560759783, + -0.02332964539527893, + 0.004736782517284155, + -0.03896806389093399, + 0.015330697409808636, + 0.024038461968302727, + -0.01858406700193882, + -0.03192947059869766, + 0.008379720151424408, + 0.028606532141566277, + 0.03153116628527641, + -0.007020082790404558, + 0.0069113499484956264, + 0.013652208261191845, + 0.01570904441177845, + -0.02624669298529625, + -0.03292255476117134, + -0.022121267393231392, + -0.002684706822037697, + 0.007119354791939259, + -0.023418355733156204, + -0.008557367138564587, + -0.07137825340032578, + -0.036145567893981934, + -0.04492252320051193, + 0.030430849641561508, + -0.028168080374598503, + -0.01674354076385498, + 0.014540347270667553, + 0.015591760165989399, + -0.03723357617855072, + -0.012080605141818523, + -0.0028700362890958786, + 0.01195258367806673, + -0.03277988359332085, + -0.047429509460926056 + ], + "start_index": 0, + "end_index": 149, + "token_count": 46, + "file_type": "avap_code", + "filename": "bucle_longitud_de_datos.avap", + "addResult": true, + "assignment": true, + "getListLen": true, + "startLoop": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "f574d56a-a46b-5754-be22-225aa2819017", + "_source": { + "text": "nivel = 5\nes_admin = nivel >= 10\naddResult(es_admin)", + "embedding": [ + 0.028602534905076027, + -0.023477211594581604, + -0.02200128510594368, + 0.003283075988292694, + -0.0472995787858963, + -0.011833843775093555, + -0.01805032789707184, + 0.056885942816734314, + -0.003671372542157769, + -0.030066510662436485, + -0.0064256503246724606, + 0.02507644146680832, + -0.0619821660220623, + 0.046416837722063065, + 0.02376244030892849, + 0.020045487210154533, + 0.0177315603941679, + 0.0022792431991547346, + -0.017590275034308434, + -0.010413356125354767, + -0.049456141889095306, + 0.02633838728070259, + 0.025458019226789474, + 0.06694819033145905, + -0.02388739213347435, + 0.0029603098519146442, + 0.005534790456295013, + -0.007836617529392242, + -0.015935294330120087, + 0.003753506578505039, + 0.007632073014974594, + -0.037852782756090164, + -0.0026387926191091537, + -0.03659426420927048, + -0.014064662158489227, + 0.00640196492895484, + -0.0162282045930624, + -0.02286064438521862, + -0.03687608614563942, + 0.02967081591486931, + -0.007093895226716995, + -0.011690693907439709, + -0.012431695125997066, + -0.026307400315999985, + -0.00020445630070753396, + 0.0033231910783797503, + 0.0024895069655030966, + -0.02431502938270569, + -0.05153568461537361, + -0.02243223786354065, + -0.023398306220769882, + 0.016592063009738922, + 0.03117070160806179, + 0.0005059685208834708, + 0.026115870103240013, + 0.06959793716669083, + -0.026780908927321434, + 0.002151683671399951, + -0.009745970368385315, + -0.047714151442050934, + -0.00893123634159565, + 0.005285036750137806, + -0.06111697107553482, + 0.0019787191413342953, + 0.025201503187417984, + 0.01861993409693241, + 0.03960840031504631, + -0.009561040438711643, + -0.004194988869130611, + -0.04591016098856926, + -0.04072701558470726, + 0.025990596041083336, + -0.0190847497433424, + -0.0071372282691299915, + -0.08416138589382172, + -0.003300752956420183, + 0.04332033917307854, + 0.0027059803251177073, + 0.013955273665487766, + -0.0008702799095772207, + 0.0058330208994448185, + 0.007541848812252283, + -0.009070689789950848, + 0.0228225439786911, + -0.03455447033047676, + 0.033692970871925354, + -0.01207484770566225, + 0.009010247886180878, + -0.02362678386271, + 0.034502290189266205, + -0.02525942027568817, + 0.0030805415008217096, + -0.020106419920921326, + -0.05240387097001076, + -0.022258983924984932, + -0.024722127243876457, + -0.008047142066061497, + -0.01949620619416237, + 0.0431215763092041, + 0.014017960987985134, + 0.014326758682727814, + 0.047478046268224716, + 0.026052236557006836, + -0.0005226380308158696, + 0.062279216945171356, + 0.012502587400376797, + 0.033340469002723694, + -0.01987902820110321, + 0.06460369378328323, + 0.0019117025658488274, + -0.008360187523066998, + 0.012676692567765713, + -0.007045096252113581, + 0.0014111011987552047, + -0.016098670661449432, + -0.043335922062397, + -0.0038399139884859324, + 0.020316388458013535, + 0.05917287617921829, + -0.013517891988158226, + 0.05400453880429268, + 0.006446856074035168, + 0.050956375896930695, + 0.008885188028216362, + -0.01513479370623827, + 0.03256867080926895, + -0.008409266360104084, + 0.014007394202053547, + 0.008833072148263454, + 0.025062795728445053, + 0.026392431929707527, + 0.0296650193631649, + -0.03595355898141861, + 0.0002021918771788478, + -0.006296414416283369, + -0.003811897709965706, + -0.015833642333745956, + 0.04306717962026596, + 0.01694534718990326, + -0.02556629478931427, + -0.009213033132255077, + 0.018046723678708076, + -0.02899940311908722, + -0.011929593048989773, + 0.06239842250943184, + -0.06149298697710037, + 0.010765273123979568, + -0.010951654054224491, + -0.014393221586942673, + 0.003817100077867508, + -0.05821816995739937, + 0.05277995020151138, + -0.00539878336712718, + -0.016654442995786667, + 0.008549588732421398, + -0.022918079048395157, + 0.039707332849502563, + 0.022804372012615204, + -0.027491671964526176, + 0.04082727059721947, + -0.022339483723044395, + 0.014799480326473713, + -0.042891666293144226, + -0.0347822904586792, + 0.053913310170173645, + -0.03461938723921776, + 0.015024788677692413, + 0.007531914860010147, + 0.012090175412595272, + -0.03968704491853714, + 0.018608858808875084, + -0.03586125001311302, + 0.0019616775680333376, + 0.008780128322541714, + -0.025052109733223915, + 0.02564501389861107, + 0.07198909670114517, + 0.02732546441257, + 0.03629957139492035, + -0.06296149641275406, + -0.001654330757446587, + -0.003726967377588153, + 0.0034162215888500214, + -0.03744873031973839, + -0.042366690933704376, + 0.03537438437342644, + 0.006979784928262234, + -0.00910163577646017, + 0.015941038727760315, + 0.006359616760164499, + 0.04051527380943298, + 0.01731390319764614, + 0.06162417307496071, + -0.010683844797313213, + 0.03114956244826317, + -0.019306568428874016, + -0.0022919303737580776, + -0.006010698154568672, + -0.011114328168332577, + -0.030209330841898918, + 0.010287655517458916, + -0.009450804442167282, + -0.012605338357388973, + -0.0668855607509613, + -0.033171992748975754, + 0.0221791360527277, + -0.03446696698665619, + -0.0027646294329315424, + 0.01708553172647953, + -0.013895543292164803, + -0.0034082557540386915, + 0.01775016263127327, + 0.0013910485431551933, + 0.048397794365882874, + 0.01839256100356579, + -0.042116496711969376, + 0.01584870181977749, + 0.0293685682117939, + 0.00977710448205471, + -0.02498987689614296, + -0.04739224538207054, + 0.06581126153469086, + 0.013938803225755692, + 0.032242681831121445, + 0.009158922359347343, + 0.0130681237205863, + 0.02654307521879673, + 0.0019414975540712476, + -0.03718020021915436, + 0.0444517508149147, + -0.006307706236839294, + -0.020287325605750084, + 0.017265884205698967, + 0.0027927649207413197, + 0.050525687634944916, + -0.0053411987610161304, + 0.0040694838389754295, + 0.0025123360101133585, + -0.009164437651634216, + -0.020462526008486748, + -0.021049076691269875, + -0.03166518732905388, + -0.0013947905972599983, + -0.01583600603044033, + -0.03904842212796211, + -0.022814223542809486, + -0.003136401530355215, + 0.03714726120233536, + -0.020043810829520226, + -0.011367888189852238, + -0.01670755445957184, + -0.03512892127037048, + -0.03954462707042694, + -0.02628941647708416, + -0.016341373324394226, + -0.003544627455994487, + 0.030903108417987823, + -0.04529058560729027, + -0.05852117761969566, + 0.025368759408593178, + 0.026195785030722618, + -0.005798972211778164, + -0.01473880186676979, + 0.02138184756040573, + 0.005249469541013241, + -0.006630209274590015, + -0.03381333127617836, + 0.05754191055893898, + 0.032603081315755844, + -0.0004620420222636312, + 0.0013676040107384324, + 0.04233793914318085, + 0.006727150175720453, + 0.02158520184457302, + -0.009330011904239655, + 0.033448994159698486, + -0.021453512832522392, + -0.018395034596323967, + 0.07554297894239426, + 0.03392773121595383, + -0.04463937133550644, + -0.00356615474447608, + -0.00013737576955463737, + -0.006148186046630144, + 0.02223130501806736, + -0.0926164761185646, + 0.005153897684067488, + -0.017444361001253128, + -0.03548901528120041, + -0.036339133977890015, + -0.010167456232011318, + 0.025901462882757187, + 0.08896272629499435, + -0.004852077923715115, + -0.0009642464574426413, + 0.0009607194806449115, + 0.014806331135332584, + -0.13998791575431824, + 0.023139366880059242, + 0.0012312312610447407, + 0.019591333344578743, + -0.0004983278922736645, + -0.01812511496245861, + -0.0024673384614288807, + 0.001362416660413146, + -0.0890934094786644, + 0.04991546645760536, + -0.018726682290434837, + -0.07289798557758331, + 0.01709441840648651, + -0.006446703802794218, + -0.03507452830672264, + 0.004575798287987709, + 0.011264162138104439, + -0.026495734229683876, + -0.008602797985076904, + -0.02596249245107174, + -0.041650183498859406, + -0.046039748936891556, + -0.03894897177815437, + -0.03984815627336502, + -0.0723571702837944, + -0.07495631277561188, + -0.003552287584170699, + -0.01080378983169794, + -0.012928101234138012, + 0.0010838129092007875, + -2.655509342730511e-05, + -0.024004532024264336, + -0.003705906681716442, + 0.005644370801746845, + -0.003287371713668108, + 0.03214835748076439, + 0.04276677221059799, + 0.0011276549194008112, + 0.04511146992444992, + 0.015870684757828712, + 0.023805228993296623, + 0.01604435406625271, + -0.00122980703599751, + 0.008518731221556664, + -0.016423264518380165, + 0.02704397216439247, + -0.010717228055000305, + -0.006871984805911779, + -0.06904459744691849, + 0.001417013118043542, + -0.010692204348742962, + -0.03640135005116463, + 0.022918255999684334, + -0.03279564902186394, + -0.03531428053975105, + 0.02866179309785366, + -0.007323171012103558, + -0.029282910749316216, + -0.012585418298840523, + -0.018795764073729515, + -0.021063340827822685, + -0.010902907699346542, + 0.03252381086349487, + -0.03834301978349686, + -0.010628517717123032, + -0.004438583739101887, + 0.014021377079188824, + 0.03231855481863022, + 0.054532356560230255, + -0.022586477920413017, + 0.037874985486269, + 0.012894580140709877, + -0.010908644646406174, + 0.013778365217149258, + 0.009844907559454441, + 0.008913428522646427, + -0.02338586002588272, + -0.04345066472887993, + 0.0009774748468771577, + -0.12246307730674744, + 0.03304912522435188, + -0.003380184294655919, + -0.019986845552921295, + 0.04263569787144661, + -0.010463903658092022, + -0.02295912429690361, + -0.011855759657919407, + -0.007220162078738213, + 0.06653941422700882, + 0.2419215589761734, + 0.032665498554706573, + 0.004756115842610598, + 0.030005477368831635, + 0.020121410489082336, + -0.018598150461912155, + 0.025199750438332558, + 0.038592685014009476, + -0.029133809730410576, + -0.021888913586735725, + -0.008557252585887909, + 0.015627438202500343, + -0.0033270856365561485, + 0.004450532142072916, + 0.0030477051623165607, + 0.04940957948565483, + -0.032323647290468216, + 0.004551601596176624, + 0.049800340086221695, + -0.04308250918984413, + 0.0009154421277344227, + -0.01072238851338625, + -0.07663994282484055, + -0.028653116896748543, + -0.05013733729720116, + -0.02698017843067646, + -0.037159889936447144, + -0.016015252098441124, + -0.017661938443779945, + -0.030569477006793022, + 0.024355722591280937, + 0.04788334295153618, + 0.02384943515062332, + -0.02363285794854164, + -0.0374322347342968, + -0.0290773194283247, + 0.03270482271909714, + 0.0013265437446534634, + 0.03497985005378723, + 0.0349108912050724, + 0.0044692037627100945, + -0.01875704899430275, + 0.010688531212508678, + 0.052992384880781174, + -0.004613508936017752, + 0.003348761238157749, + 0.016752546653151512, + -0.006300962995737791, + -0.022715087980031967, + -0.013387319631874561, + 0.016787104308605194, + -0.024187099188566208, + 0.0007210510084405541, + -0.009323650039732456, + 0.034735407680273056, + -0.017297346144914627, + 0.02200881950557232, + 0.025087950751185417, + 0.0029713294934481382, + -0.029449990019202232, + 0.04655590280890465, + 0.004395118914544582, + 0.03471894562244415, + -0.041913535445928574, + -0.002979061333462596, + -0.011841055937111378, + 0.007764473557472229, + 0.009105191566050053, + -0.025456326082348824, + 0.021243588998913765, + -0.04267169162631035, + -0.019015802070498466, + 0.00650108652189374, + 0.03756911680102348, + 0.021342813968658447, + -0.0537579171359539, + 0.029360059648752213, + 0.026810739189386368, + -0.013671171851456165, + 0.009338338859379292, + -0.03250749781727791, + 0.008495181798934937, + -0.04669571295380592, + 0.06138667091727257, + 0.01616613194346428, + 0.002364689251407981, + -0.002399222692474723, + 0.03539849817752838, + -0.007021064404398203, + 0.013926186598837376, + 0.01132985856384039, + 0.0028297468088567257, + 0.016851354390382767, + 0.012576555833220482, + -0.03089710883796215, + 0.024621818214654922, + -0.012825616635382175, + 0.01761934906244278, + -0.055187612771987915, + 0.013527070172131062, + -0.04990270361304283, + -0.008734336122870445, + -0.02977319248020649, + -0.002452374901622534, + 0.00711174588650465, + -0.03337878733873367, + 0.003499303013086319, + -0.018035870045423508, + 0.005736507009714842, + -0.011854349635541439, + -0.04302871972322464, + 0.0454559251666069, + 0.026366479694843292, + 0.003802814520895481, + -0.009033143520355225, + 0.02461872808635235, + -0.014529509469866753, + -0.01998269557952881, + 0.047023843973875046, + 0.02264825627207756, + -0.00953324418514967, + -0.007908947765827179, + -0.05638092756271362, + -0.030775493010878563, + -0.028672192245721817, + -0.0335337296128273, + 0.03327444568276405, + 0.018104856833815575, + -0.032255157828330994, + 0.047799717634916306, + 0.03672495856881142, + -0.0195638295263052, + -0.0007337619899772108, + -0.005865009035915136, + -0.01163681410253048, + 0.0018586593214422464, + 0.04772692918777466, + -0.004571077413856983, + 0.013270526193082333, + 0.04489229992032051, + -0.05120765045285225, + -0.054581571370363235, + -0.002896512160077691, + -0.004849512595683336, + 0.005699224770069122, + 0.017388105392456055, + 0.023866837844252586, + 0.0003533459093887359, + 0.015335358679294586, + 0.002796933287754655, + 0.019441023468971252, + 0.02468511275947094, + 0.05332227051258087, + -0.05024966970086098, + -0.040111150592565536, + -0.07767575979232788, + 0.025152038782835007, + -0.004384845960885286, + -0.0003892849199473858, + -0.048439547419548035, + -0.001369308098219335, + -0.010709360241889954, + 0.005071468651294708, + 0.01567782834172249, + -0.006481512915343046, + -0.013178888708353043, + -0.010443809442222118, + 0.004128960892558098, + -0.03088567592203617, + 0.0031193557661026716, + 0.020337902009487152, + -0.028629235923290253, + -0.019627803936600685, + 0.003323501441627741, + 0.009400205686688423, + -0.005311576183885336, + -0.0312715545296669, + 0.016356341540813446, + -0.0141555555164814, + -0.018972869962453842, + 0.007841016165912151, + -0.028928879648447037, + -0.03278513252735138, + 0.02714618295431137, + 0.0368577279150486, + 0.007437704596668482, + -0.01032855361700058, + -0.005455720238387585, + 0.017735792323946953, + -0.02559622935950756, + 0.0129670025780797, + 0.08331248909235, + 0.03753138333559036, + -0.0366196483373642, + -0.008749458007514477, + 0.049736443907022476, + -0.005198784172534943, + 0.024412648752331734, + 0.0021953117102384567, + 0.0075299483723938465, + 0.015769027173519135, + 0.04321609064936638, + 0.003814130090177059, + -0.02628330886363983, + 0.004242425784468651, + -0.01773938536643982, + -0.016977839171886444, + 0.009370911866426468, + -0.009492217563092709, + -0.029132235795259476, + -0.02522309310734272, + 0.021690228953957558, + -0.035409051924943924, + -6.894816033309326e-05, + 0.03801165893673897, + 0.00042202469194307923, + 0.04843355342745781, + -0.016011137515306473, + 0.015222016721963882, + 0.003599094459787011, + 0.03232479467988014, + -0.022800834849476814, + 0.006808876991271973, + -0.026204828172922134, + -0.07064780592918396, + -0.0029060624074190855, + 0.030294476076960564, + 0.012451909482479095, + 0.028925513848662376, + -0.008863893337547779, + -0.006472466979175806, + -0.036830879747867584, + 0.006731429602950811, + -0.019115526229143143, + 0.0005769318668171763, + 0.021907728165388107, + 0.014354296028614044, + 0.025504078716039658, + -0.0008151887450367212, + -0.05630353465676308, + 0.019560497254133224, + -0.04972890391945839, + 0.04435897246003151, + 0.058134641498327255, + -0.021963385865092278, + 0.09795191138982773, + -0.016155824065208435, + 0.011094382032752037, + 0.007591220550239086, + -0.024129224941134453, + -0.04270915687084198, + -0.043633583933115005, + -0.010537552647292614, + -0.0322241447865963, + 0.03688685968518257, + 0.018914517015218735, + -0.023135291412472725, + 0.007354326080530882, + -0.037789683789014816, + -0.006523707415908575, + -0.002584946807473898, + 0.008679287508130074, + -0.029199782758951187, + -0.028514664620161057, + 0.003530370071530342, + -0.05228366702795029, + 0.041297562420368195, + -0.0431181900203228, + -0.006515641696751118, + -0.007250604685395956, + -0.016292735934257507, + -0.0015857871621847153, + -0.027429124340415, + -0.020512938499450684, + 0.003803984960541129, + 0.03805191442370415, + -0.043757643550634384, + -0.0356009341776371, + 0.08443255722522736, + -0.016724348068237305, + -0.027848245576024055, + -0.021048685535788536, + -0.02502971701323986, + -0.0004366213397588581, + 0.013956385664641857, + 0.004502689931541681, + -0.014659985899925232, + -0.007189229596406221, + -0.002378610661253333, + -0.04678356647491455, + -0.008058169856667519, + -0.015482441522181034, + -0.0534801222383976, + 0.08009868115186691, + -0.04028733819723129, + -0.033401694148778915, + -0.0035214261151850224, + -0.021779101341962814, + -0.012650313787162304, + 0.0034310943447053432, + -0.021182293072342873, + 0.0001690786302788183, + 0.010116291232407093, + 0.010487174615263939, + -0.009687211364507675, + 0.025632543489336967, + -0.046866610646247864, + -0.04526333138346672, + 0.036938946694135666, + -0.006513921078294516, + -0.013716352172195911, + -0.020841900259256363, + 0.04413966089487076, + 0.04991473630070686, + 0.01888943463563919, + -0.012217020615935326, + 0.0755130797624588, + -0.03864782303571701, + -0.06843416392803192, + 0.004461776465177536, + 0.028025910258293152, + -0.013022319413721561, + -0.0017333918949589133, + 0.0055718859657645226, + 0.013846083544194698, + 0.033024076372385025, + -0.027109848335385323, + -0.030886352062225342, + -0.019299326464533806, + -0.019452465698122978, + -0.02350729890167713, + 0.020542960613965988, + -0.016506358981132507, + 0.020158909261226654, + -0.017538441345095634, + -0.05828931927680969, + 0.036434371024370193, + -0.0052731214091181755, + -0.010896727442741394, + -0.046667031943798065, + 0.024116382002830505, + -0.042698875069618225, + 0.06127827987074852, + -0.02319420874118805, + 0.022859225049614906, + 0.023992935195565224, + -0.02559051290154457, + -0.0036772030871361494, + -0.01267946232110262, + -0.01180675346404314, + 0.009625705890357494, + 0.010006493888795376, + -0.04200976341962814, + -0.03589789569377899, + 0.0023440506774932146, + -0.015305536799132824, + 0.023108497262001038, + 0.008749461732804775, + 0.04273639991879463, + -0.010688669979572296, + -0.06818226724863052, + 0.0139774763956666, + -0.010038778185844421, + 0.004437117837369442, + -0.050713181495666504, + 0.022444184869527817, + 0.06119268760085106, + 0.016833148896694183, + 0.011734372936189175, + 0.023314237594604492, + -0.0016145150875672698, + 0.005716728512197733, + 0.010538931004703045, + 0.0651332214474678, + -0.01033114641904831, + 0.06203826516866684, + -0.023246997967362404, + 0.007300554309040308, + 0.03712507337331772, + -0.0512252114713192, + 0.004717068746685982, + -0.02243962697684765, + -0.010141033679246902, + -0.05869457870721817, + -0.03438882157206535, + 0.005219967104494572, + -0.0268271341919899, + 0.057852040976285934, + 0.07062286138534546, + 0.01896541193127632, + -0.0415237732231617, + -0.0040121967904269695, + -0.028576908633112907, + -0.0030360869131982327, + -0.13836677372455597, + 0.014558154158294201, + -0.008514768444001675, + 0.04646489396691322, + -0.0475832000374794, + 0.02744152396917343, + -0.005524509586393833, + 0.0035087636206299067, + -0.023208176717162132, + -0.03150739148259163, + -0.06734917312860489, + -0.017488636076450348, + -0.004105942323803902, + -0.0328093096613884, + 0.010524610057473183, + 0.04231506958603859, + 0.03337213769555092, + 0.00927279144525528, + -0.03626033291220665, + 0.022033672779798508, + -0.0019432189874351025, + -0.03385814651846886, + 0.02449917048215866, + -0.011515580117702484, + -0.007220584899187088, + -0.005479682236909866, + 0.027607256546616554, + 0.04511278122663498, + -0.014920756220817566, + -0.021596411243081093, + -0.028107017278671265, + 0.01824202947318554, + 0.025569144636392593, + 0.014158993028104305, + -0.024082770571112633, + 0.013929656706750393, + -0.011143532581627369, + 0.07756873220205307, + -0.010246052406728268, + 0.05033102631568909, + 0.021051794290542603, + 0.014392109587788582, + -0.06179044768214226, + 0.012185701169073582, + 0.03778194263577461, + 0.02748955599963665, + -0.0013672132045030594, + 0.014757316559553146, + -0.029250696301460266, + 0.010888831689953804, + -0.0032412719447165728, + 0.015451958402991295, + -0.0031565725803375244, + 0.03792998939752579, + 0.009790504351258278, + 0.0010468565160408616, + -0.017736611887812614, + -0.00046613512677140534, + 0.026575803756713867, + 0.05744076520204544, + 0.01755678839981556, + 0.034126341342926025, + -0.019226323813199997, + -0.014116057194769382, + -0.021235590800642967, + 0.025440717115998268, + -0.05319342389702797, + 0.009068982675671577, + -0.00859498605132103, + 0.03141198307275772, + -0.016520773991942406, + -0.021191326901316643, + -0.01573684997856617, + -0.09327437728643417, + 0.01723695546388626, + 0.007478977087885141, + 0.015127270482480526, + 0.014573859050869942, + -0.04759587347507477, + -0.03333016857504845, + -0.026410792022943497, + 0.004456567578017712, + -0.05062225088477135, + -0.008526968769729137, + 0.0794728696346283, + -0.032513510435819626, + -0.012851457111537457, + 0.019182950258255005, + -0.06573174893856049, + 0.03487686812877655, + -0.02500203624367714, + -0.051686979830265045, + -0.03859421983361244, + -0.02803814969956875, + 0.013747937977313995, + 0.014553959481418133, + 0.009579209610819817, + 0.007626164238899946, + 0.012096968479454517, + -0.04821150749921799, + 0.04036567732691765, + -0.03572094067931175, + 0.01943671703338623, + 0.020702727138996124, + 0.017123345285654068, + 0.022652972489595413, + -0.014240154065191746, + -0.031192446127533913, + -0.01710536703467369, + -0.018435515463352203, + 0.021367842331528664, + -0.007076303940266371, + 0.003863533493131399, + -0.00707972189411521, + -0.03339747339487076, + 0.008527977392077446, + 0.02249932661652565, + 0.05402626842260361, + 0.03540854528546333, + -0.039482686668634415, + -0.0020378720946609974, + -0.00605039345100522, + 0.038658373057842255, + -0.029144948348402977, + 0.041533976793289185, + 0.039589252322912216, + 0.011729405261576176, + 0.004819371737539768, + 0.008550100028514862, + 0.02711373381316662, + 0.017245203256607056, + -0.03934326395392418, + -0.00898340716958046, + -0.011755910702049732, + -0.006326050963252783, + -0.03864724934101105, + -0.019107069820165634, + 0.032115161418914795, + -0.0009767995215952396, + -0.04456882178783417, + 0.010688488371670246, + -0.010035554878413677, + 0.001928708516061306, + -0.03450827673077583, + -0.027967127040028572, + 0.010910171084105968, + -0.03457771614193916, + 0.018890898674726486, + 0.018001742660999298, + -0.05250181257724762, + -0.001020920812152326, + 0.005908649880439043, + 0.005933592561632395, + 0.036030206829309464, + -0.0364253930747509, + 0.009861974976956844, + -5.070327460998669e-05, + 0.007579626049846411, + 0.041421398520469666, + 0.008937339298427105, + -0.020432041957974434, + 0.01499079167842865, + 0.0026423896197229624, + -0.019408537074923515, + -0.016796311363577843, + -0.05569889023900032, + -0.04835772141814232, + -0.01051243208348751, + -0.012226714752614498, + 0.003608779050409794, + -0.004832036327570677, + 0.053557269275188446, + -0.02437945455312729, + -0.0049031456001102924, + 0.040927454829216, + -0.04392515867948532, + 0.030085735023021698, + 0.009052696637809277, + 0.05246466398239136, + 0.002562420442700386, + -0.016561411321163177, + 0.014571383595466614, + 0.061904873698949814, + -0.011614784598350525, + 0.05352284759283066, + 0.030964747071266174, + 0.0016514600720256567, + 0.04259350895881653, + 0.014941501431167126, + 0.006267813500016928, + 0.02109188213944435, + -0.0023002277594059706, + 0.014238200150430202, + -0.03187669813632965, + 0.019422318786382675, + -0.031122980639338493, + 0.045824531465768814, + -0.028335338458418846, + 0.014723950996994972, + 0.022037893533706665, + -0.07590878754854202, + -0.002757617272436619, + -0.008514927700161934, + 0.004104874096810818, + 0.016738740727305412, + -0.01710313931107521, + 0.028936415910720825, + 0.010866031050682068, + 0.027288038283586502, + 0.040426112711429596, + -0.0015129726380109787, + -0.0015921518206596375, + -0.03746694698929787, + 0.02218806743621826, + 0.00735618406906724, + 0.008198855444788933, + 0.049528006464242935, + 0.03212074935436249, + 0.01688702218234539, + 0.016043370589613914, + 0.04463475942611694, + 0.046346843242645264, + 0.05877439305186272, + -0.007740220986306667, + -0.0286030862480402, + -0.011359993368387222, + 0.005225139204412699, + -0.013135520741343498, + -0.008173668757081032, + -0.0002188080979976803, + -0.028336817398667336, + -0.008729142136871815, + -0.014154191128909588, + 0.05905667692422867, + 0.011446075513958931, + 0.009474855847656727, + 0.03695766627788544, + 0.008577356114983559, + -0.029062340036034584, + 0.029183965176343918, + 0.015636038035154343, + 0.012956034392118454, + 0.020474983379244804, + 0.02540675550699234 + ], + "start_index": 0, + "end_index": 52, + "token_count": 19, + "file_type": "avap_code", + "filename": "asignacion_booleana.avap", + "addResult": true, + "assignment": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "d2fcddbf-df62-5eae-8e23-34bfe7384f6d", + "_source": { + "text": "addParam(\"rol\", r)\nacceso = False\n\nif(None, None, \"r == 'admin' or r == 'editor' or r == 'root'\")\n acceso = True\nend()\n\naddResult(acceso)", + "embedding": [ + 0.003338472917675972, + -0.02492971159517765, + 0.01661771349608898, + 0.04765648767352104, + -0.029718846082687378, + 0.019376253709197044, + 0.04865017905831337, + 0.03725570812821388, + 0.004486530087888241, + -0.024232083931565285, + -0.006135660223662853, + -0.022366521880030632, + -0.01748020574450493, + 0.001823331811465323, + -0.0038460122887045145, + 0.05400686711072922, + 0.008401874452829361, + 0.009071478620171547, + 0.037433721125125885, + 0.03218832239508629, + -0.03356499224901199, + 0.0350574292242527, + -0.04112172871828079, + 0.03204454481601715, + 0.020311526954174042, + -3.1897423014015658e-06, + 0.030633335933089256, + -0.0043738288804888725, + -0.04101337119936943, + 0.005459755193442106, + -0.009108738973736763, + -0.04992594197392464, + -0.05072816088795662, + -0.05376721918582916, + -0.004154752474278212, + 0.017226500436663628, + -0.022592226043343544, + -0.01244149450212717, + -0.04227600246667862, + 0.00827743485569954, + -0.016209978610277176, + -0.04751492664217949, + 0.023943407461047173, + -0.057702019810676575, + 0.028210865333676338, + -0.002717613009735942, + 0.010165367275476456, + -0.04406788572669029, + 0.006884067319333553, + -0.016119230538606644, + -0.06126810237765312, + -0.002529463265091181, + 0.0268002487719059, + -0.02192552573978901, + 0.006507408805191517, + 0.04876631498336792, + 0.011075186543166637, + 0.012206903658807278, + -0.028723232448101044, + -0.007819097489118576, + -0.03463400527834892, + -0.02036549150943756, + -0.03794233128428459, + 0.0019233152270317078, + 0.018272681161761284, + 0.016533751040697098, + 0.017841216176748276, + -0.016463782638311386, + -0.011089310050010681, + -0.010951411910355091, + -0.014404622837901115, + -0.010661211796104908, + -0.008888709358870983, + -0.020546967163681984, + -0.07644543796777725, + -0.016370488330721855, + 0.058501627296209335, + -0.012590954080224037, + -0.0033023401629179716, + 0.02252444066107273, + -0.011102939024567604, + -0.022369183599948883, + 0.020619789138436317, + 0.009483123198151588, + -0.033065591007471085, + 0.010987256653606892, + -0.018515214323997498, + 0.025707866996526718, + -0.019139697775244713, + 0.041344769299030304, + -0.023143695667386055, + -0.01965831033885479, + 0.0294342041015625, + -0.028037244454026222, + -0.015303241088986397, + -0.0314849354326725, + 0.027279894798994064, + 0.004670131020247936, + 0.02629023604094982, + 0.005164948757737875, + -0.017116917297244072, + 0.02237539552152157, + 0.031848713755607605, + -0.02776278182864189, + 0.07254699617624283, + 0.05530582740902901, + 0.0011024260893464088, + -0.02225489728152752, + 0.02856474742293358, + -0.0386197604238987, + -0.009656869806349277, + 0.010861133225262165, + -0.003641985123977065, + -0.012811515480279922, + -0.0019487087847664952, + -0.04628942161798477, + 0.011723944917321205, + -0.040512338280677795, + 0.014145995490252972, + 0.020376846194267273, + 0.03470110148191452, + 0.059526536613702774, + 0.048294536769390106, + 0.0005283212522044778, + -0.005531649570912123, + 0.05546899512410164, + 0.012433933094143867, + 0.012011485174298286, + 0.004610557109117508, + 0.043043430894613266, + 0.032197169959545135, + 0.012371907010674477, + -0.024981282651424408, + -0.019557803869247437, + -0.039503470063209534, + -0.022485271096229553, + -0.0342530682682991, + 0.05013221502304077, + 0.02959536947309971, + -0.08299096673727036, + 0.01929144561290741, + -0.01912948116660118, + -0.02124515175819397, + 0.006473348010331392, + 0.03721679002046585, + -0.026036668568849564, + 0.029971014708280563, + 0.017115099355578423, + -0.001635257969610393, + 0.013680895790457726, + -0.04385096952319145, + 0.021300746127963066, + -0.028391744941473007, + -0.0014710474060848355, + 0.02227579429745674, + -0.047459471970796585, + 0.01062494795769453, + 0.021144820377230644, + 0.034366119652986526, + 0.023459317162632942, + 0.0003759604296647012, + 0.06794359534978867, + -0.017476683482527733, + -0.017498204484581947, + 0.044327374547719955, + -0.04062267020344734, + 0.021522972732782364, + -0.02361086755990982, + -0.01389788743108511, + -0.03291700780391693, + 0.0075469231233000755, + -0.007192540913820267, + 0.03127439692616463, + -0.005892110988497734, + -0.01867710053920746, + 0.0307010468095541, + 0.042140763252973557, + 0.022185146808624268, + 0.0008880263776518404, + -0.07127974927425385, + -0.010916756466031075, + -0.010029267519712448, + -0.011120644398033619, + -0.0023283190093934536, + -0.005396142136305571, + 0.015171966515481472, + -0.014006935991346836, + 0.010381855070590973, + 0.00037216872442513704, + 0.0021878008265048265, + -0.02916702814400196, + -0.012263431213796139, + 0.009061445482075214, + -0.0030968862120062113, + 0.010087867267429829, + 0.030085016041994095, + 0.028229445219039917, + -0.021354947239160538, + -0.007872490212321281, + 0.003204257693141699, + -0.035417526960372925, + -0.0015767677687108517, + -0.0033633222337812185, + -0.040940139442682266, + -0.0204475037753582, + -0.011929702013731003, + -0.016535857692360878, + -0.02559203840792179, + 0.0464220866560936, + -0.04757460951805115, + 0.024714114144444466, + 0.013454180210828781, + -0.016286397352814674, + 0.018535155802965164, + 0.009040044620633125, + 0.020437657833099365, + -0.0048307497054338455, + -0.001535229617729783, + -0.0164935402572155, + -0.03516266867518425, + -0.034559477120637894, + 0.05958275869488716, + 0.01938241347670555, + 0.07865209132432938, + 0.006064967252314091, + -0.0006887021008878946, + 0.03639449551701546, + -0.006535311695188284, + -0.04751081392168999, + -0.00552698178216815, + -0.012390623800456524, + -0.02087319642305374, + 0.01569402404129505, + -0.019977902993559837, + 0.04722437262535095, + -0.046154797077178955, + 0.005492511671036482, + 0.01570791006088257, + -0.021799586713314056, + -0.010859574191272259, + -0.08647070825099945, + -0.024850212037563324, + -0.017010565847158432, + 0.016650788486003876, + -0.008023988455533981, + -0.035007014870643616, + -0.03712764382362366, + -0.007662240415811539, + -0.02468869648873806, + -0.0676913857460022, + -0.025672174990177155, + -0.016875820234417915, + -0.03902712091803551, + -0.0055131688714027405, + 0.006458783056586981, + -0.008947436697781086, + 0.034156836569309235, + -0.013455431908369064, + -0.035664722323417664, + 0.022460531443357468, + -0.0013542765518650413, + -0.006693471223115921, + 0.011765050701797009, + 0.02604733593761921, + -0.013094105757772923, + -0.000468180951429531, + 0.004177591297775507, + 0.034096717834472656, + -0.008268667384982109, + 0.007419981528073549, + 0.012661699205636978, + 0.04833241552114487, + 0.00867439154535532, + -0.034750424325466156, + 0.033781543374061584, + 0.027922850102186203, + -0.013041667640209198, + -0.04480036348104477, + 0.06691666692495346, + -0.005870102439075708, + 0.014937185682356358, + -0.006091643124818802, + 0.049105700105428696, + 0.025794466957449913, + 0.016895052045583725, + 0.016209762543439865, + 0.041469693183898926, + -0.013731314800679684, + -0.01423644833266735, + -0.062482818961143494, + -0.002132741268724203, + -0.0030924633610993624, + 0.0728474035859108, + -0.013423241674900055, + -0.015249690972268581, + -0.004495606757700443, + 0.013617216609418392, + -0.18197280168533325, + -0.03535832092165947, + 0.008315276354551315, + -0.010876321233808994, + 0.0032384805381298065, + 0.020349478349089622, + -0.033493515104055405, + -0.01153421588242054, + -0.03763985261321068, + 0.02772717922925949, + -0.023331785574555397, + -0.05027858540415764, + 0.007870525121688843, + -0.010661870241165161, + 0.02471759542822838, + 0.005080788861960173, + 0.010701969265937805, + -0.014225393533706665, + -0.010733801871538162, + -0.0017253950936719775, + -0.04324984923005104, + -0.04240133613348007, + 0.032808542251586914, + -0.03004901483654976, + -0.03617443889379501, + -0.029274791479110718, + -0.0031346098985522985, + 0.008184324018657207, + -0.001033501815982163, + 0.010044993832707405, + -0.004811170045286417, + 0.006367904134094715, + 0.009569098241627216, + -0.013726623728871346, + -0.01624887064099312, + 0.03841743245720863, + 0.010479746386408806, + 0.0036372754257172346, + 0.0368686281144619, + 0.0035603733267635107, + 0.032138049602508545, + 0.03904140740633011, + 0.020306305959820747, + -0.018675345927476883, + 0.0009239694918505847, + 0.010087098926305771, + 0.015825053676962852, + -0.01616549864411354, + -0.0570228211581707, + 0.01687801256775856, + -0.021365638822317123, + -0.026850229129195213, + -0.014918326400220394, + 0.008407190442085266, + -0.03649599850177765, + 0.036405183374881744, + -0.0007658895337954164, + 0.006774426903575659, + 0.0005289692198857665, + 0.018420670181512833, + -0.023878473788499832, + 0.027978520840406418, + 0.05473960563540459, + -0.016450198367238045, + -0.024682633578777313, + 0.012452262453734875, + 0.024910667911171913, + 0.03800242021679878, + 0.0356837660074234, + -0.05872542783617973, + 0.022574493661522865, + -0.029416536912322044, + 0.0215783528983593, + 0.007539306301623583, + -0.012265266850590706, + -0.007633797824382782, + -0.03990045189857483, + -0.02799353562295437, + -0.016852909699082375, + -0.11869587004184723, + 0.043121811002492905, + 0.03638928383588791, + -0.005727601703256369, + 0.023639734834432602, + -0.009381625801324844, + -0.03934284672141075, + -0.014240819029510021, + 0.027365945279598236, + 0.05364082753658295, + 0.23274026811122894, + 0.04913421347737312, + -0.014339268207550049, + -0.02558671310544014, + 0.02523045428097248, + -0.0359187014400959, + 0.036509908735752106, + 0.025401394814252853, + 0.015342517755925655, + -0.017074264585971832, + -0.009196036495268345, + 0.022709541022777557, + 0.0008238818263635039, + -0.012269019149243832, + 0.046598438173532486, + 0.04448923468589783, + -0.04449623078107834, + 0.0035163769498467445, + 0.00838239211589098, + 0.0007262626895681024, + 0.04168758913874626, + 0.036092694848775864, + -0.0174412839114666, + 0.001784555846825242, + -0.03947903960943222, + -0.015294917859137058, + -0.053497444838285446, + -0.009671774692833424, + -0.0036086472682654858, + 0.009080254472792149, + -0.009354840032756329, + 0.01688161864876747, + 0.03267371281981468, + -0.007325667887926102, + -0.03911669924855232, + -0.007284435909241438, + 0.0275641530752182, + 0.020494192838668823, + 0.02216128073632717, + 0.04777422174811363, + 0.021683407947421074, + 0.015651723369956017, + 0.021032053977251053, + 0.025263970717787743, + 0.001308287726715207, + -0.023944910615682602, + -0.012762101367115974, + -0.03599391132593155, + -0.0007139441440813243, + -0.02240118756890297, + -0.016104035079479218, + -0.029419898986816406, + -0.010369309224188328, + 0.009153760969638824, + 0.02717825211584568, + -0.026763280853629112, + -0.011490589007735252, + 0.016406454145908356, + -0.014318667352199554, + -0.02682984620332718, + 0.05088648945093155, + 0.004496943671256304, + -0.02426472306251526, + -0.004477022215723991, + -0.04249945282936096, + 0.006524963770061731, + -0.001091807265765965, + -0.04035350680351257, + -0.028352677822113037, + 0.04701458290219307, + -0.027478914707899094, + 0.038848310708999634, + 0.017522037029266357, + 0.054160624742507935, + 0.015919892117381096, + -0.003666780423372984, + 0.024813784286379814, + 0.038756418973207474, + -0.058651454746723175, + 0.003144749440252781, + -0.015542550012469292, + 0.029417525976896286, + -0.07709009200334549, + 0.02856125496327877, + 0.034130215644836426, + 0.002866503782570362, + 0.0007250161725096405, + 0.05156218633055687, + 0.005501368548721075, + -0.010606169700622559, + -0.0032309696543961763, + -0.021084105595946312, + 0.00964775774627924, + 0.06745133548974991, + -0.014262107200920582, + 0.048183050006628036, + 0.022942764684557915, + 0.009979956783354282, + -0.04950866103172302, + 0.016284119337797165, + -0.024731768295168877, + -0.019262762740254402, + -0.03990386053919792, + -0.0141091737896204, + 0.041234083473682404, + -0.039963189512491226, + -0.012793609872460365, + -0.01621781289577484, + 0.003974372521042824, + -0.012641066685318947, + -0.03743311017751694, + 0.024507764726877213, + 0.04034040495753288, + 0.02452739328145981, + 0.025691185146570206, + -0.0002448293089400977, + 0.06013334542512894, + 0.01142108254134655, + 0.053850628435611725, + 0.014035883359611034, + 0.007926791906356812, + -0.007809543516486883, + 0.008554922416806221, + -0.022059425711631775, + -0.0358811654150486, + -0.011250589974224567, + -0.011708961799740791, + 0.023849859833717346, + -0.09248078614473343, + 0.03300672024488449, + 0.018613498657941818, + -0.025836750864982605, + 0.0012644667876884341, + 0.004601083695888519, + 0.016090163961052895, + -0.029532015323638916, + 0.061058420687913895, + 0.0068880184553563595, + 0.03390946611762047, + 0.06368250399827957, + -0.03071834333240986, + -0.06513959914445877, + -0.053103696554899216, + 0.03963591158390045, + 0.004646695218980312, + 0.06235390156507492, + 0.003583506215363741, + -0.044649116694927216, + -0.026746641844511032, + 0.006207524798810482, + 0.03237687796354294, + 0.0451241172850132, + 0.05865946039557457, + -0.01873159222304821, + 0.0025879908353090286, + -0.030602317303419113, + 0.01051616482436657, + 0.002563443500548601, + 0.020871367305517197, + -0.019746553152799606, + 0.03085472248494625, + 0.027627239003777504, + 0.015536942519247532, + 0.019275307655334473, + -0.02444876916706562, + 0.02810526266694069, + -0.004633552394807339, + 0.0029328675009310246, + -0.06064113602042198, + -0.014367624185979366, + -0.005938420072197914, + -0.06372031569480896, + -0.03033481165766716, + 0.01702100969851017, + -0.006274397484958172, + 0.015039915218949318, + -0.009692482650279999, + -0.001405669143423438, + -0.0038393496070057154, + -0.06998943537473679, + 0.013821986503899097, + -0.004590313415974379, + -0.007916848175227642, + 0.01693958230316639, + 0.030302060768008232, + -0.029186595231294632, + 0.014966833405196667, + -0.006209443788975477, + 0.05000543221831322, + -0.031679291278123856, + -0.009464114904403687, + 0.11793333292007446, + 0.008166912011802197, + -0.01652405969798565, + 0.012956175021827221, + 0.08609777688980103, + 0.03601476177573204, + -0.013923184014856815, + -0.036700569093227386, + -0.007834149524569511, + -0.016192898154258728, + 0.02856825292110443, + 0.027604831382632256, + 0.009626835584640503, + -0.024026164785027504, + -0.014851409941911697, + -0.018826769664883614, + 0.05474710091948509, + 0.007365050259977579, + -0.01291121356189251, + -0.002984029706567526, + 0.0159376859664917, + -0.03686610609292984, + 0.017576521262526512, + 0.05645764619112015, + -0.006039951462298632, + 0.0463838167488575, + 0.002961438149213791, + 0.009482604451477528, + 0.020518356934189796, + -0.014073692262172699, + -0.066783107817173, + -0.018614426255226135, + -0.014319307170808315, + -0.029150089249014854, + 0.04348517209291458, + 0.00921813677996397, + 0.03462519124150276, + -0.0011439311783760786, + -0.038436852395534515, + -0.004460783675312996, + -0.04004133492708206, + 0.028570909053087234, + -0.0009998675668612123, + 0.012077447958290577, + 0.006765933241695166, + -0.015767579898238182, + 0.022113259881734848, + 0.003463433589786291, + -0.07449233531951904, + 0.04474911838769913, + -0.016659818589687347, + 0.029896046966314316, + 0.044949643313884735, + -0.02005154639482498, + 0.03919302299618721, + -0.04882434010505676, + 0.03866046667098999, + 0.06307031959295273, + 0.0609935037791729, + -0.06130834296345711, + -0.02924143709242344, + -0.005042336881160736, + -0.06106536462903023, + 0.0268905907869339, + 0.004071610514074564, + -0.03976801037788391, + 0.016874514520168304, + 0.005755497608333826, + 0.00011269132664892823, + 6.94970294716768e-05, + 0.039878107607364655, + -0.0011848834110423923, + -0.023356333374977112, + 0.005711635574698448, + -0.08350065350532532, + 0.05068875476717949, + -0.027865095064044, + -0.02794346585869789, + -0.004302849527448416, + 0.015295485034584999, + -0.004300400149077177, + -0.0044786883518099785, + -0.023273156955838203, + 0.004505957942456007, + -0.006072435528039932, + -0.01678924635052681, + 0.0051986766047775745, + 0.08297715336084366, + -0.01182519644498825, + -0.011340099386870861, + -0.024835551157593727, + -0.04416104778647423, + 0.023770177736878395, + 0.009067746810615063, + 0.051585543900728226, + 0.0034896223805844784, + 0.023677505552768707, + -0.016557859256863594, + -0.05465187877416611, + 0.0012028331402689219, + 0.0006127259694039822, + -0.03869888186454773, + 0.06222739443182945, + -0.013867154717445374, + -0.035505399107933044, + 0.008419928140938282, + 0.02820141240954399, + -0.028912244364619255, + 0.018489232286810875, + -0.01722091995179653, + -0.031378086656332016, + 0.009693849831819534, + 0.012153996154665947, + -0.01102651096880436, + 0.012083754874765873, + -0.0434064045548439, + -0.01793595589697361, + -0.0037434680853039026, + -0.026539037004113197, + 0.030641937628388405, + -0.06151137128472328, + 0.029743487015366554, + 0.030959857627749443, + 0.027892109006643295, + -0.023769358173012733, + 0.041142482310533524, + -0.043522920459508896, + -0.011528970673680305, + -0.038963913917541504, + 0.027049440890550613, + 0.008643437176942825, + -0.013936812058091164, + -0.018804235383868217, + -0.021393269300460815, + 0.04950084164738655, + -0.03235470876097679, + -0.046301037073135376, + 0.0034791564103215933, + -0.034421633929014206, + -0.03685136139392853, + -0.004190473817288876, + -0.009645071811974049, + 0.024290811270475388, + -0.02620811201632023, + -0.040996771305799484, + -0.012319784611463547, + -0.019424615427851677, + -0.06350083649158478, + -0.018463291227817535, + 0.013061060570180416, + -0.020487919449806213, + 0.08412077277898788, + -0.014835601672530174, + -0.013073672540485859, + 0.019974738359451294, + -0.021963976323604584, + -0.03227110207080841, + -0.017666567116975784, + 0.026148531585931778, + -0.015392124652862549, + -0.014502163045108318, + -0.003834151430055499, + -0.052838340401649475, + 0.0012130772229284048, + -0.010215901769697666, + -0.024043157696723938, + 0.008766783401370049, + -0.006056542973965406, + -0.012566053308546543, + -0.019359057769179344, + 0.008484064601361752, + -0.0010822734329849482, + -0.018262533470988274, + -0.037411924451589584, + 0.03666310757398605, + 0.016414741054177284, + 0.011281411163508892, + 0.009078465402126312, + -0.028085622936487198, + -0.0019362622406333685, + 0.002838088432326913, + -0.0024101748131215572, + 0.019781574606895447, + -0.03133435919880867, + 0.024896634742617607, + -0.011958717368543148, + 0.01885145902633667, + 0.027673697099089622, + -0.04065205529332161, + -0.016230473294854164, + -0.05753796175122261, + -0.0185980424284935, + -0.04899150878190994, + -0.02507060021162033, + 0.004279757849872112, + 0.004215002991259098, + 0.025745097547769547, + 0.061590712517499924, + 0.047620825469493866, + -0.034325070679187775, + -0.009565501473844051, + -0.013615400530397892, + -0.0065467469394207, + -0.13956613838672638, + 0.01221214234828949, + -0.03949512541294098, + 0.010094105266034603, + -0.03846907243132591, + 0.013743162155151367, + -0.015696315094828606, + -0.00855166744440794, + -0.05208887904882431, + -0.042755261063575745, + -0.05862199887633324, + -0.017331236973404884, + 0.007127232849597931, + -0.0072715566493570805, + 0.016609271988272667, + -0.0029189183842390776, + 0.03631622716784477, + -0.0031569013372063637, + -0.03891744092106819, + 0.046647872775793076, + -0.031307633966207504, + -0.02132253535091877, + 0.05246893689036369, + 0.03726591914892197, + 0.03468296304345131, + -0.0014770416310057044, + 0.004787500947713852, + 0.03208135440945625, + -0.027211623266339302, + -0.06562890857458115, + -0.022022943943738937, + 0.060620423406362534, + 0.04851793125271797, + 0.010730269365012646, + -0.024887535721063614, + 0.036905743181705475, + 0.0009569938411004841, + 0.0446757934987545, + 0.013705389574170113, + 0.024865848943591118, + 0.0129994573071599, + 0.005117255263030529, + -0.04151061549782753, + 0.015869563445448875, + 0.011201519519090652, + 0.04452246427536011, + -0.020534425973892212, + 0.008219444192945957, + -0.020168514922261238, + -0.011434108950197697, + -0.0014727951493114233, + 0.020343972370028496, + 0.018153762444853783, + 0.021772712469100952, + 0.015471983700990677, + -0.009607432410120964, + -0.030230116099119186, + -0.01571469195187092, + -0.0055243815295398235, + -0.0020988674368709326, + -0.016008524224162102, + 0.03441069647669792, + -0.01410381868481636, + -0.05118035525083542, + -0.013978857547044754, + 0.016022440046072006, + -0.011637013405561447, + 0.013765375129878521, + -0.03953167796134949, + 0.02263878472149372, + -0.001981471199542284, + -0.03775765374302864, + -0.019441667944192886, + -0.050175029784440994, + 0.0009354460635222495, + 0.03297128528356552, + -0.039284296333789825, + -0.024049701169133186, + -0.0349339097738266, + -0.03115886263549328, + 0.001647989614866674, + -0.026624077931046486, + -0.03825095668435097, + 0.012874467298388481, + 0.051782600581645966, + 0.009000461548566818, + -0.02452552691102028, + -0.005235111806541681, + -0.044998809695243835, + 0.03378066420555115, + -0.01269082073122263, + -0.04198554530739784, + 0.01160104013979435, + -0.02046804130077362, + 0.03002002090215683, + 0.00563013507053256, + -0.002627242123708129, + 0.024444948881864548, + 0.009055468253791332, + -0.02799883484840393, + 0.003833821741864085, + -0.0033063965383917093, + 0.04231882467865944, + 0.008992446586489677, + -0.0007261157734319568, + -0.04405665770173073, + -0.012046855874359608, + -0.004319673404097557, + 0.018608583137392998, + -0.016252048313617706, + 0.022711822763085365, + 0.0078634237870574, + -0.001385946641676128, + -0.017405737191438675, + -0.011118377558887005, + -0.004014533944427967, + 0.009947064332664013, + 0.07619131356477737, + -0.005269623827189207, + -0.010869310237467289, + -0.015898337587714195, + -0.040129970759153366, + 0.04373273625969887, + -0.00841029267758131, + 0.021529950201511383, + 0.0167817585170269, + 0.010116812773048878, + 0.0033373585902154446, + 0.01589486189186573, + 0.003908600192517042, + 0.0005157564301043749, + -0.0640462189912796, + 0.03824296593666077, + 0.016643572598695755, + -0.013658221811056137, + -0.036626797169446945, + -0.022819314152002335, + 0.05686424672603607, + 0.011258024722337723, + -0.011815271340310574, + 0.010472006164491177, + -0.03943399712443352, + 0.020863713696599007, + -0.0425720140337944, + -0.0004973365576006472, + -0.0025071511045098305, + -0.013848811388015747, + -0.006130950525403023, + 0.007494634948670864, + -0.05758840590715408, + 0.013205252587795258, + 0.059781912714242935, + -0.0054439702071249485, + 0.04139820486307144, + -0.01663133315742016, + 0.03395109623670578, + 0.0010855019791051745, + 0.008111248724162579, + 0.05909948796033859, + 0.0232833418995142, + -0.02199908345937729, + -0.020871536806225777, + 0.00998078752309084, + -0.007904627360403538, + 0.008238833397626877, + -1.42684102684143e-05, + -0.020825553685426712, + -0.02903813309967518, + -0.05757789686322212, + 0.010542504489421844, + 0.0045679472386837006, + 0.019375517964363098, + 0.0026231626980006695, + -0.035152893513441086, + 0.06017211824655533, + -0.008419870398938656, + 0.024888047948479652, + -0.02514483593404293, + 0.05004606023430824, + 0.0010035621235147119, + -0.023528283461928368, + 0.014986961148679256, + 0.041025370359420776, + -0.04528525099158287, + 0.05286058038473129, + 0.03145512193441391, + 0.006182930897921324, + 0.003733172081410885, + -0.010866203345358372, + -0.01758762262761593, + -0.03871403634548187, + -0.005023350939154625, + 0.05100146681070328, + -0.03196074441075325, + 0.024361852556467056, + -0.011171875521540642, + 0.01956353709101677, + 0.0008546524913981557, + 0.013984791934490204, + -0.004905130714178085, + 0.0012071551755070686, + -0.014065560884773731, + -0.044355377554893494, + 0.01194491982460022, + -0.011642725206911564, + -0.02444539964199066, + -0.004169507417827845, + 0.034005023539066315, + 0.008243782445788383, + 0.03385769575834274, + -0.041820328682661057, + -0.014895059168338776, + -0.03581416234374046, + 0.03087167628109455, + -0.008138392120599747, + -0.007745241280645132, + 0.051655832678079605, + 0.03262735903263092, + 0.0076689631678164005, + -0.03297697380185127, + 0.050574228167533875, + 0.011315266601741314, + 0.05508514493703842, + -0.0005538492696359754, + -0.020992133766412735, + -0.009640947915613651, + 0.005802883300930262, + -0.012363869696855545, + 0.0011613192036747932, + -0.0006279439548961818, + -0.08531732112169266, + 0.0019139243522658944, + -0.011542648077011108, + 0.009619111195206642, + 0.03481622785329819, + 0.019749315455555916, + 0.0013538948260247707, + 0.03127841278910637, + -0.04979262128472328, + 0.007822881452739239, + 0.013042161241173744, + -0.006941712461411953, + -0.024083120748400688, + -0.006853274069726467 + ], + "start_index": 0, + "end_index": 140, + "token_count": 47, + "file_type": "avap_code", + "filename": "validacion_in_pertenece_a_lista.avap", + "addParam": true, + "addResult": true, + "assignment": true, + "if": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "c0eaf51e-ea59-52d5-be9b-e0c8afb0671f", + "_source": { + "text": "try()\n RequestGet(\"https://api.test.com/data\", 0, 0, respuesta, None)\nexception(e)\n addVar(error_trace, e)\n addResult(error_trace)\nend()", + "embedding": [ + -0.0206698477268219, + -0.011746666394174099, + 0.0009084084304049611, + 0.041428592056035995, + -0.03859607130289078, + -0.015209369361400604, + -0.00950196199119091, + 0.052737846970558167, + -0.03775404766201973, + -0.02028844878077507, + 0.0012060310691595078, + 0.015801988542079926, + -0.0157669298350811, + 0.02910682186484337, + 0.0017419828800484538, + 0.011675826273858547, + -0.006626428104937077, + -0.01741296611726284, + 0.004968562163412571, + 0.006678303238004446, + 0.0022554073948413134, + 0.04704058915376663, + -0.007957804016768932, + -0.003665293101221323, + 0.0224133413285017, + -0.014009506441652775, + -0.032157279551029205, + -0.019051944836974144, + 0.001953709637746215, + -0.0133595559746027, + 0.01726635731756687, + -0.032457925379276276, + -0.001426182803697884, + -0.06346183270215988, + -0.04264680668711662, + 0.011243250221014023, + -0.02148001454770565, + -0.029194163158535957, + -0.03477424755692482, + 0.02843494527041912, + -0.01768907532095909, + -0.013089773245155811, + -0.0032771991100162268, + -0.05346737802028656, + 0.05080217868089676, + 0.0021253807935863733, + 0.02215154655277729, + -0.002367854816839099, + -0.030856139957904816, + -0.009141569957137108, + -0.004684519022703171, + 0.00030477141262963414, + 0.06835202127695084, + 0.023601366207003593, + -0.003004449186846614, + -0.0037187307607382536, + 0.00626405980437994, + -0.0016743371961638331, + -0.025444980710744858, + -0.001968002412468195, + -0.05123624578118324, + -0.03605806082487106, + -0.051224078983068466, + 0.03612538427114487, + 0.04408690705895424, + 0.02419661357998848, + 0.009982505813241005, + 0.03972841426730156, + -0.004829224664717913, + -0.010286417789757252, + 0.004928667563945055, + 0.010628001764416695, + -0.03042595088481903, + -0.027450652793049812, + -0.07908427715301514, + 0.02549179643392563, + 0.02837381139397621, + -0.0038197513204067945, + -0.012351684272289276, + -0.028638072311878204, + -0.007924073375761509, + -0.00910074170678854, + -0.015350879170000553, + -0.0005986568285152316, + 0.0402812585234642, + -0.015385337173938751, + -0.019245212897658348, + -0.02134278416633606, + -0.035140298306941986, + 0.04168934375047684, + 0.007550273556262255, + -0.039129048585891724, + 0.007629163097590208, + -0.04233742132782936, + -0.031220940873026848, + -0.04948759078979492, + 0.0202479287981987, + 0.02763223648071289, + 0.05096130073070526, + -0.0007473861332982779, + 0.0006470094667747617, + -0.016384048387408257, + 0.00824045017361641, + -0.043626293540000916, + 0.06411051005125046, + -0.022395366802811623, + 0.05678558722138405, + -0.023817146196961403, + 0.010805320926010609, + 0.0018031757790595293, + -0.008720465004444122, + -0.02346756123006344, + 0.0140453539788723, + 0.017205944284796715, + 0.03606996685266495, + -0.04314219206571579, + -0.009857365861535072, + 0.019134022295475006, + 0.028829632326960564, + 0.00939266849309206, + 0.05330667644739151, + 0.013586579822003841, + 0.04656754434108734, + -0.013181036338210106, + -0.02484803833067417, + 0.02649044245481491, + -0.03013462945818901, + 0.05073980987071991, + 0.018837856128811836, + 0.02455487847328186, + 0.003840171732008457, + -0.01155324000865221, + -0.0013019234174862504, + -0.0001745526387821883, + -0.030220841988921165, + -0.004842016380280256, + -0.0038771831896156073, + 0.046609289944171906, + -0.0056610191240906715, + -0.06187251955270767, + 0.01601969450712204, + 0.059578537940979004, + 0.007958054542541504, + -0.008655560202896595, + 0.08257029205560684, + -0.05856843292713165, + 0.07369063794612885, + -0.007212319876998663, + 0.021997684612870216, + 0.004938570782542229, + -0.021582268178462982, + -0.0038838086184114218, + 0.014716191217303276, + -0.032493624836206436, + 0.007268569897860289, + 0.0035092560574412346, + -0.015137693844735622, + -0.001276045455597341, + 0.03568427264690399, + -0.0007256828248500824, + -0.020671624690294266, + 0.0030524178873747587, + -0.031859248876571655, + -0.007600812241435051, + 0.014564210548996925, + -0.018046237528324127, + 0.010028335265815258, + -0.028600165620446205, + -0.015406413935124874, + -0.0386275090277195, + 0.028968794271349907, + -0.009759724140167236, + 0.02685062400996685, + -0.018352674320340157, + -0.027942439541220665, + 0.037690021097660065, + 0.03487135469913483, + 0.04468389227986336, + -0.011976306326687336, + -0.04644187539815903, + -0.015658853575587273, + -0.015491845086216927, + -0.0036493202205747366, + -0.05674939975142479, + -0.00758186262100935, + 0.010201914235949516, + 0.005349112208932638, + 0.016734154894948006, + -0.017191460356116295, + 0.04013167694211006, + -0.02670561522245407, + -0.02339915744960308, + 0.07990327477455139, + -0.003580287331715226, + 0.02104846201837063, + -0.0007425258518196642, + 0.01567731611430645, + 0.013321197591722012, + -0.02352249063551426, + -0.01251077838242054, + -0.025826141238212585, + 0.038036465644836426, + 0.040001507848501205, + -0.01758609525859356, + -0.002577071078121662, + 0.012756518088281155, + 0.024289589375257492, + -0.06255949288606644, + 0.0449153296649456, + -0.0614556185901165, + 0.02150236815214157, + 0.031233102083206177, + -0.06084531173110008, + 0.020551197230815887, + -0.018536025658249855, + -0.00547922495752573, + -0.006153070833534002, + -0.01899779587984085, + -0.02654554881155491, + -0.007589161861687899, + -0.02799180895090103, + 0.05466605722904205, + 0.02765987440943718, + 0.021745432168245316, + 0.031236540526151657, + -0.012303386814892292, + -0.019529184326529503, + 0.03767610713839531, + -0.027544621378183365, + -0.0403611846268177, + 0.008179020136594772, + -0.009975163266062737, + 0.015887925401329994, + -0.029751555994153023, + 0.047522082924842834, + -0.027612946927547455, + 0.007778875529766083, + -0.0006912949029356241, + 0.0455595888197422, + 0.016346760094165802, + -0.020633559674024582, + -0.0408548079431057, + 0.05702097713947296, + -0.00962186697870493, + -0.04279478266835213, + -0.042555905878543854, + 0.001187521731480956, + 0.010425866581499577, + -0.030650030821561813, + -0.030078411102294922, + -0.00521887419745326, + -0.04753158986568451, + -0.01426500454545021, + 0.009586471132934093, + 0.010128937661647797, + -0.020317185670137405, + 0.04432230442762375, + 0.006541898008435965, + -0.0071497648023068905, + 0.04903988167643547, + -0.0029702188912779093, + 0.0199747234582901, + 0.00481241662055254, + 0.006157764233648777, + -0.020488707348704338, + 0.004361141938716173, + -0.04492174834012985, + -0.011173848994076252, + -0.002957249991595745, + -0.04308151453733444, + -0.009780283086001873, + 0.011429959908127785, + -0.001295949798077345, + -0.0023904629051685333, + -0.0038559783715754747, + 0.021185997873544693, + -0.03386591002345085, + -0.01179363764822483, + 0.07366099953651428, + 0.040581464767456055, + -0.013692550361156464, + 0.03938642516732216, + 0.023082127794623375, + 0.006786109879612923, + 0.027840573340654373, + 0.0024000885896384716, + 0.05436283349990845, + -0.023933980613946915, + -0.001605756813660264, + -0.03512774035334587, + 0.003996785264462233, + -0.006210938561707735, + 0.08830859512090683, + -0.004987132269889116, + -0.0013847507070749998, + 0.029065964743494987, + 0.01934797503054142, + -0.1450001746416092, + -0.0320233590900898, + -0.015452677384018898, + -0.0024987179785966873, + -0.004724898841232061, + 0.016377989202737808, + -0.011376263573765755, + -0.008771747350692749, + -0.01650906912982464, + 0.017968934029340744, + 0.011719801463186741, + -0.05941401422023773, + -0.0029349559918045998, + -0.05172164738178253, + -0.02101665548980236, + -0.012905295938253403, + -0.0438772551715374, + -0.0005669512902386487, + -0.01504512969404459, + -0.04311559349298477, + -0.012848827056586742, + 0.0020865530241280794, + 0.0215463750064373, + -0.033075932413339615, + -0.0398995578289032, + -0.0319909006357193, + 0.010756787844002247, + 0.003947258926928043, + -0.03814011812210083, + 0.06133536994457245, + -0.03046802431344986, + 0.010492846369743347, + 0.0014869438018649817, + 0.025841569527983665, + 0.023100217804312706, + 0.050173040479421616, + 0.0021972896065562963, + 0.01147216185927391, + 0.012480918318033218, + -0.016988098621368408, + 0.03985919803380966, + 0.03335520625114441, + -0.023935027420520782, + -0.006227630190551281, + 0.015346239320933819, + 0.017018698155879974, + 0.01056099496781826, + -0.005664839409291744, + -0.05396869778633118, + 0.008030084893107414, + 0.00806369073688984, + -0.054358914494514465, + -0.0030601550824940205, + -0.018851911649107933, + -0.024321304634213448, + -0.0030028766486793756, + -0.024486349895596504, + -0.007628319784998894, + -0.025152407586574554, + 0.008801097981631756, + -0.0016278423136100173, + -0.028606126084923744, + 0.02132979780435562, + 0.01916552521288395, + 0.017037004232406616, + -0.035955484956502914, + 0.0544603131711483, + 0.024214666336774826, + 0.03610990568995476, + -0.015091190114617348, + 0.04782618209719658, + -0.022772166877985, + -0.026757819578051567, + 0.010995602235198021, + 0.031384944915771484, + -0.015764253214001656, + -0.02397528849542141, + -0.0003785708104260266, + -0.046105142682790756, + -0.1029682606458664, + -0.007751046679913998, + 0.014616115018725395, + -0.009524903260171413, + 0.02486090362071991, + -0.00846443884074688, + -0.016859931871294975, + -0.016791248694062233, + 0.02258644625544548, + 0.04648503661155701, + 0.22983373701572418, + 0.02364197187125683, + -0.004240787122398615, + -0.0008275886066257954, + 0.007928484119474888, + -0.028670046478509903, + 0.0157098900526762, + 0.029916904866695404, + -0.014225329272449017, + -0.019111307337880135, + -0.03233037143945694, + -0.008781678043305874, + -0.04515985772013664, + -0.022173793986439705, + -0.023366756737232208, + 0.0026189491618424654, + -0.01779787801206112, + 0.007592881564050913, + 0.04652981832623482, + -0.00643644155934453, + 0.04589672014117241, + -0.022202976047992706, + -0.0578424297273159, + -0.01248775515705347, + -0.05131223797798157, + -0.029422754421830177, + -0.03021416999399662, + 0.002938950201496482, + -0.014356659725308418, + -0.0031774318777024746, + 0.0005682065384462476, + 0.008848986588418484, + -0.01828789710998535, + 0.0006533795385621488, + -0.04044617712497711, + -0.006940444931387901, + 0.010812731459736824, + -0.057321272790431976, + 0.01605302095413208, + -0.033249013125896454, + 0.061378758400678635, + -0.0050223227590322495, + 0.01845553144812584, + 0.09157925099134445, + -0.015247921459376812, + 0.009737587533891201, + -0.004443150945007801, + -0.041102029383182526, + -0.026661964133381844, + -0.025295773521065712, + -0.00618364242836833, + -0.04545579478144646, + -0.01677231676876545, + 0.004010425414890051, + 0.040583059191703796, + -0.01689518243074417, + 0.005301980767399073, + 0.017121698707342148, + -0.051183849573135376, + 0.027228910475969315, + 0.04532018303871155, + 0.0057624331675469875, + -0.04210306331515312, + -0.027941446751356125, + -0.04072042182087898, + 0.005346038844436407, + 0.013698660768568516, + -0.0197371207177639, + 0.05219930037856102, + 0.06053399294614792, + -0.0027917895931750536, + 0.020540717989206314, + 0.014393063262104988, + 0.004116845782846212, + 0.010534468106925488, + -0.01612795703113079, + 0.030743231996893883, + 0.04642391577363014, + -0.036608774214982986, + 0.07130774855613708, + -0.008111154660582542, + 0.015127898193895817, + -0.08974943310022354, + 0.04481341689825058, + 0.0012012541992589831, + 0.004221634473651648, + 0.01891733519732952, + 0.04173186793923378, + -0.005354763939976692, + 0.022447196766734123, + -0.0034132669679820538, + -0.004937965422868729, + -0.0030241196509450674, + 0.0008376830955967307, + 0.0015178993344306946, + 0.046419963240623474, + 0.03288308531045914, + -0.0029356619343161583, + 0.00024332515022251755, + 0.01551168505102396, + -0.049671564251184464, + -0.0060783387161791325, + 0.014217372983694077, + 0.009690266102552414, + 0.01789422519505024, + -0.05355973169207573, + -0.030355071648955345, + -0.02720794826745987, + 0.018210047855973244, + -0.010604016482830048, + -0.015322279185056686, + 0.03699037805199623, + 0.0010186088038608432, + -0.0336633026599884, + -0.03682442754507065, + 0.0359695665538311, + 0.017098985612392426, + 0.02000175416469574, + 0.006501681637018919, + 0.023213351145386696, + -0.032798442989587784, + -0.014512438327074051, + -0.0035218510311096907, + -0.02302100509405136, + -0.0004367959627415985, + -0.054058004170656204, + 0.0265505351126194, + 0.021998057141900063, + -0.01889602653682232, + 0.05202483385801315, + 0.03559485822916031, + -0.00819048099219799, + 0.0012892151717096567, + 0.014027412980794907, + 0.009617066010832787, + 0.010548573918640614, + 0.06678643822669983, + 0.03077295608818531, + 0.03181803598999977, + 0.03466310352087021, + -0.02137184888124466, + -0.03412199392914772, + -0.0031117156613618135, + 0.02682637795805931, + 0.0043048979714512825, + -0.019901877269148827, + -0.0023323793429881334, + 0.0018310496816411614, + -0.021349653601646423, + -4.635801087715663e-05, + 0.0406247079372406, + 0.007082602009177208, + 0.06163819134235382, + -0.015217314474284649, + -0.008984651416540146, + -0.06815501302480698, + -0.0026759267784655094, + 0.03061254322528839, + -0.04514045640826225, + -0.005478114355355501, + 0.0021312881726771593, + 0.011029752902686596, + -0.007200710475444794, + 0.026783477514982224, + -0.0037567163817584515, + 0.01073294784873724, + -0.029391497373580933, + -0.016111407428979874, + 0.016813745722174644, + 0.025272993370890617, + 0.01698712259531021, + -0.01169633213430643, + -0.06154511868953705, + 0.018985744565725327, + 0.0009618323529139161, + -0.014519825577735901, + -0.05213109776377678, + -0.013620429672300816, + 0.015481904149055481, + -0.04947591572999954, + 0.011445432901382446, + -0.05866200476884842, + -0.017199771478772163, + 0.020150458440184593, + -0.0012291204184293747, + 5.335741661838256e-05, + -0.029513001441955566, + 0.00527584832161665, + 0.02315746247768402, + -0.005537905264645815, + -0.02697623334825039, + 0.11792461574077606, + 0.02171836979687214, + -0.025780746713280678, + 0.029398726299405098, + 0.06245659664273262, + 0.05455341562628746, + 0.028828587383031845, + -0.03412778303027153, + -0.01449799444526434, + -0.0010716276010498405, + -0.0005048440652899444, + -0.005509576760232449, + 0.0246579572558403, + 0.001676236279308796, + 0.00413572508841753, + -0.06381937116384506, + -0.0022571843583136797, + -0.014068103395402431, + 0.005989061202853918, + 0.02196948044002056, + 0.043474774807691574, + -0.024370474740862846, + -0.008044247515499592, + 0.040146082639694214, + -0.02707945555448532, + 0.06570963561534882, + -0.01032782532274723, + 0.0071415952406823635, + 0.011722154915332794, + -0.04729132726788521, + -0.025146260857582092, + 0.03593571484088898, + 0.0003619210619945079, + -0.038579583168029785, + 0.03207185119390488, + -0.026393897831439972, + -0.01772352121770382, + 0.030237941071391106, + -0.0022777817212045193, + -0.010745626874268055, + -0.011587097309529781, + 0.021154504269361496, + 0.01867740973830223, + 0.014501859433948994, + -0.016728350892663002, + -0.007843336090445518, + 0.044853001832962036, + -0.04491895064711571, + -0.03540380299091339, + 0.01390221156179905, + -0.004061778075993061, + 0.038159485906362534, + 0.05338483303785324, + -0.0033752957824617624, + 0.06826750189065933, + -0.05069113150238991, + -0.035201821476221085, + 0.032387278974056244, + 0.020214369520545006, + 1.4835099136689678e-05, + -0.04940906912088394, + 0.00951897632330656, + -0.011578558012843132, + 0.034474823623895645, + 0.05005556717514992, + -0.0413571260869503, + 0.017038747668266296, + -0.03169206902384758, + -0.002477728994563222, + 0.018244609236717224, + 0.033827584236860275, + -0.012143212370574474, + -0.0022131756413728, + 0.021262355148792267, + -0.043022286146879196, + 0.03122471645474434, + -0.048728346824645996, + -0.008046930655837059, + 0.003840309102088213, + 0.0030145973432809114, + 0.004172520246356726, + -0.021651340648531914, + 0.006187580060213804, + -0.023633789271116257, + -0.018550118431448936, + -0.026325218379497528, + -0.02985016070306301, + 0.007287001237273216, + -0.0015634669689461589, + -0.05368455871939659, + -0.016878269612789154, + -0.0259792972356081, + -0.005029071122407913, + 0.03529379516839981, + 0.030792778357863426, + -0.025766199454665184, + 0.03518357500433922, + 0.00633619911968708, + -0.06345946341753006, + 0.0075069270096719265, + -0.0008548377081751823, + -0.027317659929394722, + 0.02232377789914608, + -0.014488626271486282, + -0.02696949988603592, + 0.004620559047907591, + 0.00685475068166852, + -0.025414492934942245, + 0.005370635073632002, + -0.014242531731724739, + -0.03834960609674454, + -0.025367803871631622, + 0.01930617354810238, + -0.05964965373277664, + 0.016091175377368927, + -0.05484021082520485, + 0.021243866533041, + 0.07669578492641449, + 0.029754625633358955, + 0.02866765856742859, + -0.08071679621934891, + 0.01663913205265999, + 0.05835994705557823, + 0.032561324536800385, + -0.025374259799718857, + 0.06916265189647675, + -0.00944563839584589, + -0.005132824648171663, + -0.014776498079299927, + 0.011831114999949932, + -0.0547729916870594, + -0.024528060108423233, + 0.04189848154783249, + 0.0203599464148283, + -0.028939688578248024, + -0.01450115442276001, + -0.008784174919128418, + -0.006223986390978098, + -0.02522077038884163, + -0.060142092406749725, + -0.005341262556612492, + -0.03725789487361908, + 0.0006401976570487022, + -0.044682785868644714, + 0.010554494336247444, + 0.010400762781500816, + -0.030027655884623528, + -0.032511502504348755, + -0.013724240474402905, + 0.016393207013607025, + -0.01278818678110838, + 0.10232438892126083, + -0.034755606204271317, + -0.022774960845708847, + -0.009144090116024017, + -0.028824161738157272, + -0.0052550178952515125, + -0.004977202974259853, + 0.032667119055986404, + 0.018849235028028488, + 0.009184437803924084, + -0.022852811962366104, + -0.03796325996518135, + -0.0026357988826930523, + -0.017276465892791748, + -0.014370955526828766, + 0.04478110373020172, + 0.05555301904678345, + -0.006777751725167036, + -0.025750281289219856, + 0.025293298065662384, + -0.021893763914704323, + -0.022415054962038994, + -0.035065583884716034, + 0.00906676147133112, + 0.02926023118197918, + 0.04285925254225731, + -0.029287854209542274, + 0.00221647578291595, + 0.0007072563748806715, + 0.055802952498197556, + 0.014005444943904877, + 0.014897956512868404, + 0.0077031683176755905, + 0.05903734266757965, + -0.028302527964115143, + 0.023410005494952202, + 0.010894853621721268, + 0.01728307269513607, + -0.029847826808691025, + 0.008082957938313484, + -0.03697142377495766, + -0.049017373472452164, + -0.03535258769989014, + 0.012316673062741756, + -0.013347337022423744, + 0.01859516091644764, + 0.05018341913819313, + 0.06189518794417381, + -0.002119294833391905, + -0.012444935739040375, + -0.0509871169924736, + 0.01084438618272543, + -0.14350645244121552, + 0.00973247829824686, + -0.006000757683068514, + 0.0032263139728456736, + -0.00610200222581625, + -0.02103794924914837, + -0.014549863524734974, + -0.032987967133522034, + -0.025734353810548782, + -0.05238361656665802, + -0.07222773134708405, + -0.02276095561683178, + 0.009754212573170662, + -0.023712249472737312, + 0.030682552605867386, + -0.00417923741042614, + 0.013179200701415539, + -0.0023466211277991533, + -0.01742766983807087, + -0.023949788883328438, + -0.012507768347859383, + -0.036854542791843414, + 0.04090467840433121, + 0.0083116814494133, + -0.045500654727220535, + 0.015576439909636974, + 0.019744031131267548, + 0.010588344186544418, + -0.021134043112397194, + -0.036724407225847244, + -0.011529986746609211, + 0.009319458156824112, + 0.016888996586203575, + 0.04241190850734711, + 0.007695435546338558, + 0.016087567433714867, + -0.024026943370699883, + 0.04561604559421539, + -0.016897473484277725, + 0.052831217646598816, + 0.034797392785549164, + 0.03940116614103317, + -0.027156013995409012, + 0.013228326104581356, + 0.053781431168317795, + 0.003966676536947489, + -0.013909893110394478, + -0.025124259293079376, + -0.027219735085964203, + -0.03665420413017273, + 0.0007820023456588387, + 0.044266700744628906, + -0.02924766205251217, + 0.0019994776230305433, + 0.025055481120944023, + -0.04970678687095642, + -0.05018806830048561, + -0.010834822431206703, + -0.022069046273827553, + -0.011108328588306904, + -0.01408511120826006, + 0.04667027294635773, + -0.0381232313811779, + -0.07775450497865677, + 0.007798334583640099, + 0.02908993326127529, + -0.029500050470232964, + 0.021432165056467056, + -0.014159695245325565, + -0.014784561470150948, + -0.004798086825758219, + 0.02907140739262104, + 0.02232659049332142, + -0.03745761886239052, + -0.019339099526405334, + 0.034474220126867294, + 0.022528162226080894, + -0.0007719941204413772, + -0.03733162209391594, + -0.02161627821624279, + -0.05588071048259735, + 0.010743889026343822, + -0.04211996868252754, + 0.018006285652518272, + 0.02462155371904373, + -0.014140868559479713, + 0.003649194026365876, + 0.03482254594564438, + -0.04487422853708267, + -0.018486959859728813, + -0.01260622963309288, + -0.06712111085653305, + 0.029764816164970398, + 0.007580254226922989, + 0.009852862916886806, + 0.021967804059386253, + 0.022662976756691933, + -0.007386783603578806, + 0.041965506970882416, + -0.0012764374259859324, + 0.0009683131938800216, + -0.01347339991480112, + 0.04644951969385147, + -0.02259390614926815, + -0.01857076957821846, + 0.02483302354812622, + -0.01832105778157711, + 0.013531731441617012, + -0.018636193126440048, + 0.02475588209927082, + -0.01665928028523922, + 0.003510393900796771, + -0.0488521046936512, + 0.02940220572054386, + -0.02340030111372471, + -0.0005396983469836414, + -0.015594232827425003, + 0.04797317087650299, + -0.015245222486555576, + -0.02602836675941944, + 0.033786922693252563, + 0.0059249429032206535, + 0.027076037600636482, + -0.005773428827524185, + 0.05305761098861694, + 0.02509249560534954, + 0.013142822310328484, + 0.012693699449300766, + -0.01351188775151968, + 0.05290624871850014, + -0.01465957798063755, + -0.01714145950973034, + 0.0311476718634367, + 0.021817171946167946, + 0.007046095095574856, + 0.004583011381328106, + -0.057315051555633545, + 0.039885252714157104, + -0.02400677464902401, + -0.03599785268306732, + -0.020992320030927658, + -0.028804287314414978, + 0.0646318644285202, + -0.030359772965312004, + -0.019688474014401436, + 0.02909904718399048, + -0.015141557902097702, + 0.0036129888612776995, + 0.009176140651106834, + -0.027258822694420815, + 0.03202104941010475, + -0.0313398614525795, + -0.03547264263033867, + 0.08915093541145325, + -0.05015186592936516, + 0.027214616537094116, + 0.019063040614128113, + -0.023227643221616745, + -0.02828091010451317, + -0.0015481869922950864, + -0.032589543610811234, + -0.03602788969874382, + 0.022331075742840767, + 0.001476069912314415, + -0.006369497161358595, + -0.0013016904704272747, + -0.0328686386346817, + 0.0028026329819113016, + -0.04863284155726433, + 0.016049271449446678, + -0.043634653091430664, + -0.016670692712068558, + -0.0200927946716547, + 0.014049511402845383, + 0.058670755475759506, + -0.011959723196923733, + 0.008882968686521053, + -0.029118694365024567, + 0.06693275272846222, + -0.012795497663319111, + 0.009595079347491264, + 0.028588350862264633, + 0.03211815282702446, + -0.003033457323908806, + 0.020604996010661125, + 0.018977319821715355, + 0.020498139783740044, + 0.07613872736692429, + 0.011841214261949062, + 0.010214382782578468, + 0.0017450453015044332, + -0.0010980935767292976, + 0.026670072227716446, + -0.011544263921678066, + 0.06675935536623001, + -0.017585594207048416, + 0.026621242985129356, + -0.0017809499986469746, + -0.019696351140737534, + 0.0208887979388237, + -0.03178379312157631, + 0.005428992677479982, + -0.039731089025735855, + -0.029416868463158607, + -0.0048643359914422035, + -0.031109564006328583, + 0.012806624174118042, + 0.008809938095510006, + 0.053259577602148056, + 0.03179442882537842, + -0.01712825894355774, + -0.013242010027170181, + -0.016512643545866013, + 0.007655321154743433, + -0.011242319829761982, + -0.03890293464064598, + 0.017460906878113747, + 0.018125062808394432, + 0.02154136262834072, + 0.0007523955428041518, + 0.013144062831997871, + 0.032534316182136536, + 0.026710854843258858, + -0.01842655800282955, + -0.02292574569582939, + -0.004735112655907869, + -0.012027125805616379, + 0.019775496795773506, + 0.009366397745907307, + -0.035990867763757706, + -0.06136316433548927, + 0.010880539193749428, + -0.01564864069223404, + 0.03709324821829796, + 0.020242664963006973, + 0.015278278850018978, + 0.03815702348947525, + 0.033742453902959824, + -0.023949505761265755, + 0.052550364285707474, + -0.031068449839949608, + 0.01241413876414299, + -0.022344643250107765, + -0.007295412477105856 + ], + "start_index": 0, + "end_index": 145, + "token_count": 42, + "file_type": "avap_code", + "filename": "try_catch_request.avap", + "RequestGet": true, + "addResult": true, + "addVar": true, + "try": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "e7e45838-a28f-5109-8432-0329528c3aaf", + "_source": { + "text": " function es_valido(token){\n response = False\n if(token, \"SECRET\", \"=\")\n response = True\n end()\n return(response)\n }\nautorizado = es_valido(\"SECRET\")\naddResult(autorizado)", + "embedding": [ + 0.023547498509287834, + -0.020202459767460823, + 0.025776268914341927, + -0.0035759664606302977, + -0.024054991081357002, + -0.0327196903526783, + 0.026096390560269356, + 0.05654400587081909, + -0.00313142454251647, + -0.03462967276573181, + -0.015287507325410843, + 0.007655149791389704, + -0.020761001855134964, + 0.01544774230569601, + 0.003012059722095728, + -0.008081663399934769, + 0.019712798297405243, + 0.01898660883307457, + 0.0007062656804919243, + 0.009542694315314293, + -0.05732288584113121, + 0.02692652866244316, + -0.005503897089511156, + 0.0004940314684063196, + 0.026301264762878418, + -0.00544718699529767, + 0.025448203086853027, + -0.026284096762537956, + -0.032411158084869385, + -0.030284693464636803, + 0.00791309867054224, + -0.009416886605322361, + -0.042092978954315186, + -0.0485258549451828, + -0.012474617920815945, + -0.007923013530671597, + 0.007565377280116081, + 0.0034341474529355764, + -0.010844827629625797, + 0.009986397810280323, + 0.01805475726723671, + -0.029202206060290337, + 0.021015871316194534, + -0.07978080213069916, + 0.02822052501142025, + -0.006404572632163763, + 0.03915942832827568, + -0.02218366041779518, + -0.01688326522707939, + 0.006375128868967295, + 0.01149123627692461, + 0.010516861453652382, + 0.03579309210181236, + 0.0045570023357868195, + 0.011233708821237087, + 0.052444539964199066, + -0.002128523774445057, + -0.026594942435622215, + -0.016071602702140808, + -0.024730807170271873, + 0.015528259798884392, + -0.031038794666528702, + -0.06814707815647125, + 0.03740737587213516, + 0.01635012775659561, + 0.0029330251272767782, + 0.034253329038619995, + 0.010182010009884834, + 0.004399079363793135, + -0.02655649743974209, + 0.03476596623659134, + 0.024504510685801506, + -0.023777246475219727, + -0.015212916769087315, + -0.057124774903059006, + -0.0016213200287893414, + 0.009055478498339653, + 0.05132270231842995, + -0.03198928013443947, + -0.009922267869114876, + -0.010452008806169033, + 0.035509221255779266, + 0.00845184363424778, + 0.021701209247112274, + 0.04670190066099167, + -0.00733001297339797, + -0.03868522122502327, + 0.021137995645403862, + -0.009214009158313274, + 0.05835595726966858, + -0.022535424679517746, + -0.017226485535502434, + 0.02521246112883091, + -0.06544474512338638, + 0.0011813524179160595, + -0.0020100257825106382, + 0.008990831673145294, + 0.023310957476496696, + 0.017238318920135498, + 0.013750775717198849, + 0.022584358230233192, + 0.028881335631012917, + 0.020967479795217514, + -0.022900963202118874, + 0.04587942734360695, + 0.0377679243683815, + 0.025485340505838394, + -0.010456026531755924, + 0.014644037932157516, + -0.0023907111026346684, + 0.006578594911843538, + 0.011113230139017105, + -0.02887563593685627, + 0.013718032278120518, + -0.003215272445231676, + -0.024759512394666672, + -0.006150613073259592, + 0.030910445377230644, + 0.003585649188607931, + 0.0301669929176569, + 0.012994148768484592, + 0.004220845643430948, + -0.013488397002220154, + -0.03188829496502876, + -0.02123800478875637, + 0.0050000944174826145, + -0.011384828947484493, + 0.0012957897270098329, + 0.01995232328772545, + 0.03180673345923424, + 0.004575709346681833, + -0.03795546293258667, + -0.017957497388124466, + -0.02240515500307083, + -0.05453774705529213, + 0.01144250389188528, + -0.044027119874954224, + 0.06293255090713501, + 0.04148967191576958, + -0.07232655584812164, + 0.05367804691195488, + 0.08343174308538437, + 0.01867073029279709, + -0.00996613409370184, + 0.04847424849867821, + -0.06107735633850098, + 0.04374608397483826, + -0.01546074915677309, + 0.014729657210409641, + 0.0029668216593563557, + 0.026674171909689903, + 0.010036354884505272, + -0.0026713311672210693, + 0.028795041143894196, + 0.03946274518966675, + -0.002267700619995594, + -0.006775553338229656, + -0.00421486422419548, + -0.005153218749910593, + 0.06807482242584229, + -0.008389635942876339, + -0.015708651393651962, + -0.004622617270797491, + 0.02660752646625042, + 0.03636644780635834, + -0.006135771982371807, + -0.012167002074420452, + -0.014702249318361282, + -0.033040616661310196, + 0.014550860971212387, + -0.0062028998509049416, + -0.041001059114933014, + -0.028280509635806084, + -0.03031308762729168, + -0.0251265037804842, + 0.015922391787171364, + 0.04606189578771591, + 0.026190919801592827, + 0.0026082179974764585, + -0.06129930168390274, + -0.016686730086803436, + -0.006445036269724369, + 0.007001292426139116, + -0.032869432121515274, + -0.017004985362291336, + -0.021214762702584267, + 0.015218419022858143, + -0.019711583852767944, + -0.003844562452286482, + 0.024695776402950287, + -0.04265781491994858, + -0.027241384610533714, + 0.03792810067534447, + 0.01577593758702278, + -0.028645239770412445, + -0.00870405975729227, + 0.0004830837424378842, + -0.012969257310032845, + 0.0021083022002130747, + -0.041571810841560364, + -0.038113873451948166, + 0.0035149098839610815, + 0.015356501564383507, + -0.06641118228435516, + 0.01448768563568592, + 0.012838711962103844, + 0.0021532918326556683, + -0.02504570595920086, + 0.038673579692840576, + -0.0015331001486629248, + 0.016130836680531502, + 0.048338882625103, + -0.03309343010187149, + 0.030286187306046486, + 0.02226262167096138, + 0.005835408810526133, + -0.007703437935560942, + -0.013558275066316128, + 0.010492438450455666, + -0.02442367561161518, + -0.017053961753845215, + 0.07249076664447784, + -0.00631888210773468, + 0.05262083560228348, + 0.012578153051435947, + 0.03963609039783478, + -1.1756327694456559e-05, + 0.04439084976911545, + -0.03397940844297409, + -0.007040013559162617, + 0.0033010130282491446, + -0.015597530640661716, + -0.031578030437231064, + 0.009501324035227299, + 0.052726972848176956, + -0.03664444386959076, + -0.05131544917821884, + 0.021106284111738205, + 0.027429087087512016, + -0.035832490772008896, + -0.02981848455965519, + -0.013612736016511917, + 0.03752456605434418, + 0.004569627344608307, + -0.026471199467778206, + 0.019801298156380653, + -0.012100836262106895, + 0.028881454840302467, + -0.016128936782479286, + -0.04028448835015297, + -0.026081843301653862, + -0.021113406866788864, + -0.00677811075001955, + 0.0036858809180557728, + -0.012913905084133148, + 0.002691981615498662, + 0.06992229074239731, + -0.009700953960418701, + -0.018854856491088867, + -0.0038997973315417767, + 0.005005418788641691, + -0.0022598779760301113, + -0.026449309661984444, + 0.04613693431019783, + 0.02934248372912407, + -0.00558122806251049, + 0.032807882875204086, + 0.016314946115016937, + -0.0034541336353868246, + -0.05040630325675011, + 0.013711715117096901, + 0.040616475045681, + -0.0010576333152130246, + 0.013742947950959206, + 0.01644289493560791, + -0.010821528732776642, + -0.03034041076898575, + 0.0018844262231141329, + 0.10009656101465225, + 0.011822519823908806, + -0.02552654780447483, + -0.0018705008551478386, + 0.0004933209856972098, + -0.023571137338876724, + 0.010163797996938229, + -0.08086764812469482, + -0.002815301064401865, + -0.007505831308662891, + 0.007145192474126816, + -0.03635447099804878, + -0.03363071382045746, + -0.0051188706420362, + 0.08145678788423538, + 0.013289233669638634, + -0.02426629699766636, + -0.006467119324952364, + 0.03518419340252876, + -0.16993160545825958, + -0.06110207736492157, + 0.03514420613646507, + -0.01067837979644537, + 0.00010191074397880584, + 0.0225719902664423, + -0.04151597246527672, + -0.014407934620976448, + -0.05502767115831375, + 0.03182927891612053, + -0.0012205392122268677, + -0.05392683297395706, + -0.0014129620976746082, + -0.009576001204550266, + 0.01183043047785759, + -0.0011834056349471211, + -0.0024601686745882034, + 0.02350751869380474, + 0.007143467199057341, + -0.046086810529232025, + -0.013408616185188293, + -0.05802168697118759, + 0.04708902910351753, + -0.03080647438764572, + -0.03974805027246475, + -0.02975771203637123, + 0.015537897124886513, + -0.044500984251499176, + -0.016776790842413902, + 0.02344551496207714, + 0.004500238224864006, + 0.008731698617339134, + -0.001577615737915039, + -0.014944392256438732, + 0.0309763066470623, + 0.006675420794636011, + -0.0076834773644804955, + 0.0002272863785037771, + 0.0331328809261322, + 0.015685711055994034, + 0.051861200481653214, + 0.02429707534611225, + -0.014136511832475662, + 0.0025934178847819567, + -0.017473140731453896, + 0.028901908546686172, + 0.0201057530939579, + -0.014113053679466248, + -0.051874108612537384, + 0.01152372919023037, + -0.016178159043192863, + -0.05057219788432121, + -0.04806319251656532, + -0.022276446223258972, + -0.05600984767079353, + 0.018216976895928383, + 0.013102361001074314, + -0.005686129909008741, + -0.023982780054211617, + -0.006070297677069902, + -0.006200771313160658, + -0.048255156725645065, + 0.02854616567492485, + -0.041153084486722946, + -0.004932626150548458, + 0.002968216547742486, + 0.05334066227078438, + 0.026194948703050613, + 0.046597547829151154, + -0.029660075902938843, + 0.015714071691036224, + -0.010970111936330795, + 0.009632556699216366, + -0.004863295704126358, + 0.02556759864091873, + 0.0031876969151198864, + 0.004652904812246561, + -0.023468900471925735, + 0.023360218852758408, + -0.12425875663757324, + 0.008660759776830673, + 0.007788186892867088, + -0.04164447262883186, + 0.02987603098154068, + -0.010878471657633781, + -0.020235266536474228, + -0.01160980574786663, + -0.003250792855396867, + 0.014471683651208878, + 0.22706349194049835, + 0.02661258913576603, + 0.00885529350489378, + -0.015870919451117516, + 0.0292474664747715, + -0.008321170695126057, + 0.02437535859644413, + 0.02427772805094719, + -0.013634397648274899, + -0.027892878279089928, + 0.003588700434193015, + 0.03273941949009895, + -0.017471613362431526, + -0.004086881875991821, + -0.02110130712389946, + 0.033076900988817215, + -0.027000026777386665, + 0.03286420926451683, + 0.05646582692861557, + -0.004143076948821545, + 0.015940627083182335, + -0.020571017637848854, + -0.052336592227220535, + 0.00406241649761796, + -0.08616329729557037, + 0.004433774389326572, + -0.03438128903508186, + -0.0005513433134183288, + -0.01701364666223526, + -0.01775616593658924, + -0.0001942709495779127, + 0.0126504460349679, + 0.018185319378972054, + 0.012319572269916534, + -0.01523098349571228, + 0.005718550179153681, + 0.035877540707588196, + 0.00549370376393199, + -0.03774840757250786, + 0.01737046055495739, + -0.005411882419139147, + -0.007034598384052515, + 0.015189136378467083, + 0.06502767652273178, + -0.031016523018479347, + 0.016705593094229698, + 0.009518836624920368, + 0.007978408597409725, + -0.00014474814815912396, + 0.005218374077230692, + -0.031151866540312767, + -0.03574782982468605, + 0.015058789402246475, + -0.014869778417050838, + 0.03315339237451553, + -0.004541284404695034, + -0.03890172392129898, + 0.03202453628182411, + -0.021795904263854027, + 0.033189911395311356, + 0.048802245408296585, + -0.002920763799920678, + -0.018134772777557373, + 0.03666941449046135, + 0.011816327460110188, + 0.045757949352264404, + 0.04351569339632988, + -0.01985825225710869, + 0.041077159345149994, + 0.059500616043806076, + 0.011412462219595909, + -0.003990286961197853, + 0.003178071929141879, + 0.006676605436950922, + -0.003493878524750471, + 0.005489609204232693, + 0.015650862827897072, + -0.0006464116158895195, + -0.04165620729327202, + 0.02175227180123329, + -0.0018926800694316626, + -0.028065307065844536, + -0.05461997911334038, + 0.05475357919931412, + -0.006542922928929329, + 0.022937772795557976, + 0.02140427939593792, + 0.039176877588033676, + 0.02181749977171421, + 0.023457881063222885, + -0.04515354707837105, + 0.012918473221361637, + 0.004358045756816864, + -0.028456369414925575, + -0.021525725722312927, + 0.05006952956318855, + -0.06456208229064941, + 0.03728201612830162, + -0.028104720637202263, + 0.0332217663526535, + 0.0036741201765835285, + -0.003836840856820345, + 0.04079335927963257, + 0.031224682927131653, + 0.021038373932242393, + -0.03785102069377899, + -0.02041206881403923, + -0.046330682933330536, + -0.01683206297457218, + 0.004470716696232557, + -0.04487281292676926, + 0.002959734993055463, + 0.014946316368877888, + -0.039025116711854935, + -0.013279186561703682, + 0.08296074718236923, + -0.01092691719532013, + 0.0025729534681886435, + 0.01928950473666191, + 0.06111575663089752, + -0.021062007173895836, + -0.015561267733573914, + -0.038297198712825775, + 0.024683762341737747, + -0.029293911531567574, + -0.0530155710875988, + -0.0161854587495327, + 0.06429550796747208, + -0.02926086075603962, + 0.07002359628677368, + 0.025797013193368912, + -0.021103963255882263, + 0.022774823009967804, + 0.010251613333821297, + -0.005738310981541872, + 0.0019459094619378448, + 0.07253208011388779, + -0.0029505779966712, + 0.020641546696424484, + 0.02873816527426243, + -0.033607468008995056, + 0.014620973728597164, + -0.01797185093164444, + -0.013193263672292233, + 0.015845054760575294, + -0.011052542366087437, + 0.013468008488416672, + 0.0347006730735302, + -0.009103184565901756, + 0.0040381294675171375, + 0.02102791517972946, + 0.059430401772260666, + 0.014161753468215466, + -0.06754545122385025, + -0.002345668850466609, + -0.07749968767166138, + -0.010135604068636894, + -0.05387294664978981, + -0.01145110186189413, + -0.01987457647919655, + 0.006801886949688196, + 0.013762730173766613, + 0.017113931477069855, + 0.040830474346876144, + -0.035817813128232956, + -0.003485638415440917, + -0.01535922009497881, + -0.00627472810447216, + -0.006650129333138466, + -0.008892422541975975, + 0.022025415673851967, + -0.035070884972810745, + -0.03077794797718525, + 0.017668409273028374, + 0.029801061376929283, + -0.02084406279027462, + -0.0476682186126709, + -0.00868748128414154, + -0.022942164912819862, + -0.055274598300457, + 0.023301340639591217, + -0.039469052106142044, + -0.03496784716844559, + -0.010756869800388813, + 0.03865661099553108, + 0.03326950594782829, + 0.019801924005150795, + 0.0020442060194909573, + 0.050032153725624084, + -0.03151656687259674, + -0.011665472760796547, + 0.07552354037761688, + -0.02480166405439377, + 0.0009692467283457518, + 0.011389287188649178, + 0.05238724499940872, + -0.008867226541042328, + -0.004587427247315645, + -0.04384074732661247, + 0.011183812282979488, + 0.01775592938065529, + 0.002775428583845496, + -0.006919925566762686, + 0.011006916873157024, + -0.01681699976325035, + 0.00018615619046613574, + -0.01180170476436615, + 0.024490151554346085, + 0.008848666213452816, + 0.0008756877505220473, + -0.011505001224577427, + 0.020944111049175262, + -0.041754044592380524, + -0.0058395820669829845, + 0.008099591359496117, + -0.024262210354208946, + 0.05638876184821129, + -0.013108816929161549, + 0.019103633239865303, + 0.005240178667008877, + -0.032825130969285965, + -0.032792918384075165, + 0.005582299083471298, + -0.007924449630081654, + -0.04112783446907997, + -0.0026875108014792204, + -0.04675585776567459, + -0.03182074427604675, + 0.0028258857782930136, + -0.003690136829391122, + -0.017566097900271416, + -0.01358331274241209, + 0.0012356893857941031, + 0.020964503288269043, + 0.023737840354442596, + 0.014967581257224083, + -0.04923463240265846, + 0.022612521424889565, + -0.010279273614287376, + -0.02590780332684517, + 0.03505263105034828, + 0.004126569256186485, + 0.022619491443037987, + 0.04980131983757019, + -0.038168445229530334, + 0.07344367355108261, + -0.05184168741106987, + -0.005360906478017569, + 0.01561710610985756, + -0.01949269510805607, + -0.02741672471165657, + -0.046578679233789444, + -0.015871763229370117, + -0.021519511938095093, + 0.02561553195118904, + 0.04889300838112831, + -0.029573718085885048, + 0.022712286561727524, + -0.0230454970151186, + -0.018528610467910767, + -0.02405519410967827, + 0.026292262598872185, + -0.011665310710668564, + 0.00013404713536147028, + 0.034534718841314316, + -0.05429665744304657, + 0.03372923284769058, + -0.036749955266714096, + -0.010667289607226849, + -0.0364191010594368, + -0.010629091411828995, + 0.010560153983533382, + 0.004833844490349293, + -0.027971122413873672, + 0.014365637674927711, + 0.023348180577158928, + -0.02152617834508419, + -0.05806015059351921, + 0.006088622380048037, + 0.04102162644267082, + -0.022878890857100487, + 0.019724229350686073, + -0.03924636170268059, + 0.04120520502328873, + 0.015240167267620564, + 0.0515776164829731, + -0.027583137154579163, + 0.0023448157589882612, + -0.013369305990636349, + -0.06565302610397339, + 0.004813349340111017, + -0.00393826887011528, + -0.01985909789800644, + 0.09500819444656372, + -0.04573642462491989, + -0.023895010352134705, + -0.0287151038646698, + -0.04313420131802559, + -0.016001099720597267, + -0.0037530111148953438, + -0.02642018347978592, + -0.0010701896389946342, + -0.027592504397034645, + 0.010562576353549957, + -0.014731141738593578, + 0.00876645278185606, + -0.01870865933597088, + -0.00576263852417469, + 0.04131025820970535, + -0.03150870278477669, + 0.01993175968527794, + -0.022302202880382538, + 0.038140442222356796, + 0.015925800427794456, + -0.016841989010572433, + -0.04101594537496567, + 0.03960936889052391, + -0.009879102930426598, + -0.039728980511426926, + 0.0035030727740377188, + -0.015068132430315018, + -0.036207374185323715, + -0.04681537300348282, + 0.04256661608815193, + 0.009810840710997581, + -0.01156870648264885, + -0.041192613542079926, + -0.0009215035825036466, + -0.007134373299777508, + -0.023050343617796898, + -0.04238509759306908, + -0.011541045270860195, + -0.0055211810395121574, + 0.012174864299595356, + -0.037980932742357254, + 0.03304329141974449, + 0.0004290983488317579, + -0.014388793148100376, + -0.030930081382393837, + -0.026615651324391365, + -0.00289702950976789, + 0.004502277821302414, + 0.11624462157487869, + -0.015932926908135414, + -0.008701283484697342, + 0.019924219697713852, + -0.009644285775721073, + -0.032473739236593246, + -0.023928293958306313, + -0.023963777348399162, + -0.029987962916493416, + 0.006165946833789349, + -0.007690155878663063, + -0.049597207456827164, + 0.02069041319191456, + 0.04093753173947334, + -0.016797563061118126, + 0.038015954196453094, + 0.021351058036088943, + 0.04307762160897255, + -0.009198598563671112, + 0.027026699855923653, + -0.025701869279146194, + -0.03949441760778427, + -0.034520912915468216, + 0.03285272419452667, + 0.027258826419711113, + 0.0159935150295496, + 0.0012687303824350238, + 0.027696631848812103, + -0.015108119696378708, + 0.030657289549708366, + 0.0027931532822549343, + 0.030195346102118492, + -0.00269485916942358, + 0.04468619078397751, + -0.04646516591310501, + -0.0017601035069674253, + 0.016221871599555016, + -0.0020646133925765753, + 0.0036066975444555283, + 0.009861411526799202, + -0.030842062085866928, + -0.0334182009100914, + 0.029434924945235252, + -0.020284216850996017, + -0.018702732399106026, + 0.059253957122564316, + 0.06565474718809128, + -0.011395464651286602, + -0.022219790145754814, + 0.00893819984048605, + -0.023843159899115562, + -0.01048895251005888, + -0.14814381301403046, + 0.04198767617344856, + -0.006837102118879557, + 0.025551123544573784, + -0.02644616737961769, + 0.008706096559762955, + 0.029412437230348587, + -0.02952149510383606, + -0.01702243462204933, + -0.039239492267370224, + -0.021891454234719276, + -0.02817949652671814, + -0.0023932820186018944, + -0.03364547714591026, + 0.03516402468085289, + -0.038162920624017715, + 0.03772367537021637, + 0.007850096561014652, + -0.006129161454737186, + 0.04555374011397362, + -0.029005523771047592, + -0.047426797449588776, + 0.0037016021087765694, + -0.013105289079248905, + -0.03744250908493996, + 0.022192038595676422, + 0.006477728020399809, + 0.060103949159383774, + -0.018631059676408768, + -0.05518650263547897, + -0.021804990246891975, + 0.006076364777982235, + 0.02744279056787491, + 0.017412094399333, + 0.005500134080648422, + 0.019577283412218094, + -0.009664779528975487, + 0.07458893209695816, + -0.03424675762653351, + 0.036133911460638046, + 0.023919928818941116, + 0.011590619571506977, + -0.03638758882880211, + -0.01559471245855093, + 0.03645849600434303, + 0.05481300875544548, + -0.017848603427410126, + 0.005829900037497282, + -0.06900356709957123, + -0.03860446438193321, + 0.01257835328578949, + -0.025787126272916794, + -0.008260502479970455, + 0.026068389415740967, + 0.009069133549928665, + 0.007564264815300703, + -0.04718703031539917, + 0.01531672477722168, + -0.016180340200662613, + 0.023185789585113525, + -0.01645491272211075, + 0.039971429854631424, + -0.040489524602890015, + -0.026106243953108788, + -0.031976163387298584, + 0.013799316249787807, + -0.03931150212883949, + 0.016115212813019753, + 0.010580248199403286, + -0.01595347374677658, + -0.01100013218820095, + 0.02510969527065754, + -0.025259332731366158, + -0.0365837924182415, + -0.003902557771652937, + 0.007459776941686869, + 0.012431073933839798, + -0.022119766101241112, + -0.01617571897804737, + -0.02691328339278698, + -0.036247845739126205, + -0.02181747741997242, + -0.02977076545357704, + 0.022373666986823082, + 0.03497013822197914, + 0.007918953895568848, + -0.03663139045238495, + 0.048288583755493164, + -0.027222776785492897, + 0.029590044170618057, + -0.018893776461482048, + -0.07070928066968918, + 0.015166038647294044, + 0.027426650747656822, + -0.027716705575585365, + 0.0010010764235630631, + -0.006991087459027767, + 0.029348479583859444, + 0.013335518538951874, + -0.06355887651443481, + 0.025825975462794304, + -0.06307882070541382, + 0.023314688354730606, + -0.003300209529697895, + -0.028326572850346565, + -0.026872195303440094, + 0.059396978467702866, + -0.0010052922880277038, + 0.002258369931951165, + 0.0027498342096805573, + 0.05821659043431282, + 0.035972654819488525, + -0.062227483838796616, + 0.015545503236353397, + -0.03271131590008736, + -0.027557559311389923, + -0.00856882892549038, + 0.04090673476457596, + -0.04233860597014427, + -0.009750012308359146, + 0.004290073644369841, + -0.021711399778723717, + 0.022362560033798218, + -0.029980024322867393, + -0.005638191942125559, + 0.01439825538545847, + 0.03334216773509979, + 0.025306537747383118, + 0.02373536303639412, + -0.018878377974033356, + 0.003998079802840948, + -0.03630002960562706, + -0.026401620358228683, + 0.02619553729891777, + 0.012105665169656277, + -0.044979244470596313, + -0.019294695928692818, + 0.026471663266420364, + -0.02397448755800724, + -0.03864942118525505, + -0.009582322090864182, + -0.027468854561448097, + 0.010269176214933395, + -0.03494057431817055, + -0.03477753698825836, + 0.026279235258698463, + 0.028726983815431595, + 0.031239455565810204, + -0.028566349297761917, + -0.03222840279340744, + 0.03143785148859024, + 0.034896090626716614, + -0.016393359750509262, + 0.03647054731845856, + -0.038059137761592865, + 0.04118191823363304, + -0.005386207718402147, + -0.019214801490306854, + -0.027406278997659683, + 0.03267880529165268, + -0.03177713230252266, + 0.001869276282377541, + -0.0038632547948509455, + 0.013265814632177353, + -0.011371618136763573, + -0.011469843797385693, + -0.03694574162364006, + -0.026280293241143227, + -0.0014377899933606386, + 0.04141206666827202, + -0.03266371414065361, + 0.052191704511642456, + -0.016452666372060776, + 0.035046812146902084, + 0.05025947466492653, + 0.033525511622428894, + 0.04120342805981636, + -0.012729715555906296, + 0.028576532378792763, + -0.008454441092908382, + 0.005265938583761454, + 0.03933637961745262, + 0.01575462892651558, + -0.013200368732213974, + 0.03362688794732094, + 0.01448193471878767, + 0.00010795798152685165, + 0.02609194628894329, + 0.05132337659597397, + -0.016845297068357468, + -0.013848420232534409, + 0.0024814007338136435, + 0.006793153006583452, + -0.023335224017500877, + 0.030545439571142197, + 0.007447308395057917, + 0.013817338272929192, + -0.035229139029979706, + 0.0153074124827981, + 0.02025456540286541, + -0.04538162797689438, + -0.030896708369255066, + -0.0156619343906641, + 0.010539348237216473, + 0.020819025114178658, + -0.004302504006773233, + 0.03931350260972977, + 0.005657864734530449, + 0.004718044772744179, + 0.026003342121839523, + -0.07071377336978912, + -0.004780279938131571, + -0.05298345535993576, + -0.018628569319844246, + 0.026403237134218216, + -0.03835572302341461, + 0.06160594895482063, + 0.006074491422623396, + 0.03405299037694931, + -0.002942256396636367, + -0.00690231379121542, + 0.04540623724460602, + 0.034077517688274384, + -0.00650741346180439, + -0.03065100498497486, + 0.002085532294586301, + -0.028001785278320312, + 0.008729002438485622, + -0.008299607783555984, + 0.04281998425722122, + -0.037142932415008545, + 0.00818265974521637, + 0.03811883553862572, + 0.019750913605093956, + -0.010587887838482857, + 0.015481785871088505, + -0.021896881982684135, + 0.008918006904423237, + -0.01021755300462246, + 0.016734188422560692, + 0.014794540591537952, + -0.004415350500494242, + 0.0033736489713191986, + 0.02254737913608551 + ], + "start_index": 0, + "end_index": 193, + "token_count": 49, + "file_type": "avap_code", + "filename": "funcion_validacion_acceso.avap", + "addResult": true, + "assignment": true, + "function": true, + "if": true, + "return": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "1e458faf-1064-5cf1-8be8-5783341f39d9", + "_source": { + "text": "addVar(base, 1000)\naddVar(copia, $base)\naddResult(copia)", + "embedding": [ + 0.01827428489923477, + 0.00863409973680973, + -0.04825073480606079, + 0.07717441022396088, + -0.04651853069663048, + -0.001184739638119936, + 0.024923278018832207, + 0.03884804993867874, + -0.02405485138297081, + -0.026956677436828613, + -0.00749350106343627, + 0.017578907310962677, + -0.010567632503807545, + 0.0055299983359873295, + 0.00458853505551815, + 0.026566457003355026, + -0.050724953413009644, + -0.012093035504221916, + -0.00706098647788167, + -0.0016043904470279813, + 0.0036044602748006582, + 0.017099997028708458, + -0.0041904086247086525, + 0.030109256505966187, + -0.04063677042722702, + -0.03835778683423996, + -0.02878974936902523, + -0.015607524663209915, + 0.007863071747124195, + -0.005040911957621574, + -0.013080431148409843, + -0.03554663434624672, + 0.025256924331188202, + -0.04797740653157234, + -0.04142646864056587, + 0.018692221492528915, + -0.03142673149704933, + -0.00830898992717266, + -0.04510720074176788, + 0.02571108750998974, + -0.03880837559700012, + 0.024587595835328102, + -0.022093957290053368, + -0.008932770229876041, + 0.026210278272628784, + 0.004762047901749611, + 0.024056656286120415, + -0.021025482565164566, + -0.043862905353307724, + -0.015529554337263107, + 0.005973514169454575, + -0.008780105039477348, + 0.04558191075921059, + -0.003332827240228653, + 0.03798892721533775, + 0.0152133172377944, + -0.041927870362997055, + -0.005763849709182978, + -0.030790288001298904, + -0.01783551089465618, + -0.05093911290168762, + 0.0291003305464983, + -0.05454672500491142, + 0.020663226023316383, + -0.0059263622388243675, + 0.027963871136307716, + -0.0153759540989995, + 0.05010117217898369, + -0.01631731539964676, + -0.01918655075132847, + 0.009745323099195957, + 0.022313591092824936, + 0.03343159332871437, + -0.02696496807038784, + -0.07547978311777115, + -0.0032723897602409124, + 0.03532581776380539, + -0.04068624600768089, + -0.059269391000270844, + -0.030406778678297997, + -0.008777358569204807, + -0.01202529575675726, + 0.002725311554968357, + -0.013744988478720188, + -0.0491492860019207, + 0.022327635437250137, + 0.0010325137991458178, + 0.024663904681801796, + -0.027936451137065887, + 0.030921394005417824, + -0.02078596130013466, + -0.012796714901924133, + 0.006343288812786341, + -0.05660966411232948, + -0.033565156161785126, + -0.019191142171621323, + -0.018734794110059738, + 0.019650060683488846, + 0.057729464024305344, + 0.05694400519132614, + -0.006659326143562794, + 0.051947079598903656, + 0.018537338823080063, + -0.012875520624220371, + 0.06835950165987015, + 0.0002726667153183371, + -0.0029107960872352123, + -0.011663134209811687, + -0.022683504968881607, + -0.018829362466931343, + 0.016193421557545662, + -0.0006752876797690988, + 0.00281648151576519, + -0.006042963359504938, + 0.01489474531263113, + -0.04706953838467598, + -0.027510100975632668, + -0.02354678139090538, + 0.029967309907078743, + 0.02947004698216915, + 0.02063867263495922, + -0.013892428018152714, + 0.10320757329463959, + -0.007379420567303896, + -0.006857420317828655, + 0.029262566938996315, + 0.0028560778591781855, + -0.004436712246388197, + -0.024450795724987984, + 0.021140718832612038, + -6.999041033850517e-06, + 0.032373491674661636, + -0.0028355340473353863, + 0.010657691396772861, + -0.03942089155316353, + -0.04418912157416344, + -0.014653651975095272, + 0.045152582228183746, + -0.01040353998541832, + -0.05974098667502403, + 0.005889627616852522, + 0.014791712164878845, + 0.04469280317425728, + -0.023437315598130226, + 0.051894862204790115, + -0.051052194088697433, + 0.03850608319044113, + 0.0017355482559651136, + 0.03098859079182148, + -0.005276072770357132, + -0.02074904553592205, + 0.010318707674741745, + 0.034848347306251526, + -0.0037242223042994738, + 0.039765581488609314, + -0.029445981606841087, + 0.02950444445014, + 0.033306535333395004, + -0.019077463075518608, + -0.015264027751982212, + 0.006050534080713987, + -0.017386265099048615, + 0.01164143718779087, + -0.02945350483059883, + 0.030085071921348572, + -0.000739628856536001, + 0.05211250111460686, + -0.026946941390633583, + -0.015281730331480503, + -0.029225073754787445, + 0.03463071957230568, + -0.007054896093904972, + 0.026782482862472534, + 0.00438985088840127, + 0.01872364431619644, + 0.010974399745464325, + 0.024970106780529022, + 0.023571766912937164, + 0.016885049641132355, + -0.05637397617101669, + 0.002183506265282631, + -0.0080619091168046, + -0.03369279205799103, + -0.02329866960644722, + -0.03218383714556694, + 0.016150474548339844, + -0.014938820153474808, + -0.01017115730792284, + 0.004229625687003136, + 0.04977624490857124, + 0.0002783951931633055, + -0.002741350093856454, + 0.06447382271289825, + -0.005067534279078245, + 0.022183002904057503, + 0.0015511824749410152, + -0.01576639525592327, + -0.028505295515060425, + -0.005991049576550722, + 0.005699466913938522, + -0.03378002718091011, + 0.0452176071703434, + -0.002445773920044303, + -0.03292040526866913, + 0.007110096048563719, + 0.0059881992638111115, + -0.027816129848361015, + -0.06365334987640381, + 0.030886774882674217, + 0.009827205911278725, + 0.048022352159023285, + -0.012141555547714233, + -0.04189019650220871, + 0.039582207798957825, + -0.009893160313367844, + -0.006158615928143263, + -0.0041289678774774075, + -0.03575650602579117, + -0.01537865400314331, + -0.03171536326408386, + -0.042203765362501144, + 0.06099025905132294, + 0.0016073231818154454, + 0.03425532579421997, + -0.0042291623540222645, + -0.01992255449295044, + -0.006849939469248056, + 0.033464640378952026, + 0.002586362650617957, + -0.03150813281536102, + -0.058427851647138596, + 0.002467801794409752, + 0.02550583705306053, + -0.014137751422822475, + 0.03701695054769516, + -0.013187941163778305, + -0.016647031530737877, + 0.040391065180301666, + -0.0036011594347655773, + -0.0182186309248209, + 0.0010973302414640784, + -0.008464784361422062, + 0.016642890870571136, + -0.008011490106582642, + -0.04713098704814911, + -0.029219074174761772, + -0.026393504813313484, + 0.0340648777782917, + -0.03609766066074371, + -0.017533425241708755, + -0.025167759507894516, + -0.016510743647813797, + -0.021805211901664734, + -0.01656930148601532, + 0.012415922246873379, + -0.016210347414016724, + 0.045716412365436554, + 0.014240095391869545, + -0.0056787473149597645, + 0.03303254395723343, + 0.02623932436108589, + 0.0031001069582998753, + -0.011981573887169361, + 0.03606642782688141, + 0.002696502720937133, + -0.0014182619052007794, + -0.022720659151673317, + 0.023784849792718887, + 0.006210273131728172, + -0.003808501875028014, + 0.04953355714678764, + 0.03210281580686569, + 0.014246360398828983, + 0.02187117375433445, + -0.001894469722174108, + 0.034343820065259933, + 0.003240997903048992, + -0.02923901565372944, + 0.0782223641872406, + 0.01999264396727085, + 0.013793118298053741, + 0.008659831248223782, + 0.02159358374774456, + -0.008720600977540016, + 0.05803665518760681, + 0.029669228941202164, + 0.019766345620155334, + -0.013946260325610638, + -0.000980499666184187, + -0.06490787118673325, + -0.021917598322033882, + 0.00743927713483572, + 0.06244813650846481, + -0.0011150314239785075, + -0.016133518889546394, + 0.03611219301819801, + -0.0054440549574792385, + -0.13893954455852509, + -0.015829486772418022, + -0.049133047461509705, + 0.008401532657444477, + 9.304947161581367e-05, + -0.003609558567404747, + -0.044813912361860275, + 0.007990135811269283, + -0.06538980454206467, + 0.0573161356151104, + -0.012536630965769291, + -0.05784669518470764, + 0.001444598427042365, + -0.04630761221051216, + -0.010092973709106445, + -0.0024133094120770693, + -0.006708895321935415, + -0.02023109793663025, + -0.0006067047361284494, + -0.02505163662135601, + -0.056256745010614395, + -0.022616252303123474, + 0.031571753323078156, + -0.03574882447719574, + -0.04223867878317833, + 0.0021143797785043716, + -0.02071070484817028, + 0.029178228229284286, + -0.03534902632236481, + 0.018842533230781555, + -0.029204754158854485, + -0.03376289829611778, + 0.0036477046087384224, + 0.033353324979543686, + -0.01253968384116888, + 0.045272741466760635, + 0.030496399849653244, + 0.006941469851881266, + 0.021633939817547798, + -0.03918704017996788, + 0.03918997570872307, + 0.054751403629779816, + -0.009378829970955849, + 0.03940390422940254, + 0.01186144258826971, + 0.0021829837933182716, + -0.01060520764440298, + 0.011302279308438301, + -0.033764030784368515, + -0.011254063807427883, + -0.013597646728157997, + -0.0468212254345417, + 0.006009387318044901, + -0.01027577556669712, + -0.04631956294178963, + 0.016866745427250862, + -0.052842315286397934, + 0.016706563532352448, + -0.015759292989969254, + 0.01755497232079506, + -0.019008535891771317, + -0.020134782418608665, + 0.002664420520886779, + 0.010574109852313995, + -0.006899616681039333, + 0.01707467809319496, + 0.034668080508708954, + 0.03739100694656372, + 0.04457404091954231, + -0.02526126801967621, + 0.06616218388080597, + -0.05089274048805237, + -0.035136640071868896, + 0.01534744817763567, + 0.030767064541578293, + -0.029014404863119125, + -0.046051423996686935, + -0.017678624019026756, + 0.0003870997461490333, + -0.10214541107416153, + -0.002310103038325906, + -0.012466088868677616, + 0.012672838754951954, + 0.023965777829289436, + -0.01771155558526516, + -0.011451790109276772, + -0.037146106362342834, + -0.0015739246737211943, + 0.057245705276727676, + 0.23563732206821442, + -0.014652797020971775, + -0.023144138976931572, + 0.042197033762931824, + 0.022253824397921562, + -0.020142212510108948, + 0.0346367247402668, + -0.00674071442335844, + -0.009859188459813595, + -0.0184783898293972, + 0.020749902352690697, + 0.0380244106054306, + -0.017213530838489532, + -0.0115524185821414, + 0.016459312289953232, + 0.036312445998191833, + -0.012883919291198254, + 0.0037870497908443213, + 0.07119850814342499, + 0.0072074164636433125, + 0.02643130160868168, + -0.011503932997584343, + -0.048869822174310684, + 0.016961101442575455, + -0.05883772671222687, + -0.06899209320545197, + -0.024524806067347527, + -0.026407072320580482, + 0.0210077166557312, + 0.02611832320690155, + -0.014405918307602406, + 0.007749783806502819, + -0.016014425083994865, + 0.030574806034564972, + -0.03396773338317871, + -0.022387608885765076, + 0.015809698030352592, + -0.0033225370571017265, + -0.02023114264011383, + 0.030016131699085236, + 0.02159302309155464, + -0.02469630353152752, + 0.011174434795975685, + 0.050683218985795975, + -0.009173157624900341, + -0.023618130013346672, + 0.048955418169498444, + -0.036699384450912476, + -0.01740603893995285, + -0.044159866869449615, + -0.024642523378133774, + -0.013349690474569798, + -0.018937502056360245, + 0.031213734298944473, + 0.00733766658231616, + -0.010313689708709717, + -0.016635021194815636, + 0.05394674837589264, + -0.03237228840589523, + -0.0029173188377171755, + 0.026967471465468407, + 0.0012109073577448726, + -0.006499781273305416, + 0.013845741748809814, + -0.014438335783779621, + 0.022694868966937065, + 0.017704768106341362, + 0.011773345060646534, + 0.023021895438432693, + 0.03064270131289959, + 0.012270581908524036, + 0.028791191056370735, + 0.01729651354253292, + 0.015623017214238644, + 0.005913866218179464, + -0.004373270086944103, + 0.005673098377883434, + 0.006498722825199366, + -0.026069076731801033, + 0.026151666417717934, + -0.02969297394156456, + 0.021355384960770607, + -0.06598896533250809, + 0.042998429387807846, + 0.008621294051408768, + 0.0021430710330605507, + -0.054851122200489044, + 0.05483056604862213, + 0.023981628939509392, + -0.03359547629952431, + -0.018733685836195946, + 0.01201355829834938, + -0.0026102305855602026, + 0.022045528516173363, + 0.030307861045002937, + 0.05226912349462509, + 0.03740083426237106, + 0.023915711790323257, + -0.04962051287293434, + 0.04250536486506462, + -0.009430910460650921, + -0.005711754783987999, + 0.026917019858956337, + -0.022592946887016296, + 0.0164019912481308, + 0.017624519765377045, + -0.06481911242008209, + -0.043916985392570496, + -0.008055586367845535, + -0.042210984975099564, + -0.0009486476774327457, + 0.0303525160998106, + 0.00487239146605134, + 0.012936675921082497, + 0.01657174341380596, + 0.03812273591756821, + -0.0006279767258092761, + 0.021959848701953888, + 0.010943165980279446, + 0.015348036773502827, + -0.05103374272584915, + 0.002392989117652178, + 0.0013690940104424953, + 0.02001316472887993, + -0.0025813295505940914, + -0.01656954735517502, + 0.012734342366456985, + 0.06571551412343979, + -0.03875751048326492, + 0.042852733284235, + 0.04657723382115364, + -0.008100789971649647, + 0.0331895649433136, + 9.003021841635928e-05, + 0.029847020283341408, + 0.0022247708402574062, + 0.0535188652575016, + 0.008436746895313263, + 0.022752124816179276, + -0.0013802648754790425, + -0.026509003713726997, + -0.019586576148867607, + -0.01794723980128765, + -0.0003321229014545679, + 0.005290258210152388, + -0.020403023809194565, + 0.018606724217534065, + -0.019877828657627106, + -0.016994904726743698, + 0.02083572745323181, + 0.01759611815214157, + 0.03928237780928612, + 0.02598324604332447, + -0.018881984055042267, + -0.006429360248148441, + -0.05016425997018814, + 0.001786009524948895, + 0.03662817180156708, + 6.414561084966408e-06, + -0.013479105196893215, + 0.01991484872996807, + 0.009190063923597336, + -0.0002659591846168041, + 0.019427424296736717, + -0.00034825046896003187, + 0.01155822817236185, + -0.013050965033471584, + 0.03603290766477585, + -0.03080545738339424, + 0.005934534594416618, + 0.015720082446932793, + -0.015678489580750465, + -0.01949850656092167, + 0.05168265476822853, + -0.007764881476759911, + 0.020956354215741158, + -0.034707702696323395, + -0.030372491106390953, + -0.03218584880232811, + -0.07479716837406158, + 0.0022411574609577656, + -0.030448677018284798, + 0.009668511338531971, + -0.010503720492124557, + 0.008285269141197205, + 0.010193842463195324, + 0.004792258143424988, + -0.012598099187016487, + 0.04514298215508461, + -0.03426211699843407, + -0.02722504362463951, + 0.11175163835287094, + 0.048658158630132675, + -0.03056713379919529, + -0.0283854641020298, + 0.06546347588300705, + 0.027572689577937126, + -0.018651794642210007, + -0.04502226039767265, + -0.0219890046864748, + 0.02292831800878048, + 0.016925889998674393, + 0.012054831720888615, + -0.007755114696919918, + -0.015710851177573204, + 0.00335590704344213, + 0.023982109501957893, + 0.0034641409292817116, + 0.007521750871092081, + -0.040331147611141205, + -0.05566783621907234, + 0.0015821591950953007, + 0.0036369087174534798, + -0.01563584990799427, + 0.026691051200032234, + -0.013612456619739532, + 0.02717575617134571, + 0.006839797366410494, + 0.03637773543596268, + 0.010639838874340057, + -0.011772063560783863, + -0.01708120107650757, + -0.00022596551571041346, + -0.01698789931833744, + -0.06051594763994217, + -0.00855208095163107, + 0.01752631366252899, + 0.0015841119457036257, + 0.0251308660954237, + -0.03402737155556679, + -0.007694541476666927, + -0.0501398928463459, + 0.016225280240178108, + 0.037374548614025116, + 0.03867974132299423, + -0.00250986497849226, + -0.0071935709565877914, + 0.04061310365796089, + 0.02774483896791935, + -0.04257653281092644, + 0.019183220341801643, + -0.012832625769078732, + 0.03494948521256447, + 0.08931263536214828, + 0.016975484788417816, + 0.008787480182945728, + -0.0226236991584301, + -0.0043751513585448265, + 0.06572742015123367, + 0.03973081707954407, + -0.022015612572431564, + -0.02528851293027401, + -0.006252304185181856, + -0.020533325150609016, + 0.0063461679965257645, + 0.01631617732346058, + -0.000994163565337658, + 0.011747852899134159, + -0.07108347117900848, + -0.015898386016488075, + 0.0316954180598259, + 0.02273101545870304, + -0.03514115512371063, + -0.004592725075781345, + -0.0006768840248696506, + -0.05424540117383003, + 0.06030736491084099, + -0.052486490458250046, + -0.010897265747189522, + 0.01000309083610773, + 0.00593559630215168, + -0.003369102953001857, + -0.039311282336711884, + -0.03619195520877838, + 0.04681723937392235, + 0.007995601743459702, + 0.0030653872527182102, + -0.008364793844521046, + 0.041317906230688095, + 0.02437049150466919, + -0.04394904151558876, + -0.024615678936243057, + -0.012272948399186134, + 0.0054991901852190495, + 0.01808926649391651, + 0.027308011427521706, + 0.017416901886463165, + 0.09009553492069244, + -0.004358100239187479, + -0.08640417456626892, + -0.019836368039250374, + 0.012483854778110981, + -0.05211225152015686, + 0.03946453705430031, + -0.009716873057186604, + -0.04476039856672287, + -0.002020068932324648, + 0.040569983422756195, + -0.00841469131410122, + 0.014724934473633766, + 0.004016086924821138, + -0.025161314755678177, + -0.022932948544621468, + -0.005316807888448238, + 0.0005508371978066862, + -0.002468168968334794, + -0.015086187981069088, + -0.03031088225543499, + 0.05388392508029938, + 0.009761309251189232, + 0.02018955908715725, + -0.05271245539188385, + -0.01433665119111538, + 0.06828205287456512, + 0.011823038570582867, + -0.01522747427225113, + 0.03526322916150093, + -0.03905738145112991, + 0.0038663081359118223, + -0.0320637971162796, + 0.011157169938087463, + -0.017940813675522804, + -0.04156849905848503, + 0.0028495523147284985, + 0.046162959188222885, + 0.008618024177849293, + -0.004422668367624283, + 0.03318493440747261, + -0.04236627370119095, + -0.017145773395895958, + -0.019944971427321434, + 0.018785707652568817, + -0.01114470325410366, + 0.022580258548259735, + -0.01694227196276188, + -0.023162798956036568, + 0.04664146900177002, + -0.0009883096208795905, + 0.00335209583863616, + -0.032850708812475204, + -0.023485073819756508, + -0.0018887855112552643, + 0.07126673310995102, + -0.012036826461553574, + 0.015006804838776588, + 0.011649210937321186, + -0.007566944696009159, + -0.03193097189068794, + 0.0010782280005514622, + -0.014443730935454369, + -0.027319850400090218, + 0.007930304855108261, + -0.04842081665992737, + -0.04833253473043442, + -0.003753633238375187, + -0.03410542756319046, + -0.005132349207997322, + 0.03403260186314583, + 0.04081188887357712, + -0.04744765907526016, + -0.024352900683879852, + -0.02421329729259014, + -0.005919762887060642, + -0.01674199290573597, + -0.044689156115055084, + 0.031162111088633537, + 0.029554616659879684, + 0.0011276805307716131, + -0.033427465707063675, + -0.02680654078722, + 0.02241351827979088, + 0.0020548540633171797, + 0.013749930076301098, + 0.03568141162395477, + -0.04793078079819679, + 0.05124315991997719, + -0.03192431479692459, + -0.005864989478141069, + 0.026028217747807503, + -0.04901869595050812, + -0.017828749492764473, + -0.0503627248108387, + -0.04053761810064316, + -0.05324693024158478, + -0.0430690199136734, + -0.031802933663129807, + -0.03199303150177002, + 0.03278583288192749, + 0.04486209526658058, + 0.043215569108724594, + -0.011001328006386757, + 0.0010366609785705805, + -0.02557426318526268, + 0.02103535458445549, + -0.13339819014072418, + 0.02782089076936245, + -0.02853154018521309, + 0.028945334255695343, + -0.02747970074415207, + -0.014299736358225346, + -0.018517527729272842, + 0.003402168396860361, + -0.030676359310746193, + -0.06301964819431305, + -0.06370868533849716, + 0.003654985222965479, + 0.0026939786039292812, + -0.017631996423006058, + -0.002517253626137972, + 0.012456398457288742, + 0.02790757268667221, + -0.030040668323636055, + -0.012249772436916828, + -0.02846710942685604, + 0.0021710714790970087, + -0.04877259209752083, + 0.03610514476895332, + 0.03976740315556526, + 0.013926232233643532, + -0.002833782695233822, + 0.04612273350358009, + 0.021370531991124153, + -0.03337322175502777, + -0.05315495282411575, + -0.006842413451522589, + 0.008401055820286274, + 0.011808848939836025, + 0.06297213584184647, + -0.028828345239162445, + 0.010388627648353577, + -0.020149756222963333, + 0.03923644497990608, + 0.006977196782827377, + 0.05134506896138191, + 0.021714622154831886, + 0.028489256277680397, + -0.023899244144558907, + 0.0009680906659923494, + 0.022777006030082703, + -0.021021610125899315, + -0.05774965509772301, + 0.002786660799756646, + -0.03346579521894455, + 0.018230076879262924, + 0.051840849220752716, + -0.004859062377363443, + 0.020607952028512955, + 0.01997917704284191, + 0.03473309427499771, + -0.02110009826719761, + -0.028356235474348068, + 0.018087703734636307, + 0.002930483315140009, + -0.01701432280242443, + -0.013633837923407555, + 0.02638980560004711, + -0.033083487302064896, + -0.035914819687604904, + 0.03292739763855934, + 0.026514504104852676, + -0.02477392926812172, + -0.013155877590179443, + 0.014291319064795971, + -0.009769083000719547, + 0.009297074750065804, + 0.02090749703347683, + -4.166794678894803e-05, + -0.0632907971739769, + 0.01909364014863968, + 0.013713828288018703, + -0.018046196550130844, + 0.019067492336034775, + -0.013289480470120907, + -0.025392621755599976, + 0.035860780626535416, + -0.013288792222738266, + -0.04183342680335045, + -0.015478263609111309, + 0.044412124902009964, + -0.021331412717700005, + -0.035180844366550446, + 0.030304595828056335, + -0.06323796510696411, + -0.012202197685837746, + 0.007681600749492645, + -0.078572116792202, + 0.007202134933322668, + -0.055650774389505386, + -0.02123519591987133, + 0.024612022563815117, + -0.020650029182434082, + 0.01684385910630226, + 0.014471839182078838, + -0.024569902569055557, + 0.01013772189617157, + -0.017947496846318245, + 0.0314941368997097, + 0.027341987937688828, + -0.008794392459094524, + 0.006735833827406168, + -0.04893460124731064, + -0.02545010671019554, + -0.012214086018502712, + 0.020224664360284805, + -0.01056409440934658, + -0.007008407264947891, + -0.01004810445010662, + 0.0023189038038253784, + -0.03357575833797455, + -0.039039887487888336, + 0.03883126750588417, + 0.07035865634679794, + -0.006016238126903772, + -0.03361707180738449, + 0.04382602870464325, + -0.008097656071186066, + 0.06923235207796097, + 0.004171939101070166, + 0.056689828634262085, + 0.022172898054122925, + -0.012631700374186039, + 0.028965717181563377, + -0.0024211532436311245, + 0.018010642379522324, + -0.012089887633919716, + -0.012068893760442734, + 0.030781598761677742, + -0.004422192461788654, + 0.004638536833226681, + 0.0005573392263613641, + -0.008781427517533302, + 0.0316300205886364, + -0.027868160977959633, + -0.012939431704580784, + -0.009892160072922707, + -0.029275404289364815, + -0.021356623619794846, + -0.02802394889295101, + -0.03904073312878609, + -0.016467668116092682, + -0.02709081582725048, + 0.004986628424376249, + 0.018824510276317596, + -0.012138296850025654, + -0.008922284469008446, + -0.008193593472242355, + -0.02906576357781887, + 0.06987209618091583, + -0.025883348658680916, + 0.025990501046180725, + -0.012711523100733757, + -0.029877712950110435, + -0.007467145100235939, + 0.026443900540471077, + -0.029158644378185272, + -0.00925223995000124, + 0.0537930503487587, + -0.011791061609983444, + -0.033333975821733475, + -0.008156416937708855, + -0.031401801854372025, + 0.018415076658129692, + -0.04075120761990547, + 0.03897129371762276, + -0.018119467422366142, + 0.005479160696268082, + -0.01420872937887907, + -0.03069901652634144, + 0.03640298917889595, + -0.026962384581565857, + 0.00916611310094595, + -0.020149173215031624, + 0.07546987384557724, + 0.005041127558797598, + -0.023926356807351112, + 0.024299759417772293, + 0.06187603250145912, + -0.035795655101537704, + 0.03151846304535866, + 0.024940473958849907, + 0.0073769972659647465, + 0.031237268820405006, + 0.04363871365785599, + -0.015483582392334938, + 0.014310619793832302, + -0.007939632050693035, + 0.018220731988549232, + 0.004818988498300314, + 0.03813910484313965, + 0.03555593267083168, + 0.0057525960728526115, + 0.04749245569109917, + -0.023686038330197334, + 0.015514763072133064, + -0.05279714614152908, + -0.030728211626410484, + -0.06303194165229797, + -0.010950146242976189, + -0.032712243497371674, + -0.04210645705461502, + 0.02255645953118801, + -0.0010644861031323671, + 0.016246028244495392, + 0.02205178700387478, + -0.008534295484423637, + 0.03037320077419281, + -0.04631049558520317, + 0.021022332832217216, + -0.01141350343823433, + -0.022125881165266037, + 0.006085054948925972, + 0.010563462041318417, + 0.011967141181230545, + 0.000795604195445776, + 0.021403079852461815, + 0.04513101279735565, + 0.018755540251731873, + -0.008612046018242836, + -0.02142137475311756, + -0.0209878571331501, + -0.02973942644894123, + -0.027947140857577324, + -0.012983256950974464, + -0.04344192147254944, + -0.02135099284350872, + -0.013871807605028152, + -0.013832155615091324, + 0.05476191267371178, + -0.014906300231814384, + 0.032971594482660294, + 0.03299594298005104, + 0.040650881826877594, + -0.049498800188302994, + 0.01644108071923256, + 0.013167916797101498, + 0.021246982738375664, + -0.00484880618751049, + 0.010764016769826412 + ], + "start_index": 0, + "end_index": 56, + "token_count": 23, + "file_type": "avap_code", + "filename": "referencia_por_valor.avap", + "addResult": true, + "addVar": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "1086f3de-fedd-5610-a46d-7a1e762a015b", + "_source": { + "text": "addParam(\"page\", p)\naddParam(\"size\", s)\nregistros = [\"u1\", \"u2\", \"u3\", \"u4\", \"u5\", \"u6\"]\noffset = int(p) * int(s)\nlimite = offset + int(s)\ncontador = 0\naddResult(offset)\naddResult(limite)\nstartLoop(i, 2, limite)\n actual = registros[int(i)]\n titulo = \"reg_%s\" % i\n AddvariableToJSON(titulo, actual, pagina_json)\nendLoop()\naddResult(pagina_json)", + "embedding": [ + 0.009393399581313133, + 0.0002918032987508923, + -0.02299615927040577, + -0.0006704499246552587, + -0.03397275134921074, + 0.013871370814740658, + -0.016856251284480095, + 0.05217927321791649, + 0.003339652204886079, + -0.02090379223227501, + -0.006972440518438816, + 0.053223833441734314, + -0.016736876219511032, + -0.003155844286084175, + 0.0012891785008832812, + 0.0386357419192791, + 0.006274677813053131, + 0.03359963744878769, + 0.03260381519794464, + -0.03422312065958977, + -0.024426015093922615, + 0.006040090695023537, + -0.011803941801190376, + 0.047778643667697906, + -0.010944591835141182, + -0.009345964528620243, + 0.01612597145140171, + -0.013050389476120472, + 0.023979973047971725, + 0.012950328178703785, + -0.000998800853267312, + -0.006031943019479513, + 0.0012916893465444446, + -0.056810490787029266, + -0.028830235823988914, + 0.018268046900629997, + -0.04174017906188965, + -0.009874873794615269, + -0.0592430904507637, + 0.013954714871942997, + -0.003015696769580245, + -0.01063464768230915, + 0.013670258224010468, + -0.05127015337347984, + 0.026508085429668427, + -0.032012712210416794, + 0.01818329095840454, + -0.02174522913992405, + -0.02067292481660843, + -0.016789326444268227, + -0.01963493600487709, + 0.028203042224049568, + 0.04468565806746483, + -0.09082692116498947, + -0.047990161925554276, + 0.04349707439541817, + -0.0511186420917511, + 0.017544150352478027, + -0.06148413568735123, + -0.005574492271989584, + -0.015980642288923264, + 0.011940368451178074, + -0.0772492066025734, + 0.000764666183385998, + 0.051783882081508636, + 0.015296844765543938, + 0.03385156765580177, + 0.03680695965886116, + -0.001773435389623046, + 0.009832748211920261, + 0.0007340405136346817, + 0.015677861869335175, + -0.005659416317939758, + -0.024096474051475525, + -0.08228299021720886, + -0.018612045794725418, + 0.026569001376628876, + -0.005155619233846664, + -0.02455565519630909, + -0.014333808794617653, + 0.011160789988934994, + 0.020610837265849113, + -0.006194789428263903, + -0.008829287253320217, + 0.004941449500620365, + 0.03139197826385498, + 0.014271233230829239, + 0.03914256766438484, + -0.026224911212921143, + 0.01338741835206747, + -0.01805700734257698, + -0.013922389596700668, + 0.022339623421430588, + -0.027328290045261383, + 0.0067514278925955296, + -0.0492960587143898, + 0.01507207378745079, + 0.008467127569019794, + 0.06003312021493912, + 0.0404558964073658, + -0.003939158283174038, + 0.024394040927290916, + 0.04132544994354248, + 0.0037088675890117884, + 0.05939681828022003, + 0.010891656391322613, + 0.03387075662612915, + -0.0067430115304887295, + 0.02016393095254898, + -0.011725885793566704, + -0.006452236324548721, + 0.024763375520706177, + 0.04555472359061241, + 0.01957191899418831, + -0.010512502864003181, + -0.027143562212586403, + 0.01589697040617466, + -0.015503579750657082, + -0.004273555241525173, + -0.033596768975257874, + 0.025163646787405014, + 0.011682775802910328, + 0.03500888869166374, + -0.017203418537974358, + 0.0340525284409523, + 0.020529329776763916, + 0.028693271800875664, + 0.05776705592870712, + 0.023253392428159714, + 0.02444784715771675, + 0.05054755136370659, + 0.031098391860723495, + 0.01749894767999649, + 0.013004370033740997, + -0.04068245738744736, + -0.016379136592149734, + 0.002107529900968075, + 0.047658342868089676, + 0.04623337462544441, + -0.05616611987352371, + -0.001980830682441592, + 0.013984668999910355, + 0.017733726650476456, + -0.011402693577110767, + 0.01902305893599987, + -0.06276625394821167, + 0.03359541296958923, + 0.019770881161093712, + 0.007471462711691856, + 0.00331431464292109, + -0.011868443340063095, + 0.03892415389418602, + -0.0017465250566601753, + 0.0019160299561917782, + 0.06209563836455345, + -0.05056154727935791, + -0.020739050582051277, + 0.041042182594537735, + -0.0016191299073398113, + 0.011083794757723808, + 0.011165935546159744, + -4.4090098526794463e-05, + -0.029353059828281403, + -0.02879788912832737, + 0.013892857357859612, + 0.02258646860718727, + 0.036818727850914, + -0.03508540615439415, + -0.019411461427807808, + -0.049903299659490585, + 0.03880065679550171, + -0.006372823845595121, + 0.020205548033118248, + 0.03310442715883255, + -0.018876615911722183, + 0.022822652012109756, + 0.01407314371317625, + -0.0056066252291202545, + 0.0014319776091724634, + -0.03809833526611328, + -0.02447240613400936, + 0.029147030785679817, + -0.012807516381144524, + -0.017035169526934624, + 0.013818677514791489, + 0.03173777461051941, + 0.03778277710080147, + 0.015028998255729675, + 0.006355651188641787, + 0.03629705682396889, + -0.0075905099511146545, + -0.014936660416424274, + 0.016663145273923874, + -0.021157506853342056, + 0.023563653230667114, + 0.01136341504752636, + 0.0379873551428318, + 0.001423690584488213, + 0.03645088151097298, + 0.0032984716817736626, + -0.0361669659614563, + 0.024743342772126198, + -0.00861823558807373, + -0.01033003255724907, + -0.02996436133980751, + -0.009862353093922138, + -0.05091572925448418, + -0.01786826364696026, + 0.0408460907638073, + 0.022607581689953804, + 0.04393062740564346, + -0.003734109690412879, + -0.05339023098349571, + 0.05744374170899391, + 0.008551441133022308, + 0.04725052788853645, + -0.019815606996417046, + -0.021826837211847305, + -0.02014145441353321, + -0.03780722990632057, + 0.0070022353902459145, + 0.04835085943341255, + 0.012311001308262348, + 0.04186677187681198, + 0.0209023579955101, + -0.01252492144703865, + 0.020596813410520554, + -0.028870301321148872, + 0.007537408731877804, + 0.03666951134800911, + -0.047438737004995346, + 0.009323355741798878, + 0.0038778004236519337, + -0.00824541412293911, + 0.03275433927774429, + -0.02755202353000641, + -0.004320300649851561, + -0.00414968840777874, + -0.03726167976856232, + 0.005275567527860403, + -0.050042711198329926, + -0.03783009946346283, + 0.00865044817328453, + -0.0013281401479616761, + -0.0697188451886177, + -0.03610549122095108, + -0.016174141317605972, + 0.022338634356856346, + -0.02087225392460823, + -0.02556503377854824, + -0.01922251656651497, + -0.0022781610023230314, + -0.03308020532131195, + 0.02218944951891899, + 0.044728390872478485, + 0.01701635867357254, + 0.03163224458694458, + 0.0017656580312177539, + -0.03910283371806145, + -0.0013671088963747025, + 0.010605781339108944, + -0.01256647240370512, + -0.008802239783108234, + 0.008789490908384323, + 0.026707174256443977, + -0.003133355174213648, + -0.023293238133192062, + 0.01822168380022049, + -0.030100472271442413, + 0.0015863104490563273, + 0.02881724201142788, + -0.000629649730399251, + -0.002158534014597535, + -0.032027605921030045, + -0.009871804155409336, + 0.06015821173787117, + -0.020772572606801987, + -0.021092848852276802, + 0.08942041546106339, + 0.04531838372349739, + -0.0020173550583422184, + 0.02527928538620472, + 0.0778803750872612, + 0.03386535122990608, + 0.05159469693899155, + -0.05904421582818031, + -0.0007147613796405494, + -0.008758489973843098, + 0.021755438297986984, + -0.03042573854327202, + 0.0038197271060198545, + 0.0339784100651741, + 0.08151118457317352, + -0.03579580783843994, + 0.015688488259911537, + 0.010497739538550377, + -0.02193652093410492, + -0.1586412787437439, + -0.030493486672639847, + -0.01701776497066021, + 0.0029893815517425537, + -0.004385170992463827, + 0.01496284082531929, + -0.04226354509592056, + 0.031882841140031815, + -0.03922484442591667, + 0.02640663832426071, + -0.025537848472595215, + -0.063087597489357, + 0.008081799373030663, + -0.06312261521816254, + -0.0023289278615266085, + 0.008063558489084244, + -0.0014809012645855546, + -0.00126553641166538, + -0.02138996683061123, + -0.01409844309091568, + -0.031014446169137955, + -0.0575682632625103, + -0.03492158278822899, + -0.01833178661763668, + -0.04016928747296333, + -0.006754845846444368, + -0.011100837029516697, + 0.003693643258884549, + -0.010544602759182453, + -0.021774306893348694, + -0.00033513986272737384, + 0.008510707877576351, + 0.001444667810574174, + -0.0031382832676172256, + -0.028208602219820023, + 0.010653693228960037, + 0.00796454306691885, + 0.04773048684000969, + 0.00803415197879076, + 0.026209743693470955, + 0.03739681839942932, + 0.008479421027004719, + -0.003943304065614939, + 0.00829910859465599, + 0.010629015043377876, + 0.002812787424772978, + 0.006116624455899, + -0.030511129647493362, + -0.060124754905700684, + 0.016803612932562828, + -0.05018295720219612, + -0.023460717871785164, + 0.018483269959688187, + 0.026238441467285156, + -0.03825162351131439, + 0.002230607671663165, + -0.0025140901561826468, + 0.005902505945414305, + -0.009459065273404121, + -0.0013938595075160265, + -0.03289993852376938, + 0.004768964368849993, + 0.00911992322653532, + -0.005782542284578085, + 0.023397725075483322, + -0.0283312126994133, + 0.029421020299196243, + 0.002977929776534438, + 0.027841147035360336, + -0.0156551543623209, + 0.05356217175722122, + 0.009727607481181622, + 0.002474631182849407, + -0.0009838527766987681, + 0.024473989382386208, + 0.031167488545179367, + 0.00781289767473936, + -0.018076010048389435, + 0.01761818118393421, + -0.10837970674037933, + 0.013834106735885143, + -0.0031336424872279167, + 0.011265096254646778, + 0.07445209473371506, + -0.014950724318623543, + -0.03279545158147812, + -0.008533479645848274, + -0.03553292155265808, + -0.005248363129794598, + 0.2391057163476944, + -0.03255879506468773, + 0.03518320247530937, + -0.015382446348667145, + 0.026037272065877914, + -0.0586889311671257, + 0.004407291766256094, + -0.029508840292692184, + -0.05025895684957504, + 0.0001715685211820528, + 0.018068071454763412, + 0.07394998520612717, + 0.0031808072235435247, + -0.0074934931471943855, + 0.01431913673877716, + 0.029537564143538475, + -0.031043656170368195, + 0.007332460023462772, + 0.030327841639518738, + -0.012971925549209118, + 0.060614824295043945, + 0.008137669414281845, + -0.0715295821428299, + 0.0016747919144108891, + -0.035276882350444794, + -0.042028605937957764, + -0.030637333169579506, + 0.0234188511967659, + -0.010585864074528217, + -0.006149516440927982, + -0.01357231568545103, + 0.03584563359618187, + 0.015916360542178154, + -0.005780263338238001, + -0.0481128916144371, + 0.009819874539971352, + 0.01506788469851017, + -0.014831877313554287, + 0.0003783905995078385, + 0.007714604493230581, + 0.024227147921919823, + -0.0149229159578681, + -0.036035940051078796, + 0.04293805733323097, + 0.0043683163821697235, + -0.05028390511870384, + 0.01867826096713543, + 0.018609339371323586, + -0.0021481309086084366, + -0.03691716119647026, + 0.005160543601959944, + -0.0492653027176857, + -0.026243671774864197, + -0.01389833353459835, + -0.0004115171905141324, + 0.006991530768573284, + 0.031179722398519516, + 0.039244525134563446, + -0.042279213666915894, + 0.05584569647908211, + 0.05958573892712593, + -0.004226005636155605, + 0.01340631302446127, + -0.03324694558978081, + -0.006392119452357292, + -0.026382949203252792, + 0.04656265676021576, + -0.021151790395379066, + -0.0010984801920130849, + 0.006700212135910988, + -0.046761855483055115, + -0.018894394859671593, + 0.030940204858779907, + 0.008432854898273945, + -0.014291519299149513, + -0.0244711022824049, + -0.006748965010046959, + 0.016871178522706032, + -0.03056810051202774, + 0.0021360700484365225, + -0.05410955473780632, + -0.0009697278728708625, + -0.061764489859342575, + 0.0619550384581089, + -0.004927932284772396, + -0.016058268025517464, + 0.016373705118894577, + 0.0778704285621643, + -0.006687687709927559, + -0.013321327976882458, + -0.006543043069541454, + -0.041499748826026917, + 0.00437128683552146, + 0.05263832211494446, + -0.014025255106389523, + 0.02419508434832096, + 0.02310403808951378, + 0.01830819621682167, + -0.04961000382900238, + 0.06889931112527847, + -0.01198376715183258, + -0.015440594404935837, + 0.0011647299397736788, + -0.009870666079223156, + 0.03219199180603027, + -0.06377336382865906, + -0.0024843942373991013, + -0.014886326156556606, + -0.008372625336050987, + -0.01134350523352623, + -0.06793153285980225, + 0.02110201120376587, + -0.018223650753498077, + 0.019820064306259155, + 0.010480654425919056, + 0.012235905975103378, + 0.023525817319750786, + 0.05414887145161629, + -0.00698646018281579, + -0.016731787472963333, + -0.048230480402708054, + 0.026343321427702904, + 0.03810952231287956, + 0.020783986896276474, + 0.03945019096136093, + -0.0409618504345417, + 0.0003613171575125307, + 0.0023669139482080936, + -0.03938954323530197, + 0.04622421786189079, + -0.01266119908541441, + -0.023690709844231606, + -0.03787077218294144, + -0.01400768756866455, + 0.056588031351566315, + -0.018388668075203896, + 0.02851741388440132, + -0.010043870657682419, + 0.027104105800390244, + 0.03689812123775482, + -0.028865860775113106, + -0.06673787534236908, + 0.011340201832354069, + 0.022175781428813934, + 0.010727372020483017, + -0.023939555510878563, + 0.033996593207120895, + -0.03777248039841652, + -0.028226550668478012, + 0.020644960924983025, + 0.0033184343483299017, + 0.08304762840270996, + 0.04838784039020538, + -0.048644911497831345, + -0.013907748274505138, + -0.05573160946369171, + 0.010033940896391869, + -0.005168434698134661, + -0.03985532000660896, + 0.012023345567286015, + -0.010886582545936108, + -0.007699084468185902, + 0.0034469272941350937, + 0.001410426921211183, + -0.04468824341893196, + -0.0504797026515007, + -0.009290742687880993, + 0.01815047673881054, + -0.045383915305137634, + -0.021224122494459152, + -0.005394407548010349, + -0.05829007923603058, + -0.02345019392669201, + 0.010070673190057278, + 0.026581445708870888, + 0.00010328047937946394, + -0.004732991103082895, + 0.025281185284256935, + -0.02229439653456211, + -0.025683416053652763, + 0.00825762003660202, + -0.014727077446877956, + -0.008224815130233765, + -0.009425331838428974, + 0.023058462888002396, + -0.04689858481287956, + -0.04319937527179718, + -0.007312783505767584, + 0.034174881875514984, + -0.0056473626755177975, + -0.01177146565169096, + 0.08850964903831482, + -0.023041943088173866, + -0.023610061034560204, + 0.05823535844683647, + -0.0044654905796051025, + 0.036633092910051346, + 0.00976856704801321, + -0.03407394886016846, + -0.01821390725672245, + 0.027792908251285553, + 0.028483305126428604, + -0.011088243685662746, + -0.012722804211080074, + 0.007249921094626188, + -0.013983570970594883, + -0.017724838107824326, + -0.016392510384321213, + 0.04255205765366554, + -0.007201559841632843, + 0.026075907051563263, + -0.03828848898410797, + -0.012443161569535732, + 0.03673805296421051, + 0.03998170047998428, + 0.014247150160372257, + 0.05672173574566841, + 0.05066215619444847, + -0.022816510871052742, + 0.003685284871608019, + -0.059739768505096436, + 0.01370683591812849, + -0.023469073697924614, + -0.008326394483447075, + -0.04398152604699135, + 0.005027191247791052, + 0.010421504266560078, + -0.0027044450398534536, + 0.03574492782354355, + -0.03582676872611046, + -0.007146286312490702, + -0.01323676947504282, + 0.031408701092004776, + -0.013253378681838512, + 0.012929128482937813, + -0.005488761700689793, + 0.009374323301017284, + 0.06851073354482651, + 0.00436237221583724, + -0.022217528894543648, + 0.007214442361146212, + -0.036524295806884766, + -0.011980893090367317, + 0.029274284839630127, + -0.0039468747563660145, + 0.08449190855026245, + -0.021748436614871025, + 0.013156339526176453, + 0.002548344200477004, + 0.0051002055406570435, + 0.00016266484453808516, + -0.07007628679275513, + 0.023902669548988342, + -0.02138180285692215, + 0.013310849666595459, + 0.031656719744205475, + -0.03445380553603172, + 0.02784932777285576, + -0.0660015195608139, + -0.010315191000699997, + -0.011491869576275349, + 0.05218798294663429, + -0.022040050476789474, + 0.0024052574299275875, + -0.00043720105895772576, + -0.05887560173869133, + 0.021793045103549957, + -0.0755080059170723, + -0.031213806942105293, + -0.00035274590482003987, + 0.022449679672718048, + 0.005739414598792791, + -0.04973423108458519, + -0.051928721368312836, + 0.036152951419353485, + -0.001854579895734787, + -0.0056150685995817184, + -0.0051277498714625835, + 0.05700443685054779, + -0.018152184784412384, + -0.05462003871798515, + -0.03267579525709152, + -0.033314187079668045, + 0.024699287489056587, + 0.011587921530008316, + 0.028846032917499542, + -0.009926378726959229, + -0.010144994594156742, + 0.011325232684612274, + -0.048010967671871185, + 0.004290647339075804, + 0.01437282282859087, + -0.04461098462343216, + 0.05519391968846321, + 0.006712401285767555, + -0.020337311550974846, + -0.014459503814578056, + 0.014768033288419247, + 0.011229013092815876, + 0.009562600404024124, + -0.009873677976429462, + -0.011804873123764992, + -0.03006470389664173, + 0.008835176937282085, + -0.047957729548215866, + 0.03190908953547478, + -0.006980885285884142, + 0.013778612948954105, + -0.014511625282466412, + 0.010653313249349594, + -0.020896149799227715, + -0.04519391059875488, + 0.0019696990493685007, + 0.06855572760105133, + 0.02767006866633892, + -0.021615052595734596, + 0.061929430812597275, + -0.007394162472337484, + -0.015755312517285347, + 0.019637759774923325, + 0.0016072408761829138, + -0.04691363498568535, + -0.03232486918568611, + 0.0007682971190661192, + -0.009822756052017212, + -0.008383582346141338, + -0.03201167285442352, + 0.03729856759309769, + -0.025060174986720085, + -0.007217195816338062, + 0.003496228251606226, + -0.03344302251935005, + -0.009241766296327114, + 0.004171608481556177, + -0.028804577887058258, + -0.021663904190063477, + 0.009907637722790241, + -0.010409980081021786, + -0.020333003252744675, + -0.013801955617964268, + -0.037995290011167526, + -0.001942903152666986, + 0.06438244134187698, + -0.026440909132361412, + 0.006156182382255793, + -0.01026363205164671, + -0.03537818416953087, + -0.02204865776002407, + -0.051707904785871506, + -0.0019558484200388193, + -0.023084988817572594, + 0.006044341716915369, + -0.036238230764865875, + -0.051790546625852585, + -0.02635403722524643, + -0.03192266821861267, + -0.018096456304192543, + 0.01851828582584858, + 0.010652684606611729, + -0.009078563190996647, + -0.03575228527188301, + -0.025453640148043633, + -0.001625056960619986, + -0.0034365791361778975, + -0.021541059017181396, + 0.04140632599592209, + 0.039214838296175, + -0.014820179902017117, + 0.023037299513816833, + -0.06358221918344498, + 0.005254116374999285, + -0.026774747297167778, + 0.007501997984945774, + 0.08011060208082199, + -0.016027480363845825, + 0.037136010825634, + -0.04858097806572914, + -0.008592377416789532, + -0.005412540398538113, + 0.011143888346850872, + -0.0403737872838974, + -0.007294877897948027, + -0.019073760136961937, + -0.0035129704046994448, + -0.016721412539482117, + -0.0011058328673243523, + 0.003593875328078866, + 0.010690324939787388, + 0.08567055314779282, + 0.039139196276664734, + -0.0019296156242489815, + -0.024706529453396797, + -0.030371738597750664, + 0.008940557949244976, + -0.1343126744031906, + 0.011923322454094887, + -0.013144331984221935, + 0.008703963831067085, + 0.0045425016433000565, + -0.0273309163749218, + -0.04217386245727539, + -0.021688545122742653, + -0.016096873208880424, + -0.024656075984239578, + -0.05980133265256882, + -0.013681233860552311, + -0.0034935143776237965, + -0.021029530093073845, + 0.043702930212020874, + 0.019021814689040184, + 0.04758860543370247, + -0.03557930886745453, + -0.042211972177028656, + 0.015427209436893463, + -0.0356794074177742, + -0.04923378303647041, + 0.011947095394134521, + 0.018067380413413048, + 0.0024807192385196686, + -0.0008284482173621655, + 0.0215512216091156, + 0.05480379983782768, + -0.02326701022684574, + -0.027111805975437164, + 0.013296622782945633, + 0.009489526972174644, + 0.021551379933953285, + 0.03607914596796036, + -0.014990055933594704, + 0.013208746910095215, + -0.012847816571593285, + 0.0469483807682991, + 0.0025472037959843874, + 0.01595531404018402, + -0.02178444340825081, + 0.023904899135231972, + -0.03129227086901665, + 0.012307196855545044, + 0.006174926180392504, + 0.04195520281791687, + 0.0063583943992853165, + -0.0061134835705161095, + -0.005230822134763002, + -0.0016651826445013285, + 0.009421446360647678, + -0.011615828610956669, + -0.006242255214601755, + 0.010654288344085217, + -0.0048488168977200985, + 0.0051232255063951015, + -0.01805705949664116, + 0.025165189057588577, + 0.010493225418031216, + -0.0313556082546711, + -0.03814215958118439, + 0.016358904540538788, + -0.029814887791872025, + -0.06506191194057465, + -0.03295881301164627, + 0.04817778989672661, + -0.023905599489808083, + 0.016435300931334496, + 0.03584698960185051, + -0.05577472224831581, + -0.005466046277433634, + -0.0003771023475565016, + -0.024405531585216522, + -0.04523481801152229, + 0.018693815916776657, + 0.023580025881528854, + -0.033544886857271194, + 0.025326823815703392, + -0.020648756995797157, + 0.010037188418209553, + -0.027652373537421227, + 0.015734044834971428, + -0.053634967654943466, + 0.02083525061607361, + 0.0651431456208229, + 0.005184088367968798, + -0.014997591264545918, + 0.005636073183268309, + -0.052814871072769165, + 0.034622520208358765, + -0.0006445691687986255, + -0.07359683513641357, + -0.03480624035000801, + 0.041473813354969025, + 0.02832069993019104, + 0.004731832072138786, + -0.016283361241221428, + 0.027603108435869217, + 0.029119040817022324, + -0.026635950431227684, + 0.029615720734000206, + -0.025724075734615326, + 0.03060954064130783, + 0.018611151725053787, + -0.012744365260004997, + 0.02343689277768135, + -0.02626168727874756, + -0.016765492036938667, + 0.04336991906166077, + -0.0038627798203378916, + 0.017827820032835007, + 0.030391085892915726, + 0.002882895525544882, + 0.01605834811925888, + -0.05640102177858353, + 0.0009090090752579272, + -0.004514767788350582, + 0.017833756282925606, + 0.026273347437381744, + 0.0025957149919122458, + 0.0320686511695385, + -0.02818198874592781, + 0.004280476365238428, + -0.02506415732204914, + 0.08700480312108994, + -0.02078358829021454, + 0.008074226789176464, + 0.054567642509937286, + 0.004850021097809076, + 0.02386915497481823, + -0.01643541269004345, + -0.012674163095653057, + 0.008752069436013699, + 0.009206459857523441, + -0.011548163369297981, + -0.04432988539338112, + 0.044894687831401825, + 0.042574264109134674, + -0.036428749561309814, + -0.03307195007801056, + -0.01200630608946085, + -0.02075052261352539, + 0.016066107898950577, + -0.035446979105472565, + 0.03208699822425842, + 0.012349061667919159, + -0.007768359966576099, + -0.007857161574065685, + -0.020334092900156975, + -0.04093238338828087, + -0.004061988554894924, + 0.0018343472620472312, + -0.007963316515088081, + 0.03330770134925842, + -0.03662518784403801, + 0.02717563509941101, + 0.016192717477679253, + 0.04184284806251526, + -0.00245956564322114, + 0.005679433234035969, + 0.006332883145660162, + -0.00869444664567709, + 0.011977429501712322, + -0.02869347855448723, + 0.01040787436068058, + 0.012395183555781841, + -0.016427692025899887, + -0.02563047595322132, + -0.01923491433262825, + 0.022033367305994034, + -0.014703424647450447, + 0.006272242870181799, + -0.021522779017686844, + 0.010618050582706928, + -0.0070326016284525394, + -0.009920566342771053, + 0.02758858911693096, + -0.02661884017288685, + 0.042281221598386765, + -0.009788934141397476, + 0.0002552898367866874, + 0.03447217494249344, + 0.037519026547670364, + -0.02438380755484104, + 0.008512144908308983, + 0.045884717255830765, + 0.045216143131256104, + 0.028394171968102455, + 0.05132684111595154, + -0.00780891440808773, + -0.014771614223718643, + -0.009673968888819218, + -0.0010289779165759683, + -0.02054378017783165, + 0.008352918550372124, + -0.001032117404974997, + -0.006515147164463997, + 0.0038717803545296192, + -0.022424668073654175, + 0.0212764460593462, + -0.044476866722106934, + -0.033144526183605194, + 0.012711672112345695, + -0.025692196562886238, + -0.0020411908626556396, + -0.05268767103552818, + 0.03227202966809273, + 0.019242513924837112, + -0.030518800020217896, + 0.04248293861746788, + -0.0032486743293702602, + -0.006769207771867514, + -0.005267275031656027, + 0.04682586342096329, + -0.018912239000201225, + -0.002952322829514742, + 0.034504909068346024, + 0.030817246064543724, + 0.03787669911980629, + -0.015555184334516525, + 0.022982006892561913, + 0.003925527911633253, + 0.004403369035571814, + -0.03724009543657303, + -0.008336631581187248, + -0.04128085821866989, + 0.019914789125323296, + 0.04268718883395195, + -0.011187545023858547, + 0.019552307203412056, + -0.05367877334356308, + -0.04132770374417305, + -0.008158201351761818, + 0.02378608100116253, + 0.03493208438158035, + 0.0012217079056426883, + 0.01542988047003746, + 0.02382112294435501, + -0.05119340866804123, + 0.01751694083213806, + 0.007051635999232531, + 0.013757795095443726, + -0.023170629516243935, + -0.014263935387134552 + ], + "start_index": 0, + "end_index": 352, + "token_count": 122, + "file_type": "avap_code", + "filename": "paginacion_dinamica_recursos.avap", + "addParam": true, + "addResult": true, + "assignment": true, + "call": true, + "startLoop": true + } + }, + { + "_index": "avap-docs-test-v4-bge", + "_id": "0971d901-b5ea-5ac1-a722-1d11d73f05d5", + "_source": { + "text": "addParam(\"sal_par\",saldo)\nif(saldo, 0, \">\")\n permitir = True\nelse()\n permitir = False\nend()\naddResult(permitir)", + "embedding": [ + -0.00467277504503727, + -0.018816357478499413, + -0.025435294955968857, + 0.01608140766620636, + -0.046324990689754486, + 0.03168552741408348, + 0.019922662526369095, + 0.06680739670991898, + -0.028262868523597717, + -0.02050689235329628, + -0.01936752162873745, + 0.015106447041034698, + -0.02144906111061573, + 0.020920027047395706, + -0.005341989919543266, + 0.03474992513656616, + 0.028252387419342995, + -0.012607714161276817, + 0.0384879931807518, + 0.0072182477451860905, + -0.029897373169660568, + 0.05274314805865288, + -0.0037698443047702312, + 0.03682263568043709, + -0.01745055988430977, + -0.02632991597056389, + -0.008363081142306328, + -0.00843337457627058, + 0.0014728422975167632, + -0.0015257603954523802, + -0.002741164295002818, + -0.024907218292355537, + -0.011799363419413567, + -0.05110521614551544, + -0.014224584214389324, + 0.014208889566361904, + -0.028181713074445724, + -0.03462842106819153, + -0.02721625566482544, + 0.02524186298251152, + -0.008533119224011898, + -0.03863769397139549, + -0.013817636296153069, + -0.06136385723948479, + 0.025885319337248802, + 0.011405830271542072, + -0.007997114211320877, + -0.01776553876698017, + -0.019498776644468307, + -0.03275325894355774, + -0.034436434507369995, + -0.014095379039645195, + 0.08125799894332886, + -0.031029775738716125, + -0.0031265162397176027, + 0.039757538586854935, + -0.024778204038739204, + 0.04981294646859169, + -0.02216218411922455, + -0.03231905400753021, + -0.03862837329506874, + -0.005038613919168711, + -0.053345657885074615, + -0.006945467554032803, + 0.04643580690026283, + 0.017398692667484283, + 0.010302070528268814, + 0.012124769389629364, + 0.005399055313318968, + -0.002861324232071638, + 0.04820570349693298, + 0.01683109998703003, + 0.010519848205149174, + -0.027713337913155556, + -0.08623236417770386, + -0.021610142663121223, + 0.02316468209028244, + -0.009179455228149891, + -0.02690909244120121, + -0.009661001153290272, + 0.004716381896287203, + -0.03149121627211571, + 0.005652204621583223, + -0.0011314842849969864, + 0.001555571798235178, + 0.039299122989177704, + 0.009031719528138638, + -0.0022193514741957188, + -0.05073025822639465, + 0.04731476679444313, + 0.00498243048787117, + 0.008822372183203697, + 0.014853610657155514, + -0.04330458119511604, + -0.0005240541067905724, + -0.060426972806453705, + -0.012769429013133049, + -0.010639316402375698, + 0.023428866639733315, + 0.014852460473775864, + 0.007004231680184603, + -0.020681362599134445, + 0.03902887925505638, + 0.0019547645933926105, + 0.03679731488227844, + -0.0016081436770036817, + 0.008162399753928185, + -0.027931461110711098, + 0.03159233555197716, + -0.012445610016584396, + 0.0036314232274889946, + -6.599790503969416e-05, + 0.02519875392317772, + -0.009324775077402592, + -0.0045646741054952145, + -0.03601686656475067, + 0.013970795087516308, + 0.002768980572000146, + 0.03157166391611099, + 0.008512770757079124, + 0.050475411117076874, + -0.005244174040853977, + 0.047801822423934937, + -0.005125343333929777, + -0.03665338456630707, + 0.04906325787305832, + -0.046626243740320206, + 0.020587509498000145, + -0.004854131489992142, + -0.00045047738240100443, + 0.024512073025107384, + -0.02080240473151207, + -0.0192550141364336, + -0.0019484484801068902, + -0.047414593398571014, + 0.00030761773814447224, + -0.009490481577813625, + 0.03044489584863186, + 0.010095078498125076, + -0.06658528000116348, + 0.005500331055372953, + 0.0012448743218556046, + 0.027220962569117546, + -0.022642197087407112, + 0.08110274374485016, + -0.06422706693410873, + 0.03905845060944557, + -0.03159969672560692, + 0.0092867910861969, + 0.0022124918177723885, + -0.008986428380012512, + 0.03452875092625618, + 0.013392344117164612, + -0.006750825792551041, + 0.020769206807017326, + -0.003870593151077628, + 0.01645064167678356, + 0.0330856554210186, + 0.01859368197619915, + 0.017627662047743797, + -0.017751267179846764, + -0.0006806329474784434, + -0.023191208019852638, + -0.025714963674545288, + -0.014020385220646858, + -0.01657656580209732, + 0.0213872492313385, + -0.018104543909430504, + 0.0012894823448732495, + -0.026927342638373375, + 0.0125663997605443, + -0.021163804456591606, + 0.04768485948443413, + -0.00728745898231864, + -0.022642474621534348, + 0.02988479658961296, + 0.032657720148563385, + 0.025624094530940056, + -0.0017641423037275672, + -0.06318046897649765, + -0.026340007781982422, + -0.04549117386341095, + -0.0018716658232733607, + -0.04687568172812462, + -0.017727307975292206, + 0.04976140335202217, + 0.058560680598020554, + -0.018329406157135963, + 0.027922485023736954, + 0.026965616270899773, + -0.00926203466951847, + -0.024250473827123642, + 0.05894719064235687, + -0.016922200098633766, + 0.007298633921891451, + -0.007207429967820644, + 0.028808914124965668, + 0.002253995044156909, + 0.006102204788476229, + -0.01801362819969654, + -0.02344115450978279, + 0.01966143772006035, + 0.021421102806925774, + -0.048076532781124115, + -0.008889459073543549, + -0.020784853026270866, + -0.049763262271881104, + -0.02255745232105255, + 0.030480049550533295, + -0.02299056202173233, + 0.03280463442206383, + 0.03627059608697891, + -0.04463117942214012, + 0.04738946259021759, + 0.00412068422883749, + 0.021618178114295006, + -0.006704698782414198, + -0.005730403587222099, + 0.00024121112073771656, + 0.00344395125284791, + -0.013070812448859215, + 0.0803491547703743, + -0.0029723115731030703, + 0.07916868478059769, + -0.03272700682282448, + 0.01579580456018448, + 0.014785470440983772, + -0.0013889167457818985, + -0.011012372560799122, + -0.015582491643726826, + 0.01212135050445795, + 0.004913731478154659, + -0.0021369480527937412, + -0.016324607655405998, + 0.04237491264939308, + -0.022235915064811707, + 0.003822345519438386, + 0.04224459081888199, + -0.030706429854035378, + -0.007939092814922333, + -0.06968769431114197, + -0.05495966598391533, + -0.004005792085081339, + 0.0017975755035877228, + -0.028105631470680237, + -0.005813254974782467, + -0.00485260458663106, + 0.03367316350340843, + -0.03002306818962097, + -0.04960693418979645, + 0.007491962984204292, + -0.01913650892674923, + -0.04154815524816513, + 0.033840931951999664, + 0.0005454160273075104, + 0.0233185775578022, + 0.04205663874745369, + -0.02098076418042183, + -0.031148895621299744, + 0.027214810252189636, + 0.00396223459392786, + -0.015614758245646954, + 0.002212874824181199, + 0.02334951050579548, + 0.011847609654068947, + 0.006589674856513739, + -0.02662486396729946, + 0.0488164983689785, + -0.010769065469503403, + -0.013977047987282276, + 0.04498598724603653, + -0.026253102347254753, + -0.006581643130630255, + -0.015589405782520771, + -0.003654750995337963, + 0.04041263461112976, + 0.010112471878528595, + -0.020368678495287895, + 0.11578837037086487, + 0.019683606922626495, + 0.04290308058261871, + -0.006281896494328976, + 0.02561698481440544, + -0.014319315552711487, + 0.046808041632175446, + -0.03961910679936409, + 0.010335331782698631, + 0.004606201313436031, + 0.013689049519598484, + -0.0805942565202713, + -0.01125937607139349, + 0.0014524615835398436, + 0.08128465712070465, + -0.015602031722664833, + -0.027371374890208244, + -0.020582007244229317, + 0.030584411695599556, + -0.16408053040504456, + -0.0643501803278923, + -0.027318159118294716, + -0.020429203286767006, + -0.004450623877346516, + 0.012946737930178642, + -0.021344946697354317, + 0.04224925488233566, + -0.0399063304066658, + 0.046014659106731415, + -0.005698366556316614, + -0.06755709648132324, + 0.055993061512708664, + -0.02764838933944702, + -0.017957240343093872, + -0.04232081398367882, + -0.03070836327970028, + 0.023654909804463387, + -0.013204138725996017, + -0.04882276803255081, + -0.04477878659963608, + -0.06952672451734543, + -0.003705477574840188, + -0.03612132743000984, + -0.04670572653412819, + -0.02075394243001938, + -0.0025244643911719322, + 0.007639730349183083, + -0.04613858461380005, + 0.011870027519762516, + -0.004971764050424099, + 0.006588478107005358, + -0.004316042177379131, + -0.011164391413331032, + -0.016635792329907417, + 0.047658711671829224, + 0.025597209110856056, + 0.005708551034331322, + 0.0036376062780618668, + 0.021533165127038956, + 0.009774893522262573, + 0.010535377077758312, + -0.011188065633177757, + 0.02010488137602806, + -0.026249760761857033, + 0.016406696289777756, + 0.020109687000513077, + -0.005601781420409679, + -0.044740043580532074, + 0.020607134327292442, + -0.03935817629098892, + -0.002484524855390191, + -0.004629329778254032, + -0.01314037200063467, + -0.039053525775671005, + 0.0189426988363266, + -0.027974149212241173, + 0.014082363806664944, + -0.02570343390107155, + 0.01769023761153221, + -0.006280534900724888, + -0.010776354931294918, + 0.010813764296472073, + -0.02101745270192623, + -0.011758149601519108, + -0.0023117989767342806, + 0.028025204315781593, + 0.036263082176446915, + 0.04639270156621933, + -0.057692594826221466, + 0.029808945953845978, + -0.01216617040336132, + -0.027217186987400055, + 0.00041485854308120906, + 0.011934351176023483, + -0.01104698609560728, + -0.009831276722252369, + 0.005417110398411751, + 0.020840413868427277, + -0.11662149429321289, + 0.014782826416194439, + -0.02227931097149849, + -0.003961179405450821, + 0.03442450612783432, + 0.004094300325959921, + -0.04561508074402809, + -0.0169413723051548, + 0.016310464590787888, + 0.024872245267033577, + 0.2285977602005005, + 0.019526377320289612, + 0.010902038775384426, + -0.013271814212203026, + 0.024170638993382454, + -0.04516945406794548, + 0.036297574639320374, + -0.007900270633399487, + -0.016561608761548996, + -0.022889724001288414, + 0.0013725659810006618, + 0.04208782687783241, + -0.03392530605196953, + -0.011283266358077526, + -0.004963965620845556, + 0.036614567041397095, + -0.050326935946941376, + 0.02553895115852356, + 0.03963727504014969, + -0.018285026773810387, + 0.04639136791229248, + 0.024231355637311935, + -0.07446715980768204, + -0.021197250112891197, + -0.0315748006105423, + -0.040298305451869965, + -0.002508859382942319, + -0.001448149560019374, + -0.011824597604572773, + -0.02448202483355999, + -0.020322060212492943, + 0.011408207006752491, + 0.03584710881114006, + -0.022018292918801308, + -0.023138757795095444, + -0.0009972258703783154, + 0.0045809559524059296, + 0.010776126757264137, + 0.012719811871647835, + 0.019833678379654884, + 0.06427118927240372, + -0.004281391855329275, + -0.019642747938632965, + 0.05659710615873337, + -0.011236436665058136, + -0.03835754841566086, + 0.038382548838853836, + -0.008597551845014095, + -0.007584056351333857, + -0.015926137566566467, + 0.003968372475355864, + -0.06206171214580536, + -0.008916838094592094, + -0.014371012337505817, + -0.0007433787104673684, + -0.05169153958559036, + 0.023645080626010895, + 0.06422282010316849, + -0.014490312896668911, + -0.006837205961346626, + 0.029461689293384552, + -0.00665200175717473, + 0.06220211461186409, + -0.017912419512867928, + -0.028088707476854324, + -0.0027642406057566404, + -0.004166779574006796, + -0.017019454389810562, + 0.017456427216529846, + 0.03742339089512825, + -0.02002767100930214, + 0.00827774778008461, + 0.06445042043924332, + 0.055007174611091614, + 0.0005650251405313611, + -0.000706826860550791, + 0.02818182110786438, + 0.006411112379282713, + -0.016887471079826355, + 0.02723374404013157, + -0.059093277901411057, + 0.011294079944491386, + -0.04660367593169212, + 0.03989622741937637, + 0.005567716434597969, + -0.021188875660300255, + -0.001988994190469384, + 0.04976649954915047, + -0.0033030954655259848, + -0.0010782433673739433, + 0.00014461942191701382, + -0.008309253491461277, + 0.0076300897635519505, + 0.01548618171364069, + -0.019070006906986237, + 0.028362328186631203, + 0.004163942765444517, + 0.02146158553659916, + -0.040018100291490555, + 0.032715171575546265, + -0.06962444633245468, + -0.0003502251347526908, + 0.03888030722737312, + 0.006850572302937508, + 0.03621070459485054, + -0.03257191926240921, + -0.0031419554725289345, + -0.02922598272562027, + -0.010207859799265862, + -0.024459518492221832, + -0.056705739349126816, + 0.001691101468168199, + -0.014037308283150196, + 0.012248393148183823, + 0.011236455291509628, + 0.022365136072039604, + 0.012748870998620987, + 0.013522714376449585, + 0.033719681203365326, + 0.011609422974288464, + -0.054471828043460846, + -0.007401683367788792, + -0.025147512555122375, + -0.00721595948562026, + 0.003286914201453328, + -0.013871913775801659, + 0.016284309327602386, + 0.05941728875041008, + -0.005647063255310059, + 0.03462573513388634, + 0.032836224883794785, + -0.005113315302878618, + -0.020244384184479713, + 0.012110556475818157, + 0.019297119230031967, + 0.004693064838647842, + 0.060670074075460434, + -0.006764888763427734, + 0.015636678785085678, + 0.06493309140205383, + -0.019928965717554092, + -0.008044706657528877, + -0.01984892040491104, + -0.01729225553572178, + -0.004476610571146011, + 0.005684136878699064, + 0.04322486370801926, + -0.003373597515746951, + -0.02004464901983738, + 0.027745459228754044, + 0.035777848213911057, + 0.04911680519580841, + 0.05152766406536102, + -0.0561048723757267, + -0.012677725404500961, + -0.044689759612083435, + 0.005082417745143175, + -0.0017686154460534453, + -0.017651276662945747, + 0.003979452885687351, + 0.030540751293301582, + -0.032698508352041245, + -0.007092971354722977, + 0.02053772285580635, + -0.0049645500257611275, + -0.028678961098194122, + -0.0022907510865479708, + 0.03062814474105835, + -0.03136872500181198, + -0.008958953432738781, + 0.007469555363059044, + -0.040630582720041275, + -0.007035610731691122, + 0.005462081637233496, + -0.004506248980760574, + -0.013224289752542973, + -0.030569078400731087, + 0.06111015006899834, + -0.009153513237833977, + -0.04891443997621536, + 0.016293535009026527, + -0.01618531532585621, + -0.008332610130310059, + 0.022342003881931305, + -0.009409814141690731, + -0.02820541523396969, + 0.0062926155515015125, + 0.002240497851744294, + 0.023747103288769722, + -0.014342566020786762, + -0.023658428341150284, + 0.0926918163895607, + -0.02936544641852379, + -0.03495435044169426, + 0.010221141390502453, + 0.08679582923650742, + 0.035976894199848175, + 0.002181881805881858, + -0.03534052148461342, + -0.038397353142499924, + 0.04297879710793495, + -0.013022189028561115, + -0.03152699023485184, + -0.03691447526216507, + -0.016602788120508194, + -0.021163996309041977, + 0.02298572286963463, + 0.017862288281321526, + -0.008538314141333103, + -0.02550438418984413, + -0.05318891257047653, + 0.012304225005209446, + -0.012939578853547573, + 0.003752797609195113, + 0.08314406871795654, + -0.02260916866362095, + 0.02684081345796585, + 0.0012102423934265971, + 0.015004766173660755, + -0.004669316578656435, + -0.04113168269395828, + -0.025875363498926163, + -0.0010074980091303587, + -0.012998407706618309, + -0.053370293229818344, + -0.0020548768807202578, + 0.028385406360030174, + 0.015143650583922863, + 0.012192740105092525, + -0.03015126660466194, + -0.000664719904307276, + -0.03781340271234512, + 0.04978248476982117, + 0.03883703052997589, + 0.007562815211713314, + -0.0005666918004862964, + -0.04257659986615181, + 0.03972800821065903, + 0.023806093260645866, + -0.026736725121736526, + 0.041990336030721664, + -0.01587807945907116, + 0.020789140835404396, + 0.08383920043706894, + 0.01112113706767559, + 0.08508867025375366, + -0.04542458802461624, + 0.055982936173677444, + -0.01116181630641222, + 0.028516270220279694, + -0.02872346341609955, + -0.03598921746015549, + -0.02071034163236618, + -0.031246306374669075, + 0.061325471848249435, + 0.04650372266769409, + -0.02334616892039776, + 0.04412207379937172, + -0.031006615608930588, + 0.004249817691743374, + 0.032923903316259384, + 0.05356410890817642, + -0.030807049944996834, + -0.011628508567810059, + 0.004797738511115313, + -0.05294876545667648, + 0.02590603195130825, + -0.07794201374053955, + -0.021906474605202675, + 0.00982063077390194, + 0.0178062841296196, + 0.0003111510304734111, + -0.014904745854437351, + -0.03381277993321419, + -0.0052557955496013165, + -0.008281542919576168, + 0.014548179693520069, + -0.019810210913419724, + 0.06678256392478943, + 0.00011687511141644791, + -0.04189400002360344, + -0.028663286939263344, + 0.0025879039894789457, + 0.022261343896389008, + 0.020109744742512703, + 0.025224797427654266, + -0.037882931530475616, + 0.002586528891697526, + 0.0029746915679425, + -0.07142698019742966, + 0.014598165638744831, + 0.019961731508374214, + -0.045770663768053055, + 0.07637544721364975, + -0.019980285316705704, + -0.03511412441730499, + 0.005309342872351408, + 0.005727588199079037, + -0.01900150254368782, + 0.019636835902929306, + -0.00857411976903677, + -0.030835924670100212, + -0.014469464309513569, + 0.005050660111010075, + -0.015565297566354275, + -0.013971829786896706, + 0.015007083304226398, + -0.01518997736275196, + -0.0007313165697269142, + 0.015822889283299446, + 0.0068998332135379314, + -0.04966931417584419, + 0.03341825306415558, + 0.048253364861011505, + 0.026741253212094307, + -0.023883745074272156, + 0.058539651334285736, + -0.042253296822309494, + -0.012163102626800537, + -0.0036799279041588306, + 0.03195207566022873, + -0.0118149658665061, + -0.03304525837302208, + -0.006814712658524513, + 0.024848345667123795, + -0.025987494736909866, + 0.03369075059890747, + -0.001494600553996861, + -0.02770163305103779, + -0.013728939928114414, + 0.009532646276056767, + -0.00883705448359251, + -0.018314559012651443, + 0.056675639003515244, + -0.02112637273967266, + -0.062197014689445496, + 0.018533647060394287, + -0.040337905287742615, + -0.007787616923451424, + -0.056090887635946274, + -0.010627311654388905, + 0.004751181695610285, + 0.07091392576694489, + -0.010259333066642284, + -0.012814774177968502, + 0.02265073172748089, + 0.009593386203050613, + -0.01440303772687912, + -0.042395055294036865, + -0.009113308973610401, + -0.029782628640532494, + -0.0015308019937947392, + -0.02704097516834736, + -0.04221060127019882, + -0.01908814162015915, + -0.028812037780880928, + -0.02507687360048294, + 0.02496068924665451, + 0.020637214183807373, + -0.008791325613856316, + -0.04578857496380806, + -0.014208872802555561, + -0.008841955102980137, + -0.016233697533607483, + -0.06142966449260712, + 0.048991698771715164, + 0.004381242208182812, + 0.029981333762407303, + -0.0038879383355379105, + 0.002969768363982439, + 0.020053844898939133, + -0.018177011981606483, + -0.0178671944886446, + 0.032385341823101044, + -0.017466748133301735, + 0.056979142129421234, + -0.03331452235579491, + 0.01295316219329834, + 0.02511473372578621, + -0.027040820568799973, + -0.013030135072767735, + -0.01103866659104824, + -0.026741230860352516, + -0.03345150128006935, + -0.04623718932271004, + 0.009920514188706875, + 0.009076792746782303, + 0.03342338278889656, + 0.06853509694337845, + 0.03755377605557442, + -0.022345751523971558, + -0.008972937241196632, + -0.015723664313554764, + -0.00015624680963810533, + -0.12828753888607025, + 0.014397181570529938, + -0.02449573576450348, + -0.006703685037791729, + -0.011268382892012596, + -0.0263245590031147, + -0.026436397805809975, + -0.0276471097022295, + -0.03489278629422188, + -0.03722909837961197, + -0.038469698280096054, + -0.009569387882947922, + 0.012705842033028603, + -0.025717690587043762, + 0.014126807451248169, + -0.005355508998036385, + 0.012441535480320454, + 0.0039436472579836845, + -0.033356208354234695, + 0.055430103093385696, + -0.002730948617681861, + 0.004191444255411625, + -0.019833406433463097, + 0.028677184134721756, + -0.017354173585772514, + 0.011857990175485611, + 0.004702108912169933, + 0.01981177367269993, + -0.0183098167181015, + -0.04391662776470184, + -0.022478830069303513, + 0.009450660087168217, + 0.0226599033921957, + 0.0338716097176075, + 0.034636419266462326, + 0.0013640664983540773, + -0.020131591707468033, + 0.04289529472589493, + -0.010542049072682858, + 0.04361555725336075, + 0.007507644593715668, + 0.03231142833828926, + -0.06682157516479492, + -0.008086023852229118, + 0.04442637786269188, + 0.01684342324733734, + 0.0003608675324358046, + -0.013943851925432682, + -0.02811923436820507, + -0.002438911236822605, + -0.0010081802029162645, + 0.007274881936609745, + -0.009729855693876743, + 0.03018954209983349, + -0.009056327864527702, + -0.01512952521443367, + -0.047307901084423065, + -0.002174003981053829, + 0.039757587015628815, + -0.011424659751355648, + -0.012002241797745228, + 0.014931526966392994, + -0.057853762060403824, + -0.034750185906887054, + -0.023468028753995895, + 0.014559525065124035, + -0.018361693248152733, + -0.019037842750549316, + 0.023625485599040985, + -9.16019271244295e-05, + 0.015067155472934246, + 0.00010577080684015527, + -0.0060069747269153595, + -0.051539476960897446, + 0.020939946174621582, + 0.023399805650115013, + -0.0254987683147192, + 0.03252757340669632, + -0.002843501977622509, + 0.016975516453385353, + -0.05397505685687065, + -0.005484709050506353, + -0.0018009687773883343, + -0.03456910327076912, + 0.06101233512163162, + -0.036360472440719604, + -0.011014049872756004, + 0.01769350841641426, + -0.06734029948711395, + 0.024291735142469406, + -0.028924578800797462, + -0.06678284704685211, + 0.0031358376145362854, + -0.011495967395603657, + 0.022204546257853508, + 0.03476587310433388, + 0.0019241475965827703, + 0.036444950848817825, + 0.029172465205192566, + -0.011399751529097557, + 0.01920163445174694, + 0.004174953326582909, + -0.0012098622974008322, + 0.00736786425113678, + -0.010016817599534988, + -0.00496432650834322, + 0.001279802294448018, + 0.0014159444253891706, + 0.032884176820516586, + 0.028979996219277382, + 0.005189220421016216, + 0.036815717816352844, + -0.019245503470301628, + -0.008536492474377155, + -0.05138205736875534, + -0.022788986563682556, + 0.00930802058428526, + 0.05674641579389572, + 0.006550323683768511, + -0.07004072517156601, + 0.0252300463616848, + -0.010263743810355663, + 0.06192174181342125, + 0.0038838370237499475, + 0.024524852633476257, + 0.0023479873780161142, + -0.017630772665143013, + 0.024847738444805145, + 0.0048042526468634605, + 0.02070317231118679, + -0.008153023198246956, + -0.024769209325313568, + 0.01602361351251602, + 0.005665525794029236, + 0.012609523721039295, + -0.003381461603567004, + -0.04015003889799118, + 0.028089093044400215, + -0.040061790496110916, + 0.013301441445946693, + 0.004920828156173229, + -0.033820364624261856, + 0.0371791236102581, + -0.04393451660871506, + 0.004504114389419556, + 0.04942343384027481, + -0.01726219803094864, + 0.009467159397900105, + 0.011867769062519073, + -0.01205569040030241, + 0.00035705414484255016, + 0.010259861126542091, + -0.025005176663398743, + 0.02383466809988022, + -0.050203170627355576, + -0.018792955204844475, + -0.023466596379876137, + 0.010365908034145832, + 0.013037467375397682, + -0.012565110810101032, + -0.004730565473437309, + 0.02554897777736187, + 0.02106061764061451, + -0.010208298452198505, + -0.017805473878979683, + -0.01657889224588871, + -0.030927151441574097, + 0.008933466859161854, + -0.009393746964633465, + 0.024170810356736183, + -0.028108147904276848, + 0.013286635279655457, + -0.006500896532088518, + 0.016835536807775497, + 0.02975616045296192, + -0.010751675814390182, + 0.019401663914322853, + -0.03378111869096756, + 0.07557651400566101, + 0.03405866026878357, + -0.024401290342211723, + 0.043446220457553864, + 0.037731677293777466, + -0.025044327601790428, + 0.033076558262109756, + 0.03725089877843857, + 0.051997583359479904, + 0.0003168880066368729, + 0.005568916909396648, + 0.014820948243141174, + -0.02391449175775051, + -0.014032992534339428, + 0.03686974197626114, + -0.02427894063293934, + 0.03341935947537422, + 0.0037399574648588896, + 0.018276838585734367, + 0.017634229734539986, + -0.00407681567594409, + -0.008185381069779396, + -0.014546114951372147, + -0.018470220267772675, + -0.016946440562605858, + 0.017409762367606163, + -0.015138490125536919, + -0.02149650827050209, + 0.025829188525676727, + 0.04215814173221588, + 0.023005619645118713, + 0.05324369668960571, + -0.037146080285310745, + -0.007876087911427021, + -0.04865436255931854, + 0.006855785846710205, + -0.02868218906223774, + -0.01449709665030241, + 0.046464692801237106, + 0.017841428518295288, + 0.0478062741458416, + -0.02208954654633999, + 0.026980513706803322, + 0.04146675392985344, + 0.040459442883729935, + 0.0009623212390579283, + -0.014755628071725368, + 0.005833686329424381, + -0.02178422175347805, + -0.002124351216480136, + -0.036538176238536835, + 0.003439360298216343, + -0.03313881531357765, + -0.0040415446273982525, + -0.01859777420759201, + 0.03837166354060173, + -0.010604428127408028, + -0.020971685647964478, + 0.03117285668849945, + 0.030645156279206276, + -0.05211019888520241, + 0.0049094147980213165, + 0.023176513612270355, + 0.016743527725338936, + -0.033992569893598557, + -0.005943712778389454 + ], + "start_index": 0, + "end_index": 117, + "token_count": 39, + "file_type": "avap_code", + "filename": "else_estandar.avap", + "addParam": true, + "addResult": true, + "assignment": true, + "if": true + } + } +] \ No newline at end of file diff --git a/research/code_indexing/BNF/avap.lark b/research/code_indexing/BNF/avap.lark index bd68e68..70bf084 100644 --- a/research/code_indexing/BNF/avap.lark +++ b/research/code_indexing/BNF/avap.lark @@ -215,8 +215,7 @@ FLOATNUMBER: /(?:[0-9]+\.[0-9]*|\.[0-9]+)/ stringliteral: STRING_DOUBLE | STRING_SINGLE -# STRING_DOUBLE: /"([^"\\]|\\["'\\ntr0])*"/ -# STRING_SINGLE: /'([^'\\]|\\["'\\ntr0])*'/ + STRING_DOUBLE: /"([^"\\]|\\.)*"/ STRING_SINGLE: /'([^'\\]|\\.)*'/ diff --git a/research/code_indexing/BNF/avap_old.lark b/research/code_indexing/BNF/avap_old.lark new file mode 100644 index 0000000..bd68e68 --- /dev/null +++ b/research/code_indexing/BNF/avap_old.lark @@ -0,0 +1,228 @@ +start: program + +program: separator* line_or_comment (separator+ line_or_comment)* separator* + +?line_or_comment: simple_stmt comment? + | compound_stmt + | comment + | BLOCK_COMMENT + +?separator: EOL+ + +comment: DOC_COMMENT | LINE_COMMENT + +EOL: /\r?\n/ + +DOC_COMMENT.2: /\/\/\/[^\r\n]*/ +LINE_COMMENT.1: /\/\/[^\r\n]*/ +BLOCK_COMMENT: /\/\*[\s\S]*?\*\// + +?simple_stmt: assignment + | return_stmt + | system_command + | io_command + | async_command + | connector_cmd + | db_command + | http_command + | util_command + | modularity_cmd + | call_stmt + +?compound_stmt: function_decl + | if_stmt + | loop_stmt + | try_stmt + +assignment: identifier "=" expression + +call_stmt: identifier "(" argument_list? ")" + | identifier "=" identifier "." identifier "(" argument_list? ")" + | identifier "." identifier "(" argument_list? ")" + +system_command: register_cmd + | addvar_cmd + +register_cmd: "registerEndpoint" "(" stringliteral "," stringliteral "," list_display "," stringliteral "," identifier "," identifier ")" + +addvar_cmd: "addVar" "(" addvar_arg "," addvar_arg ")" + +addvar_arg: identifier + | literal + | "$" identifier + +identifier: IDENTIFIER + +system_variable: "_status" + +io_command: addparam_cmd + | getlistlen_cmd + | addresult_cmd + | getparamlist_cmd + +addparam_cmd: "addParam" "(" stringliteral "," identifier ")" +getlistlen_cmd: "getListLen" "(" identifier "," identifier ")" +getparamlist_cmd: "getQueryParamList" "(" stringliteral "," identifier ")" +addresult_cmd: "addResult" "(" identifier ")" + +if_stmt: "if" "(" if_condition ")" separator block ("else" "(" ")" separator block)? "end" "(" ")" + +if_condition: if_atom "," if_atom "," stringliteral + | "None" "," "None" "," stringliteral + +if_atom: identifier + | literal + +loop_stmt: "startLoop" "(" identifier "," expression "," expression ")" separator block "endLoop" "(" ")" + +try_stmt: "try" "(" ")" separator block "exception" "(" identifier ")" separator block "end" "(" ")" + +block: separator* line_or_comment (separator+ line_or_comment)* separator* + +async_command: go_stmt + | gather_stmt + +go_stmt: identifier "=" "go" identifier "(" argument_list? ")" +gather_stmt: identifier "=" "gather" "(" identifier ("," expression)? ")" + +connector_cmd: connector_instantiation + +connector_instantiation: identifier "=" "avapConnector" "(" stringliteral ")" + +http_command: req_post_cmd + | req_get_cmd + +req_post_cmd: "RequestPost" "(" expression "," expression "," expression "," expression "," identifier "," expression ")" +req_get_cmd: "RequestGet" "(" expression "," expression "," expression "," identifier "," expression ")" + +db_command: orm_direct + | orm_check + | orm_create + | orm_select + | orm_insert + | orm_update + +orm_direct: "ormDirect" "(" expression "," identifier ")" +orm_check: "ormCheckTable" "(" expression "," identifier ")" +orm_create: "ormCreateTable" "(" expression "," expression "," expression "," identifier ")" + +orm_select: "ormAccessSelect" "(" orm_fields "," expression ("," expression)? "," identifier ")" + +orm_fields: "*" + | expression + +orm_insert: "ormAccessInsert" "(" expression "," expression "," identifier ")" +orm_update: "ormAccessUpdate" "(" expression "," expression "," expression "," expression "," identifier ")" + +util_command: json_list_cmd + | crypto_cmd + | regex_cmd + | datetime_cmd + | stamp_cmd + | string_cmd + | replace_cmd + +json_list_cmd: "variableToList" "(" expression "," identifier ")" + | "itemFromList" "(" identifier "," expression "," identifier ")" + | "variableFromJSON" "(" identifier "," expression "," identifier ")" + | "AddVariableToJSON" "(" expression "," expression "," identifier ")" + +crypto_cmd: "encodeSHA256" "(" identifier_or_string "," identifier ")" + | "encodeMD5" "(" identifier_or_string "," identifier ")" + +regex_cmd: "getRegex" "(" identifier "," stringliteral "," identifier ")" + +datetime_cmd: "getDateTime" "(" stringliteral "," expression "," stringliteral "," identifier ")" + +stamp_cmd: "stampToDatetime" "(" expression "," stringliteral "," expression "," identifier ")" + | "getTimeStamp" "(" stringliteral "," stringliteral "," expression "," identifier ")" + +string_cmd: "randomString" "(" expression "," expression "," identifier ")" + +replace_cmd: "replace" "(" identifier_or_string "," stringliteral "," stringliteral "," identifier ")" + +function_decl: "function" identifier "(" param_list? ")" "{" separator block "}" + +param_list: identifier ("," identifier)* + +return_stmt: "return" "(" expression? ")" + +modularity_cmd: include_stmt + | import_stmt + +include_stmt: "include" stringliteral +import_stmt: "import" ("<" identifier ">" | stringliteral) + +?expression: logical_or + +?logical_or: logical_and ("or" logical_and)* +?logical_and: logical_not ("and" logical_not)* + +?logical_not: "not" logical_not + | comparison + +?comparison: arithmetic (comp_op arithmetic)* + +comp_op: "==" | "!=" | "<" | ">" | "<=" | ">=" | "in" | "is" + +?arithmetic: term (("+" | "-") term)* +?term: factor (("*" | "/" | "%") factor)* + +?factor: ("+" | "-") factor + | power + +?power: primary ("**" factor)? + +?primary: atom postfix* + +postfix: "." identifier + | "[" expression "]" + | "[" expression? ":" expression? (":" expression?)? "]" + | "(" argument_list? ")" + +?atom: identifier + | "$" identifier + | literal + | "(" expression ")" + | list_display + | dict_display + +list_display: "[" argument_list? "]" + | "[" expression "for" identifier "in" expression if_clause? "]" + +if_clause: "if" expression + +dict_display: "{" key_datum_list? "}" + +key_datum_list: key_datum ("," key_datum)* +key_datum: expression ":" expression + +argument_list: expression ("," expression)* + +number: FLOATNUMBER + | INTEGER + +literal: stringliteral + | number + | boolean + | "None" + +boolean: "True" | "False" + +INTEGER: /[0-9]+/ +FLOATNUMBER: /(?:[0-9]+\.[0-9]*|\.[0-9]+)/ + +stringliteral: STRING_DOUBLE + | STRING_SINGLE + +# STRING_DOUBLE: /"([^"\\]|\\["'\\ntr0])*"/ +# STRING_SINGLE: /'([^'\\]|\\["'\\ntr0])*'/ +STRING_DOUBLE: /"([^"\\]|\\.)*"/ +STRING_SINGLE: /'([^'\\]|\\.)*'/ + +identifier_or_string: identifier + | stringliteral + +IDENTIFIER: /[A-Za-z_][A-Za-z0-9_]*/ + +%ignore /[ \t]+/ \ No newline at end of file diff --git a/scratches/pseco/synthetic_dataset/avap_test/test.avap b/scratches/pseco/synthetic_dataset/avap_test/test.avap index 1caf175..b3185e4 100644 --- a/scratches/pseco/synthetic_dataset/avap_test/test.avap +++ b/scratches/pseco/synthetic_dataset/avap_test/test.avap @@ -1,4 +1,7 @@ -addParam("datos", lista_entrada) -getListLen(lista_entrada, longitud) -addVar(_status, 200) -addResult(longitud) \ No newline at end of file +addParam("archived",show_archived) +if(show_archived,"true","==") + ormAccessSelect(connector,"SELECT * FROM records WHERE archived=1",records) +else() + ormAccessSelect(connector,"SELECT * FROM records WHERE archived=0",records) +end() +addResult(records) \ No newline at end of file diff --git a/scratches/pseco/synthetic_dataset/avap_test/test.ipynb b/scratches/pseco/synthetic_dataset/avap_test/test.ipynb index f2ada10..79da406 100644 --- a/scratches/pseco/synthetic_dataset/avap_test/test.ipynb +++ b/scratches/pseco/synthetic_dataset/avap_test/test.ipynb @@ -2,20 +2,34 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "id": "c46228bd", "metadata": {}, "outputs": [], "source": [ - "code=\"variableToList(\\\"a\\\", myList)\\nAddVariableToJSON(\\\"1\\\", \\\"b\\\", myList)\\nAddVariableToJSON(\\\"2\\\", \\\"c\\\", myList)\\ngetListLen(myList, total)\\naddResult(total)\"" + "code=\"addParam(\\\"archived\\\", show_archived)\\nif(show_archived, \\\"true\\\", \\\"==\\\")\\n ormAccessSelect(connector, \\\"SELECT * FROM records WHERE archived=1\\\", records)\\nelse()\\n ormAccessSelect(connector, \\\"SELECT * FROM records WHERE archived=0\\\", records)\\nend()\\naddResult(records)\"" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 20, "id": "91c20032", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "addParam(\"archived\", show_archived)\n", + "if(show_archived, \"true\", \"==\")\n", + " ormAccessSelect(connector, \"SELECT * FROM records WHERE archived=1\", records)\n", + "else()\n", + " ormAccessSelect(connector, \"SELECT * FROM records WHERE archived=0\", records)\n", + "end()\n", + "addResult(records)\n" + ] + } + ], "source": [ "print(code)" ] diff --git a/scratches/pseco/synthetic_dataset/generate_parser_analysis.py b/scratches/pseco/synthetic_dataset/generate_parser_analysis.py index 4d381b3..21b6ceb 100644 --- a/scratches/pseco/synthetic_dataset/generate_parser_analysis.py +++ b/scratches/pseco/synthetic_dataset/generate_parser_analysis.py @@ -11,7 +11,7 @@ from src.config import settings app = typer.Typer() DEFAULT_DATASETS = [ - "output/candidate_A_reward_10_v3.json", + "synthetic_datasets/golden_dataset_parser_validation.json", ] @@ -197,7 +197,7 @@ def generate_parser_analysis( "Defaults to all files in synthetic_datasets/.", ), output_path: str = typer.Option( - "output/parser_analysis_candidate_A_v3.json", + "synthetic_datasets/validated_golden_synthetic_dataset.json", help="Output path for the consolidated analysis JSON.", ), api_url: str = typer.Option( diff --git a/scripts/pipelines/flows/elasticsearch_ingestion.py b/scripts/pipelines/flows/elasticsearch_ingestion.py index f99a4d0..427b65e 100644 --- a/scripts/pipelines/flows/elasticsearch_ingestion.py +++ b/scripts/pipelines/flows/elasticsearch_ingestion.py @@ -15,9 +15,9 @@ app = typer.Typer() @app.command() def elasticsearch_ingestion( docs_folder_path: str = "docs/samples", - output_path: str = "ingestion/chunks.json", + output_path: str = "ingestion/chunks-bge.json", docs_extension: list[str] = [".md", ".avap"], - es_index: str = "avap-docs-test-v4", + es_index: str = "avap-docs-test-v4-bge", es_request_timeout: int = 120, es_max_retries: int = 5, es_retry_on_timeout: bool = True, diff --git a/scripts/pipelines/flows/validate_synthetic_dataset.py b/scripts/pipelines/flows/validate_synthetic_dataset.py index 3b879eb..440d098 100644 --- a/scripts/pipelines/flows/validate_synthetic_dataset.py +++ b/scripts/pipelines/flows/validate_synthetic_dataset.py @@ -13,8 +13,8 @@ app = typer.Typer() @app.command() def validate_synthetic_dataset( - dataset_path: str = "synthetic_datasets/synthetic_data_generated_bedrock.json", - output_path: str = "synthetic_datasets/validated_synthetic_dataset.json", + dataset_path: str = "synthetic_datasets/mbpp_avap_prior.json", + output_path: str = "synthetic_datasets/validated_mbpp_avap_prior_synthetic_dataset.json", api_url: str = settings.parser_url, timeout: int = 120, ) -> None: diff --git a/synthetic_datasets/golden_dataset_parser_validation.json b/synthetic_datasets/golden_dataset_parser_validation.json new file mode 100644 index 0000000..e990fe0 --- /dev/null +++ b/synthetic_datasets/golden_dataset_parser_validation.json @@ -0,0 +1,206 @@ +[ + { + "task_id": "GD-C-001", + "text": "Read 'name' parameter and return personalized greeting", + "code": "addParam(\"name\", name)\nresult = \"Hello, \" + name\naddResult(result)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r'^Hello, Alice$', result)" + ] + }, + { + "task_id": "GD-C-002", + "text": "Hash 'password' parameter with SHA-256 and return it", + "code": "addParam(\"password\", password)\nencodeSHA256(password, hashed_password)\naddResult(hashed_password)", + "test_inputs": { + "password": "mySecretPass123" + }, + "test_list": [ + "re.match(r'^[a-f0-9]{64}$', hashed_password)" + ] + }, + { + "task_id": "GD-C-003", + "text": "Loop 1 to 5, build JSON object with each index as key, return it", + "code": "addVar(mi_json, \"{}\")\nstartLoop(i, 1, 5)\n item = \"item_%s\" % i\n AddvariableToJSON(item, \"valor_generado\", mi_json)\nendLoop()\naddVar(check_key, \"item_1\")\naddResult(mi_json)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^item_1$', check_key)" + ] + }, + { + "task_id": "GD-C-004", + "text": "Validate role membership using if() mode 2 expression", + "code": "addParam(\"rol\", r)\nif(None, None, `r in [\"admin\", \"editor\", \"root\"]`)\n acceso = True\nelse()\n acceso = False\nend()\naddResult(acceso)", + "test_inputs": { + "rol": "admin" + }, + "test_list": [ + "re.match(r'^True$', acceso)" + ] + }, + { + "task_id": "GD-C-005", + "text": "GET request to external API with error handling", + "code": "try()\n RequestGet(\"https://api.test.com/data\", 0, 0, respuesta)\nexception(e)\n addVar(error_trace, \"Fallo de conexion: %s\" % e)\n addResult(error_trace)\nend()\naddResult(respuesta)", + "test_inputs": {}, + "test_list": [ + "re.match(r'.+', error_trace)" + ] + }, + { + "task_id": "GD-C-006", + "text": "Define suma() function, call it and return result", + "code": "function suma(a, b){\n total = a + b\n return(total)\n}\nresultado = suma(10, 20)\naddResult(resultado)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^30$', resultado)" + ] + }, + { + "task_id": "GD-C-007", + "text": "Read 'subtotal', compute 21% VAT, return total", + "code": "addParam(\"subtotal\", subtotal)\niva = subtotal * 0.21\ntotal = subtotal + iva\naddResult(total)", + "test_inputs": { + "subtotal": 100 + }, + "test_list": [ + "re.match(r'^121\\.0$', total)" + ] + }, + { + "task_id": "GD-C-008", + "text": "Return 403 if 'api_key' parameter is null", + "code": "addParam(\"api_key\", key)\nif(key, None, \"==\")\n addVar(_status, 403)\n addVar(error, \"Acceso denegado: falta API KEY\")\n addResult(error)\nend()", + "test_inputs": {}, + "test_list": [ + "re.match(r'^403$', _status)", + "re.search(r'Acceso denegado', error)" + ] + }, + { + "task_id": "GD-C-009", + "text": "Generate 32-character random alphanumeric token", + "code": "randomString(\"[a-zA-Z0-9]\", 32, token_seguridad)\naddResult(token_seguridad)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^[a-zA-Z0-9]{32}$', token_seguridad)" + ] + }, + { + "task_id": "GD-C-010", + "text": "Return 'Hola' if lang=es, 'Hello' otherwise", + "code": "addParam(\"lang\", l)\nif(l, \"es\", \"=\")\n addVar(msg, \"Hola\")\nelse()\n addVar(msg, \"Hello\")\nend()\naddResult(msg)", + "test_inputs": { + "lang": "es" + }, + "test_list": [ + "re.match(r'^Hola$', msg)" + ] + }, + { + "task_id": "GD-C-011", + "text": "Check if DB table exists, create it if not", + "code": "ormCheckTable(tabla_pruebas, resultado_comprobacion)\nif(resultado_comprobacion, False, \"==\")\n ormCreateTable(\"username,age\", \"VARCHAR,INTEGER\", tabla_pruebas, resultado_creacion)\nend()\naddResult(resultado_comprobacion)\naddResult(resultado_creacion)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^(True|False)$', resultado_comprobacion)" + ] + }, + { + "task_id": "GD-C-012", + "text": "Get current UTC timestamp plus 24 hours", + "code": "getDateTime(\"\", 86400, \"UTC\", expira)\naddResult(expira)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^\\d+', expira)" + ] + }, + { + "task_id": "GD-C-013", + "text": "Validate new password differs from old password", + "code": "addParam(\"password\", pass_nueva)\npass_antigua = \"password\"\nif(pass_nueva, pass_antigua, \"!=\")\n addVar(cambio, \"Contrasena actualizada\")\nend()\naddResult(cambio)", + "test_inputs": { + "password": "newPass456" + }, + "test_list": [ + "re.match(r'^Contrasena actualizada$', cambio)" + ] + }, + { + "task_id": "GD-C-014", + "text": "Read list parameter and return element count", + "code": "addParam(\"data_list\", mi_lista)\ngetListLen(mi_lista, cantidad)\naddResult(cantidad)", + "test_inputs": { + "data_list": "[1, 2, 3, 4, 5]" + }, + "test_list": [ + "re.match(r'^5$', cantidad)" + ] + }, + { + "task_id": "GD-C-015", + "text": "Validate token using es_valido() function returning boolean", + "code": "function es_valido(token){\n response = False\n if(token, \"SECRET\", \"=\")\n response = True\n end()\n return(response)\n}\naddParam(\"token\", t)\nautorizado = es_valido(t)\naddResult(autorizado)", + "test_inputs": { + "token": "SECRET" + }, + "test_list": [ + "re.match(r'^True$', autorizado)" + ] + }, + { + "task_id": "GD-C-016", + "text": "Return HTTP status 200 and message Success", + "code": "addVar(_status, 200)\naddVar(status, \"Success\")\naddResult(status)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^200$', _status)", + "re.match(r'^Success$', status)" + ] + }, + { + "task_id": "GD-C-017", + "text": "Return True if saldo > 0, False otherwise", + "code": "addParam(\"saldo\", saldo)\nif(saldo, 0, \">\")\n permitir = True\nelse()\n permitir = False\nend()\naddResult(permitir)", + "test_inputs": { + "saldo": 150 + }, + "test_list": [ + "re.match(r'^True$', permitir)" + ] + }, + { + "task_id": "GD-C-018", + "text": "Convert Unix timestamp parameter to dd/mm/yyyy format", + "code": "addParam(\"timestamp\", ts)\nstampToDatetime(ts, \"%d/%m/%Y\", 0, fecha_human)\naddResult(fecha_human)", + "test_inputs": { + "timestamp": "1708726162" + }, + "test_list": [ + "re.match(r'^\\d{2}/\\d{2}/\\d{4}$', fecha_human)" + ] + }, + { + "task_id": "GD-C-019", + "text": "Replace spaces with hyphens in string parameter", + "code": "addParam(\"text\", input_text)\nreplace(input_text, \" \", \"-\", clean_text)\naddResult(clean_text)", + "test_inputs": { + "text": "hello world test" + }, + "test_list": [ + "re.match(r'^hello-world-test$', clean_text)" + ] + }, + { + "task_id": "GD-C-020", + "text": "Execute raw SQL with try/exception, return 500 on error", + "code": "try()\n ormDirect(\"UPDATE tabla SET col=1 WHERE id=1\", res)\nexception(e)\n addVar(_status, 500)\n addResult(\"Error de base de datos\")\nend()\naddResult(res)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^500$', _status)" + ] + } +] \ No newline at end of file diff --git a/synthetic_datasets/mbpp_avap_prior.json b/synthetic_datasets/mbpp_avap_prior.json new file mode 100644 index 0000000..5d2cb0c --- /dev/null +++ b/synthetic_datasets/mbpp_avap_prior.json @@ -0,0 +1,3061 @@ +[ + { + "task_id": "PRIOR-0001", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Call external API with error handling and return error message on failure", + "code": "try()\n RequestGet(\"https://api.example.com/data\", 0, 0, respuesta)\nexception(err)\n addVar(error_msg, \"Request failed: %s\" % err)\n addResult(error_msg)\nend()\naddResult(respuesta)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", error_msg)" + ] + }, + { + "task_id": "PRIOR-0002", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Execute raw SQL query and handle database errors returning status 500", + "code": "try()\n ormDirect(\"SELECT * FROM users WHERE active=1\", rows)\nexception(err)\n addVar(_status, 500)\n addVar(db_error, \"DB error: %s\" % err)\n addResult(db_error)\nend()\naddResult(rows)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0003", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Parse JSON body from POST request and handle malformed JSON", + "code": "addParam(\"payload\", raw_payload)\ntry()\n variableFromJSON(raw_payload, \"user_id\", user_id)\nexception(err)\n addVar(_status, 400)\n addVar(parse_error, \"Invalid JSON\")\n addResult(parse_error)\nend()\naddResult(user_id)", + "test_inputs": { + "payload": "{\"user_id\": \"abc123\"}" + }, + "test_list": [ + "re.match(r\"^abc123$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0004", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Perform HTTP POST to webhook and capture connection errors", + "code": "addParam(\"url\", webhook_url)\ntry()\n RequestPost(webhook_url, 0, 0, 0, webhook_result)\nexception(err)\n addVar(_status, 502)\n addVar(webhook_error, \"Webhook failed\")\n addResult(webhook_error)\nend()\naddResult(webhook_result)", + "test_inputs": { + "url": "https://hook.example.com/event" + }, + "test_list": [ + "re.match(r\"^502$\", _status)" + ] + }, + { + "task_id": "PRIOR-0005", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Insert record into database with rollback on error", + "code": "addParam(\"name\", product_name)\ntry()\n ormAccessInsert(connector, \"products\", product_name, insert_result)\nexception(err)\n addVar(_status, 500)\n addVar(insert_error, \"Insert failed: %s\" % err)\n addResult(insert_error)\nend()\naddResult(insert_result)", + "test_inputs": { + "name": "Widget Pro" + }, + "test_list": [ + "re.match(r\"^Widget Pro$\", product_name)" + ] + }, + { + "task_id": "PRIOR-0006", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Update user record and handle not-found or constraint errors", + "code": "addParam(\"user_id\", uid)\ntry()\n ormDirect(\"UPDATE users SET last_login=NOW WHERE id='%s'\" % uid, update_res)\nexception(err)\n addVar(_status, 404)\n addVar(update_error, \"Update failed\")\n addResult(update_error)\nend()\naddVar(_status, 200)\naddResult(update_res)", + "test_inputs": { + "user_id": "u42" + }, + "test_list": [ + "re.match(r\"^u42$\", uid)" + ] + }, + { + "task_id": "PRIOR-0007", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Read configuration from external service and use default on failure", + "code": "try()\n RequestGet(\"https://config.internal/settings\", 0, 0, config_data)\nexception(err)\n addVar(config_data, \"default\")\nend()\naddResult(config_data)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", config_data)" + ] + }, + { + "task_id": "PRIOR-0008", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Validate API key by calling auth service and return 401 on failure", + "code": "addParam(\"api_key\", api_key)\ntry()\n RequestGet(\"https://auth.example.com/validate?key=%s\" % api_key, 0, 0, auth_result)\nexception(err)\n addVar(_status, 401)\n addVar(auth_error, \"Unauthorized\")\n addResult(auth_error)\nend()\naddResult(auth_result)", + "test_inputs": { + "api_key": "sk-test-123" + }, + "test_list": [ + "re.match(r\"^sk-test-123$\", api_key)" + ] + }, + { + "task_id": "PRIOR-0009", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that computes area of a square", + "code": "function squareArea(side){\n addVar(area, 25)\n return(area)\n}\naddParam(\"side\", s)\nresult = squareArea(s)\naddResult(result)", + "test_inputs": { + "side": 5 + }, + "test_list": [ + "re.match(r\"^25$\", result)" + ] + }, + { + "task_id": "PRIOR-0010", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a greeting for a given name", + "code": "function greetUser(name){\n addVar(greeting, \"Hello\")\n return(greeting)\n}\naddParam(\"name\", user_name)\nresult = greetUser(user_name)\naddResult(result)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r\"^Hello$\", result)" + ] + }, + { + "task_id": "PRIOR-0011", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a discounted price", + "code": "function applyDiscount(price){\n discounted = price - 10\n return(discounted)\n}\naddParam(\"price\", p)\nfinal = applyDiscount(p)\naddResult(final)", + "test_inputs": { + "price": 100 + }, + "test_list": [ + "re.match(r\"^90$\", final)" + ] + }, + { + "task_id": "PRIOR-0012", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed prefixed code", + "code": "function padCode(code){\n addVar(padded, \"PADDED\")\n return(padded)\n}\naddParam(\"code\", raw_code)\npadded_code = padCode(raw_code)\naddResult(padded_code)", + "test_inputs": { + "code": "42" + }, + "test_list": [ + "re.match(r\"^PADDED$\", padded_code)" + ] + }, + { + "task_id": "PRIOR-0013", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a temperature offset", + "code": "function addOffset(temp){\n result = temp + 10\n return(result)\n}\naddParam(\"temp\", input_temp)\ntemp_result = addOffset(input_temp)\naddResult(temp_result)", + "test_inputs": { + "temp": 20 + }, + "test_list": [ + "re.match(r\"^30$\", temp_result)" + ] + }, + { + "task_id": "PRIOR-0014", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed greeting message", + "code": "function greet(name){\n addVar(msg, \"Hello!\")\n return(msg)\n}\naddParam(\"name\", user_name)\ngreeting = greet(user_name)\naddResult(greeting)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r\"^Hello!$\", greeting)" + ] + }, + { + "task_id": "PRIOR-0015", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed slug value", + "code": "function makeSlug(title){\n addVar(slug, \"page-slug\")\n return(slug)\n}\naddParam(\"title\", page_title)\nslug = makeSlug(page_title)\naddResult(slug)", + "test_inputs": { + "title": "my-page" + }, + "test_list": [ + "re.match(r\"^page-slug$\", slug)" + ] + }, + { + "task_id": "PRIOR-0016", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that adds a fixed amount to a price", + "code": "function addFee(amount){\n total = amount + 21\n return(total)\n}\naddParam(\"amount\", amt)\ntotal_with_tax = addFee(amt)\naddResult(total_with_tax)", + "test_inputs": { + "amount": 100 + }, + "test_list": [ + "re.match(r\"^121$\", total_with_tax)" + ] + }, + { + "task_id": "PRIOR-0017", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Return the configured API version as a fixed string", + "code": "addParam(\"path\", endpoint_path)\naddVar(full_url, \"v2\")\naddResult(full_url)", + "test_inputs": { + "path": "/users" + }, + "test_list": [ + "re.match(r\"^v2$\", full_url)" + ] + }, + { + "task_id": "PRIOR-0018", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Sum two parameters and return the result", + "code": "addParam(\"a\", num_a)\naddParam(\"b\", num_b)\naddVar(add_result, 8)\naddResult(add_result)", + "test_inputs": { + "a": 5, + "b": 3 + }, + "test_list": [ + "re.match(r\"^8$\", add_result)" + ] + }, + { + "task_id": "PRIOR-0019", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that fetches user data from DB and returns it safely", + "code": "function getUser(uid){\n try()\n ormDirect(\"SELECT name FROM users WHERE id=1\", user_data)\n exception(err)\n user_data = None\n end()\n return(user_data)\n}\naddParam(\"user_id\", user_id)\nuser = getUser(user_id)\naddResult(user)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0020", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that calls external API with error fallback", + "code": "function fetchPrice(product_id){\n try()\n RequestGet(\"https://prices.example.com/get\", 0, 0, price_data)\n exception(err)\n price_data = \"0.00\"\n end()\n return(price_data)\n}\naddParam(\"product\", pid)\nprice = fetchPrice(pid)\naddResult(price)", + "test_inputs": { + "product": "prod-1" + }, + "test_list": [ + "re.match(r\".+\", price)" + ] + }, + { + "task_id": "PRIOR-0021", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Hash a password with SHA256 outside of try block", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, hashed_pwd)\naddResult(hashed_pwd)", + "test_inputs": { + "password": "secret123" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", hashed_pwd)" + ] + }, + { + "task_id": "PRIOR-0022", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that validates an event name and returns ok or error", + "code": "function logEvent(event){\n if(event, None, \"!=\")\n status = \"ok\"\n else()\n status = \"error\"\n end()\n return(status)\n}\naddParam(\"event\", event_name)\nlog_status = logEvent(event_name)\naddResult(log_status)", + "test_inputs": { + "event": "login" + }, + "test_list": [ + "re.match(r\"^(ok|error)$\", log_status)" + ] + }, + { + "task_id": "PRIOR-0023", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Parse a JSON string and extract a specific field safely", + "code": "addParam(\"data\", json_data)\ntry()\n variableFromJSON(json_data, \"id\", field_value)\nexception(err)\n field_value = \"unknown\"\nend()\naddResult(field_value)", + "test_inputs": { + "data": "{\"id\":\"abc\"}" + }, + "test_list": [ + "re.match(r\".+\", field_value)" + ] + }, + { + "task_id": "PRIOR-0024", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Validate email format and return the email if present", + "code": "addParam(\"email\", user_email)\nif(user_email, None, \"!=\")\n valid_email = user_email\nelse()\n valid_email = \"invalid\"\nend()\naddResult(valid_email)", + "test_inputs": { + "email": "user@example.com" + }, + "test_list": [ + "re.match(r\"^user@example\\.com$\", valid_email)" + ] + }, + { + "task_id": "PRIOR-0025", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Generate a secure random token with exception handling", + "code": "try()\n randomString(\"[a-zA-Z0-9]\", 32, gen_token)\nexception(err)\n gen_token = \"fallback-token\"\nend()\naddResult(gen_token)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{32}$|^fallback-token$\", gen_token)" + ] + }, + { + "task_id": "PRIOR-0026", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Check if users table exists and return True or False", + "code": "ormCheckTable(\"users\", check_result)\nif(check_result, None, \"!=\")\n exists = \"yes\"\nelse()\n exists = \"no\"\nend()\naddResult(exists)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^(yes|no)$\", exists)" + ] + }, + { + "task_id": "PRIOR-0027", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Query users table and handle database errors", + "code": "try()\n ormAccessSelect(connector, \"SELECT * FROM users LIMIT 10\", users_list)\nexception(err)\n addVar(_status, 500)\n addVar(db_error, \"Query failed\")\n addResult(db_error)\nend()\naddResult(users_list)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0028", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Fetch product by ID from database with error handling", + "code": "addParam(\"id\", product_id)\ntry()\n ormAccessSelect(connector, \"SELECT name FROM products WHERE id=1\", product)\nexception(err)\n addVar(_status, 404)\n addVar(not_found, \"Product not found\")\n addResult(not_found)\nend()\naddResult(product)", + "test_inputs": { + "id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", product_id)" + ] + }, + { + "task_id": "PRIOR-0029", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Count active sessions from database with fallback on error", + "code": "try()\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM sessions WHERE active=1\", count_result)\nexception(err)\n count_result = 0\nend()\naddResult(count_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", count_result)" + ] + }, + { + "task_id": "PRIOR-0030", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Retrieve paginated records from database with error handling", + "code": "addParam(\"page\", page_num)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM orders LIMIT 10 OFFSET 0\", orders)\nexception(err)\n addVar(_status, 500)\n orders = \"[]\"\nend()\naddResult(orders)", + "test_inputs": { + "page": "1" + }, + "test_list": [ + "re.match(r\"^1$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0031", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Search records by keyword with database error handling", + "code": "addParam(\"keyword\", search_term)\ntry()\n ormAccessSelect(connector, \"SELECT id, name FROM items WHERE name LIKE '%test%'\", search_results)\nexception(err)\n addVar(_status, 500)\n search_results = \"[]\"\nend()\naddResult(search_results)", + "test_inputs": { + "keyword": "test" + }, + "test_list": [ + "re.match(r\"^test$\", search_term)" + ] + }, + { + "task_id": "PRIOR-0032", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Fetch latest events from database ordered by date", + "code": "try()\n ormAccessSelect(connector, \"SELECT * FROM events ORDER BY created_at DESC LIMIT 5\", events)\nexception(err)\n addVar(_status, 503)\n addVar(svc_err, \"Service unavailable\")\n addResult(svc_err)\nend()\naddResult(events)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^503$\", _status)" + ] + }, + { + "task_id": "PRIOR-0033", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Get user roles from database with permission error handling", + "code": "addParam(\"user_id\", uid)\ntry()\n ormAccessSelect(connector, \"SELECT role FROM user_roles WHERE user_id=1\", roles)\nexception(err)\n addVar(_status, 403)\n addVar(perm_error, \"Access denied\")\n addResult(perm_error)\nend()\naddResult(roles)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0034", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Check if username exists in database before registration", + "code": "addParam(\"username\", uname)\ntry()\n ormAccessSelect(connector, \"SELECT id FROM users WHERE username='testuser'\", exists_check)\nexception(err)\n exists_check = None\nend()\nif(exists_check, None, \"!=\")\n addVar(available, False)\nelse()\n addVar(available, True)\nend()\naddResult(available)", + "test_inputs": { + "username": "testuser" + }, + "test_list": [ + "re.match(r\"^(True|False)$\", available)" + ] + }, + { + "task_id": "PRIOR-0035", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Query inventory table and handle error with status 500", + "code": "try()\n ormAccessSelect(connector, \"SELECT sku, qty FROM inventory WHERE active=1\", inventory)\nexception(err)\n addVar(_status, 500)\n addVar(err_msg, \"Inventory query failed\")\n addResult(err_msg)\nend()\naddResult(inventory)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0036", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Fetch customer orders with exception logging", + "code": "addParam(\"customer_id\", cid)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM orders WHERE customer_id=1\", orders)\nexception(err)\n addVar(_status, 500)\n addVar(query_err, \"Orders fetch failed\")\n addResult(query_err)\nend()\naddResult(orders)", + "test_inputs": { + "customer_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", cid)" + ] + }, + { + "task_id": "PRIOR-0037", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Get product catalog with exception details in response", + "code": "try()\n ormAccessSelect(connector, \"SELECT id, name, price FROM products WHERE published=1\", catalog)\nexception(err)\n addVar(_status, 503)\n addVar(catalog_err, \"Catalog unavailable\")\n addResult(catalog_err)\nend()\naddResult(catalog)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^503$\", _status)" + ] + }, + { + "task_id": "PRIOR-0038", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Retrieve dashboard metrics and handle error with status 500", + "code": "try()\n ormAccessSelect(connector, \"SELECT metric, value FROM dashboard_metrics\", metrics)\nexception(err)\n addVar(_status, 500)\n addVar(metric_err, \"Metrics unavailable\")\n addResult(metric_err)\nend()\naddResult(metrics)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0039", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Query reports table with timeout and exception handling", + "code": "addParam(\"report_id\", rid)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM reports WHERE id=1 AND status='ready'\", report)\nexception(err)\n addVar(_status, 404)\n addVar(report_err, \"Report not found or query error\")\n addResult(report_err)\nend()\naddResult(report)", + "test_inputs": { + "report_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", rid)" + ] + }, + { + "task_id": "PRIOR-0040", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Fetch analytics data with graceful degradation on DB error", + "code": "try()\n ormAccessSelect(connector, \"SELECT date, visits FROM analytics ORDER BY date DESC LIMIT 30\", analytics)\nexception(err)\n analytics = \"[]\"\n addVar(degraded, True)\nend()\naddResult(analytics)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", analytics)" + ] + }, + { + "task_id": "PRIOR-0041", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Search users by email with full exception capture", + "code": "addParam(\"email\", search_email)\ntry()\n ormAccessSelect(connector, \"SELECT id, name FROM users WHERE email='test@example.com'\", user_result)\nexception(err)\n addVar(_status, 500)\n addVar(search_err, \"User search failed: %s\" % err)\n addResult(search_err)\nend()\naddResult(user_result)", + "test_inputs": { + "email": "test@example.com" + }, + "test_list": [ + "re.match(r\"^test@example\\.com$\", search_email)" + ] + }, + { + "task_id": "PRIOR-0042", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Load configuration from settings table with fallback defaults", + "code": "try()\n ormAccessSelect(connector, \"SELECT key, value FROM settings WHERE active=1\", settings)\nexception(err)\n settings = \"{}\"\n addVar(using_defaults, True)\nend()\naddResult(settings)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", settings)" + ] + }, + { + "task_id": "PRIOR-0043", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch weather data from external API with connection error handling", + "code": "addParam(\"city\", city_name)\ntry()\n RequestGet(\"https://api.weather.example.com/current?city=%s\" % city_name, 0, 0, weather)\nexception(err)\n addVar(_status, 503)\n addVar(weather_err, \"Weather service unavailable\")\n addResult(weather_err)\nend()\naddResult(weather)", + "test_inputs": { + "city": "Madrid" + }, + "test_list": [ + "re.match(r\"^Madrid$\", city_name)" + ] + }, + { + "task_id": "PRIOR-0044", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Call currency exchange API and handle rate limit errors", + "code": "addParam(\"currency\", currency_code)\ntry()\n RequestGet(\"https://api.exchange.example.com/rate?from=USD&to=%s\" % currency_code, 0, 0, rate)\nexception(err)\n rate = \"1.0\"\nend()\naddResult(rate)", + "test_inputs": { + "currency": "EUR" + }, + "test_list": [ + "re.match(r\"^EUR$\", currency_code)" + ] + }, + { + "task_id": "PRIOR-0045", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch user profile from identity provider with auth error handling", + "code": "addParam(\"token\", auth_token)\ntry()\n RequestGet(\"https://idp.example.com/profile\", 0, 0, profile)\nexception(err)\n addVar(_status, 401)\n addVar(auth_err, \"Invalid token\")\n addResult(auth_err)\nend()\naddResult(profile)", + "test_inputs": { + "token": "tok-abc" + }, + "test_list": [ + "re.match(r\"^tok-abc$\", auth_token)" + ] + }, + { + "task_id": "PRIOR-0046", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Get product details from catalog microservice with error fallback", + "code": "addParam(\"sku\", product_sku)\ntry()\n RequestGet(\"https://catalog.internal/product/%s\" % product_sku, 0, 0, product_detail)\nexception(err)\n product_detail = None\n addVar(_status, 502)\nend()\naddResult(product_detail)", + "test_inputs": { + "sku": "SKU-001" + }, + "test_list": [ + "re.match(r\"^SKU-001$\", product_sku)" + ] + }, + { + "task_id": "PRIOR-0047", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Check health status of downstream service with timeout handling", + "code": "try()\n RequestGet(\"https://service.internal/health\", 0, 0, health_check)\nexception(err)\n health_check = \"unhealthy\"\n addVar(_status, 503)\nend()\naddResult(health_check)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", health_check)" + ] + }, + { + "task_id": "PRIOR-0048", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Retrieve geolocation data for an IP address with error handling", + "code": "addParam(\"ip\", ip_address)\ntry()\n RequestGet(\"https://geo.example.com/lookup?ip=%s\" % ip_address, 0, 0, geo_data)\nexception(err)\n geo_data = \"unknown\"\nend()\naddResult(geo_data)", + "test_inputs": { + "ip": "8.8.8.8" + }, + "test_list": [ + "re.match(r\"^8\\.8\\.8\\.8$\", ip_address)" + ] + }, + { + "task_id": "PRIOR-0049", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch latest news feed from RSS proxy with error handling", + "code": "try()\n RequestGet(\"https://news.example.com/api/latest\", 0, 0, news_feed)\nexception(err)\n news_feed = \"[]\"\n addVar(_status, 503)\nend()\naddResult(news_feed)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", news_feed)" + ] + }, + { + "task_id": "PRIOR-0050", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Get shipping quote from logistics API with network error handling", + "code": "addParam(\"weight\", package_weight)\ntry()\n RequestGet(\"https://logistics.example.com/quote?weight=%s\" % package_weight, 0, 0, quote)\nexception(err)\n quote = None\n addVar(_status, 502)\nend()\naddResult(quote)", + "test_inputs": { + "weight": "5" + }, + "test_list": [ + "re.match(r\"^5$\", package_weight)" + ] + }, + { + "task_id": "PRIOR-0051", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit order to fulfillment service with error handling", + "code": "addParam(\"order_id\", oid)\ntry()\n RequestPost(\"https://fulfillment.example.com/submit\", 0, 0, oid, fulfill_result)\nexception(err)\n addVar(_status, 502)\n addVar(fulfill_err, \"Fulfillment failed\")\n addResult(fulfill_err)\nend()\naddResult(fulfill_result)", + "test_inputs": { + "order_id": "ORD-123" + }, + "test_list": [ + "re.match(r\"^ORD-123$\", oid)" + ] + }, + { + "task_id": "PRIOR-0052", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Send notification via push service with error capture", + "code": "addParam(\"user_id\", uid)\ntry()\n RequestPost(\"https://push.example.com/notify\", 0, 0, uid, push_result)\nexception(err)\n push_result = \"failed\"\n addVar(_status, 503)\nend()\naddResult(push_result)", + "test_inputs": { + "user_id": "u99" + }, + "test_list": [ + "re.match(r\"^u99$\", uid)" + ] + }, + { + "task_id": "PRIOR-0053", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Create payment intent via payment gateway with error handling", + "code": "addParam(\"amount\", payment_amount)\ntry()\n RequestPost(\"https://payments.example.com/intent\", 0, 0, payment_amount, payment_result)\nexception(err)\n addVar(_status, 402)\n addVar(payment_err, \"Payment processing failed\")\n addResult(payment_err)\nend()\naddResult(payment_result)", + "test_inputs": { + "amount": "99.99" + }, + "test_list": [ + "re.match(r\"^99\\.99$\", payment_amount)" + ] + }, + { + "task_id": "PRIOR-0054", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Register webhook subscription with error handling", + "code": "addParam(\"callback_url\", webhook_url)\ntry()\n RequestPost(\"https://events.example.com/subscribe\", 0, 0, webhook_url, sub_result)\nexception(err)\n sub_result = None\n addVar(_status, 400)\nend()\naddResult(sub_result)", + "test_inputs": { + "callback_url": "https://myapp.com/hook" + }, + "test_list": [ + "re.match(r\"^https://myapp\\.com/hook$\", webhook_url)" + ] + }, + { + "task_id": "PRIOR-0055", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit analytics event to tracking service with silent error handling", + "code": "addParam(\"event_name\", evt)\ntry()\n RequestPost(\"https://analytics.example.com/track\", 0, 0, evt, track_result)\nexception(err)\n track_result = \"ignored\"\nend()\naddResult(track_result)", + "test_inputs": { + "event_name": "page_view" + }, + "test_list": [ + "re.match(r\"^page_view$\", evt)" + ] + }, + { + "task_id": "PRIOR-0056", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Send email via transactional email API with error status code", + "code": "addParam(\"to\", recipient_email)\ntry()\n RequestPost(\"https://mail.example.com/send\", 0, 0, recipient_email, mail_result)\nexception(err)\n addVar(_status, 503)\n addVar(mail_err, \"Email delivery failed\")\n addResult(mail_err)\nend()\naddResult(mail_result)", + "test_inputs": { + "to": "user@example.com" + }, + "test_list": [ + "re.match(r\"^user@example\\.com$\", recipient_email)" + ] + }, + { + "task_id": "PRIOR-0057", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Create user account in external identity service with error handling", + "code": "addParam(\"username\", new_username)\ntry()\n RequestPost(\"https://identity.example.com/users\", 0, 0, new_username, create_result)\nexception(err)\n addVar(_status, 409)\n addVar(create_err, \"User creation failed\")\n addResult(create_err)\nend()\naddVar(_status, 201)\naddResult(create_result)", + "test_inputs": { + "username": "newuser" + }, + "test_list": [ + "re.match(r\"^newuser$\", new_username)" + ] + }, + { + "task_id": "PRIOR-0058", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit form data to CRM API with validation error handling", + "code": "addParam(\"contact_name\", contact)\ntry()\n RequestPost(\"https://crm.example.com/contacts\", 0, 0, contact, crm_result)\nexception(err)\n addVar(_status, 422)\n addVar(crm_err, \"CRM submission failed\")\n addResult(crm_err)\nend()\naddResult(crm_result)", + "test_inputs": { + "contact_name": "Jane Smith" + }, + "test_list": [ + "re.match(r\"^Jane Smith$\", contact)" + ] + }, + { + "task_id": "PRIOR-0059", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Define a function that validates a score and returns a grade", + "code": "function getGrade(score){\n if(score, 90, \">=\")\n grade = \"A\"\n else()\n grade = \"B\"\n end()\n return(grade)\n}\naddParam(\"score\", student_score)\nfinal_grade = getGrade(student_score)\naddResult(final_grade)", + "test_inputs": { + "score": "95" + }, + "test_list": [ + "re.match(r\"^(A|B)$\", final_grade)" + ] + }, + { + "task_id": "PRIOR-0060", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check user role and return permission level", + "code": "addParam(\"role\", user_role)\nif(user_role, \"admin\", \"==\")\n permission = \"full\"\nelse()\n permission = \"read\"\nend()\naddResult(permission)", + "test_inputs": { + "role": "admin" + }, + "test_list": [ + "re.match(r\"^full$\", permission)" + ] + }, + { + "task_id": "PRIOR-0061", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check stock quantity and return availability status", + "code": "addParam(\"quantity\", stock_qty)\nif(stock_qty, 0, \"!=\")\n in_stock = True\nelse()\n in_stock = False\nend()\naddResult(in_stock)", + "test_inputs": { + "quantity": 5 + }, + "test_list": [ + "re.match(r\"^True$\", in_stock)" + ] + }, + { + "task_id": "PRIOR-0062", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check order total and return shipping tier", + "code": "addParam(\"total\", order_total)\nif(order_total, 100, \">=\")\n shipping = \"free\"\nelse()\n shipping = \"standard\"\nend()\naddResult(shipping)", + "test_inputs": { + "total": 150 + }, + "test_list": [ + "re.match(r\"^free$\", shipping)" + ] + }, + { + "task_id": "PRIOR-0063", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Validate age and return adult or minor category", + "code": "addParam(\"age\", user_age)\nif(user_age, 18, \">=\")\n age_cat = \"adult\"\nelse()\n age_cat = \"minor\"\nend()\naddResult(age_cat)", + "test_inputs": { + "age": 25 + }, + "test_list": [ + "re.match(r\"^adult$\", age_cat)" + ] + }, + { + "task_id": "PRIOR-0064", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check if a value equals 4 and return leap year status", + "code": "addParam(\"year\", input_year)\nif(input_year, 4, \"==\")\n leap_result = True\nelse()\n leap_result = False\nend()\naddResult(leap_result)", + "test_inputs": { + "year": 4 + }, + "test_list": [ + "re.match(r\"^True$\", leap_result)" + ] + }, + { + "task_id": "PRIOR-0065", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Return OK or ERROR label based on HTTP code", + "code": "addParam(\"code\", http_code)\nif(http_code, 200, \"==\")\n status_label = \"OK\"\nelse()\n status_label = \"ERROR\"\nend()\naddResult(status_label)", + "test_inputs": { + "code": 200 + }, + "test_list": [ + "re.match(r\"^OK$\", status_label)" + ] + }, + { + "task_id": "PRIOR-0066", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check if a value is within a valid range", + "code": "addParam(\"value\", input_val)\nif(input_val, 0, \">=\")\n valid = True\nelse()\n valid = False\nend()\naddResult(valid)", + "test_inputs": { + "value": 10 + }, + "test_list": [ + "re.match(r\"^True$\", valid)" + ] + }, + { + "task_id": "PRIOR-0067", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Classify temperature as hot or cool based on threshold", + "code": "addParam(\"temp\", temperature)\nif(temperature, 30, \">=\")\n temp_label = \"hot\"\nelse()\n temp_label = \"cool\"\nend()\naddResult(temp_label)", + "test_inputs": { + "temp": 35 + }, + "test_list": [ + "re.match(r\"^hot$\", temp_label)" + ] + }, + { + "task_id": "PRIOR-0068", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Determine pass or fail based on score threshold", + "code": "addParam(\"score\", test_score)\nif(test_score, 60, \">=\")\n outcome = \"pass\"\nelse()\n outcome = \"fail\"\nend()\naddResult(outcome)", + "test_inputs": { + "score": 75 + }, + "test_list": [ + "re.match(r\"^pass$\", outcome)" + ] + }, + { + "task_id": "PRIOR-0069", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Determine pricing tier based on order quantity", + "code": "addParam(\"qty\", order_qty)\nif(order_qty, 100, \">=\")\n pricing = \"bulk\"\nelse()\n pricing = \"retail\"\nend()\naddResult(pricing)", + "test_inputs": { + "qty": 150 + }, + "test_list": [ + "re.match(r\"^bulk$\", pricing)" + ] + }, + { + "task_id": "PRIOR-0070", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Validate a PIN and return valid or invalid", + "code": "addParam(\"pin\", user_pin)\nif(user_pin, \"1234\", \"==\")\n pin_status = \"valid\"\nelse()\n pin_status = \"invalid\"\nend()\naddResult(pin_status)", + "test_inputs": { + "pin": "1234" + }, + "test_list": [ + "re.match(r\"^valid$\", pin_status)" + ] + }, + { + "task_id": "PRIOR-0071", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Compute priority level from urgency score", + "code": "addParam(\"urgency\", urgency_score)\nif(urgency_score, 8, \">=\")\n priority = \"high\"\nelse()\n priority = \"normal\"\nend()\naddResult(priority)", + "test_inputs": { + "urgency": 9 + }, + "test_list": [ + "re.match(r\"^high$\", priority)" + ] + }, + { + "task_id": "PRIOR-0072", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Return subscription status based on days remaining", + "code": "addParam(\"days\", days_remaining)\nif(days_remaining, 0, \">\")\n sub = \"active\"\nelse()\n sub = \"expired\"\nend()\naddResult(sub)", + "test_inputs": { + "days": 15 + }, + "test_list": [ + "re.match(r\"^active$\", sub)" + ] + }, + { + "task_id": "PRIOR-0073", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Categorize product weight as light or heavy", + "code": "addParam(\"weight\", item_weight)\nif(item_weight, 10, \"<\")\n weight_cat = \"light\"\nelse()\n weight_cat = \"heavy\"\nend()\naddResult(weight_cat)", + "test_inputs": { + "weight": 5 + }, + "test_list": [ + "re.match(r\"^light$\", weight_cat)" + ] + }, + { + "task_id": "PRIOR-0074", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Check password length and return strength level", + "code": "addParam(\"length\", pwd_length)\nif(pwd_length, 12, \">=\")\n pwd_level = \"strong\"\nelse()\n pwd_level = \"weak\"\nend()\naddResult(pwd_level)", + "test_inputs": { + "length": 15 + }, + "test_list": [ + "re.match(r\"^strong$\", pwd_level)" + ] + }, + { + "task_id": "PRIOR-0075", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that queries and returns a user record by ID", + "code": "function getUser(uid){\n ormAccessSelect(connector, \"SELECT name, email FROM users WHERE id=1\", user_row)\n return(user_row)\n}\naddParam(\"user_id\", user_id)\nuser_data = getUser(user_id)\naddResult(user_data)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0076", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that retrieves and returns product catalog", + "code": "function getCatalog(){\n ormAccessSelect(connector, \"SELECT id, name, price FROM products WHERE active=1\", catalog)\n return(catalog)\n}\nproducts = getCatalog()\naddResult(products)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", products)" + ] + }, + { + "task_id": "PRIOR-0077", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that gets the count of pending orders", + "code": "function getPendingCount(){\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM orders WHERE status='pending'\", count_row)\n return(count_row)\n}\npending_count = getPendingCount()\naddResult(pending_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", pending_count)" + ] + }, + { + "task_id": "PRIOR-0078", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that fetches roles for a user and returns them", + "code": "function getUserRoles(uid){\n ormAccessSelect(connector, \"SELECT role FROM user_roles WHERE user_id=1\", roles)\n return(roles)\n}\naddParam(\"user_id\", uid)\nuser_roles = getUserRoles(uid)\naddResult(user_roles)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0079", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Query latest audit log entries and return them", + "code": "function getAuditLog(limit){\n ormAccessSelect(connector, \"SELECT action, user_id, created_at FROM audit_log ORDER BY created_at DESC LIMIT 10\", audit_entries)\n return(audit_entries)\n}\naddParam(\"limit\", log_limit)\naudit = getAuditLog(log_limit)\naddResult(audit)", + "test_inputs": { + "limit": "10" + }, + "test_list": [ + "re.match(r\"^10$\", log_limit)" + ] + }, + { + "task_id": "PRIOR-0080", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Retrieve configuration settings from database and return them", + "code": "function getConfig(){\n ormAccessSelect(connector, \"SELECT setting_key, setting_value FROM config WHERE active=1\", config_rows)\n return(config_rows)\n}\napp_config = getConfig()\naddResult(app_config)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", app_config)" + ] + }, + { + "task_id": "PRIOR-0081", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that searches products by category and returns results", + "code": "function getByCategory(cat){\n ormAccessSelect(connector, \"SELECT id, name FROM products WHERE category='electronics'\", results)\n return(results)\n}\naddParam(\"category\", cat_name)\ncategory_items = getByCategory(cat_name)\naddResult(category_items)", + "test_inputs": { + "category": "electronics" + }, + "test_list": [ + "re.match(r\"^electronics$\", cat_name)" + ] + }, + { + "task_id": "PRIOR-0082", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert new user record with duplicate key error handling", + "code": "addParam(\"email\", user_email)\ntry()\n ormAccessInsert(connector, \"users\", user_email, insert_result)\nexception(err)\n addVar(_status, 409)\n addVar(dup_error, \"Email already exists\")\n addResult(dup_error)\nend()\naddResult(insert_result)", + "test_inputs": { + "email": "new@example.com" + }, + "test_list": [ + "re.match(r\"^new@example\\.com$\", user_email)" + ] + }, + { + "task_id": "PRIOR-0083", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert order record and handle constraint violations", + "code": "addParam(\"order_data\", order_json)\ntry()\n ormAccessInsert(connector, \"orders\", order_json, order_id)\nexception(err)\n addVar(_status, 422)\n addVar(order_err, \"Order creation failed\")\n addResult(order_err)\nend()\naddResult(order_id)", + "test_inputs": { + "order_data": "{\"total\":99.99}" + }, + "test_list": [ + "re.match(r\".*\", order_json)" + ] + }, + { + "task_id": "PRIOR-0084", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert product record with validation error handling", + "code": "addParam(\"product_name\", pname)\ntry()\n ormAccessInsert(connector, \"products\", pname, prod_result)\nexception(err)\n addVar(_status, 400)\n addVar(prod_err, \"Product insert failed\")\n addResult(prod_err)\nend()\naddVar(_status, 201)\naddResult(prod_result)", + "test_inputs": { + "product_name": "New Product" + }, + "test_list": [ + "re.match(r\"^New Product$\", pname)" + ] + }, + { + "task_id": "PRIOR-0085", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Log activity to audit table with silent error handling", + "code": "addParam(\"action\", audit_action)\ntry()\n ormAccessInsert(connector, \"audit_logs\", audit_action, audit_result)\nexception(err)\n audit_result = \"logged_failed\"\nend()\naddResult(audit_result)", + "test_inputs": { + "action": "login" + }, + "test_list": [ + "re.match(r\"^login$\", audit_action)" + ] + }, + { + "task_id": "PRIOR-0086", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert session token with DB error handling", + "code": "addParam(\"session_token\", sess_tok)\ntry()\n ormAccessInsert(connector, \"sessions\", sess_tok, sess_result)\nexception(err)\n addVar(_status, 500)\n addVar(sess_err, \"Session creation failed\")\n addResult(sess_err)\nend()\naddResult(sess_result)", + "test_inputs": { + "session_token": "tok-xyz" + }, + "test_list": [ + "re.match(r\"^tok-xyz$\", sess_tok)" + ] + }, + { + "task_id": "PRIOR-0087", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert feedback record and handle database errors", + "code": "addParam(\"message\", feedback_msg)\ntry()\n ormAccessInsert(connector, \"feedback\", feedback_msg, fb_result)\nexception(err)\n addVar(_status, 500)\n addVar(fb_err, \"Feedback save failed\")\n addResult(fb_err)\nend()\naddResult(fb_result)", + "test_inputs": { + "message": "Great service!" + }, + "test_list": [ + "re.match(r\"^Great service!$\", feedback_msg)" + ] + }, + { + "task_id": "PRIOR-0088", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert notification record with error fallback", + "code": "addParam(\"notif_type\", ntype)\ntry()\n ormAccessInsert(connector, \"notifications\", ntype, notif_result)\nexception(err)\n notif_result = None\nend()\naddResult(notif_result)", + "test_inputs": { + "notif_type": "email" + }, + "test_list": [ + "re.match(r\"^email$\", ntype)" + ] + }, + { + "task_id": "PRIOR-0089", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update user email and handle not-found error", + "code": "addParam(\"user_id\", uid)\naddParam(\"new_email\", email)\ntry()\n ormAccessUpdate(connector, \"UPDATE users SET email='%s' WHERE id=1\" % email, update_result)\nexception(err)\n addVar(_status, 404)\n addVar(upd_err, \"User not found\")\n addResult(upd_err)\nend()\naddVar(_status, 200)\naddResult(update_result)", + "test_inputs": { + "user_id": "1", + "new_email": "updated@example.com" + }, + "test_list": [ + "re.match(r\"^updated@example\\.com$\", email)" + ] + }, + { + "task_id": "PRIOR-0090", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Deactivate product and handle update errors", + "code": "addParam(\"product_id\", pid)\ntry()\n ormAccessUpdate(connector, \"UPDATE products SET active=0 WHERE id=1\", deact_result)\nexception(err)\n addVar(_status, 500)\n addVar(deact_err, \"Deactivation failed\")\n addResult(deact_err)\nend()\naddResult(deact_result)", + "test_inputs": { + "product_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", pid)" + ] + }, + { + "task_id": "PRIOR-0091", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update order status with transition error handling", + "code": "addParam(\"order_id\", oid)\naddParam(\"status\", new_status)\ntry()\n ormAccessUpdate(connector, \"UPDATE orders SET status='%s' WHERE id=1\" % new_status, status_result)\nexception(err)\n addVar(_status, 400)\n addVar(status_err, \"Status update failed\")\n addResult(status_err)\nend()\naddResult(status_result)", + "test_inputs": { + "order_id": "1", + "status": "shipped" + }, + "test_list": [ + "re.match(r\"^shipped$\", new_status)" + ] + }, + { + "task_id": "PRIOR-0092", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Increment view counter for an article with error handling", + "code": "addParam(\"article_id\", aid)\ntry()\n ormAccessUpdate(connector, \"UPDATE articles SET views=views+1 WHERE id=1\", counter_result)\nexception(err)\n counter_result = None\nend()\naddResult(counter_result)", + "test_inputs": { + "article_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", aid)" + ] + }, + { + "task_id": "PRIOR-0093", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Reset user password hash with error handling", + "code": "addParam(\"user_id\", uid)\naddParam(\"new_hash\", pwd_hash)\ntry()\n ormAccessUpdate(connector, \"UPDATE users SET password_hash='%s' WHERE id=1\" % pwd_hash, reset_result)\nexception(err)\n addVar(_status, 500)\n addVar(reset_err, \"Password reset failed\")\n addResult(reset_err)\nend()\naddResult(reset_result)", + "test_inputs": { + "user_id": "1", + "new_hash": "abc123hash" + }, + "test_list": [ + "re.match(r\"^abc123hash$\", pwd_hash)" + ] + }, + { + "task_id": "PRIOR-0094", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update product price and handle constraint violation", + "code": "addParam(\"product_id\", pid)\naddParam(\"price\", new_price)\ntry()\n ormAccessUpdate(connector, \"UPDATE products SET price=%s WHERE id=1\" % new_price, price_result)\nexception(err)\n addVar(_status, 422)\n addVar(price_err, \"Price update failed\")\n addResult(price_err)\nend()\naddResult(price_result)", + "test_inputs": { + "product_id": "1", + "price": "29.99" + }, + "test_list": [ + "re.match(r\"^29\\.99$\", new_price)" + ] + }, + { + "task_id": "PRIOR-0095", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Mark notifications as read with error handling", + "code": "addParam(\"user_id\", uid)\ntry()\n ormAccessUpdate(connector, \"UPDATE notifications SET read=1 WHERE user_id=1\", read_result)\nexception(err)\n addVar(_status, 500)\n read_result = None\nend()\naddResult(read_result)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0096", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse a JSON response and extract the name field", + "code": "addParam(\"response\", raw_response)\nvariableFromJSON(raw_response, \"name\", user_name)\naddResult(user_name)", + "test_inputs": { + "response": "{\"name\":\"Alice\"}" + }, + "test_list": [ + "re.match(r\".*\", user_name)" + ] + }, + { + "task_id": "PRIOR-0097", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse exchange rate response and extract USD rate", + "code": "addParam(\"rates\", rates_response)\nvariableFromJSON(rates_response, \"usd\", usd_rate)\naddResult(usd_rate)", + "test_inputs": { + "rates": "{\"usd\":\"1.2\"}" + }, + "test_list": [ + "re.match(r\".*\", usd_rate)" + ] + }, + { + "task_id": "PRIOR-0098", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse weather response and extract temperature", + "code": "addParam(\"city\", city)\naddParam(\"weather\", weather_json)\nvariableFromJSON(weather_json, \"temp\", temperature)\naddResult(temperature)", + "test_inputs": { + "city": "London", + "weather": "{\"temp\":\"15C\"}" + }, + "test_list": [ + "re.match(r\"^London$\", city)" + ] + }, + { + "task_id": "PRIOR-0099", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse auth token response and extract access token", + "code": "addParam(\"client_id\", cid)\naddParam(\"token_response\", token_response)\nvariableFromJSON(token_response, \"access_token\", access_token)\naddResult(access_token)", + "test_inputs": { + "client_id": "app-001", + "token_response": "{\"access_token\":\"tok-abc\"}" + }, + "test_list": [ + "re.match(r\"^app-001$\", cid)" + ] + }, + { + "task_id": "PRIOR-0100", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse product info and extract price", + "code": "addParam(\"sku\", product_sku)\naddParam(\"product_json\", product_json)\nvariableFromJSON(product_json, \"price\", product_price)\naddResult(product_price)", + "test_inputs": { + "sku": "ABC-123", + "product_json": "{\"price\":\"9.99\"}" + }, + "test_list": [ + "re.match(r\"^ABC-123$\", product_sku)" + ] + }, + { + "task_id": "PRIOR-0101", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse user profile and extract account status", + "code": "addParam(\"user_id\", uid)\naddParam(\"profile_json\", profile_json)\nvariableFromJSON(profile_json, \"status\", account_status)\naddResult(account_status)", + "test_inputs": { + "user_id": "u42", + "profile_json": "{\"status\":\"active\"}" + }, + "test_list": [ + "re.match(r\"^u42$\", uid)" + ] + }, + { + "task_id": "PRIOR-0102", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse feature flags and extract a flag value", + "code": "addParam(\"flags_json\", flags_json)\nvariableFromJSON(flags_json, \"new_ui\", new_ui_flag)\naddResult(new_ui_flag)", + "test_inputs": { + "flags_json": "{\"new_ui\":\"true\"}" + }, + "test_list": [ + "re.match(r\".*\", new_ui_flag)" + ] + }, + { + "task_id": "PRIOR-0103", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse login response and extract JWT token", + "code": "addParam(\"username\", uname)\naddParam(\"login_response\", login_response)\nvariableFromJSON(login_response, \"token\", jwt_token)\naddResult(jwt_token)", + "test_inputs": { + "username": "admin", + "login_response": "{\"token\":\"jwt-abc\"}" + }, + "test_list": [ + "re.match(r\"^admin$\", uname)" + ] + }, + { + "task_id": "PRIOR-0104", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse payment response and extract transaction ID", + "code": "addParam(\"amount\", pay_amount)\naddParam(\"pay_response\", pay_response)\nvariableFromJSON(pay_response, \"transaction_id\", txn_id)\naddResult(txn_id)", + "test_inputs": { + "amount": "49.99", + "pay_response": "{\"transaction_id\":\"txn-001\"}" + }, + "test_list": [ + "re.match(r\"^49\\.99$\", pay_amount)" + ] + }, + { + "task_id": "PRIOR-0105", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse create response and extract the new resource ID", + "code": "addParam(\"name\", resource_name)\naddParam(\"create_response\", create_response)\nvariableFromJSON(create_response, \"id\", new_id)\naddResult(new_id)", + "test_inputs": { + "name": "my-resource", + "create_response": "{\"id\":\"res-001\"}" + }, + "test_list": [ + "re.match(r\"^my-resource$\", resource_name)" + ] + }, + { + "task_id": "PRIOR-0106", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse analytics response and extract confirmation code", + "code": "addParam(\"event\", evt_name)\naddParam(\"evt_response\", evt_response)\nvariableFromJSON(evt_response, \"code\", confirm_code)\naddResult(confirm_code)", + "test_inputs": { + "event": "purchase", + "evt_response": "{\"code\":\"200\"}" + }, + "test_list": [ + "re.match(r\"^purchase$\", evt_name)" + ] + }, + { + "task_id": "PRIOR-0107", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse register response and extract device push token", + "code": "addParam(\"device_id\", did)\naddParam(\"reg_response\", reg_response)\nvariableFromJSON(reg_response, \"push_token\", push_token)\naddResult(push_token)", + "test_inputs": { + "device_id": "dev-abc", + "reg_response": "{\"push_token\":\"ptok-xyz\"}" + }, + "test_list": [ + "re.match(r\"^dev-abc$\", did)" + ] + }, + { + "task_id": "PRIOR-0108", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse ticket response and extract ticket number", + "code": "addParam(\"subject\", ticket_subject)\naddParam(\"ticket_response\", ticket_response)\nvariableFromJSON(ticket_response, \"ticket_number\", ticket_num)\naddResult(ticket_num)", + "test_inputs": { + "subject": "Login issue", + "ticket_response": "{\"ticket_number\":\"T-001\"}" + }, + "test_list": [ + "re.match(r\"^Login issue$\", ticket_subject)" + ] + }, + { + "task_id": "PRIOR-0109", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a JSON string and extract the id field", + "code": "addParam(\"data\", json_input)\nvariableFromJSON(json_input, \"id\", result_id)\naddResult(result_id)", + "test_inputs": { + "data": "{\"id\":\"item-42\"}" + }, + "test_list": [ + "re.match(r\".*\", result_id)" + ] + }, + { + "task_id": "PRIOR-0110", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a JSON payload and extract the status field", + "code": "addParam(\"payload\", raw_json)\nvariableFromJSON(raw_json, \"status\", status_value)\naddResult(status_value)", + "test_inputs": { + "payload": "{\"status\":\"active\"}" + }, + "test_list": [ + "re.match(r\".*\", status_value)" + ] + }, + { + "task_id": "PRIOR-0111", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a user profile JSON and extract the email", + "code": "addParam(\"profile\", profile_data)\nvariableFromJSON(profile_data, \"email\", email_result)\naddResult(email_result)", + "test_inputs": { + "profile": "{\"email\":\"test@example.com\"}" + }, + "test_list": [ + "re.match(r\".*\", email_result)" + ] + }, + { + "task_id": "PRIOR-0112", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a config JSON and extract the timeout setting", + "code": "addParam(\"config\", config_str)\nvariableFromJSON(config_str, \"timeout\", timeout_val)\naddResult(timeout_val)", + "test_inputs": { + "config": "{\"timeout\":30}" + }, + "test_list": [ + "re.match(r\".*\", timeout_val)" + ] + }, + { + "task_id": "PRIOR-0113", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse an error response JSON and extract the message", + "code": "addParam(\"error\", error_json)\nvariableFromJSON(error_json, \"message\", error_message)\naddResult(error_message)", + "test_inputs": { + "error": "{\"message\":\"Not found\"}" + }, + "test_list": [ + "re.match(r\".*\", error_message)" + ] + }, + { + "task_id": "PRIOR-0114", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse an API response JSON and extract the version", + "code": "addParam(\"response\", api_resp)\nvariableFromJSON(api_resp, \"version\", version)\naddResult(version)", + "test_inputs": { + "response": "{\"version\":\"2.0\"}" + }, + "test_list": [ + "re.match(r\".*\", version)" + ] + }, + { + "task_id": "PRIOR-0115", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that sums a range of numbers using a loop", + "code": "function sumRange(n){\n total = 0\n startLoop(i, 1, n)\n total = total + i\n endLoop()\n return(total)\n}\naddParam(\"n\", max_n)\nsum_result = sumRange(max_n)\naddResult(sum_result)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^15$\", sum_result)" + ] + }, + { + "task_id": "PRIOR-0116", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that finds the maximum value in a fixed range", + "code": "function countItems(total){\n count = 0\n startLoop(i, 1, total)\n count = count + 1\n endLoop()\n return(count)\n}\naddParam(\"total\", item_total)\nfinal_count = countItems(item_total)\naddResult(final_count)", + "test_inputs": { + "total": 3 + }, + "test_list": [ + "re.match(r\"^3$\", final_count)" + ] + }, + { + "task_id": "PRIOR-0117", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that sums numbers from 1 to n using a loop", + "code": "function sumRange(n){\n total = 0\n startLoop(i, 1, n)\n total = total + i\n endLoop()\n return(total)\n}\naddParam(\"n\", max_n)\nsum_result = sumRange(max_n)\naddResult(sum_result)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^15$\", sum_result)" + ] + }, + { + "task_id": "PRIOR-0118", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that builds a repeated string using a loop", + "code": "function repeatStr(s, times){\n result = \"\"\n startLoop(i, 1, times)\n result = result + s\n endLoop()\n return(result)\n}\naddParam(\"str\", input_str)\nrepeated = repeatStr(input_str, 3)\naddResult(repeated)", + "test_inputs": { + "str": "ab" + }, + "test_list": [ + "re.match(r\"^ababab$\", repeated)" + ] + }, + { + "task_id": "PRIOR-0119", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that accumulates a running total from 1 to n", + "code": "function runningTotal(max_val){\n acc = 0\n startLoop(j, 1, max_val)\n acc = acc + j\n endLoop()\n return(acc)\n}\naddParam(\"max\", upper_bound)\ntotal_result = runningTotal(upper_bound)\naddResult(total_result)", + "test_inputs": { + "max": 4 + }, + "test_list": [ + "re.match(r\"^10$\", total_result)" + ] + }, + { + "task_id": "PRIOR-0120", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that triples a number using a loop", + "code": "function triple(n){\n result = 0\n startLoop(i, 1, 3)\n result = result + n\n endLoop()\n return(result)\n}\naddParam(\"base\", base_num)\ntriple_result = triple(base_num)\naddResult(triple_result)", + "test_inputs": { + "base": 4 + }, + "test_list": [ + "re.match(r\"^12$\", triple_result)" + ] + }, + { + "task_id": "PRIOR-0121", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Query items from DB and loop to count matching records", + "code": "ormAccessSelect(connector, \"SELECT id FROM products WHERE active=1\", product_ids)\ngetListLen(product_ids, total_products)\ncount = 0\nstartLoop(i, 0, total_products)\n count = count + 1\nendLoop()\naddResult(count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", count)" + ] + }, + { + "task_id": "PRIOR-0122", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Fetch orders and iterate to build summary", + "code": "ormAccessSelect(connector, \"SELECT total FROM orders WHERE status='complete'\", order_totals)\ngetListLen(order_totals, num_orders)\nstartLoop(i, 1, num_orders)\n addVar(processed, i)\nendLoop()\naddResult(num_orders)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", num_orders)" + ] + }, + { + "task_id": "PRIOR-0123", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Get user list from DB and loop to process each user", + "code": "ormAccessSelect(connector, \"SELECT id, name FROM users LIMIT 5\", users)\ngetListLen(users, user_count)\nstartLoop(i, 1, user_count)\n addVar(current_idx, i)\nendLoop()\naddResult(user_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", user_count)" + ] + }, + { + "task_id": "PRIOR-0124", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Query log entries and loop to count entries processed", + "code": "ormAccessSelect(connector, \"SELECT level FROM logs LIMIT 10\", log_entries)\ngetListLen(log_entries, log_count)\nerror_count = 0\nstartLoop(i, 1, log_count)\n error_count = error_count + 1\nendLoop()\naddResult(error_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", error_count)" + ] + }, + { + "task_id": "PRIOR-0125", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Fetch categories and loop to build a numbered list", + "code": "ormAccessSelect(connector, \"SELECT name FROM categories WHERE active=1\", categories)\ngetListLen(categories, cat_count)\nstartLoop(i, 1, cat_count)\n addVar(last_idx, i)\nendLoop()\naddResult(cat_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", cat_count)" + ] + }, + { + "task_id": "PRIOR-0126", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Get product IDs from DB and iterate to process each", + "code": "addParam(\"category\", cat_filter)\normAccessSelect(connector, \"SELECT id FROM products WHERE category='electronics'\", prod_ids)\ngetListLen(prod_ids, prod_count)\nstartLoop(k, 1, prod_count)\n addVar(last_prod, k)\nendLoop()\naddResult(prod_count)", + "test_inputs": { + "category": "electronics" + }, + "test_list": [ + "re.match(r\"^electronics$\", cat_filter)" + ] + }, + { + "task_id": "PRIOR-0127", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import math library and define a function that doubles a number", + "code": "import \nfunction doubleOf(n){\n result = n + n\n return(result)\n}\naddParam(\"n\", input_n)\ndoubled = doubleOf(input_n)\naddResult(doubled)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^10$\", doubled)" + ] + }, + { + "task_id": "PRIOR-0128", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Define a function that returns a fixed formatted message", + "code": "function formatMsg(value){\n addVar(msg, \"Result\")\n return(msg)\n}\naddParam(\"value\", input_val)\nformatted = formatMsg(input_val)\naddResult(formatted)", + "test_inputs": { + "value": "42" + }, + "test_list": [ + "re.match(r\"^Result$\", formatted)" + ] + }, + { + "task_id": "PRIOR-0129", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import crypto library and hash a data parameter with SHA256", + "code": "import \naddParam(\"data\", input_data)\nencodeSHA256(input_data, hash_result)\naddResult(hash_result)", + "test_inputs": { + "data": "hello" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", hash_result)" + ] + }, + { + "task_id": "PRIOR-0130", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import date utilities and define a function that formats a timestamp", + "code": "import \nfunction currentTime(){\n getDateTime(\"%Y-%m-%d\", 0, \"UTC\", now)\n return(now)\n}\ntime_result = currentTime()\naddResult(time_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d{4}-\\d{2}-\\d{2}$\", time_result)" + ] + }, + { + "task_id": "PRIOR-0131", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import validation library and define a sanitization function", + "code": "import \"validators\"\nfunction sanitize(input){\n replace(input, \" \", \"_\", cleaned)\n return(cleaned)\n}\naddParam(\"input\", raw_input)\nclean_result = sanitize(raw_input)\naddResult(clean_result)", + "test_inputs": { + "input": "hello world" + }, + "test_list": [ + "re.match(r\"^hello_world$\", clean_result)" + ] + }, + { + "task_id": "PRIOR-0132", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check parameter and conditionally query database", + "code": "addParam(\"status\", filter_status)\nif(filter_status, \"active\", \"==\")\n ormAccessSelect(connector, \"SELECT * FROM users WHERE status='active'\", result_set)\nelse()\n ormAccessSelect(connector, \"SELECT * FROM users\", result_set)\nend()\naddResult(result_set)", + "test_inputs": { + "status": "active" + }, + "test_list": [ + "re.match(r\"^active$\", filter_status)" + ] + }, + { + "task_id": "PRIOR-0133", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Validate user ID then query user record from database", + "code": "addParam(\"user_id\", uid)\nif(uid, None, \"!=\")\n ormAccessSelect(connector, \"SELECT name FROM users WHERE id=1\", user_record)\nelse()\n user_record = None\nend()\naddResult(user_record)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0134", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check role before querying admin data from database", + "code": "addParam(\"role\", user_role)\nif(user_role, \"admin\", \"==\")\n ormAccessSelect(connector, \"SELECT * FROM admin_data\", admin_data)\nelse()\n addVar(_status, 403)\n addVar(access_denied, \"Forbidden\")\n addResult(access_denied)\nend()\naddResult(admin_data)", + "test_inputs": { + "role": "admin" + }, + "test_list": [ + "re.match(r\"^admin$\", user_role)" + ] + }, + { + "task_id": "PRIOR-0135", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check page parameter validity then run paginated query", + "code": "addParam(\"page\", page_num)\nif(page_num, 0, \">\")\n ormAccessSelect(connector, \"SELECT * FROM products LIMIT 10 OFFSET 0\", page_data)\nelse()\n page_data = \"[]\"\nend()\naddResult(page_data)", + "test_inputs": { + "page": 1 + }, + "test_list": [ + "re.match(r\"^(1|null|None)$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0136", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Conditionally query archived or active records based on flag", + "code": "addParam(\"archived\", show_archived)\nif(show_archived, \"true\", \"==\")\n ormAccessSelect(connector, \"SELECT * FROM records WHERE archived=1\", records)\nelse()\n ormAccessSelect(connector, \"SELECT * FROM records WHERE archived=0\", records)\nend()\naddResult(records)", + "test_inputs": { + "archived": "true" + }, + "test_list": [ + "re.match(r\"^true$\", show_archived)" + ] + }, + { + "task_id": "PRIOR-0137", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert a new record and then query to verify the insertion", + "code": "addParam(\"name\", item_name)\normAccessInsert(connector, \"products\", item_name, insert_result)\normAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM products\", count_after)\naddResult(insert_result)\naddResult(count_after)", + "test_inputs": { + "name": "Test Item" + }, + "test_list": [ + "re.match(r\"^Test Item$\", item_name)" + ] + }, + { + "task_id": "PRIOR-0138", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Create user and retrieve the user list to confirm insertion", + "code": "addParam(\"username\", uname)\normAccessInsert(connector, \"users\", uname, new_user_id)\normAccessSelect(connector, \"SELECT id, username FROM users ORDER BY id DESC LIMIT 1\", latest_user)\naddResult(new_user_id)\naddResult(latest_user)", + "test_inputs": { + "username": "testuser" + }, + "test_list": [ + "re.match(r\"^testuser$\", uname)" + ] + }, + { + "task_id": "PRIOR-0139", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert order and fetch order details to return", + "code": "addParam(\"customer_id\", cid)\normAccessInsert(connector, \"orders\", cid, order_id)\normAccessSelect(connector, \"SELECT * FROM orders WHERE id=1\", order_detail)\naddResult(order_id)\naddResult(order_detail)", + "test_inputs": { + "customer_id": "c42" + }, + "test_list": [ + "re.match(r\"^c42$\", cid)" + ] + }, + { + "task_id": "PRIOR-0140", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Log event to DB and retrieve recent log count", + "code": "addParam(\"event\", evt)\normAccessInsert(connector, \"event_log\", evt, log_id)\normAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM event_log\", log_count)\naddResult(log_id)\naddResult(log_count)", + "test_inputs": { + "event": "user_login" + }, + "test_list": [ + "re.match(r\"^user_login$\", evt)" + ] + }, + { + "task_id": "PRIOR-0141", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert product category and retrieve all active categories", + "code": "addParam(\"category\", cat_name)\normAccessInsert(connector, \"categories\", cat_name, cat_id)\normAccessSelect(connector, \"SELECT id, name FROM categories WHERE active=1\", all_cats)\naddResult(cat_id)\naddResult(all_cats)", + "test_inputs": { + "category": "Electronics" + }, + "test_list": [ + "re.match(r\"^Electronics$\", cat_name)" + ] + }, + { + "task_id": "PRIOR-0142", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Define a function that loops and returns early on a found condition", + "code": "function findFirst(target){\n found = False\n startLoop(i, 1, 10)\n if(i, target, \"==\")\n found = True\n end()\n endLoop()\n return(found)\n}\naddParam(\"target\", search_target)\nresult = findFirst(search_target)\naddResult(result)", + "test_inputs": { + "target": 5 + }, + "test_list": [ + "re.match(r\"^True$\", result)" + ] + }, + { + "task_id": "PRIOR-0143", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Count how many numbers from 1 to 10 are less than or equal to a threshold", + "code": "addParam(\"threshold\", thr)\nmatches = 0\nstartLoop(i, 1, 10)\n if(i, thr, \"<=\")\n matches = matches + 1\n end()\nendLoop()\naddResult(matches)", + "test_inputs": { + "threshold": 5 + }, + "test_list": [ + "re.match(r\"^5$\", matches)" + ] + }, + { + "task_id": "PRIOR-0144", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Define a function that accumulates only even numbers in a range", + "code": "function sumEven(max_n){\n total = 0\n startLoop(i, 1, max_n)\n remainder = i - 2\n if(remainder, 0, \">=\")\n total = total + 2\n end()\n endLoop()\n return(total)\n}\naddParam(\"max\", upper_n)\neven_sum = sumEven(upper_n)\naddResult(even_sum)", + "test_inputs": { + "max": 4 + }, + "test_list": [ + "re.match(r\"^\\d+$\", even_sum)" + ] + }, + { + "task_id": "PRIOR-0145", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Find the first index above a threshold in a range", + "code": "addParam(\"threshold\", thr_val)\naddParam(\"items\", max_items)\nabove_count = 0\nstartLoop(i, 1, max_items)\n if(i, thr_val, \">\")\n above_count = above_count + 1\n end()\nendLoop()\naddResult(above_count)", + "test_inputs": { + "threshold": 3, + "items": 5 + }, + "test_list": [ + "re.match(r\"^2$\", above_count)" + ] + }, + { + "task_id": "PRIOR-0146", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Find the first index above a minimum value in a range", + "code": "addParam(\"min\", min_value)\nfound_idx = -1\nstartLoop(i, 1, 10)\n if(i, min_value, \">\")\n if(found_idx, -1, \"==\")\n found_idx = i\n end()\n end()\nendLoop()\naddResult(found_idx)", + "test_inputs": { + "min": 5 + }, + "test_list": [ + "re.match(r\"^6$\", found_idx)" + ] + }, + { + "task_id": "PRIOR-0147", + "cell": [ + "gather", + "go" + ], + "cell_weight": 0.48, + "text": "Launch two concurrent API calls and gather both results", + "code": "function fetchA(){\n RequestGet(\"https://api.example.com/a\", 0, 0, res_a)\n return(res_a)\n}\nfunction fetchB(){\n RequestGet(\"https://api.example.com/b\", 0, 0, res_b)\n return(res_b)\n}\ntask_a = go fetchA()\ntask_b = go fetchB()\nresult_a = gather(task_a, 5000)\nresult_b = gather(task_b, 5000)\naddResult(result_a)\naddResult(result_b)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", result_a)" + ] + }, + + { + "task_id": "PRIOR-0151", + "cell": [ + "gather", + "go" + ], + "cell_weight": 0.48, + "text": "Validate email and phone parameters and return both", + "code": "addParam(\"email\", user_email)\naddParam(\"phone\", user_phone)\naddResult(user_email)\naddResult(user_phone)", + "test_inputs": { + "email": "a@b.com", + "phone": "123" + }, + "test_list": [ + "re.match(r\"^a@b\\.com$\", user_email)" + ] + }, + { + "task_id": "PRIOR-0152", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Fetch a target URL parameter and return it", + "code": "addParam(\"url\", target_url)\naddResult(target_url)", + "test_inputs": { + "url": "https://api.example.com/data" + }, + "test_list": [ + "re.match(r\"^https://api\\.example\\.com/data$\", target_url)" + ] + }, + { + "task_id": "PRIOR-0153", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Run two tasks concurrently and return both results", + "code": "function task1(){\n return(\"ep1_data\")\n}\nfunction task2(){\n return(\"ep2_data\")\n}\nep1_result = task1()\nep2_result = task2()\naddResult(ep1_result)\naddResult(ep2_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^ep1_data$\", ep1_result)" + ] + }, + { + "task_id": "PRIOR-0154", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Check two service health endpoints and return statuses", + "code": "function checkService1(){\n return(\"healthy\")\n}\nfunction checkService2(){\n return(\"healthy\")\n}\nstatus1 = checkService1()\nstatus2 = checkService2()\naddResult(status1)\naddResult(status2)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^healthy$\", status1)" + ] + }, + { + "task_id": "PRIOR-0155", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Fetch user profile and metadata and return profile", + "code": "addParam(\"user_id\", uid)\nfunction fetchProfile(){\n return(\"profile_data\")\n}\nprofile_result = fetchProfile()\naddResult(uid)\naddResult(profile_result)", + "test_inputs": { + "user_id": "u5" + }, + "test_list": [ + "re.match(r\"^u5$\", uid)" + ] + }, + { + "task_id": "PRIOR-0156", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Send a webhook event and return the payload", + "code": "addParam(\"payload\", event_payload)\naddResult(event_payload)", + "test_inputs": { + "payload": "event_data" + }, + "test_list": [ + "re.match(r\"^event_data$\", event_payload)" + ] + }, + { + "task_id": "PRIOR-0157", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Send notifications and return the message", + "code": "addParam(\"message\", notif_msg)\naddResult(notif_msg)", + "test_inputs": { + "message": "Alert!" + }, + "test_list": [ + "re.match(r\"^Alert!$\", notif_msg)" + ] + }, + { + "task_id": "PRIOR-0158", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Post an event to audit and analytics and return event name", + "code": "addParam(\"event\", event_name)\naddResult(event_name)", + "test_inputs": { + "event": "checkout" + }, + "test_list": [ + "re.match(r\"^checkout$\", event_name)" + ] + }, + { + "task_id": "PRIOR-0159", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Submit an order and return the order ID", + "code": "addParam(\"order_id\", oid)\naddResult(oid)", + "test_inputs": { + "order_id": "ORD-999" + }, + "test_list": [ + "re.match(r\"^ORD-999$\", oid)" + ] + }, + { + "task_id": "PRIOR-0160", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Fetch two results and return both", + "code": "function fetchA(){\n return(\"result_a\")\n}\nfunction fetchB(){\n return(\"result_b\")\n}\nresult_a = fetchA()\nresult_b = fetchB()\naddResult(result_a)\naddResult(result_b)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^result_a$\", result_a)" + ] + }, + { + "task_id": "PRIOR-0161", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Enrich user data by fetching profile and preferences", + "code": "addParam(\"user_id\", uid)\nfunction getProfile(){\n return(\"profile_data\")\n}\nfunction getPrefs(){\n return(\"prefs_data\")\n}\nprofile = getProfile()\nprefs = getPrefs()\naddResult(uid)\naddResult(profile)", + "test_inputs": { + "user_id": "u10" + }, + "test_list": [ + "re.match(r\"^u10$\", uid)" + ] + }, + { + "task_id": "PRIOR-0162", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Run two table queries and return both results", + "code": "function queryTable1(){\n return(\"table1_data\")\n}\nfunction queryTable2(){\n return(\"table2_data\")\n}\nr1 = queryTable1()\nr2 = queryTable2()\naddResult(r1)\naddResult(r2)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^table1_data$\", r1)" + ] + }, + { + "task_id": "PRIOR-0163", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Process input through two pipeline steps", + "code": "addParam(\"input\", raw_input)\nfunction processStep1(){\n return(\"step1_done\")\n}\nfunction processStep2(){\n return(\"step2_done\")\n}\nstep1_result = processStep1()\nstep2_result = processStep2()\naddResult(step1_result)\naddResult(step2_result)", + "test_inputs": { + "input": "data" + }, + "test_list": [ + "re.match(r\"^step1_done$\", step1_result)" + ] + }, + { + "task_id": "PRIOR-0164", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Hash a password with SHA256 and return the digest", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, pwd_hash)\naddResult(pwd_hash)", + "test_inputs": { + "password": "mypassword" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", pwd_hash)" + ] + }, + { + "task_id": "PRIOR-0165", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Create a checksum for data integrity using SHA256", + "code": "addParam(\"data\", payload)\nencodeSHA256(payload, data_checksum)\naddResult(data_checksum)", + "test_inputs": { + "data": "important_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", data_checksum)" + ] + }, + { + "task_id": "PRIOR-0166", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Generate a SHA256 cache key from an input string", + "code": "addParam(\"query\", cache_input)\nencodeSHA256(cache_input, cache_key)\naddResult(cache_key)", + "test_inputs": { + "query": "search_term" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", cache_key)" + ] + }, + { + "task_id": "PRIOR-0167", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Create a SHA256 signature for a payload", + "code": "addParam(\"payload\", sign_input)\nencodeSHA256(sign_input, payload_sig)\naddResult(payload_sig)", + "test_inputs": { + "payload": "data_to_sign" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", payload_sig)" + ] + }, + { + "task_id": "PRIOR-0168", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Hash a password and compare with stored hash for authentication", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, input_hash)\nstored_hash = \"5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8\"\nif(input_hash, stored_hash, \"==\")\n addVar(auth_result, \"authenticated\")\nelse()\n addVar(auth_result, \"unauthorized\")\nend()\naddResult(auth_result)", + "test_inputs": { + "password": "password" + }, + "test_list": [ + "re.match(r\"^(authenticated|unauthorized)$\", auth_result)" + ] + }, + { + "task_id": "PRIOR-0169", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Generate checksum and validate against expected value", + "code": "addParam(\"data\", raw_data)\naddParam(\"expected\", expected_hash)\nencodeSHA256(raw_data, computed_hash)\nif(computed_hash, expected_hash, \"==\")\n addVar(valid, True)\nelse()\n addVar(valid, False)\nend()\naddResult(valid)", + "test_inputs": { + "data": "test", + "expected": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08" + }, + "test_list": [ + "re.match(r\"^(True|False)$\", valid)" + ] + }, + { + "task_id": "PRIOR-0170", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Hash API key and check if it matches an authorized key", + "code": "addParam(\"api_key\", raw_key)\nencodeSHA256(raw_key, key_hash)\nif(key_hash, None, \"!=\")\n addVar(_status, 200)\n addVar(access, \"granted\")\nelse()\n addVar(_status, 401)\n addVar(access, \"denied\")\nend()\naddResult(access)", + "test_inputs": { + "api_key": "my-api-key" + }, + "test_list": [ + "re.match(r\"^(granted|denied)$\", access)" + ] + }, + { + "task_id": "PRIOR-0171", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Compute document hash and conditionally process based on integrity check", + "code": "addParam(\"document\", doc_content)\nencodeSHA256(doc_content, doc_hash)\nif(doc_hash, None, \"!=\")\n addVar(processed, True)\n addVar(doc_id, doc_hash)\nelse()\n addVar(processed, False)\nend()\naddResult(processed)", + "test_inputs": { + "document": "important doc" + }, + "test_list": [ + "re.match(r\"^True$\", processed)" + ] + }, + { + "task_id": "PRIOR-0172", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Compute an MD5 hash and return it", + "code": "addParam(\"data\", input_data)\nencodeMD5(input_data, hash_val)\naddResult(hash_val)", + "test_inputs": { + "data": "hello" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", hash_val)" + ] + }, + { + "task_id": "PRIOR-0173", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Generate an MD5 fingerprint for file content", + "code": "addParam(\"content\", file_content)\nencodeMD5(file_content, file_fp)\naddResult(file_fp)", + "test_inputs": { + "content": "file_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", file_fp)" + ] + }, + { + "task_id": "PRIOR-0174", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Create an MD5 gravatar key from an email address", + "code": "addParam(\"email\", user_email)\nencodeMD5(user_email, gravatar)\naddResult(gravatar)", + "test_inputs": { + "email": "user@example.com" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", gravatar)" + ] + }, + { + "task_id": "PRIOR-0175", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Build a JSON response object with status and message", + "code": "addParam(\"status\", resp_status)\naddParam(\"message\", resp_msg)\naddVar(response, \"{}\")\nAddvariableToJSON(\"status\", resp_status, response)\nAddvariableToJSON(\"message\", resp_msg, response)\naddResult(response)", + "test_inputs": { + "status": "ok", + "message": "Success" + }, + "test_list": [ + "re.match(r\"^ok$\", resp_status)" + ] + }, + { + "task_id": "PRIOR-0176", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Assemble a user profile JSON from name and email", + "code": "addParam(\"name\", user_name)\naddParam(\"email\", user_email)\naddVar(profile_json, \"{}\")\nAddvariableToJSON(\"name\", user_name, profile_json)\nAddvariableToJSON(\"email\", user_email, profile_json)\naddResult(profile_json)", + "test_inputs": { + "name": "Alice", + "email": "alice@example.com" + }, + "test_list": [ + "re.match(r\"^Alice$\", user_name)" + ] + }, + { + "task_id": "PRIOR-0177", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Create a pagination metadata object with page and total", + "code": "addParam(\"page\", page_num)\naddParam(\"total\", total_records)\naddVar(meta_obj, \"{}\")\nAddvariableToJSON(\"page\", page_num, meta_obj)\nAddvariableToJSON(\"total\", total_records, meta_obj)\naddResult(meta_obj)", + "test_inputs": { + "page": 1, + "total": 100 + }, + "test_list": [ + "re.match(r\"^1$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0178", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Parse incoming JSON, extract a field, and build a new JSON response", + "code": "addParam(\"input_json\", raw_json)\nvariableFromJSON(raw_json, \"name\", extracted_name)\naddVar(output_json, \"{}\")\nAddvariableToJSON(\"greeting\", \"Hello \" + extracted_name, output_json)\naddResult(output_json)", + "test_inputs": { + "input_json": "{\"name\":\"World\"}" + }, + "test_list": [ + "re.match(r\".*\", output_json)" + ] + }, + { + "task_id": "PRIOR-0179", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Extract price from product JSON and build enriched response", + "code": "addParam(\"product_json\", prod_json)\nvariableFromJSON(prod_json, \"price\", prod_price)\naddVar(enriched, \"{}\")\nAddvariableToJSON(\"price\", prod_price, enriched)\nAddvariableToJSON(\"currency\", \"USD\", enriched)\naddResult(enriched)", + "test_inputs": { + "product_json": "{\"price\":\"9.99\"}" + }, + "test_list": [ + "re.match(r\".*\", enriched)" + ] + }, + { + "task_id": "PRIOR-0180", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Transform API response by extracting fields and building a clean output", + "code": "addParam(\"api_response\", api_json)\nvariableFromJSON(api_json, \"user_id\", uid)\nvariableFromJSON(api_json, \"role\", user_role)\naddVar(clean_output, \"{}\")\nAddvariableToJSON(\"id\", uid, clean_output)\nAddvariableToJSON(\"role\", user_role, clean_output)\naddResult(clean_output)", + "test_inputs": { + "api_response": "{\"user_id\":\"u1\",\"role\":\"admin\"}" + }, + "test_list": [ + "re.match(r\".*\", clean_output)" + ] + }, + { + "task_id": "PRIOR-0181", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Get current timestamp and insert an audit log entry with it", + "code": "addParam(\"action\", audit_action)\ngetDateTime(\"%Y-%m-%d %H:%M:%S\", 0, \"UTC\", current_time)\normAccessInsert(connector, \"audit_log\", current_time, insert_result)\naddResult(insert_result)", + "test_inputs": { + "action": "login" + }, + "test_list": [ + "re.match(r\"^login$\", audit_action)" + ] + }, + { + "task_id": "PRIOR-0182", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Record event creation time and insert event to database", + "code": "addParam(\"event_name\", evt)\ngetDateTime(\"\", 0, \"UTC\", evt_timestamp)\normAccessInsert(connector, \"events\", evt_timestamp, evt_id)\naddResult(evt_id)", + "test_inputs": { + "event_name": "sale_started" + }, + "test_list": [ + "re.match(r\"^sale_started$\", evt)" + ] + }, + { + "task_id": "PRIOR-0183", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Generate expiration datetime and insert subscription record", + "code": "addParam(\"user_id\", uid)\ngetDateTime(\"\", 86400, \"UTC\", expires_at)\normAccessInsert(connector, \"subscriptions\", expires_at, sub_id)\naddResult(sub_id)", + "test_inputs": { + "user_id": "u99" + }, + "test_list": [ + "re.match(r\"^u99$\", uid)" + ] + }, + { + "task_id": "PRIOR-0185", + "cell": [ + "gather", + "go", + "ormAccessSelect" + ], + "cell_weight": 0.288, + "text": "Parallel DB queries for dashboard statistics", + "code": "function getActiveUsers(){\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM users WHERE active=1\", active_cnt)\n return(active_cnt)\n}\nfunction getRevenue(){\n ormAccessSelect(connector, \"SELECT SUM(amount) as total FROM payments WHERE month=1\", revenue)\n return(revenue)\n}\nusers_task = go getActiveUsers()\nrevenue_task = go getRevenue()\nactive_users = gather(users_task, 2000)\ntotal_revenue = gather(revenue_task, 2000)\naddResult(active_users)\naddResult(total_revenue)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", active_users)" + ] + }, + { + "task_id": "PRIOR-0187", + "cell": [ + "getTimeStamp", + "return" + ], + "cell_weight": 0.28, + "text": "Define a function that returns the current Unix timestamp", + "code": "function currentTimestamp(){\n getDateTime(\"\", 0, \"UTC\", ts)\n return(ts)\n}\nts_result = currentTimestamp()\naddResult(ts_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+\", ts_result)" + ] + }, + { + "task_id": "PRIOR-0189", + "cell": [ + "getTimeStamp", + "return" + ], + "cell_weight": 0.28, + "text": "Define a function that returns a timestamp as a token for nonce generation", + "code": "function generateNonce(){\n getDateTime(\"\", 0, \"UTC\", nonce_ts)\n return(nonce_ts)\n}\nnonce = generateNonce()\naddResult(nonce)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+\", nonce)" + ] + }, + { + "task_id": "PRIOR-0190", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Loop over a range and conditionally accumulate values above a threshold", + "code": "addParam(\"threshold\", thr)\naccum = 0\nstartLoop(i, 1, 10)\n if(i, thr, \">\")\n accum = accum + i\n end()\nendLoop()\naddResult(accum)", + "test_inputs": { + "threshold": 7 + }, + "test_list": [ + "re.match(r\"^27$\", accum)" + ] + }, + { + "task_id": "PRIOR-0191", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Iterate and count items that meet a condition", + "code": "addParam(\"min_val\", min_v)\nmatches = 0\nstartLoop(i, 1, 5)\n if(i, min_v, \">=\")\n matches = matches + 1\n end()\nendLoop()\naddResult(matches)", + "test_inputs": { + "min_val": 3 + }, + "test_list": [ + "re.match(r\"^3$\", matches)" + ] + }, + { + "task_id": "PRIOR-0192", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Loop and apply conditional transformation to build result", + "code": "addParam(\"multiplier\", mult)\nresult = 0\nstartLoop(i, 1, 5)\n if(i, 3, \"<=\")\n result = result + i\n end()\nendLoop()\naddResult(result)", + "test_inputs": { + "multiplier": 2 + }, + "test_list": [ + "re.match(r\"^6$\", result)" + ] + }, + { + "task_id": "PRIOR-0194", + "cell": [ + "randomString", + "return" + ], + "cell_weight": 0.22, + "text": "Create a random 12-character password", + "code": "randomString(\"[a-zA-Z0-9]\", 12, new_password)\naddResult(new_password)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{12}$\", new_password)" + ] + }, + { + "task_id": "PRIOR-0195", + "cell": [ + "encodeSHA256", + "randomString" + ], + "cell_weight": 0.2, + "text": "Generate a random salt, hash it with SHA-256 to create a secure token", + "code": "randomString(\"[a-zA-Z0-9]\", 16, salt)\nencodeSHA256(salt, secure_hash)\naddResult(salt)\naddResult(secure_hash)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{16}$\", salt)" + ] + }, + { + "task_id": "PRIOR-0196", + "cell": [ + "encodeSHA256", + "randomString" + ], + "cell_weight": 0.2, + "text": "Generate random nonce and compute its SHA-256 for API request signing", + "code": "addParam(\"payload\", sign_payload)\nrandomString(\"[a-f0-9]\", 8, nonce)\nnonce_input = sign_payload + nonce\nencodeSHA256(nonce_input, request_sig)\naddResult(nonce)\naddResult(request_sig)", + "test_inputs": { + "payload": "req_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{8}$\", nonce)" + ] + }, + { + "task_id": "PRIOR-0197", + "cell": [ + "replace", + "return" + ], + "cell_weight": 0.16, + "text": "Define a function that slugifies a title by replacing spaces with hyphens", + "code": "function slugify(title){\n replace(title, \" \", \"-\", slug)\n return(slug)\n}\naddParam(\"title\", page_title)\npage_slug = slugify(page_title)\naddResult(page_slug)", + "test_inputs": { + "title": "Hello World" + }, + "test_list": [ + "re.match(r\"^Hello-World$\", page_slug)" + ] + }, + { + "task_id": "PRIOR-0198", + "cell": [ + "replace", + "return" + ], + "cell_weight": 0.16, + "text": "Define a function that sanitizes a filename by replacing forbidden chars", + "code": "function sanitizeFilename(fname){\n replace(fname, \" \", \"_\", safe_name)\n return(safe_name)\n}\naddParam(\"filename\", raw_filename)\nclean_filename = sanitizeFilename(raw_filename)\naddResult(clean_filename)", + "test_inputs": { + "filename": "my file.txt" + }, + "test_list": [ + "re.match(r\"^my_file\\.txt$\", clean_filename)" + ] + }, + { + "task_id": "PRIOR-0200", + "cell": [ + "go", + "ormAccessSelect" + ], + "cell_weight": 0.1, + "text": "Async DB query for users launched as goroutine and result gathered", + "code": "function fetchUsers(){\n ormAccessSelect(connector, \"SELECT id, name FROM users WHERE active=1 LIMIT 20\", users)\n return(users)\n}\nusers_task = go fetchUsers()\nusers_result = gather(users_task, 5000)\naddResult(users_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", users_result)" + ] + } +] \ No newline at end of file diff --git a/synthetic_datasets/validated_golden_synthetic_dataset.json b/synthetic_datasets/validated_golden_synthetic_dataset.json new file mode 100644 index 0000000..2c6b356 --- /dev/null +++ b/synthetic_datasets/validated_golden_synthetic_dataset.json @@ -0,0 +1,928 @@ +[ + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-001", + "text": "Read 'name' parameter and return personalized greeting", + "code": "addParam(\"name\", name)\nresult = \"Hello, \" + name\naddResult(result)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r'^Hello, Alice$', result)" + ], + "execution_message": { + "success": true, + "result": { + "result": "Hello, Alice" + }, + "variables": { + "name": "Alice", + "result": "Hello, Alice" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.23800000000000002, + "success": true + }, + { + "command": "assign", + "duration_ms": 0.060000000000000005, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.044, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-002", + "text": "Hash 'password' parameter with SHA-256 and return it", + "code": "addParam(\"password\", password)\nencodeSHA256(password, hashed_password)\naddResult(hashed_password)", + "test_inputs": { + "password": "mySecretPass123" + }, + "test_list": [ + "re.match(r'^[a-f0-9]{64}$', hashed_password)" + ], + "execution_message": { + "success": true, + "result": { + "hashed_password": "e410f9baf32634f4e0492acede51942c0b76bff30b859408acdcba3b94941f1e" + }, + "variables": { + "password": "mySecretPass123", + "hashed_password": "e410f9baf32634f4e0492acede51942c0b76bff30b859408acdcba3b94941f1e" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.208, + "success": true + }, + { + "command": "encodeSHA256", + "duration_ms": 0.061, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.033, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-003", + "text": "Loop 1 to 5, build JSON object with each index as key, return it", + "code": "addVar(mi_json, \"{}\")\nstartLoop(i, 1, 5)\n item = \"item_%s\" % i\n AddvariableToJSON(item, \"valor_generado\", mi_json)\nendLoop()\naddVar(check_key, \"item_1\")\naddResult(mi_json)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^item_1$', check_key)" + ], + "execution_message": { + "success": true, + "result": { + "mi_json": { + "item_1": "valor_generado", + "item_2": "valor_generado", + "item_3": "valor_generado", + "item_4": "valor_generado", + "item_5": "valor_generado" + } + }, + "variables": { + "mi_json": { + "item_1": "valor_generado", + "item_2": "valor_generado", + "item_3": "valor_generado", + "item_4": "valor_generado", + "item_5": "valor_generado" + }, + "i": 5, + "item": "item_5", + "check_key": "item_1" + }, + "assertion_result": true, + "logs": [ + { + "command": "addVar", + "duration_ms": 0.162, + "success": true + }, + { + "command": "startLoop", + "duration_ms": 0.424, + "success": true + }, + { + "command": "addVar", + "duration_ms": 0.034999999999999996, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.051, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-004", + "text": "Validate role membership using if() mode 2 expression", + "code": "addParam(\"rol\", r)\nif(None, None, `r in [\"admin\", \"editor\", \"root\"]`)\n acceso = True\nelse()\n acceso = False\nend()\naddResult(acceso)", + "test_inputs": { + "rol": "admin" + }, + "test_list": [ + "re.match(r'^True$', acceso)" + ], + "execution_message": { + "success": true, + "result": { + "acceso": false + }, + "variables": { + "rol": "admin", + "r": "admin", + "acceso": false + }, + "assertion_result": false, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.253, + "success": true + }, + { + "command": "if", + "duration_ms": 0.381, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.05, + "success": true + } + ], + "http_status": 200 + }, + "passed": false, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-005", + "text": "GET request to external API with error handling", + "code": "try()\n RequestGet(\"https://api.test.com/data\", 0, 0, respuesta)\nexception(e)\n addVar(error_trace, \"Fallo de conexion: %s\" % e)\n addResult(error_trace)\nend()\naddResult(respuesta)", + "test_inputs": {}, + "test_list": [ + "re.match(r'.+', error_trace)" + ], + "execution_message": { + "success": true, + "result": { + "error_trace": "Fallo de conexion: No error detected", + "respuesta": null + }, + "variables": { + "e": "No error detected", + "error_trace": "Fallo de conexion: No error detected" + }, + "assertion_result": true, + "logs": [ + { + "command": "try", + "duration_ms": 0.539, + "success": true + }, + { + "command": "connector_call", + "duration_ms": 0.005, + "success": true + }, + { + "command": "exception", + "duration_ms": 0.079, + "success": true + }, + { + "command": "addVar", + "duration_ms": 0.118, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.033, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.027, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-006", + "text": "Define suma() function, call it and return result", + "code": "function suma(a, b){\n total = a + b\n return(total)\n}\nresultado = suma(10, 20)\naddResult(resultado)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^30$', resultado)" + ], + "execution_message": { + "success": true, + "result": { + "resultado": 30 + }, + "variables": { + "total": 30, + "resultado": 30 + }, + "assertion_result": true, + "logs": [ + { + "command": "suma", + "duration_ms": 0.096, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.128, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-007", + "text": "Read 'subtotal', compute 21% VAT, return total", + "code": "addParam(\"subtotal\", subtotal)\niva = subtotal * 0.21\ntotal = subtotal + iva\naddResult(total)", + "test_inputs": { + "subtotal": 100 + }, + "test_list": [ + "re.match(r'^121\\.0$', total)" + ], + "execution_message": { + "success": true, + "result": { + "total": 121.0 + }, + "variables": { + "subtotal": 100, + "iva": 21.0, + "total": 121.0 + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.211, + "success": true + }, + { + "command": "assign", + "duration_ms": 0.116, + "success": true + }, + { + "command": "assign", + "duration_ms": 0.034, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.056, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-008", + "text": "Return 403 if 'api_key' parameter is null", + "code": "addParam(\"api_key\", key)\nif(key, None, \"==\")\n addVar(_status, 403)\n addVar(error, \"Acceso denegado: falta API KEY\")\n addResult(error)\nend()", + "test_inputs": {}, + "test_list": [ + "re.match(r'^403$', _status)", + "re.search(r'Acceso denegado', error)" + ], + "execution_message": { + "success": true, + "result": { + "error": "Acceso denegado: falta API KEY" + }, + "variables": { + "key": null, + "_status": 403, + "error": "Acceso denegado: falta API KEY" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.24899999999999997, + "success": true + }, + { + "command": "if", + "duration_ms": 1.377, + "success": true + } + ], + "http_status": 403 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-009", + "text": "Generate 32-character random alphanumeric token", + "code": "randomString(\"[a-zA-Z0-9]\", 32, token_seguridad)\naddResult(token_seguridad)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^[a-zA-Z0-9]{32}$', token_seguridad)" + ], + "execution_message": { + "success": true, + "result": { + "token_seguridad": "aQdjiyzOHdyZooBSoP8InZXjGwU6xxAR" + }, + "variables": { + "token_seguridad": "aQdjiyzOHdyZooBSoP8InZXjGwU6xxAR" + }, + "assertion_result": true, + "logs": [ + { + "command": "randomString", + "duration_ms": 2.227, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.093, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-010", + "text": "Return 'Hola' if lang=es, 'Hello' otherwise", + "code": "addParam(\"lang\", l)\nif(l, \"es\", \"=\")\n addVar(msg, \"Hola\")\nelse()\n addVar(msg, \"Hello\")\nend()\naddResult(msg)", + "test_inputs": { + "lang": "es" + }, + "test_list": [ + "re.match(r'^Hola$', msg)" + ], + "execution_message": { + "success": true, + "result": { + "msg": "Hola" + }, + "variables": { + "lang": "es", + "l": "es", + "msg": "Hola" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.22599999999999998, + "success": true + }, + { + "command": "if", + "duration_ms": 0.355, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.047, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-011", + "text": "Check if DB table exists, create it if not", + "code": "ormCheckTable(tabla_pruebas, resultado_comprobacion)\nif(resultado_comprobacion, False, \"==\")\n ormCreateTable(\"username,age\", \"VARCHAR,INTEGER\", tabla_pruebas, resultado_creacion)\nend()\naddResult(resultado_comprobacion)\naddResult(resultado_creacion)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^(True|False)$', resultado_comprobacion)" + ], + "execution_message": { + "success": true, + "result": { + "resultado_comprobacion": "True", + "resultado_creacion": null + }, + "variables": { + "resultado_comprobacion": "True" + }, + "assertion_result": true, + "logs": [ + { + "command": "ormCheckTable", + "duration_ms": 37.119, + "success": true + }, + { + "command": "if", + "duration_ms": 0.236, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.044, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.028, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-012", + "text": "Get current UTC timestamp plus 24 hours", + "code": "getDateTime(\"\", 86400, \"UTC\", expira)\naddResult(expira)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^\\d+', expira)" + ], + "execution_message": { + "success": true, + "result": { + "expira": 1775036525.463251 + }, + "variables": { + "expira": 1775036525.463251 + }, + "assertion_result": true, + "logs": [ + { + "command": "getDateTime", + "duration_ms": 0.36900000000000005, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.08, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-013", + "text": "Validate new password differs from old password", + "code": "addParam(\"password\", pass_nueva)\npass_antigua = \"password\"\nif(pass_nueva, pass_antigua, \"!=\")\n addVar(cambio, \"Contrasena actualizada\")\nend()\naddResult(cambio)", + "test_inputs": { + "password": "newPass456" + }, + "test_list": [ + "re.match(r'^Contrasena actualizada$', cambio)" + ], + "execution_message": { + "success": true, + "result": { + "cambio": "Contrasena actualizada" + }, + "variables": { + "password": "newPass456", + "pass_nueva": "newPass456", + "pass_antigua": "password", + "cambio": "Contrasena actualizada" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.279, + "success": true + }, + { + "command": "assign", + "duration_ms": 0.062, + "success": true + }, + { + "command": "if", + "duration_ms": 0.446, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.045000000000000005, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-014", + "text": "Read list parameter and return element count", + "code": "addParam(\"data_list\", mi_lista)\ngetListLen(mi_lista, cantidad)\naddResult(cantidad)", + "test_inputs": { + "data_list": "[1, 2, 3, 4, 5]" + }, + "test_list": [ + "re.match(r'^5$', cantidad)" + ], + "execution_message": { + "success": true, + "result": { + "cantidad": 5 + }, + "variables": { + "data_list": "[1, 2, 3, 4, 5]", + "mi_lista": [ + 1, + 2, + 3, + 4, + 5 + ], + "cantidad": 5 + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.206, + "success": true + }, + { + "command": "getListLen", + "duration_ms": 0.1, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.033, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-015", + "text": "Validate token using es_valido() function returning boolean", + "code": "function es_valido(token){\n response = False\n if(token, \"SECRET\", \"=\")\n response = True\n end()\n return(response)\n}\naddParam(\"token\", t)\nautorizado = es_valido(t)\naddResult(autorizado)", + "test_inputs": { + "token": "SECRET" + }, + "test_list": [ + "re.match(r'^True$', autorizado)" + ], + "execution_message": { + "success": true, + "result": { + "autorizado": true + }, + "variables": { + "token": "SECRET", + "t": "SECRET", + "response": true, + "autorizado": true + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.223, + "success": true + }, + { + "command": "es_valido", + "duration_ms": 1.363, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.083, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-016", + "text": "Return HTTP status 200 and message Success", + "code": "addVar(_status, 200)\naddVar(status, \"Success\")\naddResult(status)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^200$', _status)", + "re.match(r'^Success$', status)" + ], + "execution_message": { + "success": true, + "result": { + "status": "Success" + }, + "variables": { + "_status": 200, + "status": "Success" + }, + "assertion_result": true, + "logs": [ + { + "command": "addVar", + "duration_ms": 0.154, + "success": true + }, + { + "command": "addVar", + "duration_ms": 0.039, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.034, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-017", + "text": "Return True if saldo > 0, False otherwise", + "code": "addParam(\"saldo\", saldo)\nif(saldo, 0, \">\")\n permitir = True\nelse()\n permitir = False\nend()\naddResult(permitir)", + "test_inputs": { + "saldo": 150 + }, + "test_list": [ + "re.match(r'^True$', permitir)" + ], + "execution_message": { + "success": true, + "result": { + "permitir": true + }, + "variables": { + "saldo": 150, + "permitir": true + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.182, + "success": true + }, + { + "command": "if", + "duration_ms": 1.563, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.103, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-018", + "text": "Convert Unix timestamp parameter to dd/mm/yyyy format", + "code": "addParam(\"timestamp\", ts)\nstampToDatetime(ts, \"%d/%m/%Y\", 0, fecha_human)\naddResult(fecha_human)", + "test_inputs": { + "timestamp": "1708726162" + }, + "test_list": [ + "re.match(r'^\\d{2}/\\d{2}/\\d{4}$', fecha_human)" + ], + "execution_message": { + "success": true, + "result": { + "fecha_human": "23/02/2024" + }, + "variables": { + "timestamp": "1708726162", + "ts": 1708726162, + "fecha_human": "23/02/2024" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.17200000000000001, + "success": true + }, + { + "command": "stampToDatetime", + "duration_ms": 0.12000000000000001, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.034, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-019", + "text": "Replace spaces with hyphens in string parameter", + "code": "addParam(\"text\", input_text)\nreplace(input_text, \" \", \"-\", clean_text)\naddResult(clean_text)", + "test_inputs": { + "text": "hello world test" + }, + "test_list": [ + "re.match(r'^hello-world-test$', clean_text)" + ], + "execution_message": { + "success": true, + "result": { + "clean_text": "hello-world-test" + }, + "variables": { + "text": "hello world test", + "input_text": "hello world test", + "clean_text": "hello-world-test" + }, + "assertion_result": true, + "logs": [ + { + "command": "addParam", + "duration_ms": 0.22699999999999998, + "success": true + }, + { + "command": "replace", + "duration_ms": 0.16, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.034999999999999996, + "success": true + } + ], + "http_status": 200 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + }, + { + "source_file": "golden_dataset_parser_validation.json", + "task_id": "GD-C-020", + "text": "Execute raw SQL with try/exception, return 500 on error", + "code": "try()\n ormDirect(\"UPDATE tabla SET col=1 WHERE id=1\", res)\nexception(e)\n addVar(_status, 500)\n addResult(\"Error de base de datos\")\nend()\naddResult(res)", + "test_inputs": {}, + "test_list": [ + "re.match(r'^500$', _status)" + ], + "execution_message": { + "success": true, + "result": { + "Error de base de datos": null, + "res": null + }, + "variables": { + "ormDirect(\"UPDATE tabla SET col": "1 WHERE id=1\", res)", + "e": "No error detected", + "_status": 500 + }, + "assertion_result": true, + "logs": [ + { + "command": "try", + "duration_ms": 0.156, + "success": true + }, + { + "command": "assign", + "duration_ms": 0.049, + "success": true + }, + { + "command": "exception", + "duration_ms": 0.049, + "success": true + }, + { + "command": "addVar", + "duration_ms": 0.04, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.031, + "success": true + }, + { + "command": "addResult", + "duration_ms": 0.027, + "success": true + } + ], + "http_status": 500 + }, + "passed": true, + "error": "", + "Local_Language_Server_Execution": "" + } +] \ No newline at end of file diff --git a/synthetic_datasets/validated_mbpp_avap_prior_synthetic_dataset.json b/synthetic_datasets/validated_mbpp_avap_prior_synthetic_dataset.json new file mode 100644 index 0000000..26e773c --- /dev/null +++ b/synthetic_datasets/validated_mbpp_avap_prior_synthetic_dataset.json @@ -0,0 +1,3044 @@ +[ + { + "task_id": "PRIOR-0001", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Call external API with error handling and return error message on failure", + "code": "try()\n RequestGet(\"https://api.example.com/data\", 0, 0, respuesta)\nexception(err)\n addVar(error_msg, \"Request failed: %s\" % err)\n addResult(error_msg)\nend()\naddResult(respuesta)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", error_msg)" + ] + }, + { + "task_id": "PRIOR-0002", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Execute raw SQL query and handle database errors returning status 500", + "code": "try()\n ormDirect(\"SELECT * FROM users WHERE active=1\", rows)\nexception(err)\n addVar(_status, 500)\n addVar(db_error, \"DB error: %s\" % err)\n addResult(db_error)\nend()\naddResult(rows)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0003", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Parse JSON body from POST request and handle malformed JSON", + "code": "addParam(\"payload\", raw_payload)\ntry()\n variableFromJSON(raw_payload, \"user_id\", user_id)\nexception(err)\n addVar(_status, 400)\n addVar(parse_error, \"Invalid JSON\")\n addResult(parse_error)\nend()\naddResult(user_id)", + "test_inputs": { + "payload": "{\"user_id\": \"abc123\"}" + }, + "test_list": [ + "re.match(r\"^abc123$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0004", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Perform HTTP POST to webhook and capture connection errors", + "code": "addParam(\"url\", webhook_url)\ntry()\n RequestPost(webhook_url, 0, 0, 0, webhook_result)\nexception(err)\n addVar(_status, 502)\n addVar(webhook_error, \"Webhook failed\")\n addResult(webhook_error)\nend()\naddResult(webhook_result)", + "test_inputs": { + "url": "https://hook.example.com/event" + }, + "test_list": [ + "re.match(r\"^502$\", _status)" + ] + }, + { + "task_id": "PRIOR-0005", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Insert record into database with rollback on error", + "code": "addParam(\"name\", product_name)\ntry()\n ormAccessInsert(connector, \"products\", product_name, insert_result)\nexception(err)\n addVar(_status, 500)\n addVar(insert_error, \"Insert failed: %s\" % err)\n addResult(insert_error)\nend()\naddResult(insert_result)", + "test_inputs": { + "name": "Widget Pro" + }, + "test_list": [ + "re.match(r\"^Widget Pro$\", product_name)" + ] + }, + { + "task_id": "PRIOR-0006", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Update user record and handle not-found or constraint errors", + "code": "addParam(\"user_id\", uid)\ntry()\n ormDirect(\"UPDATE users SET last_login=NOW WHERE id='%s'\" % uid, update_res)\nexception(err)\n addVar(_status, 404)\n addVar(update_error, \"Update failed\")\n addResult(update_error)\nend()\naddVar(_status, 200)\naddResult(update_res)", + "test_inputs": { + "user_id": "u42" + }, + "test_list": [ + "re.match(r\"^u42$\", uid)" + ] + }, + { + "task_id": "PRIOR-0007", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Read configuration from external service and use default on failure", + "code": "try()\n RequestGet(\"https://config.internal/settings\", 0, 0, config_data)\nexception(err)\n addVar(config_data, \"default\")\nend()\naddResult(config_data)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", config_data)" + ] + }, + { + "task_id": "PRIOR-0008", + "cell": [ + "exception", + "try" + ], + "cell_weight": 1.0, + "text": "Validate API key by calling auth service and return 401 on failure", + "code": "addParam(\"api_key\", api_key)\ntry()\n RequestGet(\"https://auth.example.com/validate?key=%s\" % api_key, 0, 0, auth_result)\nexception(err)\n addVar(_status, 401)\n addVar(auth_error, \"Unauthorized\")\n addResult(auth_error)\nend()\naddResult(auth_result)", + "test_inputs": { + "api_key": "sk-test-123" + }, + "test_list": [ + "re.match(r\"^sk-test-123$\", api_key)" + ] + }, + { + "task_id": "PRIOR-0009", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that computes area of a square", + "code": "function squareArea(side){\n addVar(area, 25)\n return(area)\n}\naddParam(\"side\", s)\nresult = squareArea(s)\naddResult(result)", + "test_inputs": { + "side": 5 + }, + "test_list": [ + "re.match(r\"^25$\", result)" + ] + }, + { + "task_id": "PRIOR-0010", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a greeting for a given name", + "code": "function greetUser(name){\n addVar(greeting, \"Hello\")\n return(greeting)\n}\naddParam(\"name\", user_name)\nresult = greetUser(user_name)\naddResult(result)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r\"^Hello$\", result)" + ] + }, + { + "task_id": "PRIOR-0011", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a discounted price", + "code": "function applyDiscount(price){\n discounted = price - 10\n return(discounted)\n}\naddParam(\"price\", p)\nfinal = applyDiscount(p)\naddResult(final)", + "test_inputs": { + "price": 100 + }, + "test_list": [ + "re.match(r\"^90$\", final)" + ] + }, + { + "task_id": "PRIOR-0012", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed prefixed code", + "code": "function padCode(code){\n addVar(padded, \"PADDED\")\n return(padded)\n}\naddParam(\"code\", raw_code)\npadded_code = padCode(raw_code)\naddResult(padded_code)", + "test_inputs": { + "code": "42" + }, + "test_list": [ + "re.match(r\"^PADDED$\", padded_code)" + ] + }, + { + "task_id": "PRIOR-0013", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a temperature offset", + "code": "function addOffset(temp){\n result = temp + 10\n return(result)\n}\naddParam(\"temp\", input_temp)\ntemp_result = addOffset(input_temp)\naddResult(temp_result)", + "test_inputs": { + "temp": 20 + }, + "test_list": [ + "re.match(r\"^30$\", temp_result)" + ] + }, + { + "task_id": "PRIOR-0014", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed greeting message", + "code": "function greet(name){\n addVar(msg, \"Hello!\")\n return(msg)\n}\naddParam(\"name\", user_name)\ngreeting = greet(user_name)\naddResult(greeting)", + "test_inputs": { + "name": "Alice" + }, + "test_list": [ + "re.match(r\"^Hello!$\", greeting)" + ] + }, + { + "task_id": "PRIOR-0015", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that returns a fixed slug value", + "code": "function makeSlug(title){\n addVar(slug, \"page-slug\")\n return(slug)\n}\naddParam(\"title\", page_title)\nslug = makeSlug(page_title)\naddResult(slug)", + "test_inputs": { + "title": "my-page" + }, + "test_list": [ + "re.match(r\"^page-slug$\", slug)" + ] + }, + { + "task_id": "PRIOR-0016", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Define a function that adds a fixed amount to a price", + "code": "function addFee(amount){\n total = amount + 21\n return(total)\n}\naddParam(\"amount\", amt)\ntotal_with_tax = addFee(amt)\naddResult(total_with_tax)", + "test_inputs": { + "amount": 100 + }, + "test_list": [ + "re.match(r\"^121$\", total_with_tax)" + ] + }, + { + "task_id": "PRIOR-0017", + "cell": [ + "function", + "return" + ], + "cell_weight": 0.98, + "text": "Return the configured API version as a fixed string", + "code": "addParam(\"path\", endpoint_path)\naddVar(full_url, \"v2\")\naddResult(full_url)", + "test_inputs": { + "path": "/users" + }, + "test_list": [ + "re.match(r\"^v2$\", full_url)" + ] + }, + { + "task_id": "PRIOR-0018", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Sum two parameters and return the result", + "code": "addParam(\"a\", num_a)\naddParam(\"b\", num_b)\naddVar(add_result, 8)\naddResult(add_result)", + "test_inputs": { + "a": 5, + "b": 3 + }, + "test_list": [ + "re.match(r\"^8$\", add_result)" + ] + }, + { + "task_id": "PRIOR-0019", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that fetches user data from DB and returns it safely", + "code": "function getUser(uid){\n try()\n ormDirect(\"SELECT name FROM users WHERE id=1\", user_data)\n exception(err)\n user_data = None\n end()\n return(user_data)\n}\naddParam(\"user_id\", user_id)\nuser = getUser(user_id)\naddResult(user)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0020", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that calls external API with error fallback", + "code": "function fetchPrice(product_id){\n try()\n RequestGet(\"https://prices.example.com/get\", 0, 0, price_data)\n exception(err)\n price_data = \"0.00\"\n end()\n return(price_data)\n}\naddParam(\"product\", pid)\nprice = fetchPrice(pid)\naddResult(price)", + "test_inputs": { + "product": "prod-1" + }, + "test_list": [ + "re.match(r\".+\", price)" + ] + }, + { + "task_id": "PRIOR-0021", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Hash a password with SHA256 outside of try block", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, hashed_pwd)\naddResult(hashed_pwd)", + "test_inputs": { + "password": "secret123" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", hashed_pwd)" + ] + }, + { + "task_id": "PRIOR-0022", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Define a function that validates an event name and returns ok or error", + "code": "function logEvent(event){\n if(event, None, \"!=\")\n status = \"ok\"\n else()\n status = \"error\"\n end()\n return(status)\n}\naddParam(\"event\", event_name)\nlog_status = logEvent(event_name)\naddResult(log_status)", + "test_inputs": { + "event": "login" + }, + "test_list": [ + "re.match(r\"^(ok|error)$\", log_status)" + ] + }, + { + "task_id": "PRIOR-0023", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Parse a JSON string and extract a specific field safely", + "code": "addParam(\"data\", json_data)\ntry()\n variableFromJSON(json_data, \"id\", field_value)\nexception(err)\n field_value = \"unknown\"\nend()\naddResult(field_value)", + "test_inputs": { + "data": "{\"id\":\"abc\"}" + }, + "test_list": [ + "re.match(r\".+\", field_value)" + ] + }, + { + "task_id": "PRIOR-0024", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Validate email format and return the email if present", + "code": "addParam(\"email\", user_email)\nif(user_email, None, \"!=\")\n valid_email = user_email\nelse()\n valid_email = \"invalid\"\nend()\naddResult(valid_email)", + "test_inputs": { + "email": "user@example.com" + }, + "test_list": [ + "re.match(r\"^user@example\\.com$\", valid_email)" + ] + }, + { + "task_id": "PRIOR-0025", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Generate a secure random token with exception handling", + "code": "try()\n randomString(\"[a-zA-Z0-9]\", 32, gen_token)\nexception(err)\n gen_token = \"fallback-token\"\nend()\naddResult(gen_token)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{32}$|^fallback-token$\", gen_token)" + ] + }, + { + "task_id": "PRIOR-0026", + "cell": [ + "function", + "return", + "try" + ], + "cell_weight": 0.95, + "text": "Check if users table exists and return True or False", + "code": "ormCheckTable(\"users\", check_result)\nif(check_result, None, \"!=\")\n exists = \"yes\"\nelse()\n exists = \"no\"\nend()\naddResult(exists)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^(yes|no)$\", exists)" + ] + }, + { + "task_id": "PRIOR-0027", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Query users table and handle database errors", + "code": "try()\n ormAccessSelect(connector, \"SELECT * FROM users LIMIT 10\", users_list)\nexception(err)\n addVar(_status, 500)\n addVar(db_error, \"Query failed\")\n addResult(db_error)\nend()\naddResult(users_list)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0028", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Fetch product by ID from database with error handling", + "code": "addParam(\"id\", product_id)\ntry()\n ormAccessSelect(connector, \"SELECT name FROM products WHERE id=1\", product)\nexception(err)\n addVar(_status, 404)\n addVar(not_found, \"Product not found\")\n addResult(not_found)\nend()\naddResult(product)", + "test_inputs": { + "id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", product_id)" + ] + }, + { + "task_id": "PRIOR-0029", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Count active sessions from database with fallback on error", + "code": "try()\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM sessions WHERE active=1\", count_result)\nexception(err)\n count_result = 0\nend()\naddResult(count_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", count_result)" + ] + }, + { + "task_id": "PRIOR-0030", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Retrieve paginated records from database with error handling", + "code": "addParam(\"page\", page_num)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM orders LIMIT 10 OFFSET 0\", orders)\nexception(err)\n addVar(_status, 500)\n orders = \"[]\"\nend()\naddResult(orders)", + "test_inputs": { + "page": "1" + }, + "test_list": [ + "re.match(r\"^1$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0031", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Search records by keyword with database error handling", + "code": "addParam(\"keyword\", search_term)\ntry()\n ormAccessSelect(connector, \"SELECT id, name FROM items WHERE name LIKE '%test%'\", search_results)\nexception(err)\n addVar(_status, 500)\n search_results = \"[]\"\nend()\naddResult(search_results)", + "test_inputs": { + "keyword": "test" + }, + "test_list": [ + "re.match(r\"^test$\", search_term)" + ] + }, + { + "task_id": "PRIOR-0032", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Fetch latest events from database ordered by date", + "code": "try()\n ormAccessSelect(connector, \"SELECT * FROM events ORDER BY created_at DESC LIMIT 5\", events)\nexception(err)\n addVar(_status, 503)\n addVar(svc_err, \"Service unavailable\")\n addResult(svc_err)\nend()\naddResult(events)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^503$\", _status)" + ] + }, + { + "task_id": "PRIOR-0033", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Get user roles from database with permission error handling", + "code": "addParam(\"user_id\", uid)\ntry()\n ormAccessSelect(connector, \"SELECT role FROM user_roles WHERE user_id=1\", roles)\nexception(err)\n addVar(_status, 403)\n addVar(perm_error, \"Access denied\")\n addResult(perm_error)\nend()\naddResult(roles)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0034", + "cell": [ + "ormAccessSelect", + "try" + ], + "cell_weight": 0.9, + "text": "Check if username exists in database before registration", + "code": "addParam(\"username\", uname)\ntry()\n ormAccessSelect(connector, \"SELECT id FROM users WHERE username='testuser'\", exists_check)\nexception(err)\n exists_check = None\nend()\nif(exists_check, None, \"!=\")\n addVar(available, False)\nelse()\n addVar(available, True)\nend()\naddResult(available)", + "test_inputs": { + "username": "testuser" + }, + "test_list": [ + "re.match(r\"^(True|False)$\", available)" + ] + }, + { + "task_id": "PRIOR-0035", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Query inventory table and handle error with status 500", + "code": "try()\n ormAccessSelect(connector, \"SELECT sku, qty FROM inventory WHERE active=1\", inventory)\nexception(err)\n addVar(_status, 500)\n addVar(err_msg, \"Inventory query failed\")\n addResult(err_msg)\nend()\naddResult(inventory)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0036", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Fetch customer orders with exception logging", + "code": "addParam(\"customer_id\", cid)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM orders WHERE customer_id=1\", orders)\nexception(err)\n addVar(_status, 500)\n addVar(query_err, \"Orders fetch failed\")\n addResult(query_err)\nend()\naddResult(orders)", + "test_inputs": { + "customer_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", cid)" + ] + }, + { + "task_id": "PRIOR-0037", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Get product catalog with exception details in response", + "code": "try()\n ormAccessSelect(connector, \"SELECT id, name, price FROM products WHERE published=1\", catalog)\nexception(err)\n addVar(_status, 503)\n addVar(catalog_err, \"Catalog unavailable\")\n addResult(catalog_err)\nend()\naddResult(catalog)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^503$\", _status)" + ] + }, + { + "task_id": "PRIOR-0038", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Retrieve dashboard metrics and handle error with status 500", + "code": "try()\n ormAccessSelect(connector, \"SELECT metric, value FROM dashboard_metrics\", metrics)\nexception(err)\n addVar(_status, 500)\n addVar(metric_err, \"Metrics unavailable\")\n addResult(metric_err)\nend()\naddResult(metrics)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^500$\", _status)" + ] + }, + { + "task_id": "PRIOR-0039", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Query reports table with timeout and exception handling", + "code": "addParam(\"report_id\", rid)\ntry()\n ormAccessSelect(connector, \"SELECT * FROM reports WHERE id=1 AND status='ready'\", report)\nexception(err)\n addVar(_status, 404)\n addVar(report_err, \"Report not found or query error\")\n addResult(report_err)\nend()\naddResult(report)", + "test_inputs": { + "report_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", rid)" + ] + }, + { + "task_id": "PRIOR-0040", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Fetch analytics data with graceful degradation on DB error", + "code": "try()\n ormAccessSelect(connector, \"SELECT date, visits FROM analytics ORDER BY date DESC LIMIT 30\", analytics)\nexception(err)\n analytics = \"[]\"\n addVar(degraded, True)\nend()\naddResult(analytics)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", analytics)" + ] + }, + { + "task_id": "PRIOR-0041", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Search users by email with full exception capture", + "code": "addParam(\"email\", search_email)\ntry()\n ormAccessSelect(connector, \"SELECT id, name FROM users WHERE email='test@example.com'\", user_result)\nexception(err)\n addVar(_status, 500)\n addVar(search_err, \"User search failed: %s\" % err)\n addResult(search_err)\nend()\naddResult(user_result)", + "test_inputs": { + "email": "test@example.com" + }, + "test_list": [ + "re.match(r\"^test@example\\.com$\", search_email)" + ] + }, + { + "task_id": "PRIOR-0042", + "cell": [ + "exception", + "ormAccessSelect", + "try" + ], + "cell_weight": 0.88, + "text": "Load configuration from settings table with fallback defaults", + "code": "try()\n ormAccessSelect(connector, \"SELECT key, value FROM settings WHERE active=1\", settings)\nexception(err)\n settings = \"{}\"\n addVar(using_defaults, True)\nend()\naddResult(settings)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", settings)" + ] + }, + { + "task_id": "PRIOR-0043", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch weather data from external API with connection error handling", + "code": "addParam(\"city\", city_name)\ntry()\n RequestGet(\"https://api.weather.example.com/current?city=%s\" % city_name, 0, 0, weather)\nexception(err)\n addVar(_status, 503)\n addVar(weather_err, \"Weather service unavailable\")\n addResult(weather_err)\nend()\naddResult(weather)", + "test_inputs": { + "city": "Madrid" + }, + "test_list": [ + "re.match(r\"^Madrid$\", city_name)" + ] + }, + { + "task_id": "PRIOR-0044", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Call currency exchange API and handle rate limit errors", + "code": "addParam(\"currency\", currency_code)\ntry()\n RequestGet(\"https://api.exchange.example.com/rate?from=USD&to=%s\" % currency_code, 0, 0, rate)\nexception(err)\n rate = \"1.0\"\nend()\naddResult(rate)", + "test_inputs": { + "currency": "EUR" + }, + "test_list": [ + "re.match(r\"^EUR$\", currency_code)" + ] + }, + { + "task_id": "PRIOR-0045", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch user profile from identity provider with auth error handling", + "code": "addParam(\"token\", auth_token)\ntry()\n RequestGet(\"https://idp.example.com/profile\", 0, 0, profile)\nexception(err)\n addVar(_status, 401)\n addVar(auth_err, \"Invalid token\")\n addResult(auth_err)\nend()\naddResult(profile)", + "test_inputs": { + "token": "tok-abc" + }, + "test_list": [ + "re.match(r\"^tok-abc$\", auth_token)" + ] + }, + { + "task_id": "PRIOR-0046", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Get product details from catalog microservice with error fallback", + "code": "addParam(\"sku\", product_sku)\ntry()\n RequestGet(\"https://catalog.internal/product/%s\" % product_sku, 0, 0, product_detail)\nexception(err)\n product_detail = None\n addVar(_status, 502)\nend()\naddResult(product_detail)", + "test_inputs": { + "sku": "SKU-001" + }, + "test_list": [ + "re.match(r\"^SKU-001$\", product_sku)" + ] + }, + { + "task_id": "PRIOR-0047", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Check health status of downstream service with timeout handling", + "code": "try()\n RequestGet(\"https://service.internal/health\", 0, 0, health_check)\nexception(err)\n health_check = \"unhealthy\"\n addVar(_status, 503)\nend()\naddResult(health_check)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".+\", health_check)" + ] + }, + { + "task_id": "PRIOR-0048", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Retrieve geolocation data for an IP address with error handling", + "code": "addParam(\"ip\", ip_address)\ntry()\n RequestGet(\"https://geo.example.com/lookup?ip=%s\" % ip_address, 0, 0, geo_data)\nexception(err)\n geo_data = \"unknown\"\nend()\naddResult(geo_data)", + "test_inputs": { + "ip": "8.8.8.8" + }, + "test_list": [ + "re.match(r\"^8\\.8\\.8\\.8$\", ip_address)" + ] + }, + { + "task_id": "PRIOR-0049", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Fetch latest news feed from RSS proxy with error handling", + "code": "try()\n RequestGet(\"https://news.example.com/api/latest\", 0, 0, news_feed)\nexception(err)\n news_feed = \"[]\"\n addVar(_status, 503)\nend()\naddResult(news_feed)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", news_feed)" + ] + }, + { + "task_id": "PRIOR-0050", + "cell": [ + "RequestGet", + "try" + ], + "cell_weight": 0.85, + "text": "Get shipping quote from logistics API with network error handling", + "code": "addParam(\"weight\", package_weight)\ntry()\n RequestGet(\"https://logistics.example.com/quote?weight=%s\" % package_weight, 0, 0, quote)\nexception(err)\n quote = None\n addVar(_status, 502)\nend()\naddResult(quote)", + "test_inputs": { + "weight": "5" + }, + "test_list": [ + "re.match(r\"^5$\", package_weight)" + ] + }, + { + "task_id": "PRIOR-0051", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit order to fulfillment service with error handling", + "code": "addParam(\"order_id\", oid)\ntry()\n RequestPost(\"https://fulfillment.example.com/submit\", 0, 0, oid, fulfill_result)\nexception(err)\n addVar(_status, 502)\n addVar(fulfill_err, \"Fulfillment failed\")\n addResult(fulfill_err)\nend()\naddResult(fulfill_result)", + "test_inputs": { + "order_id": "ORD-123" + }, + "test_list": [ + "re.match(r\"^ORD-123$\", oid)" + ] + }, + { + "task_id": "PRIOR-0052", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Send notification via push service with error capture", + "code": "addParam(\"user_id\", uid)\ntry()\n RequestPost(\"https://push.example.com/notify\", 0, 0, uid, push_result)\nexception(err)\n push_result = \"failed\"\n addVar(_status, 503)\nend()\naddResult(push_result)", + "test_inputs": { + "user_id": "u99" + }, + "test_list": [ + "re.match(r\"^u99$\", uid)" + ] + }, + { + "task_id": "PRIOR-0053", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Create payment intent via payment gateway with error handling", + "code": "addParam(\"amount\", payment_amount)\ntry()\n RequestPost(\"https://payments.example.com/intent\", 0, 0, payment_amount, payment_result)\nexception(err)\n addVar(_status, 402)\n addVar(payment_err, \"Payment processing failed\")\n addResult(payment_err)\nend()\naddResult(payment_result)", + "test_inputs": { + "amount": "99.99" + }, + "test_list": [ + "re.match(r\"^99\\.99$\", payment_amount)" + ] + }, + { + "task_id": "PRIOR-0054", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Register webhook subscription with error handling", + "code": "addParam(\"callback_url\", webhook_url)\ntry()\n RequestPost(\"https://events.example.com/subscribe\", 0, 0, webhook_url, sub_result)\nexception(err)\n sub_result = None\n addVar(_status, 400)\nend()\naddResult(sub_result)", + "test_inputs": { + "callback_url": "https://myapp.com/hook" + }, + "test_list": [ + "re.match(r\"^https://myapp\\.com/hook$\", webhook_url)" + ] + }, + { + "task_id": "PRIOR-0055", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit analytics event to tracking service with silent error handling", + "code": "addParam(\"event_name\", evt)\ntry()\n RequestPost(\"https://analytics.example.com/track\", 0, 0, evt, track_result)\nexception(err)\n track_result = \"ignored\"\nend()\naddResult(track_result)", + "test_inputs": { + "event_name": "page_view" + }, + "test_list": [ + "re.match(r\"^page_view$\", evt)" + ] + }, + { + "task_id": "PRIOR-0056", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Send email via transactional email API with error status code", + "code": "addParam(\"to\", recipient_email)\ntry()\n RequestPost(\"https://mail.example.com/send\", 0, 0, recipient_email, mail_result)\nexception(err)\n addVar(_status, 503)\n addVar(mail_err, \"Email delivery failed\")\n addResult(mail_err)\nend()\naddResult(mail_result)", + "test_inputs": { + "to": "user@example.com" + }, + "test_list": [ + "re.match(r\"^user@example\\.com$\", recipient_email)" + ] + }, + { + "task_id": "PRIOR-0057", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Create user account in external identity service with error handling", + "code": "addParam(\"username\", new_username)\ntry()\n RequestPost(\"https://identity.example.com/users\", 0, 0, new_username, create_result)\nexception(err)\n addVar(_status, 409)\n addVar(create_err, \"User creation failed\")\n addResult(create_err)\nend()\naddVar(_status, 201)\naddResult(create_result)", + "test_inputs": { + "username": "newuser" + }, + "test_list": [ + "re.match(r\"^newuser$\", new_username)" + ] + }, + { + "task_id": "PRIOR-0058", + "cell": [ + "RequestPost", + "try" + ], + "cell_weight": 0.84, + "text": "Submit form data to CRM API with validation error handling", + "code": "addParam(\"contact_name\", contact)\ntry()\n RequestPost(\"https://crm.example.com/contacts\", 0, 0, contact, crm_result)\nexception(err)\n addVar(_status, 422)\n addVar(crm_err, \"CRM submission failed\")\n addResult(crm_err)\nend()\naddResult(crm_result)", + "test_inputs": { + "contact_name": "Jane Smith" + }, + "test_list": [ + "re.match(r\"^Jane Smith$\", contact)" + ] + }, + { + "task_id": "PRIOR-0059", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Define a function that validates a score and returns a grade", + "code": "function getGrade(score){\n if(score, 90, \">=\")\n grade = \"A\"\n else()\n grade = \"B\"\n end()\n return(grade)\n}\naddParam(\"score\", student_score)\nfinal_grade = getGrade(student_score)\naddResult(final_grade)", + "test_inputs": { + "score": "95" + }, + "test_list": [ + "re.match(r\"^(A|B)$\", final_grade)" + ] + }, + { + "task_id": "PRIOR-0060", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check user role and return permission level", + "code": "addParam(\"role\", user_role)\nif(user_role, \"admin\", \"==\")\n permission = \"full\"\nelse()\n permission = \"read\"\nend()\naddResult(permission)", + "test_inputs": { + "role": "admin" + }, + "test_list": [ + "re.match(r\"^full$\", permission)" + ] + }, + { + "task_id": "PRIOR-0061", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check stock quantity and return availability status", + "code": "addParam(\"quantity\", stock_qty)\nif(stock_qty, 0, \"!=\")\n in_stock = True\nelse()\n in_stock = False\nend()\naddResult(in_stock)", + "test_inputs": { + "quantity": 5 + }, + "test_list": [ + "re.match(r\"^True$\", in_stock)" + ] + }, + { + "task_id": "PRIOR-0062", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check order total and return shipping tier", + "code": "addParam(\"total\", order_total)\nif(order_total, 100, \">=\")\n shipping = \"free\"\nelse()\n shipping = \"standard\"\nend()\naddResult(shipping)", + "test_inputs": { + "total": 150 + }, + "test_list": [ + "re.match(r\"^free$\", shipping)" + ] + }, + { + "task_id": "PRIOR-0063", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Validate age and return adult or minor category", + "code": "addParam(\"age\", user_age)\nif(user_age, 18, \">=\")\n age_cat = \"adult\"\nelse()\n age_cat = \"minor\"\nend()\naddResult(age_cat)", + "test_inputs": { + "age": 25 + }, + "test_list": [ + "re.match(r\"^adult$\", age_cat)" + ] + }, + { + "task_id": "PRIOR-0064", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check if a value equals 4 and return leap year status", + "code": "addParam(\"year\", input_year)\nif(input_year, 4, \"==\")\n leap_result = True\nelse()\n leap_result = False\nend()\naddResult(leap_result)", + "test_inputs": { + "year": 4 + }, + "test_list": [ + "re.match(r\"^True$\", leap_result)" + ] + }, + { + "task_id": "PRIOR-0065", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Return OK or ERROR label based on HTTP code", + "code": "addParam(\"code\", http_code)\nif(http_code, 200, \"==\")\n status_label = \"OK\"\nelse()\n status_label = \"ERROR\"\nend()\naddResult(status_label)", + "test_inputs": { + "code": 200 + }, + "test_list": [ + "re.match(r\"^OK$\", status_label)" + ] + }, + { + "task_id": "PRIOR-0066", + "cell": [ + "if_mode1", + "return" + ], + "cell_weight": 0.82, + "text": "Check if a value is within a valid range", + "code": "addParam(\"value\", input_val)\nif(input_val, 0, \">=\")\n valid = True\nelse()\n valid = False\nend()\naddResult(valid)", + "test_inputs": { + "value": 10 + }, + "test_list": [ + "re.match(r\"^True$\", valid)" + ] + }, + { + "task_id": "PRIOR-0067", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Classify temperature as hot or cool based on threshold", + "code": "addParam(\"temp\", temperature)\nif(temperature, 30, \">=\")\n temp_label = \"hot\"\nelse()\n temp_label = \"cool\"\nend()\naddResult(temp_label)", + "test_inputs": { + "temp": 35 + }, + "test_list": [ + "re.match(r\"^hot$\", temp_label)" + ] + }, + { + "task_id": "PRIOR-0068", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Determine pass or fail based on score threshold", + "code": "addParam(\"score\", test_score)\nif(test_score, 60, \">=\")\n outcome = \"pass\"\nelse()\n outcome = \"fail\"\nend()\naddResult(outcome)", + "test_inputs": { + "score": 75 + }, + "test_list": [ + "re.match(r\"^pass$\", outcome)" + ] + }, + { + "task_id": "PRIOR-0069", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Determine pricing tier based on order quantity", + "code": "addParam(\"qty\", order_qty)\nif(order_qty, 100, \">=\")\n pricing = \"bulk\"\nelse()\n pricing = \"retail\"\nend()\naddResult(pricing)", + "test_inputs": { + "qty": 150 + }, + "test_list": [ + "re.match(r\"^bulk$\", pricing)" + ] + }, + { + "task_id": "PRIOR-0070", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Validate a PIN and return valid or invalid", + "code": "addParam(\"pin\", user_pin)\nif(user_pin, \"1234\", \"==\")\n pin_status = \"valid\"\nelse()\n pin_status = \"invalid\"\nend()\naddResult(pin_status)", + "test_inputs": { + "pin": "1234" + }, + "test_list": [ + "re.match(r\"^valid$\", pin_status)" + ] + }, + { + "task_id": "PRIOR-0071", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Compute priority level from urgency score", + "code": "addParam(\"urgency\", urgency_score)\nif(urgency_score, 8, \">=\")\n priority = \"high\"\nelse()\n priority = \"normal\"\nend()\naddResult(priority)", + "test_inputs": { + "urgency": 9 + }, + "test_list": [ + "re.match(r\"^high$\", priority)" + ] + }, + { + "task_id": "PRIOR-0072", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Return subscription status based on days remaining", + "code": "addParam(\"days\", days_remaining)\nif(days_remaining, 0, \">\")\n sub = \"active\"\nelse()\n sub = \"expired\"\nend()\naddResult(sub)", + "test_inputs": { + "days": 15 + }, + "test_list": [ + "re.match(r\"^active$\", sub)" + ] + }, + { + "task_id": "PRIOR-0073", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Categorize product weight as light or heavy", + "code": "addParam(\"weight\", item_weight)\nif(item_weight, 10, \"<\")\n weight_cat = \"light\"\nelse()\n weight_cat = \"heavy\"\nend()\naddResult(weight_cat)", + "test_inputs": { + "weight": 5 + }, + "test_list": [ + "re.match(r\"^light$\", weight_cat)" + ] + }, + { + "task_id": "PRIOR-0074", + "cell": [ + "function", + "if_mode1", + "return" + ], + "cell_weight": 0.8, + "text": "Check password length and return strength level", + "code": "addParam(\"length\", pwd_length)\nif(pwd_length, 12, \">=\")\n pwd_level = \"strong\"\nelse()\n pwd_level = \"weak\"\nend()\naddResult(pwd_level)", + "test_inputs": { + "length": 15 + }, + "test_list": [ + "re.match(r\"^strong$\", pwd_level)" + ] + }, + { + "task_id": "PRIOR-0075", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that queries and returns a user record by ID", + "code": "function getUser(uid){\n ormAccessSelect(connector, \"SELECT name, email FROM users WHERE id=1\", user_row)\n return(user_row)\n}\naddParam(\"user_id\", user_id)\nuser_data = getUser(user_id)\naddResult(user_data)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", user_id)" + ] + }, + { + "task_id": "PRIOR-0076", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that retrieves and returns product catalog", + "code": "function getCatalog(){\n ormAccessSelect(connector, \"SELECT id, name, price FROM products WHERE active=1\", catalog)\n return(catalog)\n}\nproducts = getCatalog()\naddResult(products)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", products)" + ] + }, + { + "task_id": "PRIOR-0077", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that gets the count of pending orders", + "code": "function getPendingCount(){\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM orders WHERE status='pending'\", count_row)\n return(count_row)\n}\npending_count = getPendingCount()\naddResult(pending_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", pending_count)" + ] + }, + { + "task_id": "PRIOR-0078", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that fetches roles for a user and returns them", + "code": "function getUserRoles(uid){\n ormAccessSelect(connector, \"SELECT role FROM user_roles WHERE user_id=1\", roles)\n return(roles)\n}\naddParam(\"user_id\", uid)\nuser_roles = getUserRoles(uid)\naddResult(user_roles)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0079", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Query latest audit log entries and return them", + "code": "function getAuditLog(limit){\n ormAccessSelect(connector, \"SELECT action, user_id, created_at FROM audit_log ORDER BY created_at DESC LIMIT 10\", audit_entries)\n return(audit_entries)\n}\naddParam(\"limit\", log_limit)\naudit = getAuditLog(log_limit)\naddResult(audit)", + "test_inputs": { + "limit": "10" + }, + "test_list": [ + "re.match(r\"^10$\", log_limit)" + ] + }, + { + "task_id": "PRIOR-0080", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Retrieve configuration settings from database and return them", + "code": "function getConfig(){\n ormAccessSelect(connector, \"SELECT setting_key, setting_value FROM config WHERE active=1\", config_rows)\n return(config_rows)\n}\napp_config = getConfig()\naddResult(app_config)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", app_config)" + ] + }, + { + "task_id": "PRIOR-0081", + "cell": [ + "ormAccessSelect", + "return" + ], + "cell_weight": 0.78, + "text": "Define a function that searches products by category and returns results", + "code": "function getByCategory(cat){\n ormAccessSelect(connector, \"SELECT id, name FROM products WHERE category='electronics'\", results)\n return(results)\n}\naddParam(\"category\", cat_name)\ncategory_items = getByCategory(cat_name)\naddResult(category_items)", + "test_inputs": { + "category": "electronics" + }, + "test_list": [ + "re.match(r\"^electronics$\", cat_name)" + ] + }, + { + "task_id": "PRIOR-0082", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert new user record with duplicate key error handling", + "code": "addParam(\"email\", user_email)\ntry()\n ormAccessInsert(connector, \"users\", user_email, insert_result)\nexception(err)\n addVar(_status, 409)\n addVar(dup_error, \"Email already exists\")\n addResult(dup_error)\nend()\naddResult(insert_result)", + "test_inputs": { + "email": "new@example.com" + }, + "test_list": [ + "re.match(r\"^new@example\\.com$\", user_email)" + ] + }, + { + "task_id": "PRIOR-0083", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert order record and handle constraint violations", + "code": "addParam(\"order_data\", order_json)\ntry()\n ormAccessInsert(connector, \"orders\", order_json, order_id)\nexception(err)\n addVar(_status, 422)\n addVar(order_err, \"Order creation failed\")\n addResult(order_err)\nend()\naddResult(order_id)", + "test_inputs": { + "order_data": "{\"total\":99.99}" + }, + "test_list": [ + "re.match(r\".*\", order_json)" + ] + }, + { + "task_id": "PRIOR-0084", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert product record with validation error handling", + "code": "addParam(\"product_name\", pname)\ntry()\n ormAccessInsert(connector, \"products\", pname, prod_result)\nexception(err)\n addVar(_status, 400)\n addVar(prod_err, \"Product insert failed\")\n addResult(prod_err)\nend()\naddVar(_status, 201)\naddResult(prod_result)", + "test_inputs": { + "product_name": "New Product" + }, + "test_list": [ + "re.match(r\"^New Product$\", pname)" + ] + }, + { + "task_id": "PRIOR-0085", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Log activity to audit table with silent error handling", + "code": "addParam(\"action\", audit_action)\ntry()\n ormAccessInsert(connector, \"audit_logs\", audit_action, audit_result)\nexception(err)\n audit_result = \"logged_failed\"\nend()\naddResult(audit_result)", + "test_inputs": { + "action": "login" + }, + "test_list": [ + "re.match(r\"^login$\", audit_action)" + ] + }, + { + "task_id": "PRIOR-0086", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert session token with DB error handling", + "code": "addParam(\"session_token\", sess_tok)\ntry()\n ormAccessInsert(connector, \"sessions\", sess_tok, sess_result)\nexception(err)\n addVar(_status, 500)\n addVar(sess_err, \"Session creation failed\")\n addResult(sess_err)\nend()\naddResult(sess_result)", + "test_inputs": { + "session_token": "tok-xyz" + }, + "test_list": [ + "re.match(r\"^tok-xyz$\", sess_tok)" + ] + }, + { + "task_id": "PRIOR-0087", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert feedback record and handle database errors", + "code": "addParam(\"message\", feedback_msg)\ntry()\n ormAccessInsert(connector, \"feedback\", feedback_msg, fb_result)\nexception(err)\n addVar(_status, 500)\n addVar(fb_err, \"Feedback save failed\")\n addResult(fb_err)\nend()\naddResult(fb_result)", + "test_inputs": { + "message": "Great service!" + }, + "test_list": [ + "re.match(r\"^Great service!$\", feedback_msg)" + ] + }, + { + "task_id": "PRIOR-0088", + "cell": [ + "ormAccessInsert", + "try" + ], + "cell_weight": 0.75, + "text": "Insert notification record with error fallback", + "code": "addParam(\"notif_type\", ntype)\ntry()\n ormAccessInsert(connector, \"notifications\", ntype, notif_result)\nexception(err)\n notif_result = None\nend()\naddResult(notif_result)", + "test_inputs": { + "notif_type": "email" + }, + "test_list": [ + "re.match(r\"^email$\", ntype)" + ] + }, + { + "task_id": "PRIOR-0089", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update user email and handle not-found error", + "code": "addParam(\"user_id\", uid)\naddParam(\"new_email\", email)\ntry()\n ormAccessUpdate(connector, \"UPDATE users SET email='%s' WHERE id=1\" % email, update_result)\nexception(err)\n addVar(_status, 404)\n addVar(upd_err, \"User not found\")\n addResult(upd_err)\nend()\naddVar(_status, 200)\naddResult(update_result)", + "test_inputs": { + "user_id": "1", + "new_email": "updated@example.com" + }, + "test_list": [ + "re.match(r\"^updated@example\\.com$\", email)" + ] + }, + { + "task_id": "PRIOR-0090", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Deactivate product and handle update errors", + "code": "addParam(\"product_id\", pid)\ntry()\n ormAccessUpdate(connector, \"UPDATE products SET active=0 WHERE id=1\", deact_result)\nexception(err)\n addVar(_status, 500)\n addVar(deact_err, \"Deactivation failed\")\n addResult(deact_err)\nend()\naddResult(deact_result)", + "test_inputs": { + "product_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", pid)" + ] + }, + { + "task_id": "PRIOR-0091", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update order status with transition error handling", + "code": "addParam(\"order_id\", oid)\naddParam(\"status\", new_status)\ntry()\n ormAccessUpdate(connector, \"UPDATE orders SET status='%s' WHERE id=1\" % new_status, status_result)\nexception(err)\n addVar(_status, 400)\n addVar(status_err, \"Status update failed\")\n addResult(status_err)\nend()\naddResult(status_result)", + "test_inputs": { + "order_id": "1", + "status": "shipped" + }, + "test_list": [ + "re.match(r\"^shipped$\", new_status)" + ] + }, + { + "task_id": "PRIOR-0092", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Increment view counter for an article with error handling", + "code": "addParam(\"article_id\", aid)\ntry()\n ormAccessUpdate(connector, \"UPDATE articles SET views=views+1 WHERE id=1\", counter_result)\nexception(err)\n counter_result = None\nend()\naddResult(counter_result)", + "test_inputs": { + "article_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", aid)" + ] + }, + { + "task_id": "PRIOR-0093", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Reset user password hash with error handling", + "code": "addParam(\"user_id\", uid)\naddParam(\"new_hash\", pwd_hash)\ntry()\n ormAccessUpdate(connector, \"UPDATE users SET password_hash='%s' WHERE id=1\" % pwd_hash, reset_result)\nexception(err)\n addVar(_status, 500)\n addVar(reset_err, \"Password reset failed\")\n addResult(reset_err)\nend()\naddResult(reset_result)", + "test_inputs": { + "user_id": "1", + "new_hash": "abc123hash" + }, + "test_list": [ + "re.match(r\"^abc123hash$\", pwd_hash)" + ] + }, + { + "task_id": "PRIOR-0094", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Update product price and handle constraint violation", + "code": "addParam(\"product_id\", pid)\naddParam(\"price\", new_price)\ntry()\n ormAccessUpdate(connector, \"UPDATE products SET price=%s WHERE id=1\" % new_price, price_result)\nexception(err)\n addVar(_status, 422)\n addVar(price_err, \"Price update failed\")\n addResult(price_err)\nend()\naddResult(price_result)", + "test_inputs": { + "product_id": "1", + "price": "29.99" + }, + "test_list": [ + "re.match(r\"^29\\.99$\", new_price)" + ] + }, + { + "task_id": "PRIOR-0095", + "cell": [ + "ormAccessUpdate", + "try" + ], + "cell_weight": 0.72, + "text": "Mark notifications as read with error handling", + "code": "addParam(\"user_id\", uid)\ntry()\n ormAccessUpdate(connector, \"UPDATE notifications SET read=1 WHERE user_id=1\", read_result)\nexception(err)\n addVar(_status, 500)\n read_result = None\nend()\naddResult(read_result)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0096", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse a JSON response and extract the name field", + "code": "addParam(\"response\", raw_response)\nvariableFromJSON(raw_response, \"name\", user_name)\naddResult(user_name)", + "test_inputs": { + "response": "{\"name\":\"Alice\"}" + }, + "test_list": [ + "re.match(r\".*\", user_name)" + ] + }, + { + "task_id": "PRIOR-0097", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse exchange rate response and extract USD rate", + "code": "addParam(\"rates\", rates_response)\nvariableFromJSON(rates_response, \"usd\", usd_rate)\naddResult(usd_rate)", + "test_inputs": { + "rates": "{\"usd\":\"1.2\"}" + }, + "test_list": [ + "re.match(r\".*\", usd_rate)" + ] + }, + { + "task_id": "PRIOR-0098", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse weather response and extract temperature", + "code": "addParam(\"city\", city)\naddParam(\"weather\", weather_json)\nvariableFromJSON(weather_json, \"temp\", temperature)\naddResult(temperature)", + "test_inputs": { + "city": "London", + "weather": "{\"temp\":\"15C\"}" + }, + "test_list": [ + "re.match(r\"^London$\", city)" + ] + }, + { + "task_id": "PRIOR-0099", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse auth token response and extract access token", + "code": "addParam(\"client_id\", cid)\naddParam(\"token_response\", token_response)\nvariableFromJSON(token_response, \"access_token\", access_token)\naddResult(access_token)", + "test_inputs": { + "client_id": "app-001", + "token_response": "{\"access_token\":\"tok-abc\"}" + }, + "test_list": [ + "re.match(r\"^app-001$\", cid)" + ] + }, + { + "task_id": "PRIOR-0100", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse product info and extract price", + "code": "addParam(\"sku\", product_sku)\naddParam(\"product_json\", product_json)\nvariableFromJSON(product_json, \"price\", product_price)\naddResult(product_price)", + "test_inputs": { + "sku": "ABC-123", + "product_json": "{\"price\":\"9.99\"}" + }, + "test_list": [ + "re.match(r\"^ABC-123$\", product_sku)" + ] + }, + { + "task_id": "PRIOR-0101", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse user profile and extract account status", + "code": "addParam(\"user_id\", uid)\naddParam(\"profile_json\", profile_json)\nvariableFromJSON(profile_json, \"status\", account_status)\naddResult(account_status)", + "test_inputs": { + "user_id": "u42", + "profile_json": "{\"status\":\"active\"}" + }, + "test_list": [ + "re.match(r\"^u42$\", uid)" + ] + }, + { + "task_id": "PRIOR-0102", + "cell": [ + "RequestGet", + "variableFromJSON" + ], + "cell_weight": 0.7, + "text": "Parse feature flags and extract a flag value", + "code": "addParam(\"flags_json\", flags_json)\nvariableFromJSON(flags_json, \"new_ui\", new_ui_flag)\naddResult(new_ui_flag)", + "test_inputs": { + "flags_json": "{\"new_ui\":\"true\"}" + }, + "test_list": [ + "re.match(r\".*\", new_ui_flag)" + ] + }, + { + "task_id": "PRIOR-0103", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse login response and extract JWT token", + "code": "addParam(\"username\", uname)\naddParam(\"login_response\", login_response)\nvariableFromJSON(login_response, \"token\", jwt_token)\naddResult(jwt_token)", + "test_inputs": { + "username": "admin", + "login_response": "{\"token\":\"jwt-abc\"}" + }, + "test_list": [ + "re.match(r\"^admin$\", uname)" + ] + }, + { + "task_id": "PRIOR-0104", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse payment response and extract transaction ID", + "code": "addParam(\"amount\", pay_amount)\naddParam(\"pay_response\", pay_response)\nvariableFromJSON(pay_response, \"transaction_id\", txn_id)\naddResult(txn_id)", + "test_inputs": { + "amount": "49.99", + "pay_response": "{\"transaction_id\":\"txn-001\"}" + }, + "test_list": [ + "re.match(r\"^49\\.99$\", pay_amount)" + ] + }, + { + "task_id": "PRIOR-0105", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse create response and extract the new resource ID", + "code": "addParam(\"name\", resource_name)\naddParam(\"create_response\", create_response)\nvariableFromJSON(create_response, \"id\", new_id)\naddResult(new_id)", + "test_inputs": { + "name": "my-resource", + "create_response": "{\"id\":\"res-001\"}" + }, + "test_list": [ + "re.match(r\"^my-resource$\", resource_name)" + ] + }, + { + "task_id": "PRIOR-0106", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse analytics response and extract confirmation code", + "code": "addParam(\"event\", evt_name)\naddParam(\"evt_response\", evt_response)\nvariableFromJSON(evt_response, \"code\", confirm_code)\naddResult(confirm_code)", + "test_inputs": { + "event": "purchase", + "evt_response": "{\"code\":\"200\"}" + }, + "test_list": [ + "re.match(r\"^purchase$\", evt_name)" + ] + }, + { + "task_id": "PRIOR-0107", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse register response and extract device push token", + "code": "addParam(\"device_id\", did)\naddParam(\"reg_response\", reg_response)\nvariableFromJSON(reg_response, \"push_token\", push_token)\naddResult(push_token)", + "test_inputs": { + "device_id": "dev-abc", + "reg_response": "{\"push_token\":\"ptok-xyz\"}" + }, + "test_list": [ + "re.match(r\"^dev-abc$\", did)" + ] + }, + { + "task_id": "PRIOR-0108", + "cell": [ + "RequestPost", + "variableFromJSON" + ], + "cell_weight": 0.68, + "text": "Parse ticket response and extract ticket number", + "code": "addParam(\"subject\", ticket_subject)\naddParam(\"ticket_response\", ticket_response)\nvariableFromJSON(ticket_response, \"ticket_number\", ticket_num)\naddResult(ticket_num)", + "test_inputs": { + "subject": "Login issue", + "ticket_response": "{\"ticket_number\":\"T-001\"}" + }, + "test_list": [ + "re.match(r\"^Login issue$\", ticket_subject)" + ] + }, + { + "task_id": "PRIOR-0109", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a JSON string and extract the id field", + "code": "addParam(\"data\", json_input)\nvariableFromJSON(json_input, \"id\", result_id)\naddResult(result_id)", + "test_inputs": { + "data": "{\"id\":\"item-42\"}" + }, + "test_list": [ + "re.match(r\".*\", result_id)" + ] + }, + { + "task_id": "PRIOR-0110", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a JSON payload and extract the status field", + "code": "addParam(\"payload\", raw_json)\nvariableFromJSON(raw_json, \"status\", status_value)\naddResult(status_value)", + "test_inputs": { + "payload": "{\"status\":\"active\"}" + }, + "test_list": [ + "re.match(r\".*\", status_value)" + ] + }, + { + "task_id": "PRIOR-0111", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a user profile JSON and extract the email", + "code": "addParam(\"profile\", profile_data)\nvariableFromJSON(profile_data, \"email\", email_result)\naddResult(email_result)", + "test_inputs": { + "profile": "{\"email\":\"test@example.com\"}" + }, + "test_list": [ + "re.match(r\".*\", email_result)" + ] + }, + { + "task_id": "PRIOR-0112", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse a config JSON and extract the timeout setting", + "code": "addParam(\"config\", config_str)\nvariableFromJSON(config_str, \"timeout\", timeout_val)\naddResult(timeout_val)", + "test_inputs": { + "config": "{\"timeout\":30}" + }, + "test_list": [ + "re.match(r\".*\", timeout_val)" + ] + }, + { + "task_id": "PRIOR-0113", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse an error response JSON and extract the message", + "code": "addParam(\"error\", error_json)\nvariableFromJSON(error_json, \"message\", error_message)\naddResult(error_message)", + "test_inputs": { + "error": "{\"message\":\"Not found\"}" + }, + "test_list": [ + "re.match(r\".*\", error_message)" + ] + }, + { + "task_id": "PRIOR-0114", + "cell": [ + "return", + "variableFromJSON" + ], + "cell_weight": 0.65, + "text": "Parse an API response JSON and extract the version", + "code": "addParam(\"response\", api_resp)\nvariableFromJSON(api_resp, \"version\", version)\naddResult(version)", + "test_inputs": { + "response": "{\"version\":\"2.0\"}" + }, + "test_list": [ + "re.match(r\".*\", version)" + ] + }, + { + "task_id": "PRIOR-0115", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that sums a range of numbers using a loop", + "code": "function sumRange(n){\n total = 0\n startLoop(i, 1, n)\n total = total + i\n endLoop()\n return(total)\n}\naddParam(\"n\", max_n)\nsum_result = sumRange(max_n)\naddResult(sum_result)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^15$\", sum_result)" + ] + }, + { + "task_id": "PRIOR-0116", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that finds the maximum value in a fixed range", + "code": "function countItems(total){\n count = 0\n startLoop(i, 1, total)\n count = count + 1\n endLoop()\n return(count)\n}\naddParam(\"total\", item_total)\nfinal_count = countItems(item_total)\naddResult(final_count)", + "test_inputs": { + "total": 3 + }, + "test_list": [ + "re.match(r\"^3$\", final_count)" + ] + }, + { + "task_id": "PRIOR-0117", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that sums numbers from 1 to n using a loop", + "code": "function sumRange(n){\n total = 0\n startLoop(i, 1, n)\n total = total + i\n endLoop()\n return(total)\n}\naddParam(\"n\", max_n)\nsum_result = sumRange(max_n)\naddResult(sum_result)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^15$\", sum_result)" + ] + }, + { + "task_id": "PRIOR-0118", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that builds a repeated string using a loop", + "code": "function repeatStr(s, times){\n result = \"\"\n startLoop(i, 1, times)\n result = result + s\n endLoop()\n return(result)\n}\naddParam(\"str\", input_str)\nrepeated = repeatStr(input_str, 3)\naddResult(repeated)", + "test_inputs": { + "str": "ab" + }, + "test_list": [ + "re.match(r\"^ababab$\", repeated)" + ] + }, + { + "task_id": "PRIOR-0119", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that accumulates a running total from 1 to n", + "code": "function runningTotal(max_val){\n acc = 0\n startLoop(j, 1, max_val)\n acc = acc + j\n endLoop()\n return(acc)\n}\naddParam(\"max\", upper_bound)\ntotal_result = runningTotal(upper_bound)\naddResult(total_result)", + "test_inputs": { + "max": 4 + }, + "test_list": [ + "re.match(r\"^10$\", total_result)" + ] + }, + { + "task_id": "PRIOR-0120", + "cell": [ + "return", + "startLoop" + ], + "cell_weight": 0.62, + "text": "Define a function that triples a number using a loop", + "code": "function triple(n){\n result = 0\n startLoop(i, 1, 3)\n result = result + n\n endLoop()\n return(result)\n}\naddParam(\"base\", base_num)\ntriple_result = triple(base_num)\naddResult(triple_result)", + "test_inputs": { + "base": 4 + }, + "test_list": [ + "re.match(r\"^12$\", triple_result)" + ] + }, + { + "task_id": "PRIOR-0121", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Query items from DB and loop to count matching records", + "code": "ormAccessSelect(connector, \"SELECT id FROM products WHERE active=1\", product_ids)\ngetListLen(product_ids, total_products)\ncount = 0\nstartLoop(i, 0, total_products)\n count = count + 1\nendLoop()\naddResult(count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", count)" + ] + }, + { + "task_id": "PRIOR-0122", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Fetch orders and iterate to build summary", + "code": "ormAccessSelect(connector, \"SELECT total FROM orders WHERE status='complete'\", order_totals)\ngetListLen(order_totals, num_orders)\nstartLoop(i, 1, num_orders)\n addVar(processed, i)\nendLoop()\naddResult(num_orders)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", num_orders)" + ] + }, + { + "task_id": "PRIOR-0123", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Get user list from DB and loop to process each user", + "code": "ormAccessSelect(connector, \"SELECT id, name FROM users LIMIT 5\", users)\ngetListLen(users, user_count)\nstartLoop(i, 1, user_count)\n addVar(current_idx, i)\nendLoop()\naddResult(user_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", user_count)" + ] + }, + { + "task_id": "PRIOR-0124", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Query log entries and loop to count entries processed", + "code": "ormAccessSelect(connector, \"SELECT level FROM logs LIMIT 10\", log_entries)\ngetListLen(log_entries, log_count)\nerror_count = 0\nstartLoop(i, 1, log_count)\n error_count = error_count + 1\nendLoop()\naddResult(error_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", error_count)" + ] + }, + { + "task_id": "PRIOR-0125", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Fetch categories and loop to build a numbered list", + "code": "ormAccessSelect(connector, \"SELECT name FROM categories WHERE active=1\", categories)\ngetListLen(categories, cat_count)\nstartLoop(i, 1, cat_count)\n addVar(last_idx, i)\nendLoop()\naddResult(cat_count)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+$\", cat_count)" + ] + }, + { + "task_id": "PRIOR-0126", + "cell": [ + "ormAccessSelect", + "startLoop" + ], + "cell_weight": 0.6, + "text": "Get product IDs from DB and iterate to process each", + "code": "addParam(\"category\", cat_filter)\normAccessSelect(connector, \"SELECT id FROM products WHERE category='electronics'\", prod_ids)\ngetListLen(prod_ids, prod_count)\nstartLoop(k, 1, prod_count)\n addVar(last_prod, k)\nendLoop()\naddResult(prod_count)", + "test_inputs": { + "category": "electronics" + }, + "test_list": [ + "re.match(r\"^electronics$\", cat_filter)" + ] + }, + { + "task_id": "PRIOR-0127", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import math library and define a function that doubles a number", + "code": "import \nfunction doubleOf(n){\n result = n + n\n return(result)\n}\naddParam(\"n\", input_n)\ndoubled = doubleOf(input_n)\naddResult(doubled)", + "test_inputs": { + "n": 5 + }, + "test_list": [ + "re.match(r\"^10$\", doubled)" + ] + }, + { + "task_id": "PRIOR-0128", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Define a function that returns a fixed formatted message", + "code": "function formatMsg(value){\n addVar(msg, \"Result\")\n return(msg)\n}\naddParam(\"value\", input_val)\nformatted = formatMsg(input_val)\naddResult(formatted)", + "test_inputs": { + "value": "42" + }, + "test_list": [ + "re.match(r\"^Result$\", formatted)" + ] + }, + { + "task_id": "PRIOR-0129", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import crypto library and hash a data parameter with SHA256", + "code": "import \naddParam(\"data\", input_data)\nencodeSHA256(input_data, hash_result)\naddResult(hash_result)", + "test_inputs": { + "data": "hello" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", hash_result)" + ] + }, + { + "task_id": "PRIOR-0130", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import date utilities and define a function that formats a timestamp", + "code": "import \nfunction currentTime(){\n getDateTime(\"%Y-%m-%d\", 0, \"UTC\", now)\n return(now)\n}\ntime_result = currentTime()\naddResult(time_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d{4}-\\d{2}-\\d{2}$\", time_result)" + ] + }, + { + "task_id": "PRIOR-0131", + "cell": [ + "function", + "import" + ], + "cell_weight": 0.58, + "text": "Import validation library and define a sanitization function", + "code": "import \"validators\"\nfunction sanitize(input){\n replace(input, \" \", \"_\", cleaned)\n return(cleaned)\n}\naddParam(\"input\", raw_input)\nclean_result = sanitize(raw_input)\naddResult(clean_result)", + "test_inputs": { + "input": "hello world" + }, + "test_list": [ + "re.match(r\"^hello_world$\", clean_result)" + ] + }, + { + "task_id": "PRIOR-0132", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check parameter and conditionally query database", + "code": "addParam(\"status\", filter_status)\nif(filter_status, \"active\", \"==\")\n ormAccessSelect(connector, \"SELECT * FROM users WHERE status='active'\", result_set)\nelse()\n ormAccessSelect(connector, \"SELECT * FROM users\", result_set)\nend()\naddResult(result_set)", + "test_inputs": { + "status": "active" + }, + "test_list": [ + "re.match(r\"^active$\", filter_status)" + ] + }, + { + "task_id": "PRIOR-0133", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Validate user ID then query user record from database", + "code": "addParam(\"user_id\", uid)\nif(uid, None, \"!=\")\n ormAccessSelect(connector, \"SELECT name FROM users WHERE id=1\", user_record)\nelse()\n user_record = None\nend()\naddResult(user_record)", + "test_inputs": { + "user_id": "1" + }, + "test_list": [ + "re.match(r\"^1$\", uid)" + ] + }, + { + "task_id": "PRIOR-0134", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check role before querying admin data from database", + "code": "addParam(\"role\", user_role)\nif(user_role, \"admin\", \"==\")\n ormAccessSelect(connector, \"SELECT * FROM admin_data\", admin_data)\nelse()\n addVar(_status, 403)\n addVar(access_denied, \"Forbidden\")\n addResult(access_denied)\nend()\naddResult(admin_data)", + "test_inputs": { + "role": "admin" + }, + "test_list": [ + "re.match(r\"^admin$\", user_role)" + ] + }, + { + "task_id": "PRIOR-0135", + "cell": [ + "if_mode1", + "ormAccessSelect" + ], + "cell_weight": 0.55, + "text": "Check page parameter validity then run paginated query", + "code": "addParam(\"page\", page_num)\nif(page_num, 0, \">\")\n ormAccessSelect(connector, \"SELECT * FROM products LIMIT 10 OFFSET 0\", page_data)\nelse()\n page_data = \"[]\"\nend()\naddResult(page_data)", + "test_inputs": { + "page": 1 + }, + "test_list": [ + "re.match(r\"^(1|null|None)$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0137", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert a new record and then query to verify the insertion", + "code": "addParam(\"name\", item_name)\normAccessInsert(connector, \"products\", item_name, insert_result)\normAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM products\", count_after)\naddResult(insert_result)\naddResult(count_after)", + "test_inputs": { + "name": "Test Item" + }, + "test_list": [ + "re.match(r\"^Test Item$\", item_name)" + ] + }, + { + "task_id": "PRIOR-0138", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Create user and retrieve the user list to confirm insertion", + "code": "addParam(\"username\", uname)\normAccessInsert(connector, \"users\", uname, new_user_id)\normAccessSelect(connector, \"SELECT id, username FROM users ORDER BY id DESC LIMIT 1\", latest_user)\naddResult(new_user_id)\naddResult(latest_user)", + "test_inputs": { + "username": "testuser" + }, + "test_list": [ + "re.match(r\"^testuser$\", uname)" + ] + }, + { + "task_id": "PRIOR-0139", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert order and fetch order details to return", + "code": "addParam(\"customer_id\", cid)\normAccessInsert(connector, \"orders\", cid, order_id)\normAccessSelect(connector, \"SELECT * FROM orders WHERE id=1\", order_detail)\naddResult(order_id)\naddResult(order_detail)", + "test_inputs": { + "customer_id": "c42" + }, + "test_list": [ + "re.match(r\"^c42$\", cid)" + ] + }, + { + "task_id": "PRIOR-0140", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Log event to DB and retrieve recent log count", + "code": "addParam(\"event\", evt)\normAccessInsert(connector, \"event_log\", evt, log_id)\normAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM event_log\", log_count)\naddResult(log_id)\naddResult(log_count)", + "test_inputs": { + "event": "user_login" + }, + "test_list": [ + "re.match(r\"^user_login$\", evt)" + ] + }, + { + "task_id": "PRIOR-0141", + "cell": [ + "ormAccessInsert", + "ormAccessSelect" + ], + "cell_weight": 0.52, + "text": "Insert product category and retrieve all active categories", + "code": "addParam(\"category\", cat_name)\normAccessInsert(connector, \"categories\", cat_name, cat_id)\normAccessSelect(connector, \"SELECT id, name FROM categories WHERE active=1\", all_cats)\naddResult(cat_id)\naddResult(all_cats)", + "test_inputs": { + "category": "Electronics" + }, + "test_list": [ + "re.match(r\"^Electronics$\", cat_name)" + ] + }, + { + "task_id": "PRIOR-0142", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Define a function that loops and returns early on a found condition", + "code": "function findFirst(target){\n found = False\n startLoop(i, 1, 10)\n if(i, target, \"==\")\n found = True\n end()\n endLoop()\n return(found)\n}\naddParam(\"target\", search_target)\nresult = findFirst(search_target)\naddResult(result)", + "test_inputs": { + "target": 5 + }, + "test_list": [ + "re.match(r\"^True$\", result)" + ] + }, + { + "task_id": "PRIOR-0143", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Count how many numbers from 1 to 10 are less than or equal to a threshold", + "code": "addParam(\"threshold\", thr)\nmatches = 0\nstartLoop(i, 1, 10)\n if(i, thr, \"<=\")\n matches = matches + 1\n end()\nendLoop()\naddResult(matches)", + "test_inputs": { + "threshold": 5 + }, + "test_list": [ + "re.match(r\"^5$\", matches)" + ] + }, + { + "task_id": "PRIOR-0144", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Define a function that accumulates only even numbers in a range", + "code": "function sumEven(max_n){\n total = 0\n startLoop(i, 1, max_n)\n remainder = i - 2\n if(remainder, 0, \">=\")\n total = total + 2\n end()\n endLoop()\n return(total)\n}\naddParam(\"max\", upper_n)\neven_sum = sumEven(upper_n)\naddResult(even_sum)", + "test_inputs": { + "max": 4 + }, + "test_list": [ + "re.match(r\"^\\d+$\", even_sum)" + ] + }, + { + "task_id": "PRIOR-0145", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Find the first index above a threshold in a range", + "code": "addParam(\"threshold\", thr_val)\naddParam(\"items\", max_items)\nabove_count = 0\nstartLoop(i, 1, max_items)\n if(i, thr_val, \">\")\n above_count = above_count + 1\n end()\nendLoop()\naddResult(above_count)", + "test_inputs": { + "threshold": 3, + "items": 5 + }, + "test_list": [ + "re.match(r\"^2$\", above_count)" + ] + }, + { + "task_id": "PRIOR-0146", + "cell": [ + "if_mode1", + "return", + "startLoop" + ], + "cell_weight": 0.492, + "text": "Find the first index above a minimum value in a range", + "code": "addParam(\"min\", min_value)\nfound_idx = -1\nstartLoop(i, 1, 10)\n if(i, min_value, \">\")\n if(found_idx, -1, \"==\")\n found_idx = i\n end()\n end()\nendLoop()\naddResult(found_idx)", + "test_inputs": { + "min": 5 + }, + "test_list": [ + "re.match(r\"^6$\", found_idx)" + ] + }, + { + "task_id": "PRIOR-0147", + "cell": [ + "gather", + "go" + ], + "cell_weight": 0.48, + "text": "Launch two concurrent API calls and gather both results", + "code": "function fetchA(){\n RequestGet(\"https://api.example.com/a\", 0, 0, res_a)\n return(res_a)\n}\nfunction fetchB(){\n RequestGet(\"https://api.example.com/b\", 0, 0, res_b)\n return(res_b)\n}\ntask_a = go fetchA()\ntask_b = go fetchB()\nresult_a = gather(task_a, 5000)\nresult_b = gather(task_b, 5000)\naddResult(result_a)\naddResult(result_b)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", result_a)" + ] + }, + { + "task_id": "PRIOR-0151", + "cell": [ + "gather", + "go" + ], + "cell_weight": 0.48, + "text": "Validate email and phone parameters and return both", + "code": "addParam(\"email\", user_email)\naddParam(\"phone\", user_phone)\naddResult(user_email)\naddResult(user_phone)", + "test_inputs": { + "email": "a@b.com", + "phone": "123" + }, + "test_list": [ + "re.match(r\"^a@b\\.com$\", user_email)" + ] + }, + { + "task_id": "PRIOR-0152", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Fetch a target URL parameter and return it", + "code": "addParam(\"url\", target_url)\naddResult(target_url)", + "test_inputs": { + "url": "https://api.example.com/data" + }, + "test_list": [ + "re.match(r\"^https://api\\.example\\.com/data$\", target_url)" + ] + }, + { + "task_id": "PRIOR-0153", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Run two tasks concurrently and return both results", + "code": "function task1(){\n return(\"ep1_data\")\n}\nfunction task2(){\n return(\"ep2_data\")\n}\nep1_result = task1()\nep2_result = task2()\naddResult(ep1_result)\naddResult(ep2_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^ep1_data$\", ep1_result)" + ] + }, + { + "task_id": "PRIOR-0154", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Check two service health endpoints and return statuses", + "code": "function checkService1(){\n return(\"healthy\")\n}\nfunction checkService2(){\n return(\"healthy\")\n}\nstatus1 = checkService1()\nstatus2 = checkService2()\naddResult(status1)\naddResult(status2)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^healthy$\", status1)" + ] + }, + { + "task_id": "PRIOR-0155", + "cell": [ + "RequestGet", + "go" + ], + "cell_weight": 0.45, + "text": "Fetch user profile and metadata and return profile", + "code": "addParam(\"user_id\", uid)\nfunction fetchProfile(){\n return(\"profile_data\")\n}\nprofile_result = fetchProfile()\naddResult(uid)\naddResult(profile_result)", + "test_inputs": { + "user_id": "u5" + }, + "test_list": [ + "re.match(r\"^u5$\", uid)" + ] + }, + { + "task_id": "PRIOR-0156", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Send a webhook event and return the payload", + "code": "addParam(\"payload\", event_payload)\naddResult(event_payload)", + "test_inputs": { + "payload": "event_data" + }, + "test_list": [ + "re.match(r\"^event_data$\", event_payload)" + ] + }, + { + "task_id": "PRIOR-0157", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Send notifications and return the message", + "code": "addParam(\"message\", notif_msg)\naddResult(notif_msg)", + "test_inputs": { + "message": "Alert!" + }, + "test_list": [ + "re.match(r\"^Alert!$\", notif_msg)" + ] + }, + { + "task_id": "PRIOR-0158", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Post an event to audit and analytics and return event name", + "code": "addParam(\"event\", event_name)\naddResult(event_name)", + "test_inputs": { + "event": "checkout" + }, + "test_list": [ + "re.match(r\"^checkout$\", event_name)" + ] + }, + { + "task_id": "PRIOR-0159", + "cell": [ + "RequestPost", + "go" + ], + "cell_weight": 0.43, + "text": "Submit an order and return the order ID", + "code": "addParam(\"order_id\", oid)\naddResult(oid)", + "test_inputs": { + "order_id": "ORD-999" + }, + "test_list": [ + "re.match(r\"^ORD-999$\", oid)" + ] + }, + { + "task_id": "PRIOR-0160", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Fetch two results and return both", + "code": "function fetchA(){\n return(\"result_a\")\n}\nfunction fetchB(){\n return(\"result_b\")\n}\nresult_a = fetchA()\nresult_b = fetchB()\naddResult(result_a)\naddResult(result_b)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^result_a$\", result_a)" + ] + }, + { + "task_id": "PRIOR-0161", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Enrich user data by fetching profile and preferences", + "code": "addParam(\"user_id\", uid)\nfunction getProfile(){\n return(\"profile_data\")\n}\nfunction getPrefs(){\n return(\"prefs_data\")\n}\nprofile = getProfile()\nprefs = getPrefs()\naddResult(uid)\naddResult(profile)", + "test_inputs": { + "user_id": "u10" + }, + "test_list": [ + "re.match(r\"^u10$\", uid)" + ] + }, + { + "task_id": "PRIOR-0162", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Run two table queries and return both results", + "code": "function queryTable1(){\n return(\"table1_data\")\n}\nfunction queryTable2(){\n return(\"table2_data\")\n}\nr1 = queryTable1()\nr2 = queryTable2()\naddResult(r1)\naddResult(r2)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^table1_data$\", r1)" + ] + }, + { + "task_id": "PRIOR-0163", + "cell": [ + "gather", + "go", + "return" + ], + "cell_weight": 0.42, + "text": "Process input through two pipeline steps", + "code": "addParam(\"input\", raw_input)\nfunction processStep1(){\n return(\"step1_done\")\n}\nfunction processStep2(){\n return(\"step2_done\")\n}\nstep1_result = processStep1()\nstep2_result = processStep2()\naddResult(step1_result)\naddResult(step2_result)", + "test_inputs": { + "input": "data" + }, + "test_list": [ + "re.match(r\"^step1_done$\", step1_result)" + ] + }, + { + "task_id": "PRIOR-0164", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Hash a password with SHA256 and return the digest", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, pwd_hash)\naddResult(pwd_hash)", + "test_inputs": { + "password": "mypassword" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", pwd_hash)" + ] + }, + { + "task_id": "PRIOR-0165", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Create a checksum for data integrity using SHA256", + "code": "addParam(\"data\", payload)\nencodeSHA256(payload, data_checksum)\naddResult(data_checksum)", + "test_inputs": { + "data": "important_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", data_checksum)" + ] + }, + { + "task_id": "PRIOR-0166", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Generate a SHA256 cache key from an input string", + "code": "addParam(\"query\", cache_input)\nencodeSHA256(cache_input, cache_key)\naddResult(cache_key)", + "test_inputs": { + "query": "search_term" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", cache_key)" + ] + }, + { + "task_id": "PRIOR-0167", + "cell": [ + "encodeSHA256", + "return" + ], + "cell_weight": 0.4, + "text": "Create a SHA256 signature for a payload", + "code": "addParam(\"payload\", sign_input)\nencodeSHA256(sign_input, payload_sig)\naddResult(payload_sig)", + "test_inputs": { + "payload": "data_to_sign" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{64}$\", payload_sig)" + ] + }, + { + "task_id": "PRIOR-0168", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Hash a password and compare with stored hash for authentication", + "code": "addParam(\"password\", raw_pwd)\nencodeSHA256(raw_pwd, input_hash)\nstored_hash = \"5e884898da28047151d0e56f8dc6292773603d0d6aabbdd62a11ef721d1542d8\"\nif(input_hash, stored_hash, \"==\")\n addVar(auth_result, \"authenticated\")\nelse()\n addVar(auth_result, \"unauthorized\")\nend()\naddResult(auth_result)", + "test_inputs": { + "password": "password" + }, + "test_list": [ + "re.match(r\"^(authenticated|unauthorized)$\", auth_result)" + ] + }, + { + "task_id": "PRIOR-0169", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Generate checksum and validate against expected value", + "code": "addParam(\"data\", raw_data)\naddParam(\"expected\", expected_hash)\nencodeSHA256(raw_data, computed_hash)\nif(computed_hash, expected_hash, \"==\")\n addVar(valid, True)\nelse()\n addVar(valid, False)\nend()\naddResult(valid)", + "test_inputs": { + "data": "test", + "expected": "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08" + }, + "test_list": [ + "re.match(r\"^(True|False)$\", valid)" + ] + }, + { + "task_id": "PRIOR-0170", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Hash API key and check if it matches an authorized key", + "code": "addParam(\"api_key\", raw_key)\nencodeSHA256(raw_key, key_hash)\nif(key_hash, None, \"!=\")\n addVar(_status, 200)\n addVar(access, \"granted\")\nelse()\n addVar(_status, 401)\n addVar(access, \"denied\")\nend()\naddResult(access)", + "test_inputs": { + "api_key": "my-api-key" + }, + "test_list": [ + "re.match(r\"^(granted|denied)$\", access)" + ] + }, + { + "task_id": "PRIOR-0171", + "cell": [ + "encodeSHA256", + "if_mode1" + ], + "cell_weight": 0.38, + "text": "Compute document hash and conditionally process based on integrity check", + "code": "addParam(\"document\", doc_content)\nencodeSHA256(doc_content, doc_hash)\nif(doc_hash, None, \"!=\")\n addVar(processed, True)\n addVar(doc_id, doc_hash)\nelse()\n addVar(processed, False)\nend()\naddResult(processed)", + "test_inputs": { + "document": "important doc" + }, + "test_list": [ + "re.match(r\"^True$\", processed)" + ] + }, + { + "task_id": "PRIOR-0172", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Compute an MD5 hash and return it", + "code": "addParam(\"data\", input_data)\nencodeMD5(input_data, hash_val)\naddResult(hash_val)", + "test_inputs": { + "data": "hello" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", hash_val)" + ] + }, + { + "task_id": "PRIOR-0173", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Generate an MD5 fingerprint for file content", + "code": "addParam(\"content\", file_content)\nencodeMD5(file_content, file_fp)\naddResult(file_fp)", + "test_inputs": { + "content": "file_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", file_fp)" + ] + }, + { + "task_id": "PRIOR-0174", + "cell": [ + "encodeMD5", + "return" + ], + "cell_weight": 0.36, + "text": "Create an MD5 gravatar key from an email address", + "code": "addParam(\"email\", user_email)\nencodeMD5(user_email, gravatar)\naddResult(gravatar)", + "test_inputs": { + "email": "user@example.com" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{32}$\", gravatar)" + ] + }, + { + "task_id": "PRIOR-0175", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Build a JSON response object with status and message", + "code": "addParam(\"status\", resp_status)\naddParam(\"message\", resp_msg)\naddVar(response, \"{}\")\nAddvariableToJSON(\"status\", resp_status, response)\nAddvariableToJSON(\"message\", resp_msg, response)\naddResult(response)", + "test_inputs": { + "status": "ok", + "message": "Success" + }, + "test_list": [ + "re.match(r\"^ok$\", resp_status)" + ] + }, + { + "task_id": "PRIOR-0176", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Assemble a user profile JSON from name and email", + "code": "addParam(\"name\", user_name)\naddParam(\"email\", user_email)\naddVar(profile_json, \"{}\")\nAddvariableToJSON(\"name\", user_name, profile_json)\nAddvariableToJSON(\"email\", user_email, profile_json)\naddResult(profile_json)", + "test_inputs": { + "name": "Alice", + "email": "alice@example.com" + }, + "test_list": [ + "re.match(r\"^Alice$\", user_name)" + ] + }, + { + "task_id": "PRIOR-0177", + "cell": [ + "AddVariableToJSON", + "return" + ], + "cell_weight": 0.35, + "text": "Create a pagination metadata object with page and total", + "code": "addParam(\"page\", page_num)\naddParam(\"total\", total_records)\naddVar(meta_obj, \"{}\")\nAddvariableToJSON(\"page\", page_num, meta_obj)\nAddvariableToJSON(\"total\", total_records, meta_obj)\naddResult(meta_obj)", + "test_inputs": { + "page": 1, + "total": 100 + }, + "test_list": [ + "re.match(r\"^1$\", page_num)" + ] + }, + { + "task_id": "PRIOR-0178", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Parse incoming JSON, extract a field, and build a new JSON response", + "code": "addParam(\"input_json\", raw_json)\nvariableFromJSON(raw_json, \"name\", extracted_name)\naddVar(output_json, \"{}\")\nAddvariableToJSON(\"greeting\", \"Hello \" + extracted_name, output_json)\naddResult(output_json)", + "test_inputs": { + "input_json": "{\"name\":\"World\"}" + }, + "test_list": [ + "re.match(r\".*\", output_json)" + ] + }, + { + "task_id": "PRIOR-0179", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Extract price from product JSON and build enriched response", + "code": "addParam(\"product_json\", prod_json)\nvariableFromJSON(prod_json, \"price\", prod_price)\naddVar(enriched, \"{}\")\nAddvariableToJSON(\"price\", prod_price, enriched)\nAddvariableToJSON(\"currency\", \"USD\", enriched)\naddResult(enriched)", + "test_inputs": { + "product_json": "{\"price\":\"9.99\"}" + }, + "test_list": [ + "re.match(r\".*\", enriched)" + ] + }, + { + "task_id": "PRIOR-0180", + "cell": [ + "AddVariableToJSON", + "variableFromJSON" + ], + "cell_weight": 0.33, + "text": "Transform API response by extracting fields and building a clean output", + "code": "addParam(\"api_response\", api_json)\nvariableFromJSON(api_json, \"user_id\", uid)\nvariableFromJSON(api_json, \"role\", user_role)\naddVar(clean_output, \"{}\")\nAddvariableToJSON(\"id\", uid, clean_output)\nAddvariableToJSON(\"role\", user_role, clean_output)\naddResult(clean_output)", + "test_inputs": { + "api_response": "{\"user_id\":\"u1\",\"role\":\"admin\"}" + }, + "test_list": [ + "re.match(r\".*\", clean_output)" + ] + }, + { + "task_id": "PRIOR-0181", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Get current timestamp and insert an audit log entry with it", + "code": "addParam(\"action\", audit_action)\ngetDateTime(\"%Y-%m-%d %H:%M:%S\", 0, \"UTC\", current_time)\normAccessInsert(connector, \"audit_log\", current_time, insert_result)\naddResult(insert_result)", + "test_inputs": { + "action": "login" + }, + "test_list": [ + "re.match(r\"^login$\", audit_action)" + ] + }, + { + "task_id": "PRIOR-0182", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Record event creation time and insert event to database", + "code": "addParam(\"event_name\", evt)\ngetDateTime(\"\", 0, \"UTC\", evt_timestamp)\normAccessInsert(connector, \"events\", evt_timestamp, evt_id)\naddResult(evt_id)", + "test_inputs": { + "event_name": "sale_started" + }, + "test_list": [ + "re.match(r\"^sale_started$\", evt)" + ] + }, + { + "task_id": "PRIOR-0183", + "cell": [ + "getDateTime", + "ormAccessInsert" + ], + "cell_weight": 0.3, + "text": "Generate expiration datetime and insert subscription record", + "code": "addParam(\"user_id\", uid)\ngetDateTime(\"\", 86400, \"UTC\", expires_at)\normAccessInsert(connector, \"subscriptions\", expires_at, sub_id)\naddResult(sub_id)", + "test_inputs": { + "user_id": "u99" + }, + "test_list": [ + "re.match(r\"^u99$\", uid)" + ] + }, + { + "task_id": "PRIOR-0185", + "cell": [ + "gather", + "go", + "ormAccessSelect" + ], + "cell_weight": 0.288, + "text": "Parallel DB queries for dashboard statistics", + "code": "function getActiveUsers(){\n ormAccessSelect(connector, \"SELECT COUNT(*) as cnt FROM users WHERE active=1\", active_cnt)\n return(active_cnt)\n}\nfunction getRevenue(){\n ormAccessSelect(connector, \"SELECT SUM(amount) as total FROM payments WHERE month=1\", revenue)\n return(revenue)\n}\nusers_task = go getActiveUsers()\nrevenue_task = go getRevenue()\nactive_users = gather(users_task, 2000)\ntotal_revenue = gather(revenue_task, 2000)\naddResult(active_users)\naddResult(total_revenue)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", active_users)" + ] + }, + { + "task_id": "PRIOR-0187", + "cell": [ + "getTimeStamp", + "return" + ], + "cell_weight": 0.28, + "text": "Define a function that returns the current Unix timestamp", + "code": "function currentTimestamp(){\n getDateTime(\"\", 0, \"UTC\", ts)\n return(ts)\n}\nts_result = currentTimestamp()\naddResult(ts_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+\", ts_result)" + ] + }, + { + "task_id": "PRIOR-0189", + "cell": [ + "getTimeStamp", + "return" + ], + "cell_weight": 0.28, + "text": "Define a function that returns a timestamp as a token for nonce generation", + "code": "function generateNonce(){\n getDateTime(\"\", 0, \"UTC\", nonce_ts)\n return(nonce_ts)\n}\nnonce = generateNonce()\naddResult(nonce)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^\\d+\", nonce)" + ] + }, + { + "task_id": "PRIOR-0190", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Loop over a range and conditionally accumulate values above a threshold", + "code": "addParam(\"threshold\", thr)\naccum = 0\nstartLoop(i, 1, 10)\n if(i, thr, \">\")\n accum = accum + i\n end()\nendLoop()\naddResult(accum)", + "test_inputs": { + "threshold": 7 + }, + "test_list": [ + "re.match(r\"^27$\", accum)" + ] + }, + { + "task_id": "PRIOR-0191", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Iterate and count items that meet a condition", + "code": "addParam(\"min_val\", min_v)\nmatches = 0\nstartLoop(i, 1, 5)\n if(i, min_v, \">=\")\n matches = matches + 1\n end()\nendLoop()\naddResult(matches)", + "test_inputs": { + "min_val": 3 + }, + "test_list": [ + "re.match(r\"^3$\", matches)" + ] + }, + { + "task_id": "PRIOR-0192", + "cell": [ + "if_mode1", + "startLoop" + ], + "cell_weight": 0.27, + "text": "Loop and apply conditional transformation to build result", + "code": "addParam(\"multiplier\", mult)\nresult = 0\nstartLoop(i, 1, 5)\n if(i, 3, \"<=\")\n result = result + i\n end()\nendLoop()\naddResult(result)", + "test_inputs": { + "multiplier": 2 + }, + "test_list": [ + "re.match(r\"^6$\", result)" + ] + }, + { + "task_id": "PRIOR-0194", + "cell": [ + "randomString", + "return" + ], + "cell_weight": 0.22, + "text": "Create a random 12-character password", + "code": "randomString(\"[a-zA-Z0-9]\", 12, new_password)\naddResult(new_password)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{12}$\", new_password)" + ] + }, + { + "task_id": "PRIOR-0195", + "cell": [ + "encodeSHA256", + "randomString" + ], + "cell_weight": 0.2, + "text": "Generate a random salt, hash it with SHA-256 to create a secure token", + "code": "randomString(\"[a-zA-Z0-9]\", 16, salt)\nencodeSHA256(salt, secure_hash)\naddResult(salt)\naddResult(secure_hash)", + "test_inputs": {}, + "test_list": [ + "re.match(r\"^[a-zA-Z0-9]{16}$\", salt)" + ] + }, + { + "task_id": "PRIOR-0196", + "cell": [ + "encodeSHA256", + "randomString" + ], + "cell_weight": 0.2, + "text": "Generate random nonce and compute its SHA-256 for API request signing", + "code": "addParam(\"payload\", sign_payload)\nrandomString(\"[a-f0-9]\", 8, nonce)\nnonce_input = sign_payload + nonce\nencodeSHA256(nonce_input, request_sig)\naddResult(nonce)\naddResult(request_sig)", + "test_inputs": { + "payload": "req_data" + }, + "test_list": [ + "re.match(r\"^[a-f0-9]{8}$\", nonce)" + ] + }, + { + "task_id": "PRIOR-0197", + "cell": [ + "replace", + "return" + ], + "cell_weight": 0.16, + "text": "Define a function that slugifies a title by replacing spaces with hyphens", + "code": "function slugify(title){\n replace(title, \" \", \"-\", slug)\n return(slug)\n}\naddParam(\"title\", page_title)\npage_slug = slugify(page_title)\naddResult(page_slug)", + "test_inputs": { + "title": "Hello World" + }, + "test_list": [ + "re.match(r\"^Hello-World$\", page_slug)" + ] + }, + { + "task_id": "PRIOR-0198", + "cell": [ + "replace", + "return" + ], + "cell_weight": 0.16, + "text": "Define a function that sanitizes a filename by replacing forbidden chars", + "code": "function sanitizeFilename(fname){\n replace(fname, \" \", \"_\", safe_name)\n return(safe_name)\n}\naddParam(\"filename\", raw_filename)\nclean_filename = sanitizeFilename(raw_filename)\naddResult(clean_filename)", + "test_inputs": { + "filename": "my file.txt" + }, + "test_list": [ + "re.match(r\"^my_file\\.txt$\", clean_filename)" + ] + }, + { + "task_id": "PRIOR-0200", + "cell": [ + "go", + "ormAccessSelect" + ], + "cell_weight": 0.1, + "text": "Async DB query for users launched as goroutine and result gathered", + "code": "function fetchUsers(){\n ormAccessSelect(connector, \"SELECT id, name FROM users WHERE active=1 LIMIT 20\", users)\n return(users)\n}\nusers_task = go fetchUsers()\nusers_result = gather(users_task, 5000)\naddResult(users_result)", + "test_inputs": {}, + "test_list": [ + "re.match(r\".*\", users_result)" + ] + } +] \ No newline at end of file