diff --git a/README.md b/README.md
index 91a5483e0..c326190b0 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ # MetaGPT: The Multi-Agent Framework
-
+
@@ -162,9 +162,9 @@ ### Installation by Docker
```bash
# Step 1: Download metagpt official image and prepare config.yaml
-docker pull metagpt/metagpt:v0.3.1
+docker pull metagpt/metagpt:latest
mkdir -p /opt/metagpt/{config,workspace}
-docker run --rm metagpt/metagpt:v0.3.1 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml
+docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml
vim /opt/metagpt/config/key.yaml # Change the config
# Step 2: Run metagpt demo with container
@@ -172,7 +172,7 @@ # Step 2: Run metagpt demo with container
--privileged \
-v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3.1 \
+ metagpt/metagpt:latest \
python startup.py "Write a cli snake game"
# You can also start a container and execute commands in it
@@ -180,7 +180,7 @@ # You can also start a container and execute commands in it
--privileged \
-v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3.1
+ metagpt/metagpt:latest
docker exec -it metagpt /bin/bash
$ python startup.py "Write a cli snake game"
diff --git a/config/config.yaml b/config/config.yaml
index a60d2dbdd..de6254898 100644
--- a/config/config.yaml
+++ b/config/config.yaml
@@ -15,18 +15,18 @@ RPM: 10
#### if Anthropic
#Anthropic_API_KEY: "YOUR_API_KEY"
-#### if xinghuo
-#xinghuo_appid : "APPID"
-#xinghuo_api_secret : "APISecret"
-#xinghuo_api_key : "APIKey"
+#### if Xinghuo
+#XINGHUO_APPID : "YOUR_APPID"
+#XINGHUO_API_SECRET : "YOUR_APISecret"
+#XINGHUO_API_KEY : "YOUR_APIKey"
+#DOMAIN : "generalv2"
+#SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat"
-#domain : "generalv2"
-
-#Spark_url : "ws://spark-api.xf-yun.com/v2.1/chat"
-
-#### 如果不能使用api
-
-#no_api_mode :"true"
+XINGHUO_APPID : "ae5e30f4"
+XINGHUO_API_SECRET : "MDhlOWE2NmFhOWMxZWRkOTdlYjY2Njk1"
+XINGHUO_API_KEY : "97b635fe5927d34a857333e11d15f29f"
+DOMAIN : "generalv2"
+SPARK_URL : "ws://spark-api.xf-yun.com/v2.1/chat"
#### if AZURE, check https://github.com/openai/openai-cookbook/blob/main/examples/azure/chat.ipynb
#### You can use ENGINE or DEPLOYMENT mode
diff --git a/debating_tournament.py b/debating_tournament.py
deleted file mode 100644
index 8971a12c1..000000000
--- a/debating_tournament.py
+++ /dev/null
@@ -1,135 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
-@Time : 2023/9/20 00:30
-@Author : zhouziming
-@File : debating_tourmament.py
-"""
-import asyncio
-import platform
-import fire
-from pydantic import BaseModel, Field
-
-from metagpt.actions import BossRequirement
-from metagpt.config import CONFIG
-from metagpt.environment import Environment
-from metagpt.logs import logger
-from metagpt.roles import Role
-from metagpt.schema import Message
-from metagpt.utils.common import NoMoneyException
-from metagpt.llm import DEFAULT_LLM
-正方一辩提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-您的立论题目是{正方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。
-'''
-反方一辩提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-您的立论题目是{反方辩题}。您的立论稿应该包括明确自己的论点,解释自己论点的含义,然后使用对论点有利的论据来支撑自己的论点。最后使用生活中的示例来论证自己的论点。
-'''
-正方一辩评价提示词='''
-##角色
-现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。
-##要求
-你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。
-##辩题
-{正方辩题}
-##立论稿
-{正方立论稿}
-'''
-反方一辩评价提示词='''
-##角色
-现在你是一名高水平,有辩论技巧辩论赛裁判,根据辩论赛而不是自身立场来评价。
-##要求
-你的任务是根据一辩辩手的立论稿对辩手的立论进行评价,指出改进空间。评价应当包括:立论稿内容是否符合辩题、逻辑表达是否清晰、论据是否能够支撑论点、能否结合实际方面进行评价。并在进行中立,客观的评价后,给出自己的评分。评分从A+到C-。
-##辩题
-{反方辩题}
-##立论稿
-{反方立论稿}
-'''
-正方质询提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。
-##辩题
-{正方辩题}
-##立论稿
-{反方立论稿}
-'''
-反方回答提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。
-##辩题
-{反方辩题}
-##立论稿
-{反方立论稿}
-##疑问
-{正方质询}
-'''
-反方质询提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-你的任务是,根据自己辩题,针对立论稿提出疑问。疑问内容不超过五条,每条只限一句话。
-##辩题
-{反方辩题}
-##立论稿
-{正方立论稿}
-'''
-正方回答提示词='''
-##角色
-现在你是一名高水平,有辩论技巧,有强大表达能力的辩手。
-##要求
-你的任务是,根据立论稿对对手提出的疑问进行回答。对每个问题的回答应限制在三句话以内。回答内容和疑问应当一一对应。
-##辩题
-{正方辩题}
-##立论稿
-{正方立论稿}
-##疑问
-{反方质询}
-'''
-def main(
- zf:str='人性本善',
- ff:str='人性本恶'
-):
- """
- """
- if platform.system() == "Windows":
- asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
- asyncio.run(startup(zf,ff))
-
-async def startup(正方辩题:str,反方辩题:str):
- llm=DEFAULT_LLM
- #一辩环节
- #正方
-
- 正方立论稿=await llm.aask(正方一辩提示词.format(正方辩题=正方辩题))
- #反方
-
- 反方立论稿=await llm.aask(反方一辩提示词.format(反方辩题=反方辩题))
- #裁判评价环节
-
- 正方一辩评价=await llm.aask(正方一辩评价提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿))
-
- 反方一辩评价=await llm.aask(反方一辩评价提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿))
- #二辩质询环节
- #正方质询
-
- 正方质询=await llm.aask(正方质询提示词.format(正方辩题=正方辩题,反方立论稿=反方立论稿))
- #反方回答
-
- 反方回答=await llm.aask(反方回答提示词.format(反方辩题=反方辩题,反方立论稿=反方立论稿,正方质询=正方质询))
- #反方质询
-
- 反方质询=await llm.aask(反方质询提示词.format(反方辩题=反方辩题,正方立论稿=正方立论稿))
- #正方回答
-
- 正方回答=await llm.aask(正方回答提示词.format(正方辩题=正方辩题,正方立论稿=正方立论稿,反方质询=反方质询))
-if __name__ == '__main__':
- fire.Fire(main)
diff --git a/docs/README_CN.md b/docs/README_CN.md
index 1372bf9f4..7a27a0e59 100644
--- a/docs/README_CN.md
+++ b/docs/README_CN.md
@@ -15,7 +15,7 @@ # MetaGPT: 多智能体框架
-
+
@@ -87,9 +87,9 @@ ### Docker安装
```bash
# 步骤1: 下载metagpt官方镜像并准备好config.yaml
-docker pull metagpt/metagpt:v0.3
+docker pull metagpt/metagpt:latest
mkdir -p /opt/metagpt/{config,workspace}
-docker run --rm metagpt/metagpt:v0.3 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/config.yaml
+docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/config.yaml
vim /opt/metagpt/config/config.yaml # 修改config
# 步骤2: 使用容器运行metagpt演示
@@ -97,7 +97,7 @@ # 步骤2: 使用容器运行metagpt演示
--privileged \
-v /opt/metagpt/config:/app/metagpt/config \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3 \
+ metagpt/metagpt:latest \
python startup.py "Write a cli snake game"
# 您也可以启动一个容器并在其中执行命令
@@ -105,7 +105,7 @@ # 您也可以启动一个容器并在其中执行命令
--privileged \
-v /opt/metagpt/config:/app/metagpt/config \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3
+ metagpt/metagpt:latest
docker exec -it metagpt /bin/bash
$ python startup.py "Write a cli snake game"
@@ -123,7 +123,7 @@ ### 自己构建镜像
```bash
# 您也可以自己构建metagpt镜像
git clone https://github.com/geekan/MetaGPT.git
-cd MetaGPT && docker build -t metagpt:v0.3 .
+cd MetaGPT && docker build -t metagpt:custom .
```
## 配置
diff --git a/docs/README_JA.md b/docs/README_JA.md
index 8d6c2fe84..eab69d912 100644
--- a/docs/README_JA.md
+++ b/docs/README_JA.md
@@ -15,7 +15,7 @@ # MetaGPT: マルチエージェントフレームワーク
-
+
@@ -92,9 +92,9 @@ ### Docker によるインストール
```bash
# ステップ 1: metagpt 公式イメージをダウンロードし、config.yaml を準備する
-docker pull metagpt/metagpt:v0.3.1
+docker pull metagpt/metagpt:latest
mkdir -p /opt/metagpt/{config,workspace}
-docker run --rm metagpt/metagpt:v0.3.1 cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml
+docker run --rm metagpt/metagpt:latest cat /app/metagpt/config/config.yaml > /opt/metagpt/config/key.yaml
vim /opt/metagpt/config/key.yaml # 設定を変更する
# ステップ 2: コンテナで metagpt デモを実行する
@@ -102,7 +102,7 @@ # ステップ 2: コンテナで metagpt デモを実行する
--privileged \
-v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3.1 \
+ metagpt/metagpt:latest \
python startup.py "Write a cli snake game"
# コンテナを起動し、その中でコマンドを実行することもできます
@@ -110,7 +110,7 @@ # コンテナを起動し、その中でコマンドを実行することもで
--privileged \
-v /opt/metagpt/config/key.yaml:/app/metagpt/config/key.yaml \
-v /opt/metagpt/workspace:/app/metagpt/workspace \
- metagpt/metagpt:v0.3.1
+ metagpt/metagpt:latest
docker exec -it metagpt /bin/bash
$ python startup.py "Write a cli snake game"
diff --git a/examples/llm_hello_world.py b/examples/llm_hello_world.py
index d6d24b688..3ba03eea0 100644
--- a/examples/llm_hello_world.py
+++ b/examples/llm_hello_world.py
@@ -7,11 +7,12 @@
"""
import asyncio
-import metagpt.llm as LLM
+from metagpt.llm import LLM, Claude
+from metagpt.logs import logger
async def main():
- llm=LLM.DEFAULT_LLM
+ llm = LLM()
claude = Claude()
logger.info(await claude.aask('你好,请进行自我介绍'))
logger.info(await llm.aask('hello world'))
diff --git a/metagpt/actions/action.py b/metagpt/actions/action.py
index 8e1d5c85d..790295d55 100644
--- a/metagpt/actions/action.py
+++ b/metagpt/actions/action.py
@@ -22,7 +22,7 @@ class Action(ABC):
def __init__(self, name: str = "", context=None, llm: LLM = None):
self.name: str = name
if llm is None:
- llm=LLM.DEFAULT_LLM
+ llm = LLM()
self.llm = llm
self.context = context
self.prefix = ""
diff --git a/metagpt/actions/design_api.py b/metagpt/actions/design_api.py
index f19fcbeaa..75df8b909 100644
--- a/metagpt/actions/design_api.py
+++ b/metagpt/actions/design_api.py
@@ -207,5 +207,11 @@ class WriteDesign(Action):
prompt = prompt_template.format(context=context, format_example=format_example)
# system_design = await self._aask(prompt)
system_design = await self._aask_v1(prompt, "system_design", OUTPUT_MAPPING, format=format)
+ # fix Python package name, we can't system_design.instruct_content.python_package_name = "xxx" since "Python package name" contain space, have to use setattr
+ setattr(
+ system_design.instruct_content,
+ "Python package name",
+ system_design.instruct_content.dict()["Python package name"].strip().strip("'").strip('"'),
+ )
await self._save(context, system_design)
return system_design
diff --git a/metagpt/config.py b/metagpt/config.py
index 146fb957b..ab57ae614 100644
--- a/metagpt/config.py
+++ b/metagpt/config.py
@@ -45,18 +45,8 @@ class Config(metaclass=Singleton):
self.global_proxy = self._get("GLOBAL_PROXY")
self.openai_api_key = self._get("OPENAI_API_KEY")
self.anthropic_api_key = self._get("Anthropic_API_KEY")
-
- #星火大模型相关
- self.xinghuo_appid = self._get("xinghuo_appid")
- self.xinghuo_api_secret = self._get("xinghuo_api_secret")
- self.xinghuo_api_key = self._get("xinghuo_api_key")
- self.domain=self._get("domain")
- self.Spark_url=self._get("Spark_url")
- self.no_api_mode=self._get("no_api_mode")
if (not self.openai_api_key or "YOUR_API_KEY" == self.openai_api_key) and (
not self.anthropic_api_key or "YOUR_API_KEY" == self.anthropic_api_key
- )and (
- not self.xinghuo_api_key or "APIKey" == self.xinghuo_api_key
):
raise NotConfiguredException("Set OPENAI_API_KEY or Anthropic_API_KEY first")
self.openai_api_base = self._get("OPENAI_API_BASE")
@@ -72,6 +62,12 @@ class Config(metaclass=Singleton):
self.deployment_name = self._get("DEPLOYMENT_NAME")
self.deployment_id = self._get("DEPLOYMENT_ID")
+ self.xinghuo_appid=self._get("XINGHUO_APPID")
+ self.xinghuo_api_secret = self._get("XINGHUO_API_SECRET")
+ self.xinghuo_api_key = self._get("XINGHUO_API_KEY")
+ self.domain = self._get("DOMAIN")
+ self.spark_url = self._get("SPARK_URL")
+
self.claude_api_key = self._get("Anthropic_API_KEY")
self.serpapi_api_key = self._get("SERPAPI_API_KEY")
self.serper_api_key = self._get("SERPER_API_KEY")
diff --git a/metagpt/llm.py b/metagpt/llm.py
index 68945e71e..e6f815950 100644
--- a/metagpt/llm.py
+++ b/metagpt/llm.py
@@ -8,9 +8,9 @@
from metagpt.provider.anthropic_api import Claude2 as Claude
from metagpt.provider.openai_api import OpenAIGPTAPI as LLM
-from metagpt.provider.spark_api import Spark
-DEFAULT_LLM = Spark()
+DEFAULT_LLM = LLM()
+CLAUDE_LLM = Claude()
async def ai_func(prompt):
"""使用LLM进行QA
diff --git a/metagpt/management/skill_manager.py b/metagpt/management/skill_manager.py
index 4852e452f..f967a0a94 100644
--- a/metagpt/management/skill_manager.py
+++ b/metagpt/management/skill_manager.py
@@ -8,7 +8,7 @@
from metagpt.actions import Action
from metagpt.const import PROMPT_PATH
from metagpt.document_store.chromadb_store import ChromaStore
-import metagpt.llm as LLM
+from metagpt.llm import LLM
from metagpt.logs import logger
Skill = Action
@@ -18,7 +18,7 @@ class SkillManager:
"""Used to manage all skills"""
def __init__(self):
- self._llm=LLM.DEFAULT_LLM
+ self._llm = LLM()
self._store = ChromaStore('skill_manager')
self._skills: dict[str: Skill] = {}
diff --git a/metagpt/manager.py b/metagpt/manager.py
index 3f6c115f3..9d238c621 100644
--- a/metagpt/manager.py
+++ b/metagpt/manager.py
@@ -5,13 +5,13 @@
@Author : alexanderwu
@File : manager.py
"""
-import metagpt.llm as LLM
+from metagpt.llm import LLM
from metagpt.logs import logger
from metagpt.schema import Message
class Manager:
- def __init__(self, llm: llm=LLM.DEFAULT_LLM):
+ def __init__(self, llm: LLM = LLM()):
self.llm = llm # Large Language Model
self.role_directions = {
"BOSS": "Product Manager",
diff --git a/metagpt/memory/longterm_memory.py b/metagpt/memory/longterm_memory.py
index 1f4698704..f8abea5f3 100644
--- a/metagpt/memory/longterm_memory.py
+++ b/metagpt/memory/longterm_memory.py
@@ -42,21 +42,21 @@ class LongTermMemory(Memory):
# and ignore adding messages from recover repeatedly
self.memory_storage.add(message)
- def remember(self, observed: list[Message], k=0) -> list[Message]:
+ def find_news(self, observed: list[Message], k=0) -> list[Message]:
"""
- remember the most similar k memories from observed Messages, return all when k=0
- 1. remember the short-term memory(stm) news
- 2. integrate the stm news with ltm(long-term memory) news
+ find news (previously unseen messages) from the the most recent k memories, from all memories when k=0
+ 1. find the short-term memory(stm) news
+ 2. furthermore, filter out similar messages based on ltm(long-term memory), get the final news
"""
- stm_news = super(LongTermMemory, self).remember(observed, k=k) # shot-term memory news
+ stm_news = super(LongTermMemory, self).find_news(observed, k=k) # shot-term memory news
if not self.memory_storage.is_initialized:
- # memory_storage hasn't initialized, use default `remember` to get stm_news
+ # memory_storage hasn't initialized, use default `find_news` to get stm_news
return stm_news
ltm_news: list[Message] = []
for mem in stm_news:
- # integrate stm & ltm
- mem_searched = self.memory_storage.search(mem)
+ # filter out messages similar to those seen previously in ltm, only keep fresh news
+ mem_searched = self.memory_storage.search_dissimilar(mem)
if len(mem_searched) > 0:
ltm_news.append(mem)
return ltm_news[-k:]
diff --git a/metagpt/memory/memory.py b/metagpt/memory/memory.py
index 92f0428a7..c818fa707 100644
--- a/metagpt/memory/memory.py
+++ b/metagpt/memory/memory.py
@@ -63,8 +63,8 @@ class Memory:
"""Return the most recent k memories, return all when k=0"""
return self.storage[-k:]
- def remember(self, observed: list[Message], k=0) -> list[Message]:
- """remember the most recent k memories from observed Messages, return all when k=0"""
+ def find_news(self, observed: list[Message], k=0) -> list[Message]:
+ """find news (previously unseen messages) from the the most recent k memories, from all memories when k=0"""
already_observed = self.get(k)
news: list[Message] = []
for i in observed:
diff --git a/metagpt/memory/memory_storage.py b/metagpt/memory/memory_storage.py
index 8b639150c..302d96aa7 100644
--- a/metagpt/memory/memory_storage.py
+++ b/metagpt/memory/memory_storage.py
@@ -74,7 +74,7 @@ class MemoryStorage(FaissStore):
self.persist()
logger.info(f"Agent {self.role_id}'s memory_storage add a message")
- def search(self, message: Message, k=4) -> List[Message]:
+ def search_dissimilar(self, message: Message, k=4) -> List[Message]:
"""search for dissimilar messages"""
if not self.store:
return []
diff --git a/metagpt/prompts/generate_skill.md b/metagpt/prompts/generate_skill.md
index dd28df079..74948cd15 100644
--- a/metagpt/prompts/generate_skill.md
+++ b/metagpt/prompts/generate_skill.md
@@ -9,10 +9,10 @@
```python
from typing import Optional
from abc import ABC
-import metagpt.llm as LLM # 大语言模型,类似GPT
-
+from metagpt.llm import LLM # Large language model, similar to GPT
+n
class Action(ABC):
- def __init__(self, name='', context=None, llm: llm=LLM.DEFAULT_LLM):
+ def __init__(self, name='', context=None, llm: LLM = LLM()):
self.name = name
self.llm = llm
self.context = context
diff --git a/metagpt/provider/SparkApi.py b/metagpt/provider/SparkApi.py
deleted file mode 100644
index 7ce57c22a..000000000
--- a/metagpt/provider/SparkApi.py
+++ /dev/null
@@ -1,138 +0,0 @@
-import _thread as thread
-import base64
-import datetime
-import hashlib
-import hmac
-import json
-from urllib.parse import urlparse
-import ssl
-from datetime import datetime
-from time import mktime
-from urllib.parse import urlencode
-from wsgiref.handlers import format_date_time
-from metagpt.logs import logger
-
-import websocket # 使用websocket_client
-answer = ""
-
-class Ws_Param(object):
- # 初始化
- def __init__(self, appid, apikey, apiSecret, spark_url):
- self.appid = appid
- self.apikey = apikey
- self.apiSecret = apiSecret
- self.host = urlparse(spark_url).netloc
- self.path = urlparse(spark_url).path
- self.spark_url = spark_url
-
- # 生成url
- def create_url(self):
- # 生成RFC1123格式的时间戳
- now = datetime.now()
- date = format_date_time(mktime(now.timetuple()))
-
- # 拼接字符串
- signature_origin = "host: " + self.host + "\n"
- signature_origin += "date: " + date + "\n"
- signature_origin += "GET " + self.path + " HTTP/1.1"
-
- # 进行hmac-sha256进行加密
- signature_sha = hmac.new(self.apiSecret.encode('utf-8'), signature_origin.encode('utf-8'),
- digestmod=hashlib.sha256).digest()
-
- signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8')
-
- authorization_origin = f'api_key="{self.apikey}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"'
-
- authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8')
-
- # 将请求的鉴权参数组合为字典
- v = {
- "authorization": authorization,
- "date": date,
- "host": self.host
- }
- # 拼接鉴权参数,生成url
- url = self.spark_url + '?' + urlencode(v)
- # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致
- return url
-
-
-# 收到websocket错误的处理
-def on_error(ws, error):
- logger.error("### error:"+error)
-
-
-# 收到websocket关闭的处理
-def on_close(ws,one,two):
- logger.error("websocket关闭")
-
-
-# 收到websocket连接建立的处理
-def on_open(ws):
- thread.start_new_thread(run, (ws,))
-
-
-def run(ws, *args):
- data = json.dumps(gen_params(appid=ws.appid, domain= ws.domain,question=ws.question))
- ws.send(data)
-
-
-# 收到websocket消息的处理
-def on_message(ws, message):
- # print(message)
- data = json.loads(message)
- code = data['header']['code']
- if code != 0:
- logger.error(f'请求错误: {code}, {data}')
- ws.close()
- else:
- choices = data["payload"]["choices"]
- status = choices["status"]
- content = choices["text"][0]["content"]
- print(content,end ="")
- global answer
- answer += content
- # print(1)
- if status == 2:
- ws.close()
-
-
-def gen_params(appid, domain,question):
- """
- 通过appid和用户的提问来生成请参数
- """
- data = {
- "header": {
- "app_id": appid,
- "uid": "1234"
- },
- "parameter": {
- "chat": {
- "domain": domain,
- "random_threshold": 0.5,
- "max_tokens": 2048,
- "auditing": "default"
- }
- },
- "payload": {
- "message": {
- "text": question
- }
- }
- }
- return data
-
-
-def main(appid, api_key, api_secret, spark_url,domain, question):
- # print("星火:")
- wsParam = Ws_Param(appid, api_key, api_secret, spark_url)
- websocket.enableTrace(False)
- wsUrl = wsParam.create_url()
- ws = websocket.WebSocketApp(wsUrl, on_message=on_message, on_error=on_error, on_close=on_close, on_open=on_open)
- ws.appid = appid
- ws.question = question
- ws.domain = domain
- ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
-
-
diff --git a/metagpt/provider/spark_api.py b/metagpt/provider/spark_api.py
index e855e019a..db50771d4 100644
--- a/metagpt/provider/spark_api.py
+++ b/metagpt/provider/spark_api.py
@@ -5,54 +5,188 @@
@Author : Leo Xiao
@File : anthropic_api.py
"""
-
-from typing import Optional
-from metagpt.provider import SparkApi
+import _thread as thread
+import base64
+import datetime
+import hashlib
+import hmac
+import json
+import ssl
+from collections import OrderedDict
+import datetime
+from time import mktime
+from urllib.parse import urlencode
+from urllib.parse import urlparse
+from wsgiref.handlers import format_date_time
+import websocket # 使用websocket_client
+import websockets
+from websockets.legacy.server import WebSocketServerProtocol
from metagpt.config import CONFIG
+from metagpt.logs import logger
+from metagpt.provider.base_gpt_api import BaseGPTAPI
-def getlength(text):
- length = 0
- for content in text:
- temp = content["content"]
- leng = len(temp)
- length += leng
- return length
-def checklen(text):
- while (getlength(text) > 8000):
- del text[0]
- return text
-class Spark:
- system_prompt = 'You are a helpful assistant.'
- def _user_msg(self, msg: str) -> dict[str, str]:
- return {"role": "user", "content": msg}
+class SparkAPI(BaseGPTAPI):
- def _assistant_msg(self, msg: str) -> dict[str, str]:
- return {"role": "assistant", "content": msg}
+ def get_choice_text(self, rsp: dict) -> str:
+ return rsp["payload"]["choices"]["text"][-1]["content"]
+ async def acompletion_text(self, messages: list[dict], stream=False) -> str:
+ #尚未实现
+ pass
- def _system_msg(self, msg: str) -> dict[str, str]:
- return {"role": "system", "content": msg}
+ async def acompletion(self, messages: list[dict]):
+ # 尚未实现
+ w = GetMessageFromWeb(messages)
+ return await w.arun()
- def _system_msgs(self, msgs: list[str]) -> list[dict[str, str]]:
- return [self._system_msg(msg) for msg in msgs]
+ def completion(self, messages: list[dict]):
+ w= GetMessageFromWeb(messages)
+ return w.run()
- def _default_system_msg(self):
- return self._system_msg(self.system_prompt)
-
- def ask(self, msg: str):
- message = [self._user_msg(msg)]
- SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message)
- rsp = SparkApi.answer
- return rsp
- async def aask(self, msg: str, system_msgs: Optional[list[str]] = None) -> str:
- if system_msgs:
- message = self._system_msgs(system_msgs) + [self._user_msg(msg)]
+class GetMessageFromWeb:
+ class WsParam(object):
+ """
+ 该类适合讯飞星火大部分接口的调用。
+ 输入 app_id, api_key, api_secret, spark_url以初始化,
+ create_url方法返回接口url
+ """
+
+ # 初始化
+ def __init__(self, app_id, api_key, api_secret, spark_url, message=None):
+ self.app_id = app_id
+ self.api_key = api_key
+ self.api_secret = api_secret
+ self.host = urlparse(spark_url).netloc
+ self.path = urlparse(spark_url).path
+ self.spark_url = spark_url
+ self.message = message
+
+ # 生成url
+ def create_url(self):
+ # 生成RFC1123格式的时间戳
+ now = datetime.datetime.now()
+ date = format_date_time(mktime(now.timetuple()))
+
+ # 拼接字符串
+ signature_origin = "host: " + self.host + "\n"
+ signature_origin += "date: " + date + "\n"
+ signature_origin += "GET " + self.path + " HTTP/1.1"
+
+ # 进行hmac-sha256进行加密
+ signature_sha = hmac.new(self.api_secret.encode('utf-8'), signature_origin.encode('utf-8'),
+ digestmod=hashlib.sha256).digest()
+
+ signature_sha_base64 = base64.b64encode(signature_sha).decode(encoding='utf-8')
+
+ authorization_origin = f'api_key="{self.api_key}", algorithm="hmac-sha256", headers="host date request-line", signature="{signature_sha_base64}"'
+
+ authorization = base64.b64encode(authorization_origin.encode('utf-8')).decode(encoding='utf-8')
+
+ # 将请求的鉴权参数组合为字典
+ v = {
+ "authorization": authorization,
+ "date": date,
+ "host": self.host
+ }
+ # 拼接鉴权参数,生成url
+ url = self.spark_url + '?' + urlencode(v)
+ # 此处打印出建立连接时候的url,参考本demo的时候可取消上方打印的注释,比对相同参数时生成的url与自己代码生成的url是否一致
+ return url
+
+ def __init__(self,text):
+ self.text = text
+ self.ret =None
+ self.xinghuo_appid = CONFIG.xinghuo_appid
+ self.xinghuo_api_secret = CONFIG.xinghuo_api_secret
+ self.xinghuo_api_key = CONFIG.xinghuo_api_key
+ self.domain = CONFIG.domain
+ self.spark_url = CONFIG.spark_url
+
+ def on_message(self, ws, message):
+ logger.info(message)
+ data = json.loads(message)
+ code = data['header']['code']
+
+ if code != 0:
+ ws.close() # 请求错误,则关闭socket
+ logger.critical(f'回答获取失败,响应信息反序列化之后为: {data}')
+ return
else:
- message = [self._user_msg(msg)]
- SparkApi.main(CONFIG.xinghuo_appid,CONFIG.xinghuo_api_key,CONFIG.xinghuo_api_secret,"ws://spark-api.xf-yun.com/v2.1/chat","generalv2",message)
- rsp = SparkApi.answer
- return rsp
+ choices = data["payload"]["choices"]
+ seq = choices["seq"] # 服务端是流式返回,seq为返回的数据序号
+ status = choices["status"] # 服务端是流式返回,status用于判断信息是否传送完毕
+ content = choices["text"][0]["content"] # 本次接收到的回答文本
+ self.ret=data
+ ws.close()
+ logger.info(f"本次通讯关闭")
+
+ # 收到websocket错误的处理
+ def on_error(self, ws, error):
+ # on_message方法处理接收到的信息,出现任何错误,都会调用这个方法
+ logger.critical(f'通讯连接出错,【错误提示: {error}】')
+
+ # 收到websocket关闭的处理
+ def on_close(self, ws, one, two):
+ pass
+ # print("通讯完成")
+
+ # 处理请求数据
+ def gen_params(self):
+
+ data = {
+ "header": {
+ "app_id": self.xinghuo_appid,
+ "uid": "1234"
+ },
+ "parameter": {
+ "chat": {
+ # domain为必传参数
+ "domain": self.domain,
+
+ # 以下为可微调,非必传参数
+ # 注意:官方建议,temperature和top_k修改一个即可
+ "max_tokens": 2048, # 默认2048,模型回答的tokens的最大长度,即允许它输出文本的最长字数
+ "temperature": 0.5, # 取值为[0,1],默认为0.5。取值越高随机性越强、发散性越高,即相同的问题得到的不同答案的可能性越高
+ "top_k": 4, # 取值为[1,6],默认为4。从k个候选中随机选择一个(非等概率)
+ }
+ },
+ "payload": {
+ "message": {
+ "text": self.text
+ }
+ }
+ }
+ return data
+
+ def send(self, ws, *args):
+ data = json.dumps(self.gen_params())
+ logger.info(f"开始尝试建立通讯...")
+ logger.info(f"此次请求的请求头数据为:{data}")
+ ws.send(data)
+
+ # 收到websocket连接建立的处理
+ def on_open(self, ws):
+ thread.start_new_thread(self.send, (ws,))
+
+ # 处理收到的 websocket消息,出现任何错误,调用on_error方法
+ def run(self):
+ return self._run(self.text)
+ def _run(self, text_list):
+
+ ws_param = self.WsParam(
+ self.xinghuo_appid,
+ self.xinghuo_api_key,
+ self.xinghuo_api_secret,
+ self.spark_url,
+ text_list)
+ ws_url = ws_param.create_url()
+
+ websocket.enableTrace(True) # 默认禁用 WebSocket 的跟踪功能
+ ws = websocket.WebSocketApp(ws_url, on_message=self.on_message, on_error=self.on_error, on_close=self.on_close,
+ on_open=self.on_open)
+ ws.run_forever(sslopt={"cert_reqs": ssl.CERT_NONE})
+ return self.ret
diff --git a/metagpt/reflect_and_retrieve/GA_memory_storage.py b/metagpt/reflect_and_retrieve/GA_memory_storage.py
deleted file mode 100644
index c5ca24729..000000000
--- a/metagpt/reflect_and_retrieve/GA_memory_storage.py
+++ /dev/null
@@ -1,140 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# @Desc : 对应 GA中 concept node 实现 & AssociativeMemory 实现
-# author: didi
-# Date:9.24
-
-from run_gpt import run_gpt_prompt_chat_poignancy, run_gpt_random_concept
-from gpt_structure import embedding
-from retrive import agent_retrive
-import time
-import json
-
-# Meomry_basic 类
-
-
-class Memory_basic:
- def __init__(
- self, created_time, accessed_time,
- description,
- poignancy,
- embedding_key=None) -> None:
- """
- Initializes a basic memory object.
-
- Args:
- created_time (datetime): The time when the memory was created.
- accessed_time (datetime): The time when the memory was last accessed.
- description (str): The description of the memory.
- poignancy (int): The level of emotional intensity associated with the memory.
- embedding_key (Optional[str]): The embedding key for the memory (to avoid redundant vectorization).
-
- Returns:
- None
- """
- self.created_time = created_time # 记忆创建时间
- self.accessed_time = accessed_time # 记忆上次调用时间
- self.description = description # 记忆描述
- self.poignancy = poignancy # 记忆心酸程度
- if embedding_key is None: # 记忆emmbeding key(避免重复向量化花钱)
- self.embedding_key = embedding(self.description)
- else:
- self.embedding_key = embedding_key
-
-# Agent Memory 类
-
-
-class Agent_memory(object):
-
- def __init__(self, name: str, iss: str,
- memory_forget: float = 0.99,
- memories_list: list[Memory_basic] = [], memory_path: str = None) -> None:
- '''
- 定义Agent,替换原有Agent使用,需要其他人根据需求补全功能。
- Attributes:
- name:agent name
- iss:agent iss(性格特征)
- memory_forget:agent 记忆遗忘速率(计算近因性)
- memories_list:agent 记忆JSON文件存储地址
- memory_path:记忆存储地址
- '''
- self.name = name # agent name
- self.iss = iss # agent iss(性格特征)
- self.memories_list = memories_list # agent 记忆列表
- self.concept_forget = memory_forget # agent 记忆遗忘速率(计算近因性)
- self.memory_path = memory_path # agent 记忆JSON文件存储地址
- # agent 当前时间(现在使用的time.time(),等到环境搭好之后使用游戏内时间)
- self.curr_time = time.time()
- # 若给到memory_path 进行记忆初始化
- if memory_path:
- self.memories_list = self.memory_load(memory_path)
-
- def memory_save(self, PATH: str) -> None:
- '''
- 将Memory存储在指定PATH的JSON文件中,命名为"{self.name}'s memory
- Args:
- PATH:str
- Return:
- None
- '''
- with open(PATH, 'w') as file:
- memory_data = [mem.__dict__ for mem in self.memories_list]
- json.dump(memory_data, file)
-
- def memory_load(self, PATH: str) -> list[Memory_basic]:
- """
- 将Memory从指定路径的JSON文件中Load出来,返回一个记忆列表;如果load失败,返回一个空列表。
- Args:
- PATH:str
- Return:
- List(Meomry_basic)
- """
- try:
- with open(PATH, 'r') as file:
- memory_data = json.load(file)
- self.memories_list = [Memory_basic(
- **mem) for mem in memory_data]
- return self.memories_list
- except OSError:
- return []
-
-
-if __name__ == "__main__":
- # 例子,构建John Agent,实现retrive
- John_iss = """John Lin is a pharmacy shopkeeper at the Willow Market and Pharmacy who loves to help people.
- He is always looking for ways to make the process of getting medication easier for his customers;
- John Lin is living with his wife, Mei Lin, who is a college professor, and son,
- Eddy Lin, who is a student studying music theory; John Lin loves his family very much;
- John Lin has known the old couple next-door,
- Sam Moore and Jennifer Moore, for a few years;
- John Lin thinks Sam Moore is a kind and nice man;
- John Lin knows his neighbor, Yuriko Yamamoto, well;
- John Lin knows of his neighbors, Tamara Taylor and Carmen Ortiz,
- but has not met them before;
- John Lin and Tom Moreno are colleagues at The Willows Market and Pharmacy;
- John Lin and Tom Moreno are friends and like to discuss local politics together;
- John Lin knows the Moreno family somewhat well — the husband Tom Moreno and the wife Jane Moreno."""
- John = Agent_memory(
- "John", John_iss, memory_path="agent_memories/John_memory.json")
-
- for i in range(3):
- memory = run_gpt_random_concept()
- curr_time = time.time()
- poignancy = run_gpt_prompt_chat_poignancy(John, memory)
- M = Memory_basic(curr_time, curr_time, memory, poignancy)
- John.memories_list.append(M)
-
- John.memory_save(John.memory_path)
-
- for i in range(len(John.memories_list)):
- print(f"John记忆为:{John.memories_list[i].description}")
- print(f"心酸程度为:{John.memories_list[i].poignancy}")
- query = """
- How has John's personal connection with his neighbors,
- such as the Moores and Yuriko, influenced his role as a pharmacy shopkeeper?
- """
-
- Top_v = agent_retrive(John, query, 10, 3)
- print(f"John的相关信息:{Top_v}")
-
- # John的相关信息:{'Had a friendly chat with Yuriko about her garden.': 2.4992317730827667, 'Helped Mrs. Moore carry groceries into her house.': 1.957656720441911, 'Discussed local politics with Tom Moreno.': 1.9458268038234035}
diff --git a/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt b/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt
deleted file mode 100644
index 572dd8a05..000000000
--- a/metagpt/reflect_and_retrieve/Prompt_template/poignancy_chat_v1.txt
+++ /dev/null
@@ -1,17 +0,0 @@
-poignancy_chat_v1.txt
-
-!!: agent name
-!!: iss
-!!: name
-!!: event description
-
-###
-Here is a brief description of !!.
-!!
-
-On the scale of 1 to 10, where 1 is purely mundane (e.g., routine morning greetings) and 10 is extremely poignant (e.g., a conversation about breaking up, a fight), rate the likely poignancy of the following conversation for !!.
-
-Conversation:
-!!
-
-Rate (return a number between 1 to 10):
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store b/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store
deleted file mode 100644
index a5b28df1c..000000000
Binary files a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/._.DS_Store and /dev/null differ
diff --git a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store b/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store
deleted file mode 100644
index a5b28df1c..000000000
Binary files a/metagpt/reflect_and_retrieve/__MACOSX/GA_memory_stream/agent_memories/._.DS_Store and /dev/null differ
diff --git a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json b/metagpt/reflect_and_retrieve/agent_memories/John_memory.json
deleted file mode 100644
index 959e07940..000000000
--- a/metagpt/reflect_and_retrieve/agent_memories/John_memory.json
+++ /dev/null
@@ -1 +0,0 @@
-[{"created_time": 1695640634.6113422, "accessed_time": 1695640634.6113422, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.00822820607572794, -0.005863511469215155, 0.012651615776121616, 0.008660569787025452, 0.016709178686141968, 0.02378663420677185, -0.00028955869493074715, -0.003728301962837577, -0.02039424516260624, -0.02626108191907406, -0.00543114822357893, -0.023081548511981964, 0.009146146476268768, -0.009931053034961224, -0.019183628261089325, -0.002715574111789465, 0.0278841070830822, -0.0023779980838298798, 0.04334275797009468, -0.033817462623119354, -0.015006332658231258, 0.025702334940433502, 0.0026091462932527065, 0.010509754531085491, -0.02689964883029461, 0.008168340660631657, 0.011653854511678219, -0.012871122919023037, -0.008540838025510311, -0.00470278225839138, 0.002361368853598833, -0.004499904345721006, 0.01017051562666893, -0.004928941838443279, -0.030598018318414688, -0.039085641503334045, 0.013389959000051022, -0.010316853411495686, 0.007197186350822449, -0.004649568349123001, 0.016230253502726555, -0.011367829516530037, 0.002165142446756363, -0.023041637614369392, -0.014301247894763947, 0.002025455702096224, -0.019329965114593506, -8.953869837569073e-05, -0.010203774087131023, 0.006492101587355137, 0.014434282667934895, -0.008234858512878418, -0.02192414551973343, -0.00638899952173233, -0.025156892836093903, -0.007124016992747784, 0.0026972817722707987, 0.00918605737388134, 0.008480972610414028, 0.0020803327206522226, -0.0004901503561995924, 0.009046371094882488, -2.13713228731649e-05, -0.0008855133200995624, -0.005278158001601696, 0.0032576911617070436, -0.002263255650177598, -0.0067282384261488914, 0.00375490915030241, 0.0045331628061831, 0.03198157995939255, 0.019622642546892166, -0.005384586285799742, -0.0164031982421875, 0.014420979656279087, 0.006006523966789246, -0.018505150452256203, -0.007416693493723869, -0.008441061712801456, 0.0014267988735809922, 0.00336079322732985, -0.028655709698796272, -0.0032892869785428047, -0.0005071954219602048, 0.01654953695833683, 0.022389767691493034, -0.017134889960289, 0.01915702037513256, 0.013190406374633312, -0.029986059293150902, 0.025196803733706474, 0.02620786800980568, 0.007835753262043, 0.007815797813236713, -0.009897793643176556, 0.0020038376096636057, 0.010103997774422169, 0.00301157683134079, 0.01083568949252367, -0.02132548950612545, -0.016137128695845604, 0.023214584216475487, -0.0036850657779723406, -0.012964247725903988, -0.034349601715803146, 0.006621810141950846, 0.019236842170357704, -0.017547298222780228, 0.0212323646992445, -0.012372242286801338, -0.027405181899666786, 0.02068692073225975, -0.010183818638324738, -0.035201024264097214, -0.018199170008301735, -0.018438631668686867, 0.030571412295103073, 0.000791141705121845, -0.024691270664334297, -0.013217013329267502, 0.020327726379036903, 0.00999756995588541, 0.0183189008384943, -0.004446690436452627, 0.019223537296056747, -0.007090758066624403, 0.006455516908317804, 0.01388883963227272, -0.02595510147511959, -0.0012912696693092585, 0.010409978218376637, 0.011946531012654305, 0.02374672330915928, 0.0032693317625671625, -0.021538345143198967, 0.021604862064123154, -0.026713401079177856, 0.007064151111990213, -0.0012023026356473565, -0.02212369814515114, 0.005022066179662943, 0.021937448531389236, -0.02314806543290615, -0.003987720236182213, 0.019329965114593506, 0.03461567312479019, 0.01179354079067707, 0.012824560515582561, -0.011547425761818886, 0.001461720559746027, 0.017746850848197937, -0.0036385036073625088, 0.016429806128144264, 0.003111352911219001, 0.02876213751733303, 0.0017094979993999004, 0.0016961945220828056, 0.013848929665982723, -0.0390058234333992, 0.011720371432602406, 0.002891845302656293, -0.0008688839734531939, 0.02360038459300995, -0.011866710148751736, -0.016882123425602913, 0.02630099281668663, 0.012531884014606476, 0.021245667710900307, -0.01596418395638466, 0.0011931564658880234, 0.009265878237783909, 0.021604862064123154, -0.04033616930246353, 0.0031828591600060463, 0.005341349635273218, 0.006206076592206955, -0.03283300623297691, -0.00270227063447237, 0.013955357484519482, -0.025542693212628365, -0.0364515520632267, -0.0025309883058071136, 0.004942245315760374, 0.01553847175091505, -0.008188296109437943, -0.016097217798233032, 0.012824560515582561, 0.007090758066624403, 0.008055261336266994, 0.012964247725903988, 0.007110713515430689, 0.043475791811943054, -0.010330157354474068, -0.011347874067723751, -0.6602786183357239, -0.03940492495894432, 0.02030112035572529, 0.011746978387236595, 0.028629103675484657, 0.0010892229620367289, 0.0070708030834794044, 0.005557531490921974, -0.0026623602025210857, -0.003788167843595147, -0.01475356612354517, 0.010509754531085491, -0.004024304449558258, 0.012372242286801338, -0.0027388553135097027, -0.014447586610913277, -0.0020171410869807005, -0.02777767926454544, 0.011840103194117546, 0.009033067151904106, -0.00862065888941288, 0.02772446535527706, -0.018438631668686867, -0.010123953223228455, -0.006595203187316656, -0.013097282499074936, -0.0049156383611261845, -0.045684173703193665, -0.009957659989595413, 0.04536489024758339, -0.042331695556640625, 0.027857501059770584, -0.013742501847445965, -0.017108283936977386, 0.05502321943640709, -0.00876699760556221, -0.00369504326954484, 0.00965833105146885, -0.0010418292367830873, 0.01807943731546402, -0.033764246851205826, 0.005407867021858692, 0.030864087864756584, 0.004277070984244347, 0.0021767830476164818, -0.0008189958753064275, 0.028974993154406548, -0.005374608561396599, -0.0035121203400194645, -0.0047726258635520935, 0.02772446535527706, 0.004802558571100235, -0.0021618164610117674, 0.006911161355674267, 0.026606973260641098, -0.0054644071497023106, 0.028735531494021416, -0.028363032266497612, -0.0057504321448504925, -0.004666198045015335, -0.00520831486210227, 0.001957275439053774, -0.024811001494526863, 0.0011407739948481321, -0.02107272297143936, 0.007749280892312527, -0.033178895711898804, -0.01128135621547699, -0.006212728098034859, -0.005095235072076321, 0.013589511625468731, 0.015139367431402206, -0.01226581446826458, 0.007849057205021381, -0.004027630668133497, 0.031263191252946854, 0.009465430863201618, 0.0001706587936496362, -0.0004527342680376023, 0.01106184907257557, 0.017121586948633194, -0.008241510018706322, -0.020513975992798805, 0.011268053203821182, 0.025941798463463783, -0.02216360904276371, -0.015418740920722485, 0.01470035221427679, 0.018252383917570114, -0.02502385713160038, 0.02604822628200054, 0.006229357328265905, -0.011447650380432606, 0.0026124720461666584, 0.0013203710550442338, 0.014474193565547466, -0.018784523010253906, 0.012472018599510193, 0.02793732099235058, -0.028363032266497612, 0.01080908253788948, -0.012199296616017818, 0.021152542904019356, 0.005890118423849344, 0.0037183244712650776, -0.0008339622872881591, -0.03206140175461769, 0.025742245838046074, 0.013729197904467583, -0.01591097004711628, 0.026580365374684334, 0.03466888517141342, -0.009585161693394184, -0.0010725936153903604, -0.01649632304906845, -0.02531653456389904, 0.04408775269985199, 0.036318518221378326, 0.02511698193848133, -0.005158426705747843, 0.0195029117166996, -0.004722737707197666, 0.025995012372732162, 0.004486600868403912, 0.015139367431402206, 0.0075630322098731995, 0.0007932203589007258, -0.02427886240184307, -0.011394436471164227, -0.0024977296125143766, -0.011480908840894699, -0.004612984135746956, 0.0188643429428339, -0.026287689805030823, 0.009232619777321815, -0.009651679545640945, -0.007835753262043, -0.019223537296056747, 0.018398720771074295, -0.00960511714220047, -0.03368442878127098, -0.010935465805232525, 0.012052958831191063, 0.024199042469263077, -0.0036717623006552458, -0.016483020037412643, 0.007596290670335293, 0.002910137642174959, -0.042092230170965195, 0.0007433323189616203, 0.007370131555944681, -0.0051251682452857494, -0.011534122750163078, 0.02300172857940197, -0.006891205906867981, 0.006522034294903278, -0.019329965114593506, -0.009884490631520748, -0.014580621384084225, 0.004127406515181065, 0.0148999048396945, 0.01142769493162632, -0.029533740133047104, 0.006515382323414087, 0.005813623778522015, 0.0015623281942680478, -0.0006285897106863558, 0.020380940288305283, 0.0031063640490174294, -0.024558236822485924, -0.015032939612865448, -0.014859993942081928, -0.01620364561676979, -0.0085674449801445, 0.011154972948133945, -0.01283121295273304, 0.004044259898364544, -0.005747105926275253, 0.006957723293453455, -0.0008401983068324625, 0.003911225125193596, 0.006385673303157091, -0.007310265675187111, -0.014075088314712048, 0.016882123425602913, -0.00232644728384912, 0.004795907065272331, 0.038447074592113495, 0.011241446249186993, 0.009472082369029522, 0.005833578761667013, 0.007596290670335293, -0.008540838025510311, 0.014314551837742329, -0.012072914279997349, -0.014793477021157742, 0.020261209458112717, 0.020713528618216515, -0.00591007387265563, 0.01293098833411932, -0.004469971638172865, -0.002166805323213339, 0.028150176629424095, -0.014075088314712048, -0.002442852593958378, -0.012245859019458294, 0.017560601234436035, -0.018851039931178093, 0.022323250770568848, 0.004390150308609009, 0.005560857243835926, -0.014314551837742329, -0.014620531350374222, -0.008680525235831738, 0.02212369814515114, 0.0040642148815095425, -0.005188359878957272, 0.01406178530305624, -0.023174673318862915, 0.007243748288601637, -0.0014525743899866939, -0.0030830830801278353, -0.012132779695093632, -0.028256604447960854, -0.003538727294653654, -0.00039723378722555935, -0.004476623144000769, 0.014101695269346237, 0.004599680192768574, 0.007037544157356024, -0.020154781639575958, -0.011620595119893551, 0.0317155122756958, 0.007296962197870016, 0.0018708027200773358, 0.0012721458915621042, 0.024172434583306313, -0.027298754081130028, 0.03437620773911476, 0.032088007777929306, 0.006315830163657665, -0.010256987996399403, 0.01044323667883873, -0.015325616113841534, 0.026274384930729866, 0.020035050809383392, 0.038846179842948914, -0.0195029117166996, -0.010995331220328808, 0.009312440641224384, -0.015684811398386955, -0.00817499216645956, -0.0021817716769874096, -0.00224163755774498, 0.0066617210395634174, -0.02409261465072632, -0.014341158792376518, 0.013370003551244736, 0.015684811398386955, 0.031023729592561722, 0.018345506861805916, 0.024066006764769554, 0.01406178530305624, 0.004040934145450592, -0.0015772946644574404, 0.007582987193018198, 0.020420851185917854, -0.024119220674037933, -0.014474193565547466, -0.014913207851350307, 0.012432107701897621, -0.00641560647636652, 0.00023759195755701512, -0.01172702293843031, -0.016083914786577225, 0.01650962606072426, -0.0030298689380288124, -0.01388883963227272, -0.02068692073225975, 0.00703089265152812, -0.008753693662583828, -0.027179023250937462, 0.0031678928062319756, 0.006515382323414087, 0.00417396891862154, -0.014208123087882996, 0.007124016992747784, -1.6460466213175096e-05, -0.007769235875457525, 0.013137192465364933, 0.015671506524086, -0.002151838969439268, -0.010928814299404621, 0.019635945558547974, 0.002065366366878152, -0.004509882070124149, 0.00459302868694067, -0.024465112015604973, 0.011474257335066795, -0.018797826021909714, 0.004519859328866005, -0.015698114410042763, -0.005328046157956123, -0.00389126967638731, -0.0005757915205322206, 0.00694441981613636, -0.01897077076137066, -0.006289223209023476, -0.017134889960289, -0.00448327511548996, -0.00131704518571496, -0.006811385042965412, -0.020274512469768524, -0.005624048877507448, 0.0030381837859749794, 0.008953246288001537, -0.0013976974878460169, -0.023121459409594536, 0.014540710486471653, 0.00026128877652809024, -0.02857588790357113, -0.007742628920823336, -0.03477531298995018, 0.007197186350822449, 0.1261170506477356, -0.009392261505126953, 0.012072914279997349, 0.02389306202530861, 0.014221427030861378, -0.018691398203372955, -0.007855708710849285, -0.025343142449855804, 0.005657307803630829, 0.013310138136148453, -0.0035021428484469652, 0.006685001775622368, 0.018997378647327423, 0.0005629037623293698, -0.00814838521182537, -0.019290056079626083, -0.015498561784625053, -0.008115126751363277, 0.0025110330898314714, -0.015086153522133827, 0.012691525742411613, -0.005690566264092922, -0.007183882873505354, 0.02689964883029461, -0.0006369043840095401, 0.020407548174262047, 0.012718132697045803, 0.021538345143198967, 0.027351967990398407, -0.019981836900115013, 0.013057371601462364, 0.025502784177660942, -0.0021036136895418167, -0.008833514526486397, -0.028602495789527893, 0.0030248803086578846, 0.025210106745362282, 0.013476431369781494, 0.000791141705121845, -0.012578446418046951, 0.010250336490571499, 0.023041637614369392, 0.02143191732466221, -0.009199360385537148, 0.02128557860851288, -0.00943217147141695, 0.007749280892312527, 0.02230994589626789, -0.01611052267253399, 0.0025309883058071136, 0.022975120693445206, 0.01571141742169857, 0.006402302999049425, -0.02482430636882782, -0.003778190119192004, 0.042970262467861176, 0.0027105852495878935, -0.01753399521112442, -0.00532139465212822, 0.017427567392587662, 0.023360922932624817, -0.028043748810887337, -0.015644900500774384, -0.005178382154554129, -0.011720371432602406, -0.01293098833411932, -0.0139420535415411, -0.010163863189518452, -0.006452190689742565, 0.002645730972290039, -0.01846523955464363, -0.005318068899214268, -0.02777767926454544, 0.006122929509729147, 0.02812357060611248, 0.011953182518482208, 0.02783089317381382, -0.011181579902768135, -0.0026906300336122513, 0.0031845220364630222, -0.016323378309607506, -0.009771410375833511, 0.0013594500487670302, -0.008500928059220314, -0.030252128839492798, 0.003714998485520482, 0.012871122919023037, 0.009465430863201618, -0.005510969087481499, 0.0027089223731309175, 0.01565820351243019, -0.005647330079227686, 0.029773201793432236, 0.0017111609922721982, 0.005371282808482647, 0.0077625843696296215, -0.010968724265694618, 0.029640167951583862, 0.002793732099235058, 0.019476303830742836, 0.0061063002794981, -0.02462475374341011, -0.014221427030861378, -0.012984203174710274, 0.015086153522133827, -0.004020978696644306, 0.02113923989236355, 0.019662553444504738, -0.0006069715600460768, 0.01287777442485094, 0.018704701215028763, -0.0187712199985981, 0.010829037986695766, 0.014154909178614616, -0.0027238887269049883, 0.01669587567448616, -0.00031803647289052606, 0.022961817681789398, 0.002008826471865177, -0.022961817681789398, 0.018345506861805916, -0.027644645422697067, 0.03482852876186371, -0.0013527983101084828, -0.007602942641824484, 0.012611704878509045, -0.01654953695833683, -0.017573906108736992, -0.009618421085178852, -0.020021747797727585, -0.019635945558547974, -0.003947809804230928, -0.015312313102185726, -0.011933227069675922, -0.019050592556595802, -0.018052831292152405, -0.003871314460411668, 0.01251192856580019, -0.007516469806432724, -0.024252256378531456, -0.036877263337373734, 0.0004801727191079408, 0.017427567392587662, -0.026966167613863945, -0.02054058387875557, -0.029719987884163857, -0.006685001775622368, -0.009259226731956005, 0.025529390200972557, 0.030571412295103073, -0.012472018599510193, 0.00930578913539648, -0.00652536004781723, 0.007742628920823336, -2.9309243473107927e-05, -0.023267798125743866, -0.009392261505126953, 0.019196931272745132, 0.01470035221427679, 0.01287777442485094, 0.0019173650071024895, 0.010270291939377785, 0.014048481360077858, 0.004845794755965471, 0.01053636148571968, -0.0036052449140697718, 0.007283658720552921, -0.009585161693394184, -0.026327598839998245, 0.0005969939520582557, 0.004293700214475393, 0.021112632006406784, -0.011853406205773354, -0.01251192856580019, -0.03373764082789421, 0.015631595626473427, -0.006708282977342606, 0.0087936045601964, -0.012957596220076084, -0.006056412123143673, -0.013795715756714344, 0.0024777743965387344, -0.003591941436752677, 0.000335081567754969, 0.024957340210676193, 0.0007366805803030729, 0.009957659989595413, -0.008727086707949638, 0.03163569048047066, -0.0280703566968441, 0.0001236808457178995, -0.011800192296504974, 0.009106236509978771, -0.015897667035460472, 0.002299840096384287, -0.001229741028510034, 0.009339047595858574, -0.015831148251891136, -0.008826863020658493, 0.0016512952279299498, 0.01921023428440094, -0.006402302999049425, 0.02389306202530861, -0.0062925489619374275, 0.004237160552293062, 0.01935657300055027, 0.01277799904346466, -0.016882123425602913, 0.0076960669830441475, -0.032034795731306076, -0.018651487305760384, -0.001671250443905592, -0.002958362689241767, -0.011633899062871933, -0.022788872942328453, -0.011713719926774502, -0.0177734587341547, 0.01470035221427679, 0.008121778257191181, 0.004077518358826637, -0.00028623282560147345, 0.0005990726058371365, 0.027857501059770584, 0.020274512469768524, 0.0044134315103292465, -0.00015028782945591956, -0.012199296616017818, -0.01709498092532158, 0.039670996367931366, -0.010982028208673, -0.01487329788506031, 0.004509882070124149, 0.02639411762356758, -0.013143844902515411, -0.035440489649772644, 0.019742373377084732, 0.03988385200500488, -0.01979558728635311, -0.025396356359124184, -0.015884362161159515, 0.016775695607066154, 0.02241637371480465, -0.01631007343530655, -0.00246280780993402, 0.0006290054880082607, 0.020673617720603943, -0.006385673303157091, -0.015937576070427895, -0.01509945746511221, 0.030651232227683067, -0.025995012372732162, 0.028096962720155716, -0.0015856092795729637, 0.02772446535527706, -0.021019509062170982, 0.0029068118892610073, -0.01571141742169857, -0.022642534226179123, -0.01734774559736252, 0.013742501847445965, 0.002535977168008685, 0.023520564660429955, -0.012664918787777424, 0.016376592218875885, 0.002426223363727331, 4.812120459973812e-05, 0.0018308922881260514, -0.012691525742411613, -0.004127406515181065, 0.024318773299455643, -0.018584970384836197, -2.904940993175842e-05, -0.022389767691493034, 0.010982028208673, 0.012591749429702759, -0.009438823908567429, -0.012817909009754658, 0.0008214903064072132, -0.00215516472235322, -0.020021747797727585, 0.022975120693445206, -0.0011249760864302516, 0.010762520134449005, 0.006428909953683615, -0.015525168739259243, -0.010476495139300823, -0.009558554738759995, -0.0018292294116690755, 1.1156610071338946e-06, -0.027059290558099747, -0.016735786572098732, -0.027857501059770584, -0.019236842170357704, 0.019396483898162842, -0.0011183243477717042, -0.01960933953523636, 0.017573906108736992, 0.01182014774531126, -0.026926256716251373, 0.007815797813236713, -0.009225968271493912, 0.001580620533786714, -0.018305597826838493, -0.002123568905517459, -0.006741541903465986, -0.0256092119961977, 0.018145956099033356, -0.017706939950585365, -0.03216782957315445, -0.018797826021909714, 0.02471787855029106, 0.008135082200169563, -0.01293098833411932, -0.0170417670160532, 0.007104061543941498, -0.017693636938929558, 0.00940556451678276, -0.029294276610016823, -0.026088137179613113, 0.028017142787575722, -0.0019273426150903106, 0.005504317581653595, 0.018212473019957542, -0.036478158086538315, 0.015498561784625053, 0.020700225606560707, 0.0039278543554246426, 0.02157825417816639, -0.02211039513349533, -0.017813367769122124, -0.020620403811335564, -0.010543012991547585, -0.008194947615265846, -0.020607100799679756, 0.011274704709649086, 0.010296898894011974, -0.017560601234436035, 0.012026351876556873, 0.004207227379083633, -0.0015656540635973215, 0.01277799904346466, 0.024864215403795242, 0.002692293142899871, 0.017148194834589958, 0.001515766023658216, 0.0015407099854201078, -0.02048736996948719, -0.006990982219576836, -0.028363032266497612, -0.007862360216677189, 0.007596290670335293, 0.02265583723783493, -0.011321267113089561, -0.03453585132956505, -0.03073105402290821, -0.01674908958375454, -0.03256693482398987, -0.017693636938929558, -0.01145430188626051, 0.004127406515181065, -0.007250400260090828, -0.02551608718931675, 0.009571858681738377, 0.017201408743858337, -0.0188643429428339, 0.020021747797727585, -0.014966421760618687, -0.02117915078997612, 0.003984394017606974, -0.03054480440914631, 0.022150304168462753, -0.015285706147551537, -0.02674000710248947, -0.02227003686130047, -0.018651487305760384, -0.02127227559685707, -0.0020620403811335564, 0.0019273426150903106, -0.010868947952985764, 0.005028717685490847, -0.01837211474776268, 0.007237096782773733, 0.009139494970440865, 0.019928622990846634, 0.01620364561676979, -0.011028590612113476, -0.013396610505878925, 0.0066517433151602745, 0.004366869572550058, -0.007795842830091715, -0.010103997774422169, 0.01629677042365074, 0.005727150943130255, 0.008813560009002686, -0.007516469806432724, -0.032194435596466064, -0.005820275284349918, -0.00015756316133774817, 0.036371730268001556, -0.0139420535415411, -0.024371987208724022, 0.02093968726694584, 0.006222705822438002, -0.014128302223980427, -0.013017461635172367, 0.012185993604362011, -0.002667349064722657, 0.006262616254389286, 0.025822067633271217, -0.012851167470216751, 0.013396610505878925, -0.02595510147511959, -0.005131819751113653, -0.030012665316462517, -0.013675983995199203, -0.005427822470664978, -0.013729197904467583, -0.013981964439153671, 0.008627311326563358, 0.010409978218376637, -0.011953182518482208, 0.002033770550042391, -0.020952990278601646, -0.011055197566747665, -0.012052958831191063, -0.01553847175091505, 0.002067029243335128, -0.018837736919522285, -0.021857628598809242, 0.01822577603161335, -0.011075152084231377, -0.012518581002950668, 0.022482892498373985, 0.012545187957584858, -0.023041637614369392, 0.019143717363476753, 0.24946697056293488, -0.018106045201420784, 0.02176450379192829, 0.025396356359124184, 0.00021004957670811564, 0.019023984670639038, 0.02892177924513817, 0.008846818469464779, 0.008660569787025452, 0.018212473019957542, -0.03256693482398987, 0.0014974736841395497, 0.018292292952537537, -0.004094148054718971, 0.005703869741410017, -0.022043876349925995, -0.016083914786577225, -0.023387528955936432, -0.009585161693394184, -0.006904509384185076, 0.01204630732536316, -0.014979725703597069, -0.0035254238173365593, 0.004646242596209049, 0.028336426243185997, 0.01995522901415825, -0.0399104580283165, 0.0028752160724252462, 0.008853469975292683, -0.009053022600710392, -0.009704893454909325, 0.003152926219627261, -0.001339494832791388, -0.01728122867643833, 0.02709920145571232, -0.014487496577203274, 0.02230994589626789, 0.005081931594759226, 0.025649121031165123, 0.0038413817528635263, 0.016137128695845604, 0.002880204701796174, 0.011620595119893551, -0.008747042156755924, -0.004450016189366579, 0.0048391432501375675, -0.022536106407642365, -0.013809018768370152, 0.002065366366878152, 0.02048736996948719, -0.015205885283648968, -0.011414390988647938, 0.026912953704595566, 0.008454365655779839, 0.007875664159655571, 0.0002402942191110924, 0.018145956099033356, -0.010503102093935013, -0.022815478965640068, -0.010496450588107109, -0.008660569787025452, 0.04214544594287872, -0.0025891910772770643, 0.010822386480867863, -0.034748706966638565, 0.01846523955464363, -0.008015350438654423, 0.0008198273717425764, 0.01729453168809414, -0.0042870487086474895, 0.008633962832391262, 0.008627311326563358, -0.0057404544204473495, 0.004350239876657724, -0.036318518221378326, -0.025210106745362282, 0.025436265394091606, 0.0029633515514433384, 0.045045606791973114, 0.0029633515514433384, -0.010948769748210907, 0.026221171021461487, -0.0072703552432358265, 0.003801471320912242, -0.004975503776222467, -0.03738279640674591, 0.0027338664513081312, 0.021711289882659912, 0.019276751205325127, -0.027804287150502205, -0.003418995998799801, -0.011500864289700985, -0.002088647335767746, -0.020620403811335564, -0.006844643969088793, 0.01061618234962225, -0.009684938006103039, 0.024052703753113747, -0.022735659033060074, 0.01046984363347292, -0.006455516908317804, -0.027179023250937462, 0.02876213751733303, 0.02684643492102623, -0.0355469174683094, 0.026314295828342438, 0.01391544658690691, 0.01576463133096695, -0.0056074196472764015, -0.026287689805030823, 0.014607228338718414, -0.005284809973090887, 0.028043748810887337, 0.017693636938929558, 0.010190470144152641, 0.008893380872905254, -0.007543076761066914, -0.027351967990398407, 0.027272148057818413, 0.0011682123877108097, -0.00014425968402065337, -0.024837609380483627, -0.0326201468706131, 0.014620531350374222, -0.010782475583255291, -0.021697986871004105, -0.03975081816315651, 0.0024245604872703552, -0.015724720433354378, -0.021405309438705444, 0.037515830248594284, 0.011693764477968216, 0.012099521234631538, 0.014447586610913277, -0.003778190119192004, 0.006319155916571617, 0.01833220385015011, -0.003581963712349534, 0.013981964439153671, 0.00680805929005146, 0.015897667035460472, -0.008115126751363277, -0.012252510525286198, -0.027511609718203545, 0.013755804859101772, -0.02374672330915928, 0.010915510356426239, 0.0012289095902815461, 0.007842405699193478, -0.015551775693893433, -0.016163736581802368, 0.003310905070975423, -0.01935657300055027, -0.007217141333967447, 0.031396228820085526, -0.024212345480918884, -0.03743601217865944, 0.0037083467468619347, 0.00580032030120492, 0.016336681321263313, -0.023334315046668053, 0.001988871255889535, 0.040815096348524094, -0.02059379778802395, 0.01103524211794138, -0.009645028039813042, -0.17092318832874298, 0.016376592218875885, 0.032433900982141495, -0.01773354783654213, 0.016270164400339127, 0.020713528618216515, -0.010210425592958927, -0.009006460197269917, -0.013343396596610546, 0.017361050471663475, 0.02783089317381382, 0.029959451407194138, -0.017693636938929558, -0.026620276272296906, -0.0015689799329265952, 0.036824051290750504, -0.000253181962762028, -0.0044899266213178635, 0.0386333242058754, 0.03222104534506798, 0.01251192856580019, -0.018784523010253906, 0.016044003888964653, -0.008753693662583828, 0.021511737257242203, 0.022642534226179123, -0.0016537896590307355, 0.0026224497705698013, -0.00778253935277462, -0.0027521587908267975, -0.006984330248087645, 0.0074965148232877254, 0.011660506017506123, -0.011534122750163078, 0.024890823289752007, 0.010556316003203392, -0.005338023882359266, -0.017893189564347267, -0.005953310057520866, 0.023720115423202515, 0.002163479570299387, 0.0011574033414945006, -0.0011025264393538237, 0.006911161355674267, -0.05310751870274544, 4.6094501158222556e-05, -0.0002053725766018033, 0.002008826471865177, -0.0386333242058754, -0.005434473976492882, 0.010656092315912247, -0.003405692521482706, -0.005584138445556164, -0.011095107533037663, 0.015365527011454105, 0.020700225606560707, -0.013702590949833393, 0.04092152416706085, 0.0013328430941328406, 0.0063690440729260445, 0.00021784458658657968, -0.021006204187870026, -0.006089671049267054, 0.009033067151904106, 0.017055070027709007, -0.008407803252339363, -0.022975120693445206, -0.007962136529386044, -0.007084106560796499, 0.007303614169359207, -0.0006460505537688732, -0.03123658522963524, 0.02753821760416031, 0.0014866646379232407, 0.009704893454909325, -0.006116278003901243, -0.004855772480368614, 0.00296834041364491, -0.0018957467982545495, -0.017693636938929558, -0.023028334602713585, 0.017613815143704414, -0.037409402430057526, -0.01475356612354517, -0.015432043932378292, 0.02334761805832386, 0.005520946811884642, 0.0053247204050421715, -0.009837928228080273, -0.02117915078997612, 0.03392389044165611, -0.017600512132048607, -0.01733444258570671, -0.025795459747314453, -0.001824240549467504, 0.012485321611166, 0.013336745090782642, 0.011973137967288494, 0.0040708668529987335, -0.01645641215145588, 0.019130414351820946, -0.016429806128144264, -0.01492651179432869, 0.008773649111390114, 0.018239079043269157, 0.007729325443506241, 0.010549664497375488, 0.004855772480368614, 0.013649377040565014, -0.007908922620117664, -0.0063590663485229015, 0.023680206388235092, 0.007396738510578871, 0.01504624355584383, -0.013064024038612843, 0.03533405810594559, 0.022589320316910744, -0.01678900048136711, 0.03003927320241928, -0.04456667974591255, 0.023467350751161575, 0.019782284274697304, 0.0023497282527387142, -0.008075215853750706, -0.0011923249112442136, 0.013536297716200352, -0.09966971725225449, -0.0011407739948481321, 0.005291461944580078, 0.01492651179432869, -0.0005080268601886928, 0.019077198579907417, 0.019569428637623787, 0.007622897624969482, 0.004536489024758339, 0.01346977986395359, -0.030119093134999275, -0.00790227111428976, 0.016044003888964653, -0.0008921650587581098, 0.00661183288320899, -0.0148999048396945, -0.0037815161049365997, -0.005727150943130255, -0.015392133966088295, 0.006864598952233791, -0.0018392070196568966, -0.017893189564347267, -0.0043568918481469154, -0.0006281739915721118, -0.005241573788225651, -0.009704893454909325, -0.030331948772072792, 0.033178895711898804, 0.010303550399839878, 0.008653918281197548, 0.005481036379933357, -0.022935209795832634, 0.0076295495964586735, -0.03533405810594559, -0.0022366486955434084, 0.01022372953593731, -0.014460889622569084, -0.0032793094869703054, -0.006172817666083574, -0.02176450379192829, -0.006342437118291855, 0.0023048289585858583, 0.010130604729056358, -0.020314423367381096, -0.012811257503926754, -0.006605180911719799, -0.020021747797727585, 0.003418995998799801, -0.0037216502241790295, -0.02921445667743683, -0.04038938507437706, 0.006601855158805847, 0.013117237947881222, -0.0032061401288956404, 0.03160908445715904, -0.019662553444504738, 0.006059737876057625, 0.02462475374341011, -0.014248033985495567, -0.003352478612214327, -0.005753757897764444, -0.02221682295203209, 0.007503166329115629, -0.0004431723791640252, 0.016935337334871292, 0.001329517224803567, -0.002858586609363556, -0.001549024716950953, 0.003548705019056797, -0.0023547171149402857, -0.003954461310058832, 0.031103551387786865, -0.011653854511678219, 0.02270905114710331, -0.0023896386846899986, -0.022336553782224655, -0.017906492576003075, -0.013396610505878925, -0.01086229644715786, -0.0248775202780962, -0.006641765590757132, -0.012758043594658375, 0.01396866049617529, -0.0011050208704546094, 0.01501963660120964, 0.006990982219576836, -0.009784714318811893, 0.005567509215325117, 0.023015031591057777, 0.007908922620117664, -0.026287689805030823, 0.006704957224428654, 0.008447714149951935, -0.019023984670639038, 0.0005899264942854643, 0.0031562522053718567, 0.004240486305207014, 0.006365718320012093, 0.013070675544440746, 0.011460953392088413, -0.01807943731546402, -0.014833386987447739, -0.057204991579055786, 0.031343013048172, 0.01209286879748106, 0.0003608570550568402, 0.017720244824886322, -0.017254622653126717, 0.019875409081578255, 0.03871314600110054, 0.011667157523334026, 0.014048481360077858, -0.026367509737610817, 0.02147182635962963, -0.0062326835468411446, -0.01595088094472885, -0.019170323386788368, -0.04092152416706085, 0.02536974847316742, 0.001242213067598641, 0.021697986871004105, 0.008833514526486397, -0.0034090185072273016, 0.015551775693893433, 0.02403940074145794, 0.017653726041316986, -0.02127227559685707, 0.0011956508969888091, -0.05582142993807793, 0.0021069396752864122, -0.006605180911719799, -0.021831020712852478, -0.007084106560796499, -0.021352095529437065, -0.008487624116241932, 0.024784395471215248, 0.008487624116241932, -0.010689351707696915, -0.004998784977942705, 0.01283121295273304, -0.026128048077225685, 0.00918605737388134, -0.045098818838596344, -0.01660275086760521, -0.0013062360230833292, 0.0051085385493934155, -0.017853278666734695, 0.017467478290200233, -0.013729197904467583, 0.014859993942081928, 0.026181261986494064, 0.013795715756714344, 0.0036351776216179132, 0.0042803967371582985, 0.008081868290901184, -0.005840230733156204, -0.00918605737388134, -0.018385417759418488, 0.005770387127995491, -0.026567062363028526, -0.012079565785825253, -0.01787988655269146, 0.008900032378733158, -0.013995267450809479, 0.008461017161607742, 0.009625072591006756, 0.0026740008033812046, -0.010722610168159008, -0.007815797813236713, -0.009059674106538296, 0.03653137385845184, -0.03594601899385452, -0.03158247843384743, 0.00039099776768125594, -0.007117365021258593, 0.008846818469464779, 0.021804414689540863, -0.011567381210625172, -0.006931116338819265, -0.018491845577955246, -0.005637352354824543, 0.024638056755065918, 0.01768033392727375, 0.002057051518931985, -0.01285781990736723, 0.010523057542741299, 0.026034923270344734, -0.0010251998901367188, -0.014607228338718414, -0.01472695916891098, 0.01162724755704403, 0.016070611774921417, -0.011520818807184696, -0.006588551681488752, 0.023307709023356438, 0.02471787855029106, 0.001933994353748858, 0.015777934342622757, 0.003994371742010117, -0.02393297292292118, 0.01361611858010292, 0.017999617382884026, 0.011740326881408691, 0.008707132190465927, 0.010363415814936161, -0.007742628920823336, 0.00632913364097476, -0.018106045201420784, -0.024145828559994698, -0.01994192600250244, 0.0087936045601964, 0.012199296616017818, -0.009738151915371418, 0.013902143575251102, 0.0024578191805630922, 0.039138857275247574, 0.011660506017506123, 0.012698178179562092, 0.0019273426150903106, -0.010230381041765213, -0.010250336490571499, 0.02471787855029106, 0.007895619608461857, 0.008055261336266994, 0.01793310046195984, -0.007097410038113594, 0.008979853242635727, 0.022828781977295876, 0.012698178179562092, 0.002812024438753724, -0.0007400064496323466, -0.03477531298995018, 0.011733675375580788, -0.01926344819366932, -0.025649121031165123, -0.006122929509729147, -0.004257115535438061, 0.0005146786570549011, -0.00266069732606411, 0.037116728723049164, -0.026274384930729866, 0.04571077972650528, 0.010722610168159008, 0.005204989109188318, 0.01263166032731533, -0.01901068165898323, 0.015644900500774384, 0.022043876349925995, -0.0029300928581506014, -0.031103551387786865, -0.03865993022918701, 0.009671634994447231, -0.007735977414995432, 0.014128302223980427, -0.029533740133047104, -0.036132268607616425, -0.02230994589626789, 0.004307003691792488, 0.019635945558547974, -0.012418804690241814, -0.006897857878357172, 0.023813240230083466, 0.0036418293602764606, 0.0032144549768418074, 0.018145956099033356, -0.011135018430650234, -0.0029134636279195547, 0.0003758234961424023, -0.005444451700896025, -0.003242724807932973, -0.014514103531837463, 0.012558490969240665, 0.006102974526584148, -0.02344074286520481, 0.005471058655530214, 0.012112824246287346, -0.0012097858125343919, 0.0028486091177910566, 0.00814838521182537, 0.02620786800980568, 0.0004163575649727136, -0.008540838025510311, 0.019822195172309875, -0.019476303830742836, -0.017520692199468613, 0.007429996971040964, -0.011055197566747665, -0.00375490915030241, -0.004459993913769722, -0.04206562414765358]}, {"created_time": 1695640639.8336132, "accessed_time": 1695640639.8336132, "description": "Discussed local politics with Tom Moreno.", "poignancy": 3, "embedding_key": [0.010434070602059364, -0.001115997787564993, 0.02230638824403286, -0.03039313293993473, -0.019321348518133163, 0.023961728438735008, 0.005725848954170942, 0.012028353288769722, -0.009647105820477009, -0.03248266130685806, 0.006699379067867994, 0.008629478514194489, 0.0100338039919734, -0.017842397093772888, -0.0236767940223217, -0.002206555102020502, 0.016797633841633797, -0.018181605264544487, 0.038398467004299164, -0.027584481984376907, -0.0015942826867103577, 0.0038839438930153847, 0.015155861154198647, -0.0013780368026345968, 0.00640087528154254, 0.017910238355398178, 0.01861579343676567, -0.018792182207107544, 0.01276782900094986, -0.01678406447172165, 0.026471875607967377, -0.012320073321461678, 0.00222181947901845, 0.007937491871416569, -0.015237271785736084, -0.016824770718812943, 0.018385130912065506, 0.0024728341959416866, -0.010108429938554764, -0.016214193776249886, -0.004558969754725695, -0.028764929622411728, 0.014192507602274418, -0.025549227371811867, -0.007727182470262051, -0.0029986081644892693, 0.015413660556077957, -0.013636204414069653, -0.01072579063475132, 0.00399588281288743, 0.022645598277449608, 0.008866924792528152, -0.017150411382317543, -0.009355385787785053, 0.005549460183829069, -0.017611734569072723, -0.011200683191418648, 0.015210134908556938, -0.009199350140988827, 0.010406934656202793, -0.008120665326714516, -0.0023541110567748547, 0.016064941883087158, 0.005522323772311211, -0.0039212568663060665, -0.027679460123181343, -0.016811201348900795, 0.01630917191505432, -0.002284573158249259, 0.0075507936999201775, 0.046675167977809906, 0.011818043887615204, -0.0023100138641893864, -0.029226252809166908, 0.016987590119242668, 0.0017554069636389613, -0.019253507256507874, -0.01591568998992443, -0.008907630108296871, 0.004162095487117767, 0.0032241821754723787, -0.01411109697073698, -0.019267074763774872, 0.019687693566083908, 0.009145076386630535, -0.005919198505580425, 0.011017510667443275, 0.01121425163000822, -0.030474543571472168, -0.019918356090784073, -0.017584597691893578, 0.01697402261197567, 0.021532991901040077, 0.012564304284751415, -0.018697204068303108, 0.016404150053858757, -0.008168154396116734, 0.029199115931987762, 0.014219644479453564, -0.01584784686565399, 0.005603733938187361, 0.0177745558321476, -0.03199420124292374, -0.02651258185505867, -0.029986081644892693, 0.007774672005325556, 0.016743360087275505, 0.00442328630015254, 0.012808534316718578, -0.009362170472741127, -0.026621127501130104, -0.004620027728378773, -0.0012847543694078922, -0.034843556582927704, -0.03755722939968109, -0.017910238355398178, 0.010813985019922256, -0.026824653148651123, 0.011451697908341885, -0.0019487561658024788, 0.007605067454278469, 0.012455756776034832, 0.006818102207034826, 0.007489736191928387, 0.010603675618767738, -0.01404325570911169, 0.003081714501604438, -0.0036939866840839386, -0.013419111259281635, 0.010739359073340893, 0.0028290036134421825, 0.01757103018462658, 0.01372439879924059, -0.014599557965993881, -0.008778730407357216, 0.019036412239074707, -0.04165487363934517, 0.021831495687365532, -0.02459944225847721, -0.026933200657367706, 0.012523598968982697, 0.0041451347060501575, -0.009524990804493427, -0.006377130746841431, 0.005732633173465729, 0.019267074763774872, 0.02078673243522644, 0.011621302925050259, 0.014680968597531319, 0.0060209608636796474, 0.03885979205369949, -0.021600833162665367, -0.013961845077574253, 0.007286211010068655, 0.009104371070861816, 0.003978922497481108, 0.008670183829963207, 0.015264407731592655, -0.009918473660945892, 0.016417719423770905, 0.001543401274830103, -0.004301170818507671, 0.02487080916762352, 0.005549460183829069, -0.006814710330218077, 0.028439288958907127, 0.015576480887830257, 0.016865475103259087, 0.0014882797840982676, -0.007157311309129, 0.024423053488135338, 0.011302446015179157, -0.03370381146669388, 0.02757091261446476, -0.012340426445007324, 0.003122419584542513, -0.018371563404798508, 0.001062572468072176, -0.012150469236075878, -0.03519633412361145, 0.002735721180215478, 0.003414139384403825, -0.006275367923080921, 0.025644205510616302, -0.004318131599575281, -0.011818043887615204, 0.002053910866379738, 0.0068655917420983315, -0.004036588128656149, 3.8240523281274363e-05, -0.004484343808144331, 0.029226252809166908, -0.007577930577099323, 0.004711613990366459, -0.6703856587409973, -0.012638930231332779, -0.021926473826169968, 0.011166762560606003, 0.006679026409983635, -0.011560245417058468, -0.007733966689556837, -0.0042536817491054535, -0.02362252026796341, -0.000633896968793124, -0.01670265384018421, 0.0037889652885496616, -0.014721673913300037, -0.01782882958650589, -0.003012176603078842, -0.02553565800189972, 0.005091527942568064, -0.0019860691390931606, 0.01237434707581997, -0.006947001907974482, -0.022984806448221207, -0.006943609565496445, -0.0058784931898117065, -0.008344543166458607, 0.030908729881048203, -0.008371680043637753, 0.013751535676419735, -0.02789655327796936, -0.009809926152229309, 0.017530323937535286, -0.03809996321797371, 0.00868375226855278, -0.0017808476695790887, -0.004653948359191418, 0.05044717341661453, -0.006733300164341927, -0.015142292715609074, -0.0018402092391625047, -7.849509711377323e-05, 0.017258957028388977, -0.0019555403850972652, 0.008392032235860825, 0.0355219729244709, -6.662277883151546e-05, -0.02126162499189377, 0.003873767564073205, -0.007957844994962215, -0.021329466253519058, -0.0009438492124900222, -0.019321348518133163, 0.01404325570911169, 0.018846455961465836, -0.003427707590162754, -0.0019351877272129059, 0.01158059760928154, -0.015074451453983784, 0.01584784686565399, -0.005936158820986748, -0.004959236830472946, -0.00858877319842577, 0.004375797230750322, -0.01639058254659176, -0.04355444386601448, -0.016987590119242668, -0.002871404867619276, -0.001586650381796062, 0.00319026131182909, 0.010678301565349102, 0.003259799210354686, -0.00852093193680048, -0.0015603617066517472, 0.02558993175625801, -0.041492052376270294, -0.010481560602784157, 0.014816652052104473, 0.019226370379328728, 0.0246672835201025, 0.004545401316136122, -0.008351326920092106, -0.005651223007589579, 0.006567087490111589, -0.0001690745266387239, -0.020718889310956, 0.011112488806247711, 0.021532991901040077, -0.010311955586075783, -0.04767922684550285, 0.00911115575581789, 0.0047896322794258595, -0.02052893303334713, 0.01217760518193245, 0.01947060041129589, 0.007944276556372643, 0.012353993952274323, 0.005976863671094179, 0.005922590382397175, 0.0013237633975222707, 0.009647105820477009, 0.007808592636138201, -0.027543775737285614, -0.0048099844716489315, -0.019823377951979637, 0.036607444286346436, 0.00040238676592707634, -0.003992490936070681, -0.004949060268700123, 0.0026475267950445414, 0.0048947869800031185, 0.03381235897541046, -0.019077118486166, -0.008276700973510742, 0.006173605099320412, -0.016295604407787323, -0.010366229340434074, -0.024585872888565063, -0.025427112355828285, 0.009084018878638744, 0.009077235125005245, -0.008568421006202698, -0.02381247654557228, 0.010121998377144337, -0.003778788959607482, 0.008812651969492435, -0.012998491525650024, -0.01900927722454071, 0.02374463528394699, 0.01677049696445465, -0.015020177699625492, -0.009084018878638744, -0.013629420660436153, -0.016336308792233467, 0.006428011693060398, 0.04374440014362335, -0.01639058254659176, 0.030148902907967567, -0.004979589022696018, 0.012564304284751415, -0.013174880295991898, 0.007035196293145418, -0.005644438788294792, -0.024423053488135338, -0.008880493231117725, -0.006821494549512863, 0.018385130912065506, -0.005980256013572216, -0.03340530768036842, -0.011702712625265121, -0.008649831637740135, -0.014178939163684845, 0.02170938067138195, 0.01339197438210249, 0.0005393424071371555, 0.0007259073900058866, -0.006835062988102436, -0.005898845847696066, 0.0022201233077794313, -0.002579685067757964, 0.006570479832589626, -0.0001802048209356144, -0.015386523678898811, -0.021356603130698204, 0.014667400158941746, -0.021682243794202805, 0.0149659039452672, 0.0074829519726336, -0.004409717861562967, -0.009572479873895645, 0.009687811136245728, 0.03080018423497677, 0.0005965839372947812, 0.021139509975910187, 0.002316797850653529, -0.0002529227640479803, 0.008805867284536362, 0.009491070173680782, -0.005254348274320364, -0.012794965878129005, -0.0064246198162436485, 0.01829015277326107, 0.019714830443263054, 0.005769946146756411, 0.0076457723043859005, -0.008995824493467808, 0.004128174390643835, 0.03275402635335922, -0.022984806448221207, 0.006868983618915081, 0.02343256212770939, -0.01276782900094986, 0.04762495309114456, 0.005128840915858746, 0.0065331668592989445, 0.0062007419764995575, 0.007143742870539427, 0.024233095347881317, 0.019307781010866165, 0.012794965878129005, 0.0041349586099386215, 0.008894061669707298, -0.005264524836093187, -0.011987648904323578, 0.003241142723709345, 0.011709497310221195, -0.014748810790479183, -0.021397307515144348, -0.018575089052319527, 0.010501912795007229, -0.020379681140184402, 0.020705321803689003, 0.007415110245347023, 0.010793632827699184, -0.028737792745232582, -0.015440796501934528, -0.020447522401809692, -0.0019453640561550856, 0.019782673567533493, -0.02717743068933487, 0.01411109697073698, 0.00477267149835825, -0.004151918925344944, 0.005139017477631569, 0.004012843128293753, 0.001411109697073698, -0.006166820880025625, -0.022672735154628754, -0.017476052045822144, -0.010311955586075783, 0.001997941406443715, -0.0010735966498032212, -0.021017393097281456, -0.026987474411725998, -0.002070871414616704, 0.0322384312748909, 0.02143801376223564, 0.018181605264544487, -0.037475816905498505, -0.01584784686565399, -0.007903571240603924, 0.024423053488135338, 0.015155861154198647, 0.0033971788361668587, 0.021410876885056496, 0.013988981954753399, -0.005003333557397127, 0.009796357713639736, -0.015182998031377792, 0.036878809332847595, 0.007469383534044027, 0.01611921563744545, 0.005318798124790192, -0.022401366382837296, -0.0018181606428697705, 0.0197283998131752, -0.012252232059836388, 0.023581814020872116, -0.02459944225847721, -0.021546559408307076, 0.020976688712835312, 0.012727124616503716, 0.044911280274391174, -0.011017510667443275, 0.015196566469967365, 0.027720164507627487, -0.009402875788509846, -0.0012991707772016525, -0.016607675701379776, 0.012652498669922352, -0.01980981044471264, -0.022007884457707405, 0.00997274648398161, 0.005644438788294792, 0.010678301565349102, 0.031152961775660515, -0.020827436819672585, 0.0026322624180465937, 0.021627970039844513, -0.015739301219582558, -0.025372838601469994, -0.004698045551776886, -0.015074451453983784, -0.01723182015120983, -0.0322384312748909, 0.0027509855572134256, 0.010630812495946884, 0.003135987790301442, -0.009355385787785053, -0.004290994722396135, 0.013276643119752407, -0.029714714735746384, 0.005732633173465729, 0.010325524024665356, -0.011132841929793358, -0.01500660926103592, 0.0010964933317154646, 0.016661949455738068, -0.006027745082974434, 0.013330916874110699, -0.006590832024812698, 0.0025593324098736048, -0.019646989181637764, 0.007686477620154619, 0.009735300205647945, -0.013595499098300934, -0.016634812578558922, 0.038154236972332, 0.03454505279660225, -0.016105646267533302, -0.017883101478219032, -0.0018334250198677182, -0.012842454947531223, 0.018005218356847763, -0.008710889145731926, -0.008242780342698097, -0.010847905650734901, -0.0018181606428697705, 0.001732510281726718, -0.010501912795007229, -0.009097587317228317, 0.0292805265635252, -0.0005813195602968335, -0.013805809430778027, -0.02979612536728382, -0.014667400158941746, -0.006679026409983635, 0.13633491098880768, 0.017733849585056305, -0.001724878093227744, 0.01362263597548008, -0.020623911172151566, -0.028602108359336853, -0.01999976672232151, 0.006570479832589626, 0.020976688712835312, -0.018195174634456635, 0.006444972474128008, 0.009959178045392036, 0.018140900880098343, 0.004046764224767685, 0.007957844994962215, -0.013276643119752407, -0.0025101471692323685, 0.009613185189664364, 0.0037245156709104776, -0.0034667167346924543, -0.0071844481863081455, -0.0004310075310058892, -0.003697378793731332, 0.007767887786030769, -0.0027102804742753506, -0.011404208838939667, 0.02314762771129608, 0.026743242517113686, 0.016159920021891594, -0.004223152995109558, -0.007496520411223173, 0.019552011042833328, 0.009090802632272243, 0.012259015813469887, -0.011309230700135231, 0.0283036045730114, 0.001979284919798374, -0.02382604591548443, 0.0027509855572134256, 0.001908050966449082, 0.005393424071371555, 0.00032712475513108075, 0.01394827663898468, -0.018832888454198837, 0.007849297486245632, -0.026105530560016632, 0.0045962827280163765, 0.01683833822607994, 0.007367621175944805, -0.01914495974779129, 0.018588656559586525, 0.0017910238821059465, -0.016295604407787323, -0.020759595558047295, 0.006953786127269268, 0.013758320361375809, 0.02033897675573826, -0.008921198546886444, -0.025182880461215973, 0.041274961084127426, -0.004538617562502623, -0.025427112355828285, -0.01796451210975647, 0.004019627347588539, 0.014165370725095272, -0.019362052902579308, -0.005155977793037891, 0.013059549033641815, -0.03774718567728996, -0.00680792611092329, 0.021940043196082115, 0.0009472413221374154, -0.037855733186006546, 0.0012754261260852218, 0.032726891338825226, 0.022550618276000023, 0.01016948837786913, 0.006536558736115694, -0.00221164315007627, -0.010773279704153538, -0.007394757587462664, -0.008100312203168869, 0.00901617668569088, -0.006882552057504654, 0.0014390944270417094, -0.004212976433336735, 0.006743476260453463, 0.03671598806977272, -0.017353935167193413, 0.009090802632272243, -0.0021285368129611015, -0.007998550310730934, -0.002527107484638691, -0.005139017477631569, -0.009131507948040962, 0.02118021436035633, -0.00520007498562336, 0.011892669834196568, -0.019117822870612144, 0.011078568175435066, -0.0016536442562937737, -0.03440936654806137, -0.030365996062755585, 0.005481618456542492, -0.008805867284536362, 0.009484285488724709, 0.006570479832589626, 0.013575146906077862, -0.008697320707142353, 0.0020963121205568314, 0.03104441426694393, -0.016865475103259087, 0.014518148265779018, 0.01697402261197567, 0.02052893303334713, 0.0322384312748909, 0.0098641999065876, 0.010739359073340893, -0.007381189148873091, -0.02118021436035633, 0.001980980858206749, -0.016037805005908012, 0.018113764002919197, 0.020623911172151566, -0.012041921727359295, 0.0029477267526090145, 0.004067116882652044, -0.021465150639414787, 0.0148030836135149, -0.00740154180675745, -0.021017393097281456, 0.0029053257312625647, 0.007489736191928387, -0.006933433469384909, -0.014558853581547737, -0.012659282423555851, -0.0057835145853459835, 0.02599698305130005, -0.015969963744282722, 0.00161633116658777, -0.020121881738305092, 0.004620027728378773, -0.005145801696926355, -0.037530090659856796, -0.008174938149750233, -0.025413542985916138, -0.01029838714748621, -0.013690478168427944, 0.011777338571846485, 0.009782789275050163, -0.0006576415617018938, 0.02309335395693779, 0.010956453159451485, 0.026593990623950958, 0.009457148611545563, -0.01757103018462658, 0.0052272118628025055, -0.006353385746479034, 0.008487011305987835, 0.01206905860453844, 0.03394804522395134, -0.0029986081644892693, 0.011200683191418648, -0.007605067454278469, 0.0025729008484631777, 0.033839497715234756, 0.008866924792528152, -0.0020267742220312357, -0.009206133894622326, -0.002798474859446287, 0.021329466253519058, 0.03704163059592247, -0.017082568258047104, 0.00366006582044065, -0.003032529028132558, -0.0063398173078894615, 0.025481386110186577, -0.007211585063487291, -0.013412326574325562, -0.01046120747923851, -0.017069000750780106, -0.006526382640004158, -0.0025525481905788183, 0.009531774558126926, 0.0013746448094025254, -0.002749289618805051, 0.04664803296327591, 0.015712164342403412, 0.006774005014449358, -0.01384651381522417, 0.016227761283516884, -0.025250723585486412, 0.009660674259066582, -0.0092129185795784, -0.01630917191505432, -0.009979531168937683, -0.013609067536890507, -0.024246664717793465, -0.013107038103044033, 0.0034667167346924543, 0.0022150352597236633, -0.0010345876216888428, 0.009586048312485218, -0.0008102856809273362, -6.179965566843748e-05, 0.02671610563993454, 0.01260500866919756, 0.005393424071371555, 0.022618461400270462, -0.027272408828139305, -0.013907572254538536, -0.021220918744802475, -0.03261834383010864, -0.009131507948040962, 0.006343209650367498, -0.011824828572571278, -0.01217082142829895, 0.007157311309129, -0.0037753968499600887, -0.03465360030531883, 0.01114641036838293, -0.0007322675664909184, 0.010766495950520039, 0.013045980595052242, -0.004131566267460585, -0.004117998294532299, -0.0434187613427639, -0.010691870003938675, 0.03343244642019272, 0.0013203712878748775, -0.012638930231332779, 0.004569146316498518, -0.008975472301244736, -0.012713556177914143, -0.026146234944462776, 0.022279251366853714, 0.01276782900094986, 0.01352087315171957, -0.023079784587025642, 0.0101966243237257, 0.025888435542583466, 0.01763887144625187, -0.015644323080778122, -0.005681751761585474, -0.006506029982119799, 0.0233647208660841, -0.011709497310221195, 0.008276700973510742, 0.008548068813979626, -0.015902120620012283, -0.021994316950440407, 0.005556244403123856, 0.0037618286442011595, 6.61457670503296e-05, 0.013826161623001099, -0.026811085641384125, 0.02454516850411892, -0.012781397439539433, 0.007944276556372643, 0.017652440816164017, -0.02539997547864914, 0.015155861154198647, -0.015942826867103577, 0.01516942959278822, -0.0019233154598623514, 0.024423053488135338, -0.019185664132237434, -0.0006283848197199404, -0.0018876984249800444, 0.024110980331897736, -0.004796416033059359, 0.0019368837820366025, -0.015671459957957268, -0.005515539553016424, 0.0031987414695322514, 0.0006343209533952177, -0.0021997708827257156, -0.023500405251979828, -0.010481560602784157, -0.0027696420438587666, 0.03704163059592247, 0.012794965878129005, -0.02210286259651184, 0.007808592636138201, -0.004582714755088091, -0.0289548859000206, -0.01115319412201643, 0.0024558736477047205, 0.012062274850904942, 0.0010608764132484794, -0.009233270771801472, -0.015535775572061539, -0.0014373984886333346, 0.004630203824490309, 0.01335126906633377, -0.008310622535645962, 0.0002679751778487116, 0.0184258371591568, -0.013792240992188454, 0.025644205510616302, -0.022645598277449608, 0.006617968901991844, -0.02777443826198578, -0.011974080465734005, -0.006926649250090122, -0.01986408233642578, 0.03104441426694393, -0.0038296703714877367, -0.029497621580958366, -0.016146352514624596, 0.017150411382317543, 0.0072794267907738686, -0.009043313562870026, -0.00016801449237391353, -0.005966687574982643, -0.006617968901991844, 0.002416864736005664, -0.03777432069182396, -0.010210192762315273, 0.0493617057800293, -0.013975413516163826, -0.022347094491124153, -7.652080057596322e-06, -0.004630203824490309, -0.006787573453038931, 0.013710830360651016, 0.016879042610526085, 0.022211410105228424, -0.009233270771801472, 0.005929374601691961, 0.011940158903598785, 0.015182998031377792, -0.025223586708307266, -0.010366229340434074, -0.022862691432237625, -0.009925257414579391, -0.009084018878638744, 0.03169569373130798, -0.007442247122526169, 0.01716397888958454, -0.012245447374880314, 0.009816710837185383, 0.017937375232577324, 0.0007229393231682479, -0.005122057162225246, -0.013961845077574253, -0.00468786945566535, 0.00707590114325285, -0.0249929241836071, -0.024789398536086082, -0.0184258371591568, 0.012211526744067669, -0.006489069666713476, -0.013704046607017517, 0.0010210192995145917, 0.010366229340434074, -0.028710655868053436, -0.022713439539074898, 0.00017055856005754322, 0.004067116882652044, 0.011166762560606003, -0.023663224652409554, -0.011071784421801567, 0.017978081479668617, -0.008731241337954998, 0.019199233502149582, -0.005420560948550701, 0.005596949718892574, -0.0061159394681453705, -0.017801692709326744, 0.02914484404027462, 0.007795024663209915, 0.0064347959123551846, 0.01763887144625187, -0.010569754987955093, 0.007001275196671486, 0.017666008323431015, 0.003112243255600333, -0.03006749227643013, -0.005739417392760515, -0.023337583988904953, -0.021614402532577515, -0.0010345876216888428, 0.007435462903231382, 0.00927397608757019, -0.012903513386845589, -0.0017503187991678715, 0.008629478514194489, -0.008778730407357216, -0.01637701317667961, -0.0101966243237257, -0.010189840570092201, -0.0034158353228121996, 0.013507305644452572, 0.016363445669412613, -0.013663341291248798, 0.02343256212770939, -0.016404150053858757, 0.015685027465224266, 0.011383856646716595, -0.02428736910223961, 0.03177710622549057, 0.008636263199150562, -0.001613787142559886, -0.015440796501934528, 0.010020235553383827, -0.01815447025001049, 0.012143684551119804, -0.015685027465224266, -0.014192507602274418, 0.009504638612270355, -0.0014221339952200651, 0.003504029707983136, -0.03866983577609062, 0.013432678766548634, -0.009063666686415672, -0.0063194651156663895, -0.011505971662700176, -0.005603733938187361, 0.015400092117488384, -0.0480048693716526, 0.002016597893089056, -0.005498579237610102, 0.022129999473690987, 0.004399541765451431, -0.017652440816164017, -0.003677026368677616, -0.020895278081297874, -0.006000608671456575, -0.005396816413849592, -0.0068757678382098675, -0.007822161540389061, -0.02290339581668377, -0.01549507025629282, -0.02507433481514454, 0.03587475046515465, 0.2355467826128006, 0.008392032235860825, -0.007822161540389061, 0.01645842380821705, -0.002226907527074218, 0.04255038499832153, 0.02526429109275341, 0.026987474411725998, 0.0032394465524703264, 0.0014857357600703835, -0.026431171223521233, 0.0068859439343214035, 0.005491795018315315, -0.009959178045392036, 0.005970079451799393, -0.016485560685396194, -0.01114641036838293, -0.016539834439754486, -0.03416513651609421, -0.03373095020651817, -0.007231937255710363, 0.0001984373084269464, 0.012455756776034832, 0.0066722421906888485, 0.03598329797387123, 0.013853298500180244, -0.01023054588586092, -0.009993099607527256, -0.008833004161715508, 0.008188506588339806, -0.014314622618258, -0.0002423224796075374, -0.0023693754337728024, -5.7294531870866194e-05, 0.004803200252354145, 0.0020776556339114904, 0.016010668128728867, -0.0004706525942310691, 0.01948416978120804, 0.002581381006166339, 0.0011787514667958021, -0.0005626630736514926, -0.00815458595752716, -0.013486952520906925, 0.005312013905495405, 0.01816803775727749, -0.006295720115303993, -0.002676359610632062, -0.013731183484196663, 0.0036566737107932568, -0.018113764002919197, -0.012984923087060452, 0.024640146642923355, 0.031152961775660515, -0.010698653757572174, -0.009728516452014446, 0.0027916906401515007, 0.011003942228853703, -0.03278116509318352, 0.0024745301343500614, 0.0072794267907738686, 0.028846340253949165, 0.017069000750780106, 0.0076457723043859005, -0.026593990623950958, 0.014382464811205864, 0.02237422950565815, 0.011071784421801567, 0.029389074072241783, -0.02738095633685589, 0.029524756595492363, 0.001370404614135623, 0.005122057162225246, -0.015291544608771801, -0.03001321852207184, -0.025874868035316467, 0.03652603179216385, 0.014667400158941746, 0.02947048470377922, 0.009172213263809681, -0.010054157115519047, 0.025834163650870323, 0.002922286046668887, -0.01071900688111782, -0.009619968943297863, -0.03980957716703415, 0.007896787486970425, -0.005186506547033787, 0.002016597893089056, -0.010020235553383827, 0.00934181734919548, -0.029768988490104675, 0.008724457584321499, -0.03644462302327156, -0.000155082147102803, 0.00858198944479227, -0.009816710837185383, 0.0299318078905344, -0.030583089217543602, 0.0073133474215865135, -0.030827321112155914, 0.04219760745763779, 0.04238756373524666, -0.005634262692183256, -0.0011261741165071726, 0.006227878388017416, 0.03321535140275955, 0.02211643196642399, -0.004138350486755371, -0.01329021155834198, 0.015576480887830257, 0.005220427643507719, -0.0069944909773766994, 0.0025915573351085186, 0.01723182015120983, -0.008839787915349007, 0.00289345346391201, -0.020094744861125946, 0.0010294995736330748, 0.0017367504769936204, 0.010427286848425865, -0.022645598277449608, -0.010189840570092201, 0.0012279368238523602, 0.01039336621761322, -0.008473442867398262, -0.023608950898051262, -0.01194694358855486, 0.0037211235612630844, -0.02138374000787735, 0.017286093905568123, -0.006071842275559902, 0.004959236830472946, 0.010488344356417656, -0.00808674469590187, -0.015020177699625492, 0.02046109177172184, 0.0010320435976609588, -0.009857415221631527, -0.004623419605195522, 0.018670067191123962, -0.008147802203893661, -0.009823494590818882, -0.028710655868053436, 0.01371761504560709, -0.002744201337918639, 0.005831004120409489, -0.0031376839615404606, -0.015250840224325657, -0.011221036314964294, -0.02769302763044834, -0.0016638204688206315, -0.014925199560821056, -0.010895395651459694, 0.032672617584466934, -0.0012644018279388547, -0.03603757172822952, -0.02165510691702366, -0.006373738404363394, 0.03297112137079239, -0.013663341291248798, 0.010366229340434074, 0.018303722143173218, -0.011112488806247711, -0.022916965186595917, -0.004379189107567072, -0.1756288856267929, 0.025237154215574265, 0.029850399121642113, -0.0031987414695322514, 0.02480296790599823, -0.0006436491967178881, 0.0335681289434433, 0.0036905945744365454, -0.00869053602218628, 0.011614518240094185, 0.016037805005908012, 0.05047430843114853, -0.027598049491643906, 0.007109822239726782, 0.006176996976137161, 0.022604892030358315, -0.007801808416843414, -0.0010888611432164907, -0.004616635385900736, 0.0233647208660841, 0.02639046497642994, -0.008934766985476017, 0.01632274128496647, -0.018303722143173218, 0.014260348863899708, 0.014884494245052338, 0.003900904208421707, 0.03408372774720192, 0.02046109177172184, -0.017204683274030685, -0.02032540738582611, 0.006312680896371603, 0.006037921644747257, -0.00020946160657331347, 0.017516756430268288, 0.016227761283516884, -0.009409659542143345, -0.009599616751074791, 0.0012211526045575738, 0.01757103018462658, 0.0236903615295887, -0.0044572073966264725, 0.00835811160504818, 0.018045922741293907, -0.03408372774720192, 0.0020081177353858948, 0.01012878306210041, -0.0002932038332801312, -0.01388043537735939, 0.013168096542358398, 0.0146402632817626, -0.02881920337677002, -0.010189840570092201, -0.004212976433336735, 0.004793024156242609, 0.027068883180618286, -0.015549344010651112, 0.011729849502444267, -0.0016884132055565715, 0.006723123602569103, -0.0010727486805990338, 0.004969412926584482, -0.015956394374370575, 0.007326915860176086, 0.0006288088043220341, -0.013100254349410534, -0.008018902502954006, -0.018059490248560905, -0.030230311676859856, 0.007869650609791279, -0.013473384082317352, 0.004806592594832182, 0.008731241337954998, -0.021044529974460602, 0.026010552421212196, 0.011953727342188358, -0.010183055885136127, 0.015576480887830257, 0.028873475268483162, 0.010583323426544666, -0.01157381385564804, 0.024192390963435173, -0.01763887144625187, 0.00750330463051796, -0.0064144437201321125, 0.02632262371480465, -0.014016118831932545, 0.004396149422973394, 0.010549401864409447, -0.02119378186762333, 0.037991415709257126, -0.014463874511420727, -0.016987590119242668, -0.02900915965437889, 0.00021370171452872455, 0.018792182207107544, 0.016227761283516884, 0.015155861154198647, 0.005288269370794296, -0.046023886650800705, 0.00809352844953537, -0.02170938067138195, -0.006126116029918194, 0.009022961370646954, -0.0007793328259140253, 0.032129883766174316, 0.0021556736901402473, 0.03527774289250374, 0.019959062337875366, -0.016499130055308342, -0.016078509390354156, 0.01637701317667961, 0.0006381370476447046, -0.0007276034448295832, 0.00026225100737065077, 0.02322903648018837, 0.014097528532147408, -0.010508696548640728, 0.004440246615558863, -0.013303779996931553, 0.04947024956345558, 0.006916473153978586, 0.012225095182657242, 0.00039115044637583196, 0.002143801422789693, -0.0022387797944247723, -0.0947614461183548, -0.012096195481717587, 0.01147883478552103, 0.016621245071291924, -0.0025508522521704435, 0.025942709296941757, -0.004616635385900736, 0.0069809225387871265, -0.016661949455738068, 0.028439288958907127, -0.009945609606802464, -0.029361937195062637, 0.012048706412315369, 0.0012889944482594728, 0.018914297223091125, -0.017326800152659416, -0.00878551509231329, -0.019959062337875366, -0.0151287242770195, 0.008643046952784061, -0.015562912449240685, -0.021858632564544678, -0.025684909895062447, 0.008541284129023552, 0.014694537036120892, -0.007028412073850632, -0.0038669833447784185, 0.026336193084716797, 0.0008263980853371322, -0.0032750635873526335, -0.001732510281726718, -0.010081293992698193, 0.027923690155148506, -0.028005100786685944, 0.011017510667443275, 0.013073117472231388, 0.0014212860260158777, -0.015264407731592655, -0.026756811887025833, 0.015413660556077957, -0.013839730061590672, -0.006153252441436052, -0.014884494245052338, -0.00869053602218628, -0.006794357672333717, -0.005922590382397175, -0.04130209609866142, 0.013344484381377697, 0.017978081479668617, -0.008805867284536362, -0.027598049491643906, 0.029850399121642113, -0.015942826867103577, -0.015020177699625492, 0.009355385787785053, 0.007896787486970425, -0.011756986379623413, 0.018697204068303108, -0.029633304104208946, -0.0015332249458879232, 0.0018249447457492352, -0.001992853358387947, 0.02724527195096016, -0.0023422385565936565, 0.02290339581668377, -0.0033174646086990833, -0.018846455961465836, -0.004121390171349049, -0.003961961716413498, -0.03432795777916908, -0.025820594280958176, 0.013154528103768826, -0.03229270502924919, 0.0016570363659411669, -0.018181605264544487, -0.012564304284751415, -0.018846455961465836, -0.014301054179668427, 0.008249565027654171, -0.02269987016916275, -0.008819435723125935, -0.0072929952293634415, 0.005284877493977547, 0.0060073924250900745, 0.032401248812675476, 0.017652440816164017, 0.019524874165654182, 0.0036566737107932568, 0.005695320200175047, -0.010121998377144337, -0.010081293992698193, 0.01987765170633793, 0.025888435542583466, 0.005875101312994957, -0.013690478168427944, -0.0015026961918920279, 0.008446305990219116, -0.00835811160504818, 0.0016909572295844555, -0.008595557883381844, -0.01630917191505432, -0.017747418954968452, -0.06719053536653519, 0.027747301384806633, -0.015576480887830257, 0.006014176644384861, -0.0050169019959867, -0.009491070173680782, -0.014857357367873192, 0.0031749969348311424, -0.0016850210959091783, 0.005410384852439165, -0.008663400076329708, 0.006377130746841431, -0.010474775917828083, -0.014016118831932545, -0.021600833162665367, -0.012387915514409542, 0.0141518022865057, -0.007978197187185287, 0.03454505279660225, 0.01685190573334694, 0.0029833437874913216, 0.027340251952409744, 0.007557577919214964, -0.0007763647590763867, 0.006014176644384861, -9.307049185736105e-05, -0.031152961775660515, 0.024572305381298065, -0.013629420660436153, -0.021478718146681786, 0.010345876216888428, -0.018303722143173218, -0.014219644479453564, 0.02250991389155388, 0.0011795995524153113, 0.006010784767568111, 0.0004265554016456008, 0.026417601853609085, -0.016404150053858757, 0.031342919915914536, -0.025413542985916138, -0.01999976672232151, 0.01105143129825592, -0.028113648295402527, 0.004321523476392031, -0.018059490248560905, -0.020881710574030876, -0.002594949444755912, 0.0177745558321476, 0.00595311913639307, -0.004287602845579386, -0.00560712581500411, -0.008548068813979626, -0.04002666845917702, -0.008697320707142353, -0.013642989099025726, 0.0006852023070678115, 0.004843905568122864, 0.005590165499597788, -0.028113648295402527, 0.016675518825650215, 0.020908847451210022, 0.013805809430778027, -0.006387306842952967, 0.020705321803689003, -0.004966020584106445, -0.0017316623125225306, -0.013866866938769817, 0.028629245236516, -0.03989098593592644, -0.01782882958650589, -0.012666067108511925, 0.007672909181565046, 0.01164165511727333, -0.006804533768445253, 0.004487736150622368, 0.0236903615295887, -0.0036397133953869343, -0.007333700079470873, 0.02816792204976082, 0.00758471479639411, -0.0069809225387871265, 0.008161370642483234, 0.036688853055238724, 0.02539997547864914, 0.04070508852601051, -0.020243996754288673, -0.014680968597531319, -0.008297054097056389, 0.0033937867265194654, -0.002562724519520998, 0.004752319306135178, -0.021872200071811676, -0.02816792204976082, -0.015603616833686829, 0.018073059618473053, 0.023663224652409554, 0.016743360087275505, 0.019199233502149582, 0.0276387557387352, 0.015088019892573357, 0.014870925806462765, -0.0003797021636273712, -0.016132783144712448, -0.025888435542583466, -0.004311347380280495, -0.03242838755249977, -0.011919806711375713, 0.0038975123316049576, 0.004128174390643835, 0.003816101932898164, 0.009511422365903854, -0.0030477934051305056, 0.019918356090784073, -0.013771887868642807, 0.01856151968240738, 0.007462599780410528, -0.015467933379113674, -0.010488344356417656, 0.03139718994498253, 0.013378405943512917, -0.0042299372144043446, 0.012774613685905933, 0.007652556523680687, 0.014585990458726883, 0.01579357497394085, 0.01114641036838293, -0.012896728701889515, -0.013507305644452572, 0.005003333557397127, 0.016607675701379776, 0.003163124667480588, -0.036878809332847595, -0.005044038873165846, -0.010020235553383827, 0.00878551509231329, -0.017055431380867958, 0.015386523678898811, -0.01533224992454052, 0.03305253013968468, 0.015101587399840355, 0.010474775917828083, -0.012157252989709377, 0.0075507936999201775, 0.019714830443263054, -0.0026119097601622343, -0.0037346917670220137, -0.0074829519726336, -0.027408093214035034, 0.015685027465224266, 0.0008145257597789168, 0.0041349586099386215, -0.03715017810463905, -0.031614284962415695, -0.00560712581500411, 0.013507305644452572, 0.012849239632487297, 0.002640742575749755, -0.0014051735633984208, 0.0026339583564549685, 0.00648228544741869, 0.0019504521042108536, 0.014165370725095272, -0.018208742141723633, 0.022414935752749443, 0.015033746138215065, -0.0028510522097349167, -0.02579345740377903, -0.03324249014258385, 0.0016578843351453543, 0.004579322412610054, -0.031614284962415695, -0.006607792805880308, 0.01776098646223545, -0.010054157115519047, 0.004223152995109558, -0.0010125390253961086, 0.007150527089834213, -0.0017180939903482795, -0.015291544608771801, -0.0006453452515415847, -0.03755722939968109, -0.00535950344055891, 0.03305253013968468, -0.01796451210975647, -0.006366954185068607, -0.02789655327796936, -0.027950827032327652]}, {"created_time": 1695640644.310209, "accessed_time": 1695640644.310209, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008221788331866264, -0.005837070755660534, 0.012651976197957993, 0.008654164150357246, 0.016696350648999214, 0.023760702461004257, -0.00028062841738574207, -0.003711778437718749, -0.020368218421936035, -0.026328349485993385, -0.005408021155744791, -0.02305559813976288, 0.00914640724658966, -0.009951291605830193, -0.01918417401611805, -0.002707336563616991, 0.027858294546604156, -0.0023298393934965134, 0.04334399476647377, -0.03384503349661827, -0.015033368021249771, 0.025676459074020386, 0.0026208613999187946, 0.010510053485631943, -0.0269137192517519, 0.008175224997103214, 0.011654186062514782, -0.012884793803095818, -0.008561037480831146, -0.004689612425863743, 0.002389706904068589, -0.00451666209846735, 0.010137544944882393, -0.004922430031001568, -0.030598890036344528, -0.039086755365133286, 0.01336373295634985, -0.010310495272278786, 0.007177435327321291, -0.00462309317663312, 0.016270626336336136, -0.01138145662844181, 0.0021785078570246696, -0.023068903014063835, -0.014288350939750671, 0.002032165415585041, -0.019397035241127014, -8.543575677322224e-05, -0.010210716165602207, 0.006485634483397007, 0.014368174597620964, -0.008228440769016743, -0.02188485860824585, -0.0063758776523172855, -0.025117697194218636, -0.007137523498386145, 0.0026757398154586554, 0.009153059683740139, 0.008494517765939236, 0.00205378420650959, -0.0005146932671777904, 0.009039976634085178, 3.6799997360503767e-06, -0.0008855385240167379, -0.005288286600261927, 0.003269424894824624, -0.002243364229798317, -0.006701821926981211, 0.0037450380623340607, 0.004523314069956541, 0.03195588290691376, 0.01959659345448017, -0.005378087516874075, -0.016416970640420914, 0.01440808642655611, 0.006006695330142975, -0.018505675718188286, -0.007463468238711357, -0.008441302925348282, 0.0014334914740175009, 0.003360888920724392, -0.028656525537371635, -0.0033093364909291267, -0.0005279971519485116, 0.01652340032160282, 0.022430317476391792, -0.0171353779733181, 0.019157566130161285, 0.013190782628953457, -0.02998691238462925, 0.025197520852088928, 0.026195310056209564, 0.007855932228267193, 0.007829324342310429, -0.009891423396766186, 0.002002231776714325, 0.010117589496076107, 0.003000021679326892, 0.010875909589231014, -0.0213260967284441, -0.016137588769197464, 0.023241853341460228, -0.003675192827358842, -0.012964616529643536, -0.03437718749046326, 0.006628650706261396, 0.019250692799687386, -0.01750788651406765, 0.02123296819627285, -0.012372594326734543, -0.02737935446202755, 0.020700814202427864, -0.01017745677381754, -0.0352020263671875, -0.01821299083530903, -0.018399246037006378, 0.030545674264431, 0.0007836808217689395, -0.024705277755856514, -0.013224042020738125, 0.020368218421936035, 0.00998455099761486, 0.018319422379136086, -0.004463446792215109, 0.01922408491373062, -0.0070776562206447124, 0.006462352350354195, 0.013902539387345314, -0.025969145819544792, -0.0012962953187525272, 0.01040362287312746, 0.01194687094539404, 0.02378731034696102, 0.003246143227443099, -0.02155226096510887, 0.021632084622979164, -0.026700858026742935, 0.007071004249155521, -0.0012272815220057964, -0.02212432771921158, 0.0050421650521457195, 0.021964682266116142, -0.023175332695245743, -0.003987833391875029, 0.01931721158325672, 0.0346432663500309, 0.011813832446932793, 0.012824926525354385, -0.011534451507031918, 0.0014634252293035388, 0.01773405261337757, -0.003628629259765148, 0.016403665766119957, 0.003104789648205042, 0.028762957081198692, 0.001693748403340578, 0.0016904224175959826, 0.013849323615431786, -0.03906014934182167, 0.011694097891449928, 0.0028586681000888348, -0.0008788866107352078, 0.023627664893865585, -0.011887003667652607, -0.016869300976395607, 0.026288438588380814, 0.012492329813539982, 0.02123296819627285, -0.015951333567500114, 0.0011865384876728058, 0.009239534847438335, 0.02164538949728012, -0.040337320417165756, 0.0031762977596372366, 0.005334849935024977, 0.0061829714104533195, -0.03286054730415344, -0.002685717772692442, 0.013955754227936268, -0.025530116632580757, -0.03645259141921997, -0.0025310604833066463, 0.004932408221065998, 0.015538915060460567, -0.008221788331866264, -0.016084372997283936, 0.012831578031182289, 0.007071004249155521, 0.008048838935792446, 0.01294466108083725, 0.0070843081921339035, 0.04347703233361244, -0.010323799215257168, -0.011348197236657143, -0.6602974534034729, -0.03935283422470093, 0.020315002650022507, 0.011773920617997646, 0.028576701879501343, 0.0010959059000015259, 0.007097612135112286, 0.00556434178724885, -0.0026524581480771303, -0.003818209283053875, -0.014740683138370514, 0.010523357428610325, -0.004031070973724127, 0.012345987372100353, -0.002745585283264518, -0.014447997324168682, -0.002032165415585041, -0.0277518630027771, 0.011860395781695843, 0.009046628139913082, -0.008600949309766293, 0.027725255116820335, -0.018452461808919907, -0.010157501325011253, -0.006578761152923107, -0.013097655028104782, -0.004942385945469141, -0.045658864080905914, -0.009951291605830193, 0.04539278894662857, -0.04235950857400894, 0.027858294546604156, -0.013756196945905685, -0.017095467075705528, 0.05502478778362274, -0.00878055114299059, -0.003711778437718749, 0.00965860579162836, -0.0010626462753862143, 0.018079953268170357, -0.03381842374801636, 0.005464562680572271, 0.030838359147310257, 0.004297148436307907, 0.0021701930090785027, -0.0007745344191789627, 0.028975818306207657, -0.005394717212766409, -0.0035288501530885696, -0.004769435618072748, 0.027778470888733864, 0.0048026954755187035, -0.0021336073987185955, 0.006931313779205084, 0.026607731357216835, -0.005447932984679937, 0.0286831334233284, -0.028337232768535614, -0.00576389953494072, -0.0046796347014606, -0.005221767351031303, 0.0019540050998330116, -0.02481170929968357, 0.0011233451077714562, -0.021033411845564842, 0.0077361976727843285, -0.033179838210344315, -0.011255069635808468, -0.006242838688194752, -0.005112010054290295, 0.013576594181358814, 0.015126494690775871, -0.012286119163036346, 0.007855932228267193, -0.00399448536336422, 0.031264081597328186, 0.009459048509597778, 0.00015704796533100307, -0.0004693770024459809, 0.011048859916627407, 0.017122074961662292, -0.008281656540930271, -0.020514560863375664, 0.011275026015937328, 0.02592923305928707, -0.02216423861682415, -0.015419179573655128, 0.014687467366456985, 0.018279511481523514, -0.025024570524692535, 0.026009056717157364, 0.006246164906769991, -0.011421368457376957, 0.0026191985234618187, 0.0013470163103193045, 0.014514517039060593, -0.018771754577755928, 0.012472373433411121, 0.027964724227786064, -0.028390448540449142, 0.010809390805661678, -0.012192992493510246, 0.02117975428700447, 0.005860352423042059, 0.003735060105100274, -0.0008206822094507515, -0.032062314450740814, 0.02574297972023487, 0.013729589059948921, -0.015938030555844307, 0.026567818596959114, 0.034669872373342514, -0.009605390951037407, -0.0010692981304600835, -0.01648348942399025, -0.02533056028187275, 0.044062402099370956, 0.0363195538520813, 0.0251443050801754, -0.005171877797693014, 0.01950346678495407, -0.004729524254798889, 0.0259824488312006, 0.004493380431085825, 0.015139798633754253, 0.0075432914309203625, 0.0007965689292177558, -0.024266250431537628, -0.01138145662844181, -0.0024844969157129526, -0.011467931792140007, -0.0046264189295470715, 0.01885157637298107, -0.026275133714079857, 0.009279445745050907, -0.009678562171757221, -0.007855932228267193, -0.019210781902074814, 0.018399246037006378, -0.009605390951037407, -0.03363217040896416, -0.010955733247101307, 0.012059953995049, 0.02425294555723667, -0.0036552369128912687, -0.01648348942399025, 0.007563247345387936, 0.0028935906011611223, -0.0420934297144413, 0.0007695454405620694, 0.007363689597696066, -0.005161899607628584, -0.011507843621075153, 0.023028990253806114, -0.006864794529974461, 0.006469004321843386, -0.01931721158325672, -0.009864816442131996, -0.014567732810974121, 0.0041275243274867535, 0.014887025579810143, 0.011434672400355339, -0.029507972300052643, 0.006488960236310959, 0.005807137116789818, 0.0015548892552033067, -0.0006290233577601612, 0.020368218421936035, 0.003113104496151209, -0.024558935314416885, -0.015033368021249771, -0.014913632534444332, -0.016177499666810036, -0.008541081100702286, 0.011181898415088654, -0.012818274088203907, 0.004070982802659273, -0.0057339658960700035, 0.006977877113968134, -0.0008539418340660632, 0.0038980324752628803, 0.006429092958569527, -0.007297169882804155, -0.014075489714741707, 0.01689590886235237, -0.00231154658831656, 0.004779413808137178, 0.03842156380414963, 0.011201854795217514, 0.00947235245257616, 0.0058204410597682, 0.0075898552313447, -0.008527778089046478, 0.014301654882729053, -0.012073257938027382, -0.014793897978961468, 0.02024848386645317, 0.020740725100040436, -0.0059202201664447784, 0.012938008643686771, -0.004483402706682682, -0.002143585355952382, 0.028150979429483414, -0.014088793657720089, -0.0024329442530870438, -0.012226251885294914, 0.01756110228598118, -0.018838273361325264, 0.0223504938185215, 0.0043769716285169125, 0.005587623454630375, -0.014314958825707436, -0.014620947651565075, -0.008667468093335629, 0.022097719833254814, 0.00406100507825613, -0.005195159465074539, 0.014062185771763325, -0.02314872480928898, 0.0072705624625086784, -0.0014201876474544406, -0.0030781817622482777, -0.012086561881005764, -0.028230801224708557, -0.0035421540960669518, -0.0004176166548859328, -0.004443490877747536, 0.014088793657720089, 0.004596485290676355, 0.007024440914392471, -0.020128747448325157, -0.011600970290601254, 0.031689807772636414, 0.007290518376976252, 0.0018492372473701835, 0.0012538892915472388, 0.02415981888771057, -0.02723301202058792, 0.03437718749046326, 0.03211553022265434, 0.006325988098978996, -0.010270584374666214, 0.010463490150868893, -0.015352660790085793, 0.026275133714079857, 0.020048925653100014, 0.03882068023085594, -0.019490161910653114, -0.011002296581864357, 0.009279445745050907, -0.015711864456534386, -0.00816857349127531, -0.0021918118000030518, -0.0022167565766721964, 0.006668562535196543, -0.02407999522984028, -0.0143415667116642, 0.01334377657622099, 0.015671953558921814, 0.03105122223496437, 0.018359333276748657, 0.0240267813205719, 0.014048881828784943, 0.0040510268881917, -0.0015781710390001535, 0.0075898552313447, 0.020408129319548607, -0.024119907990098, -0.014487909153103828, -0.014913632534444332, 0.01241250615566969, -0.006379203405231237, 0.0002511104685254395, -0.01175396516919136, -0.016071069985628128, 0.016496792435646057, -0.003029955318197608, -0.01387593150138855, -0.020660903304815292, 0.00701778894290328, -0.008733987808227539, -0.027179796248674393, 0.0031962536741048098, 0.006515568122267723, 0.0041674356907606125, -0.014168616384267807, 0.0070909601636230946, -2.427890422040946e-06, -0.0077761090360581875, 0.013137566857039928, 0.01564534567296505, -0.002138596260920167, -0.010929125361144543, 0.01959659345448017, 0.0020720770116895437, -0.004486728459596634, 0.004619767423719168, -0.024465808644890785, 0.011461280286312103, -0.018798362463712692, 0.00452664028853178, -0.015698561444878578, -0.0053148940205574036, -0.0039346180856227875, -0.0005683244671672583, 0.006924661807715893, -0.018971312791109085, -0.006306032184511423, -0.017122074961662292, -0.004483402706682682, -0.0013303864980116487, -0.006838186644017696, -0.02026178687810898, -0.005660794675350189, 0.0030415961518883705, 0.008953501470386982, -0.0013910854468122125, -0.0230955109000206, 0.014541124925017357, 0.00024258767371065915, -0.028603309765458107, -0.007749501615762711, -0.034749697893857956, 0.007190739270299673, 0.12622708082199097, -0.009379224851727486, 0.012053301557898521, 0.02388043887913227, 0.0142484400421381, -0.01867862604558468, -0.00784262828528881, -0.025303952395915985, 0.005657468922436237, 0.013310517184436321, -0.0035221984144300222, 0.006708473898470402, 0.018984615802764893, 0.000569571740925312, -0.008135313168168068, -0.019303908571600914, -0.015485699288547039, -0.008135313168168068, 0.002496137749403715, -0.015073278918862343, 0.012678583152592182, -0.005664120428264141, -0.007150827441364527, 0.0269137192517519, -0.0006427430198527873, 0.0203948263078928, 0.01273179892450571, 0.021538957953453064, 0.027352746576070786, -0.01996910199522972, 0.013024483807384968, 0.025490205734968185, -0.0021352702751755714, -0.008860373869538307, -0.028576701879501343, 0.0030415961518883705, 0.02518421784043312, 0.013443555682897568, 0.0008181877201423049, -0.0125721525400877, 0.010263931937515736, 0.023028990253806114, 0.0214192233979702, -0.009179666638374329, 0.021299488842487335, -0.009412484243512154, 0.007756153587251902, 0.02229727804660797, -0.0161109808832407, 0.0025077785830944777, 0.02300238236784935, 0.015711864456534386, 0.006422440987080336, -0.02481170929968357, -0.003764993976801634, 0.042998094111680984, 0.0026873808819800615, -0.017521191388368607, -0.005318220239132643, 0.017428062856197357, 0.023334980010986328, -0.028097763657569885, -0.015658648684620857, -0.005158573854714632, -0.011720704846084118, -0.012931357137858868, -0.01394245121628046, -0.010170805267989635, -0.0064157890155911446, 0.0026208613999187946, -0.018465764820575714, -0.005341501906514168, -0.0277518630027771, 0.006116452161222696, 0.02812437154352665, 0.011966826394200325, 0.027858294546604156, -0.011168594472110271, -0.0027173145208507776, 0.0032045685220509768, -0.016283931210637093, -0.0097783412784338, 0.0013661406701430678, -0.008521125651896, -0.03022638149559498, 0.0037084524519741535, 0.012871489860117435, 0.009439092129468918, -0.0055244299583137035, 0.0026757398154586554, 0.01568525657057762, -0.005684076342731714, 0.029774051159620285, 0.0017078836681321263, 0.005384739488363266, 0.007809368893504143, -0.010955733247101307, 0.029641011729836464, 0.002767204074189067, 0.019476858898997307, 0.006119777914136648, -0.02462545409798622, -0.014235136099159718, -0.012957965023815632, 0.015073278918862343, -0.003984507638961077, 0.021153146401047707, 0.019636504352092743, -0.0005941007402725518, 0.012844881974160671, 0.018705233931541443, -0.018785057589411736, 0.01082269474864006, 0.014181920327246189, -0.0027173145208507776, 0.01670965552330017, -0.00031471956754103303, 0.022962471470236778, 0.002018861472606659, -0.02294916845858097, 0.01834603026509285, -0.027645431458950043, 0.0348295196890831, -0.001356994267553091, -0.007583203259855509, 0.012612064369022846, -0.016563313081860542, -0.01760101318359375, -0.009618694894015789, -0.020035620778799057, -0.0196498092263937, -0.003967877943068743, -0.01533935684710741, -0.011940219439566135, -0.01905113458633423, -0.01802673749625683, -0.0038880545180290937, 0.012532240711152554, -0.0075499434024095535, -0.024226339533925056, -0.0368783138692379, 0.00047228721086867154, 0.01745467074215412, -0.027006845921278, -0.020554471760988235, -0.029694227501749992, -0.006668562535196543, -0.009266141802072525, 0.025530116632580757, 0.030598890036344528, -0.0124790258705616, 0.009326010011136532, -0.006538849789649248, 0.007709589786827564, -1.3992444110044744e-05, -0.02322854846715927, -0.009379224851727486, 0.019197477027773857, 0.01471407525241375, 0.012864837422966957, 0.0019174196058884263, 0.010277235880494118, 0.014075489714741707, 0.0048026954755187035, 0.010516705922782421, -0.0035953696351498365, 0.0072838664054870605, -0.009572130627930164, -0.026341652497649193, 0.0006202927324920893, 0.004293822683393955, 0.02113984152674675, -0.011867048218846321, -0.012492329813539982, -0.033738601952791214, 0.015592129901051521, -0.006721777841448784, 0.008793855085968971, -0.01294466108083725, -0.0060299769975245, -0.013796107843518257, 0.002489485777914524, -0.003598695620894432, 0.0003313494089525193, 0.0249580517411232, 0.0007470952114090323, 0.00993798766285181, -0.008714031428098679, 0.031689807772636414, -0.028097763657569885, 0.00012347649317234755, -0.01180052850395441, 0.009133103303611279, -0.015898119658231735, 0.0022965797688812017, -0.0012405854649841785, 0.009306053631007671, -0.015844903886318207, -0.0088470708578825, 0.0016538368072360754, 0.019197477027773857, -0.006405811291188002, 0.023867134004831314, -0.006289402488619089, 0.004197369329631329, 0.019343819469213486, 0.01277836225926876, -0.0168559979647398, 0.007702937815338373, -0.0320357084274292, -0.01866532303392887, -0.0017128726467490196, -0.0029817288741469383, -0.011647533625364304, -0.022749610245227814, -0.011700749397277832, -0.017760660499334335, 0.014687467366456985, 0.008155269548296928, 0.004041049163788557, -0.00031825341284275055, 0.0005882802652195096, 0.027831686660647392, 0.02024848386645317, 0.004410231485962868, -0.0001780431339284405, -0.012212947942316532, -0.01708216220140457, 0.0396721251308918, -0.010995645076036453, -0.014860417693853378, 0.004503358621150255, 0.026341652497649193, -0.013184130191802979, -0.035414889454841614, 0.019716328009963036, 0.0398583821952343, -0.01978284679353237, -0.025357166305184364, -0.015844903886318207, 0.01676286943256855, 0.022403709590435028, -0.0162972342222929, -0.002466204110532999, 0.000614888034760952, 0.0206742063164711, -0.006352595519274473, -0.015911422669887543, -0.015099886804819107, 0.030652105808258057, -0.0259824488312006, 0.028097763657569885, -0.0016064416849985719, 0.027725255116820335, -0.02104671485722065, 0.0029268504586070776, -0.01568525657057762, -0.022616570815443993, -0.01732163317501545, 0.013729589059948921, 0.0025327233597636223, 0.02352123335003853, -0.012671931646764278, 0.01635044999420643, 0.002439596224576235, 4.786273348145187e-05, 0.0018209666013717651, -0.012705191038548946, -0.00410756841301918, 0.024319466203451157, -0.01858549937605858, -1.1010767593688797e-05, -0.0223504938185215, 0.010969037190079689, 0.012598760426044464, -0.0094523960724473, -0.012844881974160671, 0.0008460427052341402, -0.002130281412974, -0.020009012892842293, 0.022989079356193542, -0.0011216821148991585, 0.010762826539576054, 0.0064490488730371, -0.015525611117482185, -0.010516705922782421, -0.009538871236145496, -0.0018475742544978857, -3.461083542788401e-05, -0.02706006169319153, -0.01672295853495598, -0.027831686660647392, -0.019263997673988342, 0.01937042735517025, -0.0011075467336922884, -0.019609898328781128, 0.01754779741168022, 0.011793876998126507, -0.026887111365795135, 0.007816020399332047, -0.009272794239223003, 0.0015723506221547723, -0.018332727253437042, -0.002150237327441573, -0.006771667394787073, -0.025570029392838478, 0.018133169040083885, -0.017707444727420807, -0.032142139971256256, -0.0188116654753685, 0.024745188653469086, 0.008128661662340164, -0.0128980977460742, -0.017028948292136192, 0.007130871992558241, -0.017680836841464043, 0.009412484243512154, -0.029321718961000443, -0.026048967614769936, 0.02799133211374283, -0.001905778655782342, 0.0055177779868245125, 0.018186382949352264, -0.036479197442531586, 0.015499003231525421, 0.02071411907672882, 0.0039246403612196445, 0.0216054767370224, -0.022137632593512535, -0.017813876271247864, -0.02062099054455757, -0.010516705922782421, -0.008188528940081596, -0.020567776635289192, 0.01128832995891571, 0.010297191329300404, -0.01756110228598118, 0.012053301557898521, 0.0041740876622498035, -0.0015540578169748187, 0.012798318639397621, 0.0248649250715971, 0.0026907066348940134, 0.017201898619532585, 0.0014941904228180647, 0.0015407538739964366, -0.020541168749332428, -0.006964573636651039, -0.028337232768535614, -0.007889192551374435, 0.007596507202833891, 0.022656481713056564, -0.011354848742485046, -0.03453683480620384, -0.03073192946612835, -0.01672295853495598, -0.0325944684445858, -0.017680836841464043, -0.011474584229290485, 0.004104242660105228, -0.007250606548041105, -0.02551681362092495, 0.00956547912210226, 0.017215201631188393, -0.01885157637298107, 0.02006222866475582, -0.015006760135293007, -0.02113984152674675, 0.003984507638961077, -0.030545674264431, 0.02212432771921158, -0.015312748961150646, -0.0267274659126997, -0.022283975034952164, -0.01866532303392887, -0.021299488842487335, -0.002055447082966566, 0.0019007897935807705, -0.01086925808340311, 0.005015557166188955, -0.01838594116270542, 0.0072772144339978695, 0.009139755740761757, 0.019902583211660385, 0.016217412427067757, -0.011022252030670643, -0.013436904177069664, 0.006631976924836636, 0.004357015714049339, -0.007762805558741093, -0.010110937990248203, 0.016310539096593857, 0.005730640143156052, 0.008833766914904118, -0.0075166840106248856, -0.03216874599456787, -0.005833745002746582, -0.00016796130512375385, 0.03639937564730644, -0.013929147273302078, -0.024319466203451157, 0.020940283313393593, 0.006222882773727179, -0.014115400612354279, -0.013031136244535446, 0.012186340987682343, -0.0026657620910555124, 0.006279424298554659, 0.025769587606191635, -0.012844881974160671, 0.013396992348134518, -0.025942537933588028, -0.005125313997268677, -0.030040128156542778, -0.013689677231013775, -0.005431302823126316, -0.013702981173992157, -0.01396905817091465, 0.00863420870155096, 0.010416926816105843, -0.011986782774329185, 0.002023850567638874, -0.020940283313393593, -0.011028904467821121, -0.012026694603264332, -0.015512307174503803, 0.0020870438311249018, -0.018838273361325264, -0.021898161619901657, 0.018226295709609985, -0.011102075688540936, -0.012498981319367886, 0.02248353138566017, 0.0125721525400877, -0.023028990253806114, 0.01914426125586033, 0.24947407841682434, -0.018093256279826164, 0.021778427064418793, 0.025397079065442085, 0.00019966191030107439, 0.018984615802764893, 0.02892260253429413, 0.008900285698473454, 0.008647512644529343, 0.01819968782365322, -0.032567862421274185, 0.0014659196604043245, 0.01829281449317932, -0.004110894165933132, 0.005684076342731714, -0.02207111194729805, -0.016084372997283936, -0.023401498794555664, -0.009625346399843693, -0.006911357864737511, 0.012079909443855286, -0.01496684830635786, -0.0035288501530885696, 0.004646374844014645, 0.028337232768535614, 0.019955797120928764, -0.039831772446632385, 0.0028603309765458107, 0.00887367781251669, -0.009026672691106796, -0.009705170057713985, 0.003156342078000307, -0.0013337124837562442, -0.01728172041475773, 0.027073366567492485, -0.014487909153103828, 0.02229727804660797, 0.005092054605484009, 0.025676459074020386, 0.003848142921924591, 0.016124283894896507, 0.0028836128767579794, 0.011587666347622871, -0.00872733537107706, -0.004450142849236727, 0.00482930289581418, -0.0225367471575737, -0.013769500888884068, 0.0021119886077940464, 0.020474648103117943, -0.015206318348646164, -0.01142801996320486, 0.026927024126052856, 0.008441302925348282, 0.007835976779460907, 0.00022117675689514726, 0.018146472051739693, -0.010536661371588707, -0.022829432040452957, -0.010510053485631943, -0.008647512644529343, 0.04214664548635483, -0.002602568594738841, 0.01082269474864006, -0.034749697893857956, 0.018505675718188286, -0.008015578612685204, 0.0008285813382826746, 0.01728172041475773, -0.004293822683393955, 0.00863420870155096, 0.008600949309766293, -0.0057572475634515285, 0.0043370602652430534, -0.0363195538520813, -0.025197520852088928, 0.025450294837355614, 0.002946806140244007, 0.0450734943151474, 0.0029750769026577473, -0.010929125361144543, 0.02622191794216633, -0.0072772144339978695, 0.003788275644183159, -0.004959015641361475, -0.03735725209116936, 0.002705673687160015, 0.021725211292505264, 0.01927730068564415, -0.027831686660647392, -0.003412441350519657, -0.011501191183924675, -0.0020970217883586884, -0.02062099054455757, -0.0068448386155068874, 0.010609832592308521, -0.009678562171757221, 0.0240267813205719, -0.02276291325688362, 0.010490098036825657, -0.006469004321843386, -0.02713988535106182, 0.028736349195241928, 0.026847200468182564, -0.03552132099866867, 0.026381565257906914, 0.013902539387345314, 0.015751777216792107, -0.0056109051220119, -0.02631504461169243, 0.014581036753952503, -0.005324872210621834, 0.028017939999699593, 0.017680836841464043, 0.010204064659774303, 0.008886981755495071, -0.0075432914309203625, -0.02732613869011402, 0.027272922918200493, 0.001177392085082829, -0.00015476136468350887, -0.024891531094908714, -0.032621078193187714, 0.014620947651565075, -0.010769478976726532, -0.021685300394892693, -0.03977855667471886, 0.0024479113053530455, -0.01573847234249115, -0.021405918523669243, 0.03751689940690994, 0.011720704846084118, 0.01210651732981205, 0.0144346933811903, -0.0038082313258200884, 0.006306032184511423, 0.018319422379136086, -0.003548806067556143, 0.013982362113893032, 0.006818230729550123, 0.015898119658231735, -0.00812201015651226, -0.012239555828273296, -0.027539001777768135, 0.013742893002927303, -0.023774007335305214, 0.010955733247101307, 0.0012089887168258429, 0.007816020399332047, -0.01557882595807314, -0.016137588769197464, 0.0033026845194399357, -0.019357124343514442, -0.007230650633573532, 0.03137051314115524, -0.024186426773667336, -0.037410467863082886, 0.0036785188131034374, 0.005800485145300627, 0.01635044999420643, -0.023361587896943092, 0.0020122097339481115, 0.0407896526157856, -0.02062099054455757, 0.011015600524842739, -0.009665258228778839, -0.17092806100845337, 0.016363754868507385, 0.03243482485413551, -0.017720747739076614, 0.016270626336336136, 0.02072742208838463, -0.010210716165602207, -0.008966805413365364, -0.013357080519199371, 0.017348241060972214, 0.027831686660647392, 0.02998691238462925, -0.017707444727420807, -0.02654121071100235, -0.0015490688383579254, 0.03682509809732437, -0.0002752237196546048, -0.004480076488107443, 0.03860781714320183, 0.0322219617664814, 0.01252558920532465, -0.018785057589411736, 0.016031157225370407, -0.008747291751205921, 0.0215123500674963, 0.022643178701400757, -0.0016621516551822424, 0.0026225245092064142, -0.0077827610075473785, -0.0027389333117753267, -0.00697122560814023, 0.007463468238711357, 0.011667490005493164, -0.011534451507031918, 0.0248649250715971, 0.010569920763373375, -0.005351479630917311, -0.017893698066473007, -0.0059501538053154945, 0.02374739944934845, 0.0021618781611323357, 0.0011607622727751732, -0.001118356129154563, 0.006924661807715893, -0.053055815398693085, 5.277373202261515e-05, -0.00019883042841684073, 0.002017198596149683, -0.03863442316651344, -0.005447932984679937, 0.01066304836422205, -0.0034290712792426348, -0.005584297236055136, -0.011068816296756268, 0.015365964733064175, 0.020687511190772057, -0.013702981173992157, 0.04086947441101074, 0.0013544998364523053, 0.006355921737849712, 0.00021078310965094715, -0.021033411845564842, -0.006099821999669075, 0.009039976634085178, 0.01708216220140457, -0.008421346545219421, -0.022975774481892586, -0.007975666783750057, -0.00706435227766633, 0.0072772144339978695, -0.0006493949331343174, -0.03123747557401657, 0.0275656096637249, 0.0014792234869673848, 0.009718474000692368, -0.006096496246755123, -0.004835954867303371, 0.002961772959679365, -0.0018958008149638772, -0.017667533829808235, -0.02305559813976288, 0.01760101318359375, -0.037410467863082886, -0.014767290093004704, -0.015419179573655128, 0.023361587896943092, 0.0055410596542060375, 0.00534482765942812, -0.009798296727240086, -0.02113984152674675, 0.033924855291843414, -0.01760101318359375, -0.017295025289058685, -0.02584940940141678, -0.00183094444219023, 0.012485677376389503, 0.013323821127414703, 0.011953523382544518, 0.004077634774148464, -0.01648348942399025, 0.019104350358247757, -0.016416970640420914, -0.014940240420401096, 0.008767247200012207, 0.018226295709609985, 0.007716241758316755, 0.010536661371588707, 0.004862562753260136, 0.013649765402078629, -0.007902495563030243, -0.006379203405231237, 0.02365427277982235, 0.007410252932459116, 0.015059975907206535, -0.013031136244535446, 0.035361673682928085, 0.022563355043530464, -0.01676286943256855, 0.030066736042499542, -0.04459455609321594, 0.023481322452425957, 0.019769543781876564, 0.002384717809036374, -0.008068794384598732, -0.0011524473084136844, 0.013496771454811096, -0.09977898746728897, -0.0011341545032337308, 0.005338176153600216, 0.014887025579810143, -0.000525502662640065, 0.01909104734659195, 0.0195566825568676, 0.007616462651640177, 0.004536618012934923, 0.013470163568854332, -0.030146557837724686, -0.007902495563030243, 0.016031157225370407, -0.000893021933734417, 0.006638628896325827, -0.01487372163683176, -0.0037716457154601812, -0.005720661953091621, -0.015392571687698364, 0.006864794529974461, -0.0018326074350625277, -0.0178803950548172, -0.004340386018157005, -0.0006215399480424821, -0.005255026742815971, -0.00971182156354189, -0.030332813039422035, 0.0331532321870327, 0.010277235880494118, 0.008647512644529343, 0.0054944963194429874, -0.022922560572624207, 0.007663026452064514, -0.03530845791101456, -0.002215093467384577, 0.010210716165602207, -0.014474605210125446, -0.0032893805764615536, -0.006146385800093412, -0.021725211292505264, -0.006352595519274473, 0.0022915909066796303, 0.01013089343905449, -0.020288394764065742, -0.012785014696419239, -0.006575435400009155, -0.020048925653100014, 0.003419093322008848, -0.0037018004804849625, -0.029268503189086914, -0.0404171422123909, 0.006585413124412298, 0.013124262914061546, -0.0031995796598494053, 0.03160998225212097, -0.0196498092263937, 0.006079866550862789, 0.02462545409798622, -0.0142484400421381, -0.0033292921725660563, -0.005770551506429911, -0.022230759263038635, 0.007523335982114077, -0.0004506684490479529, 0.01689590886235237, 0.0012987898662686348, -0.002880286891013384, -0.0015632042195647955, 0.003562110010534525, -0.002348132198676467, -0.0039179883897304535, 0.03110443614423275, -0.011607622727751732, 0.02268308959901333, -0.0023963586427271366, -0.022310582920908928, -0.017867090180516243, -0.013390340842306614, -0.010855954140424728, -0.024878228083252907, -0.0066253249533474445, -0.012758406810462475, 0.013955754227936268, -0.0010917484760284424, 0.015033368021249771, 0.006964573636651039, -0.009818252176046371, 0.005567667540162802, 0.023015687242150307, 0.007909148000180721, -0.026288438588380814, 0.006718452088534832, 0.008447954431176186, -0.01903783157467842, 0.0005791338626295328, 0.003172971773892641, 0.004233954939991236, 0.006332640070468187, 0.013044440187513828, 0.011474584229290485, -0.0180666483938694, -0.01480720192193985, -0.057206619530916214, 0.03134390711784363, 0.012093213386833668, 0.00037936802254989743, 0.017707444727420807, -0.01726841740310192, 0.01988927833735943, 0.038714248687028885, 0.0116408821195364, 0.01403557788580656, -0.026368260383605957, 0.02145913429558277, -0.006259468384087086, -0.01596463844180107, -0.019170869141817093, -0.040949296206235886, 0.02538377419114113, 0.0012788340682163835, 0.021671997383236885, 0.0088470708578825, -0.0034323972649872303, 0.015552218072116375, 0.024040084332227707, 0.017627621069550514, -0.02123296819627285, 0.001222292659804225, -0.05576980486512184, 0.0020787289831787348, -0.0066086952574551105, -0.021818339824676514, -0.0070909601636230946, -0.021339399740099907, -0.008494517765939236, 0.024758493527770042, 0.008461258374154568, -0.010696307756006718, -0.004972319584339857, 0.012824926525354385, -0.0260755755007267, 0.009232882410287857, -0.04512671008706093, -0.01661652699112892, -0.0012804970610886812, 0.005062120966613293, -0.017853787168860435, 0.017428062856197357, -0.013729589059948921, 0.014860417693853378, 0.026155399158596992, 0.013836019672453403, 0.0036186513025313616, 0.004253910854458809, 0.008095402270555496, -0.005840396974235773, -0.009186319075524807, -0.01838594116270542, 0.005760573782026768, -0.02659442648291588, -0.012093213386833668, -0.01782717928290367, 0.008920242078602314, -0.013982362113893032, 0.008487866260111332, 0.009638650342822075, 0.002677402924746275, -0.010749523527920246, -0.007796064950525761, -0.009059932082891464, 0.036532413214445114, -0.03600025922060013, -0.03158337622880936, 0.0004147064173594117, -0.0070909601636230946, 0.008840418420732021, 0.02184494584798813, -0.0115477554500103, -0.006931313779205084, -0.01849237270653248, -0.005624209064990282, 0.024665366858243942, 0.017667533829808235, 0.0020670881494879723, -0.012858185917139053, 0.010549965314567089, 0.026035664603114128, -0.0010110937291756272, -0.01459433976560831, -0.014727379195392132, 0.011620926670730114, 0.016071069985628128, -0.011521147564053535, -0.006575435400009155, 0.023308372125029564, 0.024691974744200706, 0.0019207455916330218, 0.015765080228447914, 0.004014441277831793, -0.023907046765089035, 0.013603202067315578, 0.01802673749625683, 0.01175396516919136, 0.008687424473464489, 0.010343755595386028, -0.007749501615762711, 0.006322661880403757, -0.01811986416578293, -0.024146515876054764, -0.019955797120928764, 0.008820462971925735, 0.012246208265423775, -0.009718474000692368, 0.013902539387345314, 0.002461215015500784, 0.0391133651137352, 0.011647533625364304, 0.01268523558974266, 0.0019240714609622955, -0.01024397648870945, -0.010257280431687832, 0.024758493527770042, 0.00789584405720234, 0.008048838935792446, 0.017933610826730728, -0.007110916078090668, 0.00898676086217165, 0.022842736914753914, 0.01268523558974266, 0.0027805077843368053, -0.0007475109305232763, -0.0348295196890831, 0.01168744545429945, -0.019263997673988342, -0.02564985305070877, -0.006116452161222696, -0.004247258882969618, 0.0005284128710627556, -0.002639154205098748, 0.037037961184978485, -0.026248525828123093, 0.045738689601421356, 0.010749523527920246, 0.005225093103945255, 0.012651976197957993, -0.019024526700377464, 0.015618737787008286, 0.022057808935642242, -0.0029052316676825285, -0.031077830120921135, -0.03868763893842697, 0.009691866114735603, -0.007716241758316755, 0.014115400612354279, -0.029534580186009407, -0.036159906536340714, -0.022337188944220543, 0.00431710435077548, 0.019609898328781128, -0.012419158592820168, -0.006898053921759129, 0.023800615221261978, 0.003621977288275957, 0.0031962536741048098, 0.018133169040083885, -0.011155291460454464, -0.0029201984871178865, 0.0003824861196335405, -0.005444606766104698, -0.003249468980357051, -0.01450121309608221, 0.012558848597109318, 0.006106473971158266, -0.02342810668051243, 0.0054778666235506535, 0.012099865823984146, -0.0012247870909050107, 0.0028320602141320705, 0.008088749833405018, 0.026182007044553757, 0.0004381960607133806, -0.008541081100702286, 0.01978284679353237, -0.019450251013040543, -0.01750788651406765, 0.00743686081841588, -0.011042208410799503, -0.003748364048078656, -0.004453469067811966, -0.04204021394252777]}, {"created_time": 1695640870.95068, "accessed_time": 1695640870.95068, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009662246331572533, -0.009339293465018272, 0.00028979324270039797, -0.007137935142964125, -0.0022326644975692034, 0.021749941632151604, 0.014776778407394886, 0.0005021435208618641, 0.004567487630993128, -0.05048622936010361, 0.005150781478732824, 0.014816323295235634, -0.003135616658255458, -0.01768995262682438, -0.005384758114814758, 0.012713829055428505, 0.02435993403196335, 0.012437012046575546, 0.012562238611280918, -0.047322601079940796, -0.016701318323612213, 0.011692240834236145, 0.008067251183092594, -0.005246349610388279, -0.00024674649466760457, -0.0055693029426038265, 0.023252664133906364, -0.020405398681759834, 0.01699131727218628, -0.007006117608398199, 0.012845647521317005, -0.012911556288599968, -0.016582682728767395, -0.015844503417611122, -0.013366327621042728, -0.027602652087807655, 0.006277823820710182, 0.008996566757559776, -0.0013717293040826917, -0.022171758115291595, 0.020761307328939438, -0.0062086195684969425, 0.004116011783480644, -0.009095430374145508, -0.02677220106124878, 0.016411319375038147, -0.03321809321641922, -0.01107269711792469, -0.03461536020040512, -0.0015208481345325708, 0.001301701064221561, 0.005826347973197699, 2.4471259166602977e-05, 0.0010009916732087731, -0.027813561260700226, 0.012041558511555195, 0.0032015254255384207, 0.03327082097530365, 0.012799510732293129, -0.023832663893699646, -0.01112542487680912, 0.020339490845799446, -0.02305493876338005, -0.011975649744272232, -0.0015093141701072454, -0.015870865434408188, -0.000992752960883081, -0.005793393589556217, -0.02439947985112667, 0.02939537540078163, 0.014289052225649357, 0.018507223576307297, 0.013946326449513435, 0.004063284490257502, 0.02322630025446415, -0.010453153401613235, -0.008409976959228516, 0.001886642654426396, -0.008680203929543495, -0.0019607902504503727, 0.0035162405110895634, -0.0162399560213089, -0.01083542499691248, 0.013227919116616249, 0.01568632200360298, -0.0012242580996826291, -0.020655853673815727, 0.03052900917828083, -0.021407214924693108, -0.0016040581976994872, 0.023674482479691505, 0.0008642306202091277, -0.002203005366027355, 0.016094956547021866, 0.02069539949297905, 0.02741810865700245, -0.012614966370165348, 0.050881680101156235, 0.00658759567886591, -0.011665877886116505, -0.018243586644530296, 0.012984056025743484, -0.03725171834230423, 0.003924875985831022, -0.02048449032008648, -0.012318375520408154, -0.017452679574489594, -0.02225084975361824, 0.013313600793480873, -0.03809535130858421, -0.018744494765996933, 0.011613150127232075, 0.019060857594013214, -0.0076783886179327965, -0.021960850805044174, -0.011105651967227459, 0.001684796647168696, -0.02321312017738819, -0.012509511783719063, -0.0008864749106578529, -0.0012011899380013347, 0.02387220785021782, 0.03258536756038666, 0.013069737702608109, -0.007922251708805561, -0.013985871337354183, -0.015053595416247845, 0.011646104976534843, -0.00031492102425545454, 0.004824532661587, 0.010987015441060066, -0.005671462044119835, 0.02656129188835621, -0.02338448166847229, -0.00023562436399515718, 0.032980822026729584, -0.030871735885739326, 0.015488594770431519, 0.0002788770943880081, -0.026113111525774002, -0.01539632212370634, 0.025612203404307365, -0.01274019293487072, -0.0028291400521993637, -0.023951299488544464, 0.02165766805410385, 0.023661300539970398, 0.019219039008021355, -0.002997207920998335, 0.006027370225638151, 0.01896858587861061, -0.02128857932984829, 0.005243054125458002, -0.014842687174677849, 0.054098036140203476, 0.011712013743817806, -0.0023891981691122055, 0.005694529972970486, -0.021789487451314926, -0.0021502783056348562, 0.011850422248244286, 0.004920100327581167, 0.03559081256389618, -0.011487923562526703, -0.02305493876338005, 0.022158576175570488, 0.0019805629272013903, -0.0016938591143116355, -0.002010221825912595, -0.005796689074486494, 0.008884521201252937, -0.00041007701656781137, -0.028894467279314995, 0.02907901257276535, -0.0016155922785401344, 0.0031405596528202295, 0.004936577752232552, 0.005009077489376068, -0.012720420025289059, -0.021090852096676826, -0.017334043979644775, 0.015870865434408188, 0.02176312357187271, -0.0022079485934227705, -0.0010504232486709952, -0.01083542499691248, 0.004583965055644512, -0.006030665710568428, 0.006913844961673021, -0.012806101702153683, 0.012799510732293129, 0.025519931688904762, -0.011942694894969463, -0.00886474922299385, -0.6711109280586243, -0.00417862506583333, 0.00183062010910362, -0.024847660213708878, -0.0035426041577011347, 0.031109007075428963, 0.004438965115696192, 0.012357921339571476, -0.011211106553673744, 0.011178151704370975, -0.007816797122359276, 0.022606756538152695, -0.014737232588231564, 0.019851764664053917, 0.007671797648072243, -0.011804286390542984, 0.009899518452584743, 0.0090822484344244, 0.017663588747382164, 0.011995422653853893, -0.02441266179084778, 0.02870992198586464, -0.014658141881227493, 0.007441116496920586, 0.02247493900358677, -0.01368269044905901, 0.02451811544597149, -0.028683559969067574, -0.003624990116804838, 0.013801326043903828, -0.01821722276508808, 0.03522172197699547, 0.008680203929543495, 0.017004499211907387, 0.051039863377809525, 0.0016501944046467543, -0.0276817437261343, 0.0389389842748642, 0.01709677278995514, 0.03472081571817398, -0.043183520436286926, -0.03514263406395912, 0.016859499737620354, -0.005381462629884481, -0.004933282267302275, 0.003944648429751396, 0.025823112577199936, -0.011277015320956707, 0.012792919762432575, 0.0030103896278887987, 0.010802471078932285, 0.03429899737238884, -0.014974504709243774, -0.00593839306384325, -0.01024224516004324, 0.006169074214994907, 0.016543136909604073, -0.005875779781490564, -0.002081073820590973, 0.0029659010469913483, 0.005187031347304583, 0.0024040276184678078, -0.007849751971662045, -0.02424129843711853, -0.040283527225255966, 0.012496329843997955, -0.02661401964724064, -0.009846791625022888, -0.0014977800892665982, 0.008317705243825912, 0.003437149804085493, 0.026482202112674713, -0.0014977800892665982, 0.011270424351096153, 0.021275397390127182, 0.025493567809462547, 0.0077377064153552055, 0.020550400018692017, -0.0018734608311206102, -0.004185216035693884, 0.022501302883028984, -0.01779540628194809, -0.014526324346661568, -0.009879746474325657, 0.03226900473237038, -0.014579051174223423, -0.015844503417611122, -0.012891783379018307, -0.006788617931306362, -0.0185994952917099, 0.011593378148972988, 0.009181112051010132, 0.00929974764585495, 0.001156701473519206, -0.01376178115606308, 0.015725865960121155, -0.030819008126854897, 0.009424974210560322, 0.015132686123251915, -0.02548038586974144, 0.004791577812284231, -0.025282658636569977, 0.024491751566529274, 0.009174521081149578, 0.016516773030161858, -0.0014911891194060445, 0.0134915541857481, 0.044053517282009125, 0.01751858927309513, -0.015778593719005585, 0.01753177121281624, -0.00036600042949430645, -0.008989975787699223, -0.008456113748252392, -0.02536175027489662, -0.02246175706386566, -0.008073842152953148, -0.0005445724236778915, -0.000954031536821276, -0.05293804034590721, 0.01688586361706257, 0.00732248043641448, 0.00841656792908907, 0.028894467279314995, -0.006478846073150635, 0.0124436030164361, 0.0066337320022284985, -0.012555647641420364, -0.007717933971434832, -0.008660431019961834, 0.007368616294115782, -0.003000503173097968, -0.008330886252224445, -0.0068479361943900585, 0.02343720942735672, 0.002273857593536377, 0.008693385869264603, -0.038833532482385635, 0.01977267488837242, -0.012489738874137402, -0.025783566758036613, 0.0005721717607229948, 0.007012708578258753, -0.008403385989367962, 0.014948141761124134, -0.028077196329832077, -0.0020596536342054605, -0.009214065968990326, -0.025019023567438126, -0.010677243582904339, -0.01112542487680912, -0.013359736651182175, -0.016688136383891106, -0.0023990843910723925, -0.003631581086665392, -0.00804088730365038, -0.015739047899842262, 0.015119505114853382, -0.005219985730946064, 0.006043847184628248, -0.0007744297035969794, 0.03337627276778221, -0.025058569386601448, 0.023292209953069687, -0.01123087853193283, -0.015554503537714481, 0.023845843970775604, 0.039202623069286346, -0.008126568980515003, -0.044000789523124695, 0.0032229458447545767, -0.04041534662246704, -0.02805083431303501, 0.011000197380781174, 0.016899045556783676, 0.02511129528284073, -0.00887133926153183, -0.007889296859502792, 0.01650359109044075, 0.009424974210560322, 0.006258051376789808, -0.02090630680322647, -0.01316860131919384, 0.010393835604190826, 0.01828313246369362, -0.01660904660820961, 0.008027705363929272, 0.013234510086476803, -0.020734943449497223, 0.016595864668488503, 0.014776778407394886, -0.005348508246243, 0.03342900052666664, -0.006198733113706112, -0.005506689660251141, -0.00018300021474715322, 0.012964283116161823, 0.009240429848432541, -0.009240429848432541, -0.005098054651170969, 0.02773447148501873, -0.004102829843759537, -0.001343717915005982, -0.009602928534150124, 0.02403038926422596, -0.01443405169993639, 0.014381324872374535, -0.028209015727043152, 0.03295445814728737, -0.0008374551543965936, -0.016411319375038147, -0.017281316220760345, -0.0023826071992516518, -0.00873293075710535, -0.003536013187840581, 0.016319047659635544, -0.0057868026196956635, 0.02247493900358677, 0.005111236125230789, -0.01099360641092062, -0.0059746429324150085, 0.0020942557603120804, 0.015106323175132275, 0.0031899914611130953, -0.003713967278599739, 0.012160194106400013, 0.0027533448301255703, -0.008192477747797966, -0.0002249141689389944, -0.013148828409612179, -0.013300418853759766, -0.004814646206796169, 0.020299945026636124, 0.026798564940690994, 0.01258201152086258, -0.026113111525774002, 0.01966721937060356, -0.017030863091349602, 0.02736538089811802, -0.003997375722974539, -0.01823040470480919, 0.01316860131919384, 0.034483544528484344, -0.01005110889673233, -0.005707711912691593, -0.007909069769084454, 0.021328125149011612, 0.007612479384988546, -0.006202028598636389, 0.02944810315966606, 0.016543136909604073, 0.0037469216622412205, 0.0006866884650662541, 0.0015224958769977093, 0.01024224516004324, -0.0036052174400538206, 0.01500086858868599, -0.0018174382857978344, 0.0361444465816021, 0.04821896180510521, 0.016859499737620354, 0.008798839524388313, 0.011329742148518562, 0.0021090852096676826, -0.011290197260677814, 0.002511129481717944, 0.021525850519537926, -0.008535204455256462, -0.004320329055190086, -0.008370432071387768, -0.01293132919818163, -0.014209961518645287, 0.003816126147285104, -0.009022930637001991, 0.018190860748291016, 0.019482674077153206, -0.008673612959682941, 0.014855869114398956, 0.004013852681964636, -0.0020991989877074957, -0.026917200535535812, -0.024307208135724068, 0.005747257266193628, 0.018256768584251404, -0.010637698695063591, 0.009840200655162334, -0.017492225393652916, 0.006169074214994907, 0.003618399379774928, -0.02317357435822487, 0.014381324872374535, 0.017136316746473312, -0.020827217027544975, 0.00900315772742033, -0.009662246331572533, 0.002184880431741476, 0.03553808480501175, -0.012562238611280918, 0.028736285865306854, -0.03250627592206001, -0.0031652755569666624, -0.017017681151628494, -0.015119505114853382, -0.020774489268660545, 0.010387244634330273, 0.013030191883444786, -0.0031438551377505064, -0.02305493876338005, -0.0021123806945979595, -0.015027232468128204, -0.014737232588231564, -0.009444747120141983, 0.01688586361706257, 0.009411793202161789, -0.0015908763743937016, 0.0027615835424512625, 0.008311114273965359, -0.008225432597100735, 0.027813561260700226, 0.007665206678211689, -0.0054902127012610435, -0.01432859804481268, -0.025177204981446266, 0.01622677408158779, 0.11652696132659912, 0.02256721258163452, 0.0005004958366043866, 0.018428131937980652, 0.030080828815698624, -0.013208146207034588, -0.01274019293487072, 0.0006912197568453848, 0.014170416630804539, 0.00490362336859107, 0.0285517405718565, -0.023094482719898224, -0.001962437992915511, -0.030950825661420822, 0.0248872060328722, -0.015580867417156696, -0.0244522076100111, -0.01784813404083252, 0.007157708052545786, -0.025071751326322556, 0.0033531158696860075, 0.002997207920998335, -0.015132686123251915, -0.004518055822700262, -0.015290867537260056, -0.013399282470345497, 0.02236948534846306, 0.03000173717737198, 0.015580867417156696, -0.010743153281509876, 0.005678053013980389, -0.00091531005455181, 0.008818612433969975, -0.0008675260469317436, 0.0077377064153552055, 0.0010174688650295138, -0.010281790047883987, 0.003974307328462601, 0.0130104199051857, 0.002778060734272003, 0.011408832855522633, 0.013880416750907898, 0.018731312826275826, -0.023990845307707787, 0.02590220235288143, 0.004356579389423132, 0.010604743845760822, 0.03424626961350441, -0.011441787704825401, 0.003760103601962328, 0.040837161242961884, 0.01608177460730076, 0.01950903795659542, -0.017334043979644775, 0.022224485874176025, 0.014908595941960812, 0.0035096495412290096, 0.0010553664760664105, -0.012562238611280918, 0.009840200655162334, 0.00571100739762187, -0.0010298268171027303, 0.0002751697029452771, -0.012733601965010166, 0.006861117668449879, -0.019113585352897644, -0.037541717290878296, 0.004366465378552675, -0.028182651847600937, -0.014170416630804539, -0.004676237236708403, -0.013260873034596443, -0.018559949472546577, -0.01045974437147379, 0.028393559157848358, 0.024649932980537415, 0.006768845487385988, -0.010268609039485455, 0.006788617931306362, 0.0019031198462471366, -0.009016339667141438, -0.024069935083389282, -0.00031018382287584245, 0.006521686911582947, -0.011685649864375591, 0.012667693197727203, -0.005951575003564358, 0.002799481153488159, -0.02242221310734749, 0.012687466107308865, 0.0036579447332769632, 0.021565396338701248, 0.018691767007112503, -0.005533053074032068, -0.006808390840888023, 0.011520878411829472, 0.003994080238044262, 0.026297656819224358, -0.01983858272433281, 0.011277015320956707, 0.025836294516921043, -0.02300221100449562, 0.01128360629081726, -0.014842687174677849, -0.008456113748252392, -0.01569950394332409, 0.015567685477435589, -0.009919291362166405, -0.014025417156517506, 0.004399419762194157, 0.013814507983624935, 0.005180440377444029, 0.006861117668449879, -0.00937883835285902, -0.010314744897186756, 0.023028574883937836, 0.017004499211907387, 0.008772476576268673, 0.0011262185871601105, -0.025981293991208076, -0.0004137844080105424, -0.031741730868816376, 0.020603125914931297, -0.004864078015089035, -0.01220633089542389, 0.019047675654292107, -0.007137935142964125, -0.03880716860294342, 0.0006920435698702931, -0.004086352419108152, 0.012087694369256496, 0.0007880234625190496, -0.018138132989406586, -0.016543136909604073, -0.011942694894969463, -0.017940405756235123, -0.00329874106682837, 0.00716429902240634, 0.004145670682191849, -0.009484292939305305, -0.018573131412267685, 0.0022326644975692034, -0.007632252294570208, -0.024333570152521133, -0.008897703140974045, -0.024742206558585167, 0.0023859026841819286, -0.013959507457911968, -0.020009946078062057, 0.04046807438135147, 0.013109282590448856, -0.011250651441514492, 0.0007324127946048975, 0.010380653664469719, -0.033191729336977005, -0.024966295808553696, -0.02778719738125801, 0.01671450026333332, 0.0410480722784996, 0.0330071821808815, 0.04154897853732109, -0.0010907924734055996, 0.02321312017738819, -0.014447233639657497, -0.002334823366254568, -0.001379967899993062, 0.006630436517298222, -0.014789960347115993, -0.03124082460999489, 0.027708107605576515, 0.02907901257276535, 0.009332702495157719, 0.0050848727114498615, 0.012535875663161278, -0.02242221310734749, -0.0049135093577206135, -0.010611334815621376, -0.003855671500787139, 0.001003463170491159, -0.026798564940690994, -0.004794873297214508, 0.008515431545674801, -0.00599441584199667, 0.006940208375453949, 0.004349988419562578, -0.01384087186306715, 0.036856263875961304, 0.006215210538357496, 0.010519062168896198, -0.011224287562072277, 0.021380851045250893, -0.010868379846215248, 0.01608177460730076, 0.006600777618587017, -0.03026537224650383, -0.021262215450406075, -0.013280645944178104, -0.0030235713347792625, 0.006834754254668951, -0.019640855491161346, -0.016055410727858543, 0.0102620180696249, 0.0010949118295684457, -0.012423830106854439, -0.014539506286382675, 0.006396459881216288, -0.021644487977027893, -0.0031125484965741634, 0.014315416105091572, -0.014236325398087502, -0.002586924936622381, -0.015501776710152626, -0.00949088390916586, -0.0293426476418972, 0.01338610053062439, 0.02037903666496277, -0.014078143984079361, 0.020352672785520554, -0.005444076377898455, -0.023318573832511902, -0.02193448692560196, -0.006416232790797949, 0.0146713238209486, -0.0051277135498821735, 0.028472650796175003, -0.0013601952232420444, -0.01602904684841633, -0.006310778670012951, 0.053992580622434616, 0.0128786014392972, 0.0008082080748863518, -0.0032295368146151304, 0.018138132989406586, 0.008884521201252937, -0.017610860988497734, -0.0007888473337516189, 0.015066777355968952, -0.02176312357187271, -0.024214934557676315, 0.024149026721715927, 0.0218290314078331, 0.024214934557676315, -0.01622677408158779, -0.01236451230943203, 0.005935097578912973, 0.006465664599090815, -0.023265846073627472, -0.003862262237817049, 0.0033597068395465612, -0.012937919236719608, -0.04078443720936775, 0.007836570031940937, 0.002319993684068322, 0.02504538744688034, -0.02198721282184124, -0.0005243878113105893, -0.013438827358186245, -0.01391996257007122, 0.0102620180696249, 0.01179769542068243, -0.017426317557692528, 0.021578578278422356, 0.0045773740857839584, -0.0012209626147523522, -0.02586265839636326, 0.006538164336234331, 0.0060636200942099094, -0.01805904135107994, -0.028578104451298714, 0.018639041110873222, 0.018942221999168396, -0.0014096269151195884, -0.00902952067553997, 0.0128786014392972, 0.00862747710198164, -9.841282007982954e-06, -0.0038391943089663982, -0.024966295808553696, 0.008324295282363892, -0.016543136909604073, 0.011626332066953182, -0.007764069829136133, -0.012430421076714993, -0.009181112051010132, 0.000992752960883081, -0.011415423825383186, -0.01289837434887886, -0.023938117548823357, 0.014869051054120064, -0.0018240291392430663, -0.04911532253026962, -0.016543136909604073, 0.004498283378779888, 0.003974307328462601, -0.004046807065606117, 0.0032723776530474424, -0.005493507720530033, 0.023661300539970398, -0.03348172828555107, 0.02080085314810276, -0.03564354032278061, 0.009036111645400524, -0.020708581432700157, -0.0014211609959602356, -0.006577709689736366, -0.004053398035466671, 0.013082919642329216, -0.008884521201252937, -0.05032804608345032, -0.028472650796175003, 0.012259057722985744, -0.008779067546129227, -0.01875767670571804, -0.013722235336899757, 0.012779737822711468, 0.016912227496504784, 0.010136790573596954, -0.018678586930036545, -0.019271766766905785, 0.02188175916671753, -0.020444944500923157, 0.013709054328501225, 0.01828313246369362, -0.01634540967643261, -0.013893598690629005, 0.02037903666496277, 0.019100403413176537, 0.016200410202145576, -0.04004625603556633, -0.0051903268322348595, 0.0035491948947310448, 0.023424027487635612, -0.015712684020400047, -0.015528139658272266, -0.011006788350641727, 0.007731115445494652, -0.009392020292580128, 0.007777251768857241, 0.0008180944132618606, 0.027286289259791374, -0.005842824932187796, -0.0035195359960198402, 0.019601311534643173, 0.0017976656090468168, -0.013827689923346043, 0.0177294984459877, -0.016160866245627403, 0.023358119651675224, -0.0009128384408541024, -0.024636751040816307, 0.0024254480376839638, 0.01099360641092062, -0.02563856728374958, -0.04057352617383003, -0.009121793322265148, 0.010650880634784698, -0.016213592141866684, -0.024162206798791885, -0.0036908991169184446, -0.0018421540735289454, -0.004597146529704332, -0.01629268378019333, -0.0046366918832063675, 0.0324799120426178, -0.016371773555874825, 0.012074513360857964, -0.02155221439898014, -0.014882232993841171, -0.010828834027051926, -0.018849948421120644, -0.006297596730291843, -0.0029362421482801437, -0.015356777235865593, -0.008080433122813702, -0.011507696472108364, -0.004494987893849611, -0.004933282267302275, 0.0021716987248510122, -0.012021785601973534, 0.0018520404119044542, -0.014882232993841171, 0.010769516229629517, 0.017927223816514015, -0.009286565706133842, 0.031847186386585236, 0.004175329580903053, -0.015725865960121155, 0.0029345944058150053, 0.0015562742482870817, -0.006722709164023399, -0.037436261773109436, 0.023358119651675224, 0.0013997405767440796, 0.0013420702889561653, -0.012872010469436646, -0.01360359974205494, -0.0015060186851769686, -0.010894743725657463, 0.005299076437950134, -0.0015274391043931246, -0.023779936134815216, 0.001613944536074996, 0.01956176571547985, -0.0021156761795282364, 0.01762404292821884, 0.013260873034596443, -0.017175862565636635, -0.00179437012411654, 0.005767029710114002, -0.022672666236758232, 0.009523837827146053, -0.005325440317392349, 0.009009748697280884, -0.012502920813858509, 0.0058889612555503845, -0.000675978313665837, -0.013748599216341972, -0.0060800970532000065, 0.003522831480950117, -0.025309022516012192, -0.009233838878571987, 0.003102662041783333, -0.006099869962781668, -0.024122662842273712, -0.001496956218034029, -0.01999676413834095, -0.004933282267302275, 0.002366130007430911, -0.024874024093151093, 0.0017334044678136706, -0.016464047133922577, -0.014368142932653427, -0.014394506812095642, 0.009134975261986256, -0.009695201180875301, 0.020036309957504272, 0.23094482719898224, -0.005196917802095413, -0.0026330610271543264, 0.03751535341143608, -0.00026137003442272544, 0.015949957072734833, 0.034008998423814774, 0.004106125328689814, -0.0018784040585160255, -0.008034296333789825, -0.02047130838036537, -0.01163951400667429, -0.022672666236758232, 0.010347699746489525, -0.000670623208861798, -0.0006409641937352717, -0.013959507457911968, -0.021525850519537926, -0.0011303378269076347, -0.02354266308248043, 0.029316283762454987, 0.01324769202619791, -0.0007863757200539112, -0.014948141761124134, 0.027497198432683945, 0.010156563483178616, -0.004442260600626469, 0.0029840259812772274, -0.006992935668677092, 0.0024452207144349813, -0.008568158373236656, 0.01118474267423153, 0.016964953392744064, -0.010031336918473244, 0.011652695946395397, 0.007302707526832819, 0.008238614536821842, -0.009721565060317516, 0.021921304985880852, 0.014223143458366394, -0.002820901572704315, 0.012990646995604038, -0.001886642654426396, 0.010736562311649323, -0.02305493876338005, 0.027971742674708366, -0.01763722486793995, -0.01179769542068243, -0.014223143458366394, 0.003400899935513735, -0.011784513480961323, -0.0090822484344244, -0.011758150532841682, 0.020616307854652405, -0.008363841101527214, 0.00782338809221983, 0.0001672438665991649, -0.0017993133515119553, 0.020945852622389793, 0.008930657990276814, -0.009266792796552181, 0.01228542160242796, -0.019166311249136925, 0.024439025670289993, -0.024808114394545555, 0.012753374874591827, -0.019060857594013214, -0.017294498160481453, -0.006113051902502775, -0.01252269372344017, 0.012562238611280918, 0.02783992514014244, 0.008699976839125156, 0.013880416750907898, -0.019311310723423958, -0.013445418328046799, 0.01741313561797142, -0.017241772264242172, 0.01432859804481268, 0.01912676729261875, -0.007170889992266893, 0.021855395287275314, -0.005312258377671242, -0.040125347673892975, -0.012773147784173489, -0.038886260241270065, 0.011896559037268162, 0.002608345355838537, 0.014078143984079361, 0.005107940640300512, 0.008673612959682941, -0.010420199483633041, 0.011092470027506351, 0.004557601176202297, -0.001078434637747705, 0.02939537540078163, -0.020062673836946487, 0.02348993718624115, -0.00782338809221983, -0.0025852771941572428, -0.03124082460999489, -0.02773447148501873, 0.008535204455256462, -0.008311114273965359, -0.012733601965010166, 0.015554503537714481, 0.02913174033164978, 0.022171758115291595, -0.009932473301887512, -0.030555373057723045, -0.011731786653399467, -0.028736285865306854, -0.003634876571595669, 0.0011402241652831435, 0.011995422653853893, 0.0034470362588763237, 0.005394644569605589, -0.011626332066953182, -0.02144676074385643, 0.007994751445949078, 0.0024106185883283615, -0.0335344560444355, -0.009761109948158264, 0.010769516229629517, 0.006646913941949606, -0.00019772673840634525, -0.01977267488837242, 0.023793118074536324, -0.0022903347853571177, -0.02493993192911148, 0.01919267512857914, -0.01120451558381319, 0.011725195683538914, -0.007711343001574278, -0.0024666411336511374, 0.0152381407096982, 0.00881202146410942, 0.010611334815621376, -0.013854053802788258, -0.003216354874894023, 0.02736538089811802, -0.019851764664053917, -0.006284414790570736, -0.00881202146410942, 0.011863604187965393, -0.003522831480950117, -0.007355434820055962, 0.0058724842965602875, -0.024663114920258522, -0.015844503417611122, -0.02219812199473381, 0.009609519504010677, 0.008238614536821842, -0.021354487165808678, 0.007856342010200024, -0.019917674362659454, -0.04202352464199066, -0.014064962044358253, 0.02715447172522545, -0.004346692934632301, -0.019324492663145065, -0.013577235862612724, 0.016253137961030006, -0.004583965055644512, 0.00615259725600481, -0.0018751085735857487, -0.1690431833267212, 0.019219039008021355, -0.0019014721037819982, -0.030766280367970467, 0.005793393589556217, 0.006376687437295914, 0.008133159950375557, -0.003997375722974539, -0.03348172828555107, -0.0010627812007442117, 0.011725195683538914, 0.00256056129001081, -0.02074812538921833, 0.02380630001425743, 0.0046202149242162704, 0.0017894270131364465, -0.02258039452135563, 0.003277320647612214, 0.008746112696826458, 0.008963611908257008, 0.027049018070101738, 0.006679868325591087, 0.0021799372043460608, -0.01472405157983303, 0.013695872388780117, 0.008607704192399979, -0.009576564654707909, 0.00835725013166666, 0.006600777618587017, -0.018678586930036545, -0.024808114394545555, 0.0030795938801020384, -0.006992935668677092, 0.0012918147258460522, 0.03037082776427269, 0.014552688226103783, -0.013372918590903282, -0.007045662961900234, 0.009583155624568462, 0.022382667288184166, -0.0075663430616259575, 0.02364811860024929, -0.009424974210560322, 0.020405398681759834, -0.014737232588231564, 0.025440840050578117, 0.03590717539191246, 0.0012151956325396895, -0.020879942923784256, 0.0034338543191552162, -0.018309496343135834, -0.04210261255502701, 0.007803615182638168, 0.01645086519420147, -0.00455430569127202, 0.011975649744272232, -0.02467629685997963, 0.01968040131032467, -0.011197924613952637, -0.028525378555059433, 0.000546220107935369, -0.022712212055921555, -0.0015760469250380993, -0.011903150007128716, -0.0030532304663211107, 0.009418383240699768, -0.01456587016582489, -0.019983582198619843, -0.018994947895407677, 0.012667693197727203, -0.01907403953373432, -0.017821770161390305, 0.006577709689736366, -0.0020514149218797684, 0.00953701976686716, 0.022725393995642662, 0.0004621862608473748, 0.01639813743531704, -0.013801326043903828, -0.026244929060339928, -0.010037927888333797, 0.03740989789366722, -0.0248872060328722, -0.02783992514014244, 0.0014195132534950972, -0.008344068191945553, -0.006475550588220358, 0.0028291400521993637, 0.01795358769595623, -0.015844503417611122, 0.015554503537714481, -0.03870171308517456, -0.03176809474825859, -0.047217145562171936, 0.004244533833116293, 0.012812692672014236, 0.022857211530208588, -0.008442931808531284, -0.005615439265966415, -0.014064962044358253, -0.024860842153429985, -0.0229626651853323, -0.014223143458366394, 0.010644289664924145, 0.025770384818315506, 0.010064290836453438, 0.022329939529299736, 0.013735417276620865, 0.031003553420305252, -0.023621754720807076, 0.0023710732348263264, 0.004752032458782196, 0.014948141761124134, 0.003033457789570093, 0.011593378148972988, 0.04041534662246704, 0.0035590813495218754, -0.018520405516028404, 0.023938117548823357, -0.008660431019961834, 0.03762080892920494, -0.011059516109526157, -0.013748599216341972, 0.0049398732371628284, 0.00032357158488593996, 0.02799810655415058, -0.10487426072359085, -0.01104633416980505, 0.0010701959254220128, 0.013695872388780117, -0.012087694369256496, 0.015620412304997444, -0.018678586930036545, 0.005523167084902525, -0.004284079186618328, 0.020669035613536835, -0.004844305105507374, -0.007197253406047821, 0.0006038903957232833, -0.015488594770431519, 0.01741313561797142, -0.011250651441514492, 0.0022392552345991135, -0.029553556814789772, -0.013656326569616795, 0.0202603992074728, -0.019060857594013214, -0.007507025264203548, -0.02586265839636326, -0.006119642406702042, 0.011547241359949112, 0.002291982527822256, -0.02101176232099533, 0.02429402619600296, 0.020721761509776115, 0.015739047899842262, -0.01346519123762846, -0.007210434880107641, 0.020616307854652405, -0.03601263090968132, -0.0001235792151419446, 0.005981233902275562, 0.006178960669785738, -0.004514760337769985, 0.007961796596646309, 0.0012127240188419819, -0.007909069769084454, -0.019482674077153206, 0.007217025849968195, -0.00527930399402976, 0.008179295808076859, -0.008686794899404049, -0.02240903116762638, 0.0077574788592755795, -0.010229063220322132, -0.0023990843910723925, -0.012707238085567951, 0.029052648693323135, -0.021842213347554207, -0.007909069769084454, 0.004676237236708403, -0.010973834432661533, 0.02773447148501873, 0.015251322649419308, 0.004814646206796169, -0.0009548554080538452, 0.013478373177349567, -0.008054069243371487, -0.01966721937060356, 0.024149026721715927, 0.0016180637758225203, -0.009635883383452892, -0.0007439468754455447, 0.0005470439791679382, 0.0072895255871117115, -0.003142207395285368, 0.02731265313923359, 0.026297656819224358, -0.013096100650727749, 0.025875838473439217, -0.02074812538921833, 0.011916331946849823, -0.028156287968158722, -0.00680179987102747, 0.010874970816075802, -0.04123261570930481, -0.006900663021951914, -0.019864946603775024, 0.014262689277529716, -0.03253263980150223, 0.015488594770431519, 0.0023183459416031837, -0.0005495155928656459, 0.027233563363552094, 0.016529954969882965, -0.011830650269985199, 0.01758449897170067, 0.029553556814789772, 0.014737232588231564, -0.019495856016874313, 0.009062475524842739, 0.024267662316560745, -0.03933443874120712, 0.012087694369256496, 0.01225246675312519, -0.008647249080240726, -0.020682217553257942, -0.009207474999129772, -0.039861708879470825, 0.02902628481388092, 0.015462230890989304, 0.007427934557199478, 0.007671797648072243, -0.02198721282184124, -0.00988633744418621, -0.0027286289259791374, -0.006271233316510916, 0.003107605269178748, -0.012575420551002026, 0.04202352464199066, 0.013227919116616249, 0.026482202112674713, -0.00943815615028143, -0.009761109948158264, 0.007579525001347065, 0.00819906871765852, 0.0037436261773109436, 0.011646104976534843, -0.0054902127012610435, 0.0016370125813409686, -0.00047372031258419156, 0.022343121469020844, 0.002313402947038412, 0.01971994712948799, -0.01293132919818163, 0.030080828815698624, -0.011441787704825401, 0.0009532076655887067, -0.01443405169993639, -0.019429948180913925, -0.012727010995149612, 0.03416718170046806, 0.010657471604645252, -0.007876114919781685, -0.011336333118379116, 0.009187702089548111, 0.021591760218143463, -0.009879746474325657, -0.016648590564727783, -0.027813561260700226, -0.004297261126339436, -0.005038736388087273, -0.00725657120347023, 0.006429414264857769, 0.0031224347185343504, 0.0033465251326560974, 0.010281790047883987, -0.016437683254480362, 0.007559752557426691, 0.02107767015695572, 0.01865222305059433, -0.009273383766412735, 0.003858966985717416, -0.0038194216322153807, 0.0038853303994983435, -0.007190662436187267, -0.018797222524881363, -0.03253263980150223, 0.01832267828285694, 0.0053781671449542046, 0.02219812199473381, 0.021380851045250893, 0.012608375400304794, -0.019179493188858032, 0.006814981810748577, 0.011725195683538914, 0.03026537224650383, -0.04397442564368248, -0.0045773740857839584, -0.006396459881216288, 0.010710198432207108, -0.02762901596724987, 0.021156761795282364, 0.012845647521317005, -0.01826995052397251, -0.013043373823165894, 0.004438965115696192, 0.026192201301455498, 0.029316283762454987, 0.003865557722747326, -0.02644265629351139, 0.025730838999152184, 0.025388114154338837, 0.029764465987682343, -0.007942023687064648, -0.006014188285917044, 0.006640322972089052, -0.010097245685756207, -0.004046807065606117, 0.006205324083566666, 0.012430421076714993, -0.00900315772742033, 0.02387220785021782, 0.025928566232323647, 0.013893598690629005, 0.010710198432207108, 0.025770384818315506, -0.00366124021820724, 0.005832938943058252, 0.01346519123762846, 0.0033168660011142492, -0.012021785601973534, -0.02193448692560196, 0.016253137961030006, -0.029316283762454987, -0.018454495817422867, -0.012318375520408154, 0.017281316220760345, 0.009253611788153648, 0.000622427323833108, 0.014315416105091572, 0.03398263454437256, -0.021143579855561256, 0.03503717854619026, 0.007269753143191338, -0.029052648693323135, -0.02472902461886406, 0.012496329843997955, 0.016635410487651825, 0.01639813743531704, 0.01303678285330534, 0.0061921426095068455, -0.002972492016851902, 0.015185413882136345, 0.021894941106438637, -0.006024074740707874, -0.006323960144072771, -0.012964283116161823, 0.010815653018653393, 0.0011163322487846017, -0.02516402304172516, -0.010413608513772488, -0.012278830632567406, 0.005628621205687523, 0.004076466429978609, 0.010037927888333797, -0.003344877390190959, 0.018942221999168396, -0.006452482659369707, -0.019271766766905785, 0.02731265313923359, 0.012074513360857964, 0.014908595941960812, 0.020062673836946487, 0.0020266990177333355, -0.013096100650727749, 0.008825203403830528, -0.011296787299215794, 0.0038853303994983435, 0.014539506286382675, -0.017268136143684387, -0.01500086858868599, 0.006010892800986767, 0.00042676020530052483, -0.006363505497574806, -0.015264504589140415, 0.0005721717607229948, 0.006406346336007118, 0.0012720420490950346, 0.011323151178658009, -0.009240429848432541, -0.03005446493625641, -0.005832938943058252, 0.003895216854289174, -0.017874497920274734, 0.00881202146410942, -0.029896283522248268, 0.007329070940613747, 0.01368269044905901, -0.01823040470480919, -0.012245875783264637, 0.03540626913309097, -0.006673277355730534, -0.019060857594013214, -0.0025424363557249308, 0.023094482719898224, 0.0008300403715111315, -0.03042355366051197, 0.02380630001425743, -0.004748736973851919, -0.007533388677984476, -0.0024073231033980846, -0.003822716884315014, -0.012074513360857964, -0.013893598690629005, -0.010077472776174545]}, {"created_time": 1695640873.940454, "accessed_time": 1695640873.940454, "description": "Wished Carmen a good day as she passed by the pharmacy.", "poignancy": 2, "embedding_key": [-0.010799203999340534, 0.016760991886258125, 0.02148074097931385, -0.0074391611851751804, 0.014799878001213074, 0.01634262129664421, 0.018447551876306534, -0.008099403232336044, 0.0045661283656954765, -0.027351010590791702, 0.012165447697043419, 0.00261318520642817, 0.016760991886258125, -0.00745223555713892, 0.013740875758230686, -0.008615829981863499, 0.028213901445269585, -0.01197587326169014, 0.013753950595855713, -0.028684569522738457, -0.004173905588686466, 0.019676515832543373, 0.008563533425331116, 0.02154611237347126, -0.020670147612690926, -0.004772045649588108, 0.0075045316480100155, -0.01647336222231388, 0.029730496928095818, -0.031011758372187614, 0.012224281206727028, 0.0011660460149869323, -0.028030864894390106, -0.010694611817598343, -0.012779929675161839, -0.02076166681945324, 0.002915523713454604, -0.008746570907533169, 0.01784614287316799, -0.009021126665174961, 0.029756644740700722, -0.011577112600207329, 0.005125046242028475, -0.010943019762635231, -0.014433803036808968, 0.0017502947011962533, -0.01174707617610693, 0.005131583195179701, -0.02434396930038929, 0.009785961359739304, 0.011060685850679874, -0.010812277905642986, -0.006870437879115343, -0.020134110003709793, 0.016577955335378647, -0.003248913213610649, 0.0005625947378575802, 0.006599150598049164, -0.016054991632699966, 0.0029759914614260197, -0.023990968242287636, -0.006046770140528679, -0.004464804194867611, 0.01619880646467209, 0.0012158909812569618, -0.015152878127992153, 0.005984668154269457, -0.005004110746085644, 0.008543922565877438, 0.019022811204195023, 0.0025804999750107527, -0.018055327236652374, 0.006347474176436663, 0.00816477369517088, 0.00904727540910244, 0.008171310648322105, -0.006494557950645685, 0.01580658368766308, 0.008759644813835621, 0.000695787079166621, 0.012348485179245472, -0.042020149528980255, -0.01122411247342825, 0.022173669189214706, 0.02239592932164669, -0.0008183567551895976, -0.022683558985590935, 0.01080574095249176, -0.023023484274744987, -0.033548131585121155, 0.01717936433851719, 0.020160257816314697, -0.00567742669954896, 0.014878322370350361, 0.011132593266665936, 0.014642988331615925, 0.030933313071727753, 0.04379822686314583, 0.01379317231476307, -0.026984935626387596, 0.006909660529345274, 0.019506553187966347, -0.017362400889396667, 0.0107338335365057, -0.027194121852517128, -0.012904133647680283, -0.03213613107800484, -0.0025968425907194614, 0.03697354719042778, -0.014237691648304462, -0.027455603703856468, 0.054963503032922745, 0.009125719778239727, -0.013583987019956112, 0.0007742316811345518, -0.0022160594817250967, 0.0012469419743865728, 0.007596050389111042, 0.00034952780697494745, -0.03148242458701134, -0.002090221270918846, 0.043379854410886765, 0.02251359447836876, 0.0005674975109286606, 0.02383407950401306, 0.010746907442808151, 0.0038241734728217125, -0.01431613601744175, -0.0034482930786907673, 0.01997722126543522, 0.007164605427533388, 0.010053981095552444, 0.0002937586104962975, -0.006530511658638716, -0.004598813597112894, 0.0067723821848630905, -0.0214676670730114, 0.01338133867830038, -0.009106108918786049, -0.0169309563934803, 0.009929777123034, 0.046386897563934326, -0.0107338335365057, 0.020578628405928612, -0.040189772844314575, 0.03783643618226051, 0.01474758144468069, -0.007929439656436443, -0.006105603184551001, 0.007053475361317396, 0.028684569522738457, -0.014943692833185196, 0.014734507538378239, -0.02701108530163765, 0.018264513462781906, -0.007360716816037893, 0.00554668577387929, 0.0031541259959340096, -0.013329042121767998, -0.00411834055557847, 0.011740539222955704, -0.0037457288708537817, 0.029076792299747467, -0.008256291970610619, 0.018826700747013092, 0.03428028151392937, 0.011250260286033154, 0.0055368803441524506, -0.018212217837572098, 0.0011407149722799659, -0.006282103713601828, 0.012969504110515118, -0.039745256304740906, 0.008792330510914326, -0.0025723285507410765, 0.0032603528816252947, -0.001199548365548253, 0.0035136635415256023, -0.015231323428452015, -0.022945040836930275, -0.019362738355994225, 0.010759982280433178, 0.024134783074259758, 0.015257471241056919, 0.008171310648322105, 0.0074391611851751804, 0.010426592081785202, -0.007341105490922928, -0.003709775162860751, -0.013263671658933163, -0.013544764369726181, 0.039536070078611374, 0.015009063296020031, -0.03982369974255562, -0.6656284332275391, -0.034594062715768814, -0.00633113132789731, -0.02557293325662613, 0.015218249522149563, 0.034411024302244186, 0.023481078445911407, -0.004164100158959627, -0.02370333857834339, 0.016577955335378647, -0.028423087671399117, 0.014237691648304462, -0.004863563925027847, 0.016303399577736855, -0.01750621572136879, -0.007929439656436443, -0.0018499847501516342, -0.007432624232023954, 0.01236809603869915, 0.016970178112387657, -0.013583987019956112, -0.001347449142485857, -0.01855214312672615, 0.0015836000675335526, 0.023533374071121216, 0.004405970685184002, 0.013492467813193798, -0.014982915483415127, -0.014891396276652813, 0.02954746037721634, -0.03545695170760155, 0.019768035039305687, -0.029756644740700722, -0.008576607331633568, 0.049498531967401505, -0.006318057421594858, -0.004206590820103884, 0.009681369177997112, 0.011805909685790539, 0.03391420841217041, -0.03911769762635231, 0.007837921380996704, -0.008811941370368004, -0.013897765427827835, -0.013649357482790947, -0.0032636215910315514, 0.023637967184185982, 0.012315799482166767, -0.014420729130506516, -0.005040064454078674, 0.022748928517103195, -0.0026998009998351336, 0.001443870598450303, 0.004458267241716385, 0.0068769752979278564, 0.012322336435317993, 0.01396313589066267, -0.004121609032154083, 0.01699632592499256, -0.00042123105959035456, 0.00953101646155119, 0.023154225200414658, -0.002044461900368333, 0.0008293880382552743, -0.00979903619736433, 0.012766855768859386, -0.005219833459705114, -0.01028277724981308, 0.014538396149873734, 0.0020542675629258156, 0.016447214409708977, 0.005651278421282768, -0.007053475361317396, 0.013727801851928234, 0.014041580259799957, 0.025808267295360565, -0.017937662079930305, -0.02148074097931385, -0.004536711610853672, 0.013989283703267574, 0.02910294011235237, -0.008092866279184818, -0.03467250615358353, 0.022670485079288483, 0.022500520572066307, -0.004216396249830723, -0.013989283703267574, 0.00584412133321166, -0.008217070251703262, -0.0046837953850626945, 0.017166290432214737, 0.015335915610194206, 0.003650941653177142, -0.014106950722634792, 0.015989620238542557, -0.002757000271230936, -0.007864069193601608, 0.011897427961230278, 0.001835276372730732, -0.025664452463388443, 0.014015432447195053, 0.009544091299176216, -0.008883848786354065, 0.007236512843519449, 0.006693937815725803, -0.006311520468443632, 0.0037784141022711992, 0.016041917726397514, 0.03399265184998512, -0.04662223160266876, 0.018146846443414688, 0.0016751186922192574, -0.007125382777303457, -0.007916365750133991, -8.498162787873298e-05, -0.02792627178132534, -0.0130218006670475, 0.01109337154775858, -0.004906055051833391, -0.03265909478068352, -0.007890217937529087, -0.012374632991850376, 0.013688580133020878, -0.00037588030681945384, 0.013172152452170849, -0.007301883306354284, 0.004435387440025806, -0.01925814524292946, -0.010975704528391361, -0.014695284888148308, 0.017035547643899918, -0.029129087924957275, -0.005121777765452862, -0.013191764242947102, 0.035300061106681824, -0.008635440841317177, -0.0024824442807585, -0.025494489818811417, 0.027664789929986, -0.0035724970512092113, -0.0201864056289196, -0.01112605631351471, -0.018172994256019592, 0.006308251991868019, 0.01874825544655323, -0.03161316737532616, -0.008772718720138073, -0.0006005913601256907, -0.038960810750722885, -4.9538572056917474e-05, 0.0015206809621304274, -0.024252450093626976, -0.0026082824915647507, 0.03490784019231796, 0.0012845300370827317, -0.015139804221689701, -0.01660410314798355, 0.005147925578057766, -0.0003352280182298273, -0.002972722752019763, 0.0077398656867444515, 0.011825520545244217, -0.005638204514980316, 0.006046770140528679, 0.023794855922460556, -0.014329210855066776, 0.019114330410957336, 0.027952419593930244, 0.013244060799479485, -0.04327526316046715, -0.009217238053679466, -0.016238028183579445, -0.008753107860684395, -0.004974693991243839, 0.02154611237347126, 0.01289105974137783, -0.0033567743375897408, 0.003709775162860751, 0.015453582629561424, -0.00807325541973114, -0.0054094078950583935, -0.007138457149267197, -0.015218249522149563, -0.004275229759514332, 0.018382180482149124, -0.008753107860684395, 0.022278262302279472, 0.012505373917520046, 0.002436684910207987, 0.026069749146699905, 0.002866495866328478, 0.008315125480294228, -0.00536691676825285, 0.007203827612102032, -0.010668463073670864, 0.001216708216816187, -0.0007390950340777636, 0.03046264685690403, 0.012897596694529057, 0.01276031881570816, 0.01992492377758026, 0.0033012095373123884, 0.009923240169882774, 0.01711399294435978, -0.009086497128009796, -0.020134110003709793, 0.020657073706388474, -0.043066076934337616, 0.0318746492266655, 0.026409676298499107, -0.017009399831295013, -0.015505879186093807, -0.006354011129587889, -0.013950061984360218, 0.002109832363203168, 0.0015484633622691035, 0.006288640666753054, -0.0009821915300562978, -0.004278498236089945, 0.0031296119559556246, -0.007661420851945877, 0.0040039424784481525, 0.01613343507051468, -0.013597060926258564, -0.0022127910051494837, -0.016028843820095062, 0.026043601334095, 0.020460961386561394, 0.0010263166623190045, -0.013675505295395851, -0.006301715038716793, 0.005804899148643017, 0.007707180455327034, 0.02030407264828682, -0.00014064868446439505, -0.01738854870200157, -0.005958519876003265, -0.018787477165460587, 0.024500858038663864, 0.019284293055534363, 0.013165615499019623, -0.01680021546781063, 0.03741806745529175, -0.006053307093679905, -0.012773392722010612, 0.013662431389093399, 0.01161633525043726, 0.01866981014609337, 0.008615829981863499, 0.006275566760450602, -0.0008767816470935941, -0.016630250960588455, -0.03299902006983757, 0.0029269633814692497, -0.0035528859589248896, -0.018578292801976204, -0.0070665497332811356, 0.010491962544620037, 0.029338274151086807, 0.040189772844314575, 0.012570744380354881, 0.016499510034918785, 0.022565891966223717, -0.001828739303164184, -0.011335242539644241, 0.01724473387002945, 0.016760991886258125, -0.016891732811927795, -0.011367927305400372, -0.016159584745764732, 2.8727265089401044e-05, 0.0035136635415256023, -0.009125719778239727, -0.011890891008079052, 0.020016442984342575, -0.0022945040836930275, 0.007471846416592598, -0.010295851156115532, 0.0028174680192023516, 0.009334905073046684, -0.0076810321770608425, -0.040059033781290054, -0.0030299220234155655, 0.0062722982838749886, 0.004912592004984617, -0.0034973209258168936, -0.009014589712023735, 0.01704862341284752, 0.0036378675140440464, 0.008903460577130318, 0.013976209796965122, 0.011021464131772518, -0.007994810119271278, 0.012505373917520046, -0.005102166440337896, -0.006811604835093021, 0.03417569026350975, 0.00816477369517088, 0.011642483063042164, 0.0015590860275551677, -0.010831889696419239, -0.01125679723918438, -0.017153214663267136, -0.03268524259328842, -0.01946733146905899, 0.007314957212656736, -0.03200538828969002, -0.028161605820059776, -0.008151699788868427, 0.004046433139592409, -0.016774065792560577, -0.015989620238542557, -0.008177847601473331, -0.017087845131754875, 0.0201864056289196, -0.008243218064308167, -0.013597060926258564, 0.006553390994668007, 0.03950992226600647, -0.014342284761369228, -0.006076186429709196, -0.0033322605304419994, 0.0009168210672214627, -0.0026899955701082945, 0.09847410023212433, 0.01191703975200653, 0.009563702158629894, 0.020983925089240074, 0.013479393906891346, 0.007968662306666374, -0.010590018704533577, -0.0008040569955483079, 0.018473699688911438, -0.007589513435959816, 0.011590187437832355, -0.03932688385248184, 0.0024105366319417953, -0.011812446638941765, 0.011550964787602425, -0.0010058883344754577, -0.00966175738722086, 0.007635272573679686, 0.0002960057172458619, -0.025690600275993347, 0.016355695202946663, 0.0014218080323189497, -0.019937997683882713, 0.016172658652067184, -0.004222933202981949, 0.018251439556479454, 0.003654210129752755, -0.005076018162071705, 0.027377160266041756, 0.0048799067735672, 0.00803403276950121, 0.022539744153618813, -0.022539744153618813, 0.004925665911287069, -0.010073591955006123, -0.00787714309990406, 0.028213901445269585, 0.023742560297250748, 0.012616503983736038, -0.026331230998039246, 0.027351010590791702, 0.011949724517762661, 0.009550628252327442, -0.01200855802744627, 0.01474758144468069, 0.004798193462193012, 0.014995989389717579, 0.0025412775576114655, -0.003124709241092205, -0.008302051573991776, 0.04076503589749336, 0.0016849242383614182, 0.01575428619980812, -0.01330943126231432, 0.01370165403932333, 0.03987599536776543, -0.00452363770455122, -0.0175715871155262, -0.021951409056782722, 0.03116864711046219, 0.008001347072422504, -0.011884354054927826, -0.021336926147341728, -0.01542743481695652, -0.009426424279808998, 0.005602250806987286, -0.029390569776296616, 0.012191595509648323, -0.005886612460017204, -0.02233055792748928, -0.023611819371581078, -0.008537385612726212, -0.022879669442772865, 0.019179699942469597, 0.0371042862534523, 0.02421322837471962, 0.010374296456575394, -0.002021582331508398, 0.013897765427827835, 0.013858542777597904, -0.014329210855066776, -0.022958114743232727, 0.013897765427827835, -0.00855699647217989, -0.012021631933748722, 0.009982072748243809, -0.003915692213922739, -0.004200053866952658, -0.036738213151693344, 0.03375731781125069, 0.044478077441453934, 0.012256965972483158, 0.02967820130288601, -0.01255767047405243, -0.0062134647741913795, -0.014237691648304462, 0.00989055447280407, 0.028161605820059776, -0.012472688220441341, 0.030514942482113838, -0.005157731473445892, -0.007426087278872728, 0.0120477806776762, -0.023546449840068817, 0.026828046888113022, -0.005324426107108593, 0.018016105517745018, 0.02017333172261715, -0.0014258937444537878, -0.001457761856727302, -0.011766687035560608, -0.018277587369084358, 0.004389628302305937, 0.005824510473757982, 0.0038307104259729385, 0.01328328251838684, 0.00221442524343729, 0.022605113685131073, -0.012570744380354881, -0.03174390643835068, 0.008602756075561047, 0.011315630748867989, 0.027167974039912224, -0.01581965759396553, 0.006726623047143221, -0.0008506334270350635, -0.02063092589378357, -0.021389223635196686, -0.016970178112387657, 0.016185732558369637, 0.004801462404429913, 0.013185227289795876, -0.01255767047405243, -0.017283955588936806, -0.010302388109266758, -0.023415707051753998, 0.006491289008408785, -0.002333726268261671, 0.0010018027387559414, -0.02199063077569008, -0.02290581911802292, 0.012511910870671272, -0.01210661418735981, -0.020722443237900734, 0.006981567945331335, -0.02714182622730732, 0.023075781762599945, 0.008151699788868427, 0.009223775938153267, -0.00030989694641903043, 0.014629914425313473, -0.01011935155838728, -0.035901471972465515, 0.021781446412205696, -0.007086160592734814, -0.007275735028088093, -0.009478720836341381, -0.013427097350358963, -0.001512509654276073, 0.035509247332811356, 0.017754623666405678, 0.0015852343058213592, 0.008713886141777039, -0.009537553414702415, 0.0011840228689834476, 0.0030168478842824697, 0.012564207427203655, -0.007131920196115971, -0.022801226004958153, 0.023794855922460556, 0.016355695202946663, 0.008694274351000786, 0.023023484274744987, -6.817937537562102e-05, -0.04186325892806053, -0.0008400107617489994, 0.009609461762011051, -0.017950735986232758, 0.006592613644897938, -0.013453246094286442, -0.006184048019349575, -0.006308251991868019, -0.011282945983111858, 0.007131920196115971, 0.02797856740653515, 0.003585571190342307, 0.016904806718230247, -0.0003726117720361799, -0.0016849242383614182, -0.010073591955006123, 0.01392391324043274, -0.006017353385686874, 0.019859554246068, 0.0025461805053055286, -0.005098897963762283, -0.033234354108572006, 0.0031770055647939444, -0.006327862851321697, 0.006017353385686874, -0.014760655350983143, 0.010125888511538506, 0.003932034596800804, 0.004984499420970678, -0.030279608443379402, 0.0023451661691069603, 0.007661420851945877, 0.004883175250142813, -0.0214676670730114, 0.00045759338536299765, -0.0054094078950583935, -0.00810594018548727, -0.006321325898170471, -0.009602924808859825, -0.02452700585126877, 0.007131920196115971, -0.00029947853181511164, -0.02871071733534336, 0.026213563978672028, -0.012786466628313065, -0.030384201556444168, -0.02656656503677368, -0.02837079018354416, 0.0030528015922755003, -0.02544219233095646, 0.010858037509024143, 0.0011398978531360626, -0.01191703975200653, 0.0012044511968269944, 0.028083160519599915, 0.008838090114295483, 0.002876301296055317, 0.02108851820230484, 0.04029436782002449, -0.0001298216957366094, -0.006010815966874361, -0.010629241354763508, 0.03064568340778351, -0.012283114716410637, -0.03268524259328842, 0.0060990662313997746, -0.003311015199869871, 0.0027308519929647446, -0.021336926147341728, 0.016094213351607323, -0.02316730096936226, 0.013714727945625782, -0.014982915483415127, -0.0009732031030580401, -0.021585334092378616, 0.0012690045405179262, -0.04704060032963753, 0.009171479381620884, -0.024226302281022072, 0.015675842761993408, 0.02128463052213192, -0.015453582629561424, -0.01601576991379261, -0.006236344110220671, -0.006007547490298748, -0.0038960808888077736, -0.012747244909405708, -0.008145162835717201, -0.018630588427186012, 0.019101256504654884, -0.008942682296037674, -0.005951982922852039, 0.020408665761351585, 0.001763368840329349, -0.0004718932032119483, 0.020343294367194176, 0.009622535668313503, -0.021559186279773712, -0.01109337154775858, -0.00849816296249628, -0.00040447988430969417, -0.008341274224221706, -0.01093648187816143, -0.02434396930038929, -0.0002704703947529197, -0.017022473737597466, 0.020800888538360596, 0.02200370468199253, -0.0060336957685649395, -0.027612492442131042, -0.010818815790116787, -0.014329210855066776, -0.0060435011982917786, 0.002887741196900606, 0.000558509083930403, -0.0045563229359686375, -0.03477709740400314, -0.02525915578007698, -0.009393738582730293, 0.021206185221672058, 0.011054148897528648, 0.001361340400762856, 0.006909660529345274, -0.00947218295186758, -0.02192526124417782, 0.051904164254665375, -0.017283955588936806, 0.00139565987046808, -0.017780771479010582, -0.008151699788868427, -0.018316810950636864, -0.028475383296608925, 0.016238028183579445, -0.004755702801048756, -0.01639491692185402, -0.024435486644506454, 0.0051773423328995705, 0.016970178112387657, 0.013329042121767998, -0.024004042148590088, 0.040268220007419586, 0.016434140503406525, 0.019035885110497475, -0.01978110894560814, -0.022539744153618813, 0.019088182598352432, -0.01880055107176304, 0.015728138387203217, 0.006291909143328667, -0.013315968215465546, -0.0030952924862504005, 0.006664521060883999, -0.006684132385998964, 0.02004259079694748, -0.020290998741984367, -0.00019069795962423086, -0.03788873180747032, 0.01418539509177208, -0.00989055447280407, -0.028475383296608925, -0.015976546332240105, 0.011413686908781528, -0.010393907316029072, 0.0364505834877491, 0.01516595296561718, -0.010210869833827019, 0.005785287823528051, 0.005043332930654287, -0.009615998715162277, 0.01758466102182865, -0.017349326983094215, 0.017819995060563087, -0.015100582502782345, 0.014015432447195053, -0.027664789929986, -0.02056555449962616, 0.004409239161759615, 0.011531353928148746, -0.0006520706228911877, -0.036476731300354004, -0.007779087871313095, -0.025860564783215523, -0.007203827612102032, 0.008511236868798733, -0.011649020947515965, 0.02023870311677456, -0.004964888561517, -0.03237146511673927, 0.003082218347117305, 0.010727296583354473, -0.004794924985617399, -0.0008767816470935941, -0.007955588400363922, 0.0036149879451841116, 0.012145835906267166, -0.00943949818611145, 0.015492805279791355, -0.01815992034971714, -0.02383407950401306, -0.0029678200371563435, -0.009066886268556118, -0.007197290658950806, 0.005203490611165762, 0.0025625231210142374, -0.024945376440882683, 0.0019186238059774041, -0.007014253176748753, -0.011367927305400372, 0.01601576991379261, 0.008007884956896305, 0.010844963602721691, -0.00921070110052824, -0.014329210855066776, -0.0008134539821185172, -0.009622535668313503, 0.010681536979973316, -0.012145835906267166, 0.017401622608304024, 0.007981736212968826, 0.00829551462084055, -0.008119014091789722, -0.008831552229821682, -0.005507463589310646, -0.030959462746977806, -0.00040570556302554905, 0.003480978310108185, -0.01334211602807045, 0.030018126592040062, -0.0006724988925270736, -0.008400107733905315, 0.013335579074919224, 0.024043263867497444, -0.016028843820095062, -0.004052970092743635, -0.008890385739505291, -0.005213296040892601, 0.01673484407365322, -0.011492131277918816, -0.01109337154775858, -0.004451730288565159, -0.020003369078040123, 0.0003331851912662387, -0.022016780450940132, -0.02650119550526142, -0.0047426288947463036, 0.011407149955630302, -0.020787814632058144, 0.010740370489656925, -0.029782792553305626, -0.015152878127992153, 0.012485763058066368, -0.014329210855066776, 0.017676180228590965, -0.014381506480276585, -0.026671158149838448, 0.008720423094928265, -0.014969841577112675, -0.014028506353497505, 0.009145330637693405, -0.004173905588686466, 0.012976041063666344, 0.0429353341460228, 0.23930826783180237, 0.007125382777303457, -0.020800888538360596, 0.01809455081820488, -0.002471004379913211, 0.014852174557745457, 0.02637045457959175, 0.011596724390983582, -0.00013901441707275808, 0.0188789963722229, -0.0087857935577631, -0.013819321058690548, -0.02310192957520485, 0.002443221863359213, 0.005612056236714125, -0.0036378675140440464, -0.024880006909370422, -0.017911512404680252, -0.020931629464030266, -0.03760110214352608, -0.013296356424689293, 0.00179441983345896, 0.0022601846139878035, 0.009851331822574139, 0.028658421710133553, 0.01840832829475403, -0.0013098610797896981, 0.007589513435959816, 0.015061359852552414, 0.0004714846145361662, -0.022539744153618813, -0.01255767047405243, 0.000928260909859091, 0.001062270370312035, 0.018460625782608986, -0.021310778334736824, 0.014368432573974133, -0.00509562948718667, 0.02784782648086548, -0.006563196890056133, -0.004951814189553261, 0.00230267527513206, -0.015009063296020031, -0.01691788248717785, 0.0074391611851751804, 0.02192526124417782, -0.00872696004807949, -0.03195309266448021, -0.011923576705157757, -0.004376553930342197, -0.03307746723294258, -0.010138962417840958, 0.023585671558976173, 0.026540417224168777, -0.020800888538360596, 0.003392728278413415, 0.012538059614598751, -0.0002747603284660727, -0.037470363080501556, 0.025494489818811417, 0.0002880386891774833, 0.00019008512026630342, -0.015270545147359371, -0.0002753731678240001, -0.011250260286033154, 0.0012355021899566054, -0.015257471241056919, -0.007151531055569649, 0.008955756202340126, -0.015348990447819233, 0.018656736239790916, 0.018068403005599976, 0.020591702312231064, 0.011400613002479076, -0.019179699942469597, -0.019218923524022102, -0.003536543343216181, 0.01002129539847374, 0.007393402047455311, 0.022160595282912254, -0.025233007967472076, 0.021363073959946632, -0.01276031881570816, -0.007282271981239319, -0.0221344456076622, -0.030148867517709732, 0.0040072109550237656, 0.011890891008079052, -0.006631835829466581, -0.008478552103042603, -0.0028403475880622864, -0.0377318449318409, -0.0005037612863816321, 0.006553390994668007, 0.020147183910012245, 0.028736865147948265, -0.012812615372240543, 0.014499173499643803, 0.0009454206447117031, 0.00730842025950551, 0.006746233906596899, -0.03566613793373108, -0.010184722021222115, -0.00252330070361495, -0.02004259079694748, -0.0012281480012461543, 0.015701990574598312, 0.020604776218533516, 0.004670721013098955, -0.01979418285191059, 0.006242881529033184, -0.01920584961771965, -0.0017829800490289927, -0.009027663618326187, 0.021402297541499138, 0.019245071336627007, -0.005906223319470882, 0.0024791755713522434, 0.009596386924386024, -0.004726286046206951, 0.028396939858794212, -0.017676180228590965, -0.027377160266041756, 0.014381506480276585, 0.02102314867079258, -0.016760991886258125, -0.01927121914923191, -0.01809455081820488, 0.020617851987481117, -0.005778750870376825, 0.0185390692204237, -0.0015550004318356514, 0.0026801899075508118, 0.005929103121161461, -0.03132553771138191, -0.004291572608053684, 0.00806671753525734, 0.001959480345249176, -0.03278983384370804, -0.0033502373844385147, 0.01758466102182865, 0.007694106083363295, -0.01958499662578106, -0.0006961956969462335, 0.015113656409084797, -0.011544427834451199, 0.013355189934372902, -0.018735181540250778, -0.02753404900431633, -0.010583481751382351, -0.018303735181689262, 0.008890385739505291, -0.004765508230775595, -0.018787477165460587, 0.04476570710539818, -0.011930113658308983, -0.036685917526483536, 0.0022356705740094185, 0.022278262302279472, -0.009897091425955296, -0.024513931944966316, -0.012335410341620445, 0.029259828850626945, -0.004801462404429913, -0.0014103682478889823, -0.00970098003745079, -0.16672088205814362, 0.017493141815066338, -0.00014167009794618934, 0.0009266266133636236, -0.0013637917581945658, -0.006739696953445673, 0.018604440614581108, 0.005644741468131542, -0.01600269414484501, 0.0068769752979278564, 0.01946733146905899, -0.0034058024175465107, -0.0012690045405179262, 0.018735181540250778, 0.008275903761386871, 0.024487784132361412, -0.04319681599736214, 0.009236849844455719, 0.007197290658950806, 0.009491794742643833, 0.02005566470324993, -0.01272109616547823, 0.025755971670150757, -0.025036895647644997, -0.001072075916454196, 0.01298911590129137, -0.019218923524022102, 0.015584323555231094, -0.015179026871919632, 0.008798867464065552, -0.02915523573756218, -0.004108535125851631, 0.00252983788959682, 0.021886039525270462, 0.006452066823840141, 0.008190921507775784, -0.007543753832578659, -0.008458941243588924, -0.011635946109890938, 0.00722343847155571, 0.01809455081820488, 0.023468004539608955, 0.0027128751389682293, 0.005036795977503061, -0.04439963400363922, 0.0022863326594233513, 0.025285303592681885, 0.009289146400988102, -0.014433803036808968, -0.023350337520241737, 0.0028305419255048037, -0.018473699688911438, 0.001956211868673563, 0.015780435875058174, 0.0022814299445599318, 0.03116864711046219, -0.017087845131754875, 0.045340970158576965, -0.003464635694399476, -0.020212553441524506, 0.009328368119895458, -0.01672177016735077, -0.0003352280182298273, 0.003915692213922739, 0.012675337493419647, -0.007406475953757763, -0.033417392522096634, -0.03569228574633598, -0.017009399831295013, 0.015584323555231094, -0.017728475853800774, -0.012877985835075378, 0.012100077234208584, -0.0045563229359686375, 0.029181385412812233, 0.022304410114884377, -0.00047761312453076243, 0.015793509781360626, 0.01210661418735981, -0.008439329452812672, -0.015087507665157318, 0.039536070078611374, -0.020578628405928612, -0.006850827019661665, -0.014786804094910622, 0.006406307686120272, 0.007864069193601608, 0.01032199990004301, -0.006229807157069445, -0.022435151040554047, 0.020918555557727814, -0.0305933877825737, -0.0059715937823057175, -0.010616166517138481, -0.0006626932881772518, 0.014865248464047909, -0.0016628616722300649, 0.00226181885227561, -0.006644909735769033, -0.016970178112387657, -0.0075633651576936245, -0.008988441899418831, 0.0003728160518221557, -0.009825184009969234, 0.011511742137372494, 0.014969841577112675, 0.0016097482293844223, 0.01379317231476307, 0.0034352189395576715, -0.02876301296055317, -0.012845300137996674, 0.005827778950333595, 0.012348485179245472, 0.0097598135471344, 0.008583145216107368, 0.03519546985626221, -0.00012604246148839593, -0.030018126592040062, -0.004043164663016796, -0.019951071590185165, 0.045602452009916306, -0.0037882195319980383, -0.011479057371616364, 0.0195196270942688, 0.00562839861959219, 0.01640799269080162, -0.11275101453065872, -0.03145627677440643, -0.009387201629579067, 0.015322841703891754, -0.008478552103042603, 0.030279608443379402, 0.004853758495301008, 0.014930618926882744, -0.01835603266954422, 0.014603766612708569, 0.012675337493419647, -0.014891396276652813, -0.02212137170135975, -0.017989957705140114, 0.02427859790623188, -0.020997000858187675, -0.0038470530416816473, -0.027063380926847458, -0.004092192277312279, 0.0006001828005537391, -0.01881362497806549, 0.024500858038663864, -0.01666947454214096, 0.005703574977815151, 0.003650941653177142, -0.009374127723276615, -0.014433803036808968, 0.023258818313479424, 0.02784782648086548, 0.004353674128651619, -0.016303399577736855, -0.006059844046831131, 0.02251359447836876, -0.0012191595742478967, -0.00790329184383154, 0.0008849529549479485, -0.018630588427186012, 0.002144151832908392, 0.015505879186093807, -0.02871071733534336, -0.006530511658638716, 0.008805404417216778, -0.01829066127538681, -0.004732822999358177, 0.005464972462505102, 0.007811773102730513, -0.025991305708885193, 0.019872628152370453, -0.0016105653485283256, -0.01991184987127781, -0.0077398656867444515, 0.009315294213593006, -0.005092361010611057, 0.016904806718230247, 0.02531145140528679, -0.024853859096765518, -0.001402196940034628, 0.004670721013098955, -0.008053643628954887, -0.00642918748781085, -0.004376553930342197, -0.007654883898794651, -0.005965056829154491, 0.013002189807593822, -0.0016236394876614213, 0.004925665911287069, 0.008112477138638496, -0.017754623666405678, 0.011276409029960632, 0.023337263613939285, 0.014329210855066776, 0.013858542777597904, -0.02949516288936138, 0.016381843015551567, -0.011701316572725773, 0.000900478451512754, -0.0009160039480775595, -0.005461703985929489, -0.010897260159254074, -0.029652051627635956, -0.006550122518092394, -0.022160595282912254, 0.016878658905625343, -0.004598813597112894, 0.004330794792622328, 0.02323267050087452, 0.012740707956254482, 0.016355695202946663, 0.01627725176513195, -0.017924586310982704, -0.0035724970512092113, 0.0022863326594233513, -0.009354516863822937, -0.042203184217214584, -0.01435535866767168, -0.002717777853831649, -0.01289105974137783, -0.018787477165460587, -0.0028779355343431234, 0.0012845300370827317, -0.011420223861932755, -0.0038143678102642298, -0.050152238458395004, 0.028030864894390106, -0.011629409156739712, 0.00943949818611145, 0.01396313589066267, -0.035639990121126175, -0.003660747082903981, 0.015009063296020031, 0.009008052758872509, -0.0012796272058039904, -0.03221457451581955, 0.03007042407989502, 0.010897260159254074, -0.00012389749463181943, -0.03984984755516052, 0.0008065083529800177, 0.01245961431413889, 0.010237017646431923, 0.025468342006206512, 0.010701148770749569, -0.015087507665157318, 0.008968831039965153, 0.013597060926258564, -0.017349326983094215, -0.009929777123034, 0.03268524259328842, -0.01448609959334135, 0.015362064354121685, -0.013224449008703232, -0.028919903561472893, 0.011243723332881927, -0.022029854357242584, -0.002114735310897231, 0.01965036801993847, -0.007282271981239319, 0.004651110153645277, -0.0062722982838749886, 0.02714182622730732, -0.00620039040222764, -0.001505972584709525, -0.03825480863451958, -0.0257036741822958, 0.007890217937529087, -0.026265861466526985, -0.0175715871155262, -0.01129601988941431, -0.02205600216984749, 0.017466994002461433, 0.011315630748867989, 0.016891732811927795, -0.007909828796982765, 0.021454593166708946, 0.007086160592734814, -0.020395591855049133, -0.004396165255457163, -0.008439329452812672, -0.0006251052836887538, -0.018787477165460587, -0.008478552103042603, -0.019741887226700783, 0.0046216933988034725, 0.015139804221689701, -0.007184216286987066, 0.0046249618753790855, 0.03263294696807861, -0.005249250214546919, -0.012511910870671272, -0.017558513209223747, 0.011008390225470066, -0.028946051374077797, -0.0289721991866827, 0.002640967722982168, 0.007465309463441372, 0.0076221986673772335, 0.015976546332240105, -0.012132761999964714, -0.028998346999287605, -0.009027663618326187, 8.743302169023082e-05, 0.028266198933124542, 0.038097918033599854, 0.004030090291053057, -0.009302220307290554, 0.008171310648322105, 0.007262661121785641, 0.049890752881765366, -0.005500926170498133, -0.015780435875058174, -0.007033864036202431, 0.023154225200414658, -0.02414785698056221, -0.006481483578681946, 0.016512583941221237, 0.006314788945019245, 0.026265861466526985, 0.040451254695653915, 0.005883343517780304, -0.01321137510240078, 0.003958182875066996, 0.0344894677400589, -0.0005732174613513052, 0.029887385666370392, -0.001763368840329349, -0.015832731500267982, -0.0178984384983778, 0.012296188622713089, -0.010099739767611027, -0.005105434916913509, 0.01370165403932333, -0.0015901370206847787, 0.003464635694399476, 0.021454593166708946, 0.027246419340372086, 0.026736529543995857, 0.0032766954973340034, 0.0020575360395014286, 0.03864702954888344, -0.015453582629561424, -0.024396264925599098, 0.0442427434027195, -0.01152481697499752, -0.0046151564456522465, 0.014433803036808968, 0.010570407845079899, 0.0033731169532984495, 0.011465983465313911, -0.013753950595855713, -0.022042928263545036, 0.023768708109855652, -0.0020771471317857504, 0.0037457288708537817, -0.033417392522096634, -0.018212217837572098, 0.0014544932637363672, -0.017466994002461433, -0.0055368803441524506, 0.007955588400363922, 0.03681665658950806, -0.023520300164818764, 0.03496013581752777, 0.0028403475880622864, -0.01646028831601143, 0.01691788248717785, 0.0019055496668443084, 0.017218586057424545, 0.005327694583684206, -0.001791151356883347, -0.022670485079288483, 0.00572645477950573, -0.010237017646431923, -0.010341610759496689, 0.03801947459578514, -0.014943692833185196, -0.006072917953133583, -0.020526332780718803, -0.0032260334119200706, -0.013740875758230686, -0.00279131974093616, 0.004745897371321917, -0.0004927300615236163, -0.008308588527143002, 0.010524648241698742, 0.006909660529345274, -0.028344642370939255, 0.0006880243890918791, 0.015113656409084797, 0.005278666503727436, 0.0030364589765667915, -0.03859473392367363, -0.0029514774214476347, 0.006468409672379494, 0.00019325150060467422, -0.009583313018083572, 0.034724801778793335, -0.0036215248983353376, -0.007321494165807962, 0.0024007312022149563, 0.009674832224845886, 0.011413686908781528, -0.0175715871155262, 0.029129087924957275, -0.023794855922460556, -0.030828721821308136, 0.040268220007419586, -0.004745897371321917, -0.015179026871919632, -0.015701990574598312, -0.012250429019331932]}, {"created_time": 1695640875.5580668, "accessed_time": 1695640875.5580668, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.00956371333450079, -0.009372570551931858, 0.0003068989608436823, -0.007098634727299213, -0.0021783646661788225, 0.021750692278146744, 0.0147772878408432, 0.0005635406705550849, 0.004498438443988562, -0.050514332950115204, 0.005124595016241074, 0.014843199402093887, -0.003125838004052639, -0.01773010939359665, -0.005437673069536686, 0.012668129988014698, 0.024400321766734123, 0.012457214295864105, 0.012635174207389355, -0.04724513739347458, -0.01678098738193512, 0.011620142497122288, 0.008047755807638168, -0.005183914676308632, -0.00038990587927401066, -0.00562881538644433, 0.02317437343299389, -0.02037973888218403, 0.016965540125966072, -0.00695363013073802, 0.012793361209332943, -0.012885636650025845, -0.01658325456082821, -0.015752773731946945, -0.013419517315924168, -0.02760360576212406, 0.006287927273660898, 0.008996876887977123, -0.0012844442389905453, -0.022185705602169037, 0.020801570266485214, -0.00620224280282855, 0.004106266889721155, -0.009201201610267162, -0.026799488812685013, 0.016398703679442406, -0.03321923688054085, -0.010967621579766273, -0.03461655601859093, -0.0015143095515668392, 0.001300922012887895, 0.005833140108734369, -3.2826861570356414e-05, 0.0009779572719708085, -0.027788156643509865, 0.012147432193160057, 0.00324447825551033, 0.03321923688054085, 0.01285927277058363, -0.023807121440768242, -0.011106034740805626, 0.020406102761626244, -0.023029368370771408, -0.011982654221355915, -0.0014887689612805843, -0.015897778794169426, -0.00095818389672786, -0.005783706903457642, -0.02436077408492565, 0.029396388679742813, 0.014329091645777225, 0.018534226343035698, 0.013854531571269035, 0.004030468873679638, 0.023227103054523468, -0.010420558974146843, -0.00841685850173235, 0.0018636388704180717, -0.008673911914229393, -0.0018867077305912971, 0.0035723864566534758, -0.01622733473777771, -0.010875346139073372, 0.013234966434538364, 0.015700044110417366, -0.001218533026985824, -0.020709294825792313, 0.030582791194319725, -0.021460682153701782, -0.0015645668609067798, 0.02367529831826687, 0.0008337764884345233, -0.002242628252133727, 0.01606914773583412, 0.020709294825792313, 0.0273135956376791, -0.01268131285905838, 0.050909802317619324, 0.006574640981853008, -0.011653098277747631, -0.018257398158311844, 0.012971322052180767, -0.03720027580857277, 0.003948079887777567, -0.020498380064964294, -0.012391302734613419, -0.01747964695096016, -0.022159341722726822, 0.013300877995789051, -0.038149394094944, -0.018745141103863716, 0.011613551527261734, 0.01912742666900158, -0.007685244549065828, -0.021948425099253654, -0.01113899052143097, 0.0016164719127118587, -0.02316119149327278, -0.01255608070641756, -0.0008074120269156992, -0.001201231381855905, 0.023859849199652672, 0.03258649259805679, 0.01308337040245533, -0.007863204926252365, -0.014039082452654839, -0.014988203532993793, 0.011659689247608185, -0.0003480934537947178, 0.004923565778881311, 0.010921483859419823, -0.005707908887416124, 0.026549026370048523, -0.023279830813407898, -0.0002811524027492851, 0.0329555943608284, -0.030872799456119537, 0.015436399728059769, 0.00017579749692231417, -0.026100829243659973, -0.015344124287366867, 0.02556035853922367, -0.012661539018154144, -0.0028292376082390547, -0.02391257882118225, 0.02156613953411579, 0.02366211637854576, 0.019153790548443794, -0.003051687963306904, 0.00598144019022584, 0.01902196928858757, -0.021381588652729988, 0.005256417207419872, -0.01483001746237278, 0.054152630269527435, 0.011692645028233528, -0.00245354394428432, 0.005698021966964006, -0.021737510338425636, -0.0021701257210224867, 0.011890377849340439, 0.0049136788584291935, 0.0356447696685791, -0.01143559068441391, -0.023003004491329193, 0.02206706628203392, 0.001937788911163807, -0.001682383008301258, -0.0020448944997042418, -0.005945188924670219, 0.008851872757077217, -0.0003233767638448626, -0.028842736035585403, 0.029106380417943, -0.0016700247069820762, 0.0031670324970036745, 0.004821403417736292, 0.004972998984158039, -0.012780179269611835, -0.021038850769400597, -0.017361005768179893, 0.015910960733890533, 0.02177705615758896, -0.002155295806005597, -0.0010207995073869824, -0.010881937108933926, 0.004594009835273027, -0.00605394272133708, 0.006887719035148621, -0.012819726020097733, 0.012806544080376625, 0.025441717356443405, -0.011956289410591125, -0.008937557227909565, -0.6711340546607971, -0.004198542796075344, 0.0019081288482993841, -0.024743059650063515, -0.003516361815854907, 0.03105735220015049, 0.004475369583815336, 0.012345165014266968, -0.011145581491291523, 0.011132399551570415, -0.0077972933650016785, 0.022594355046749115, -0.014843199402093887, 0.019905177876353264, 0.007652288768440485, -0.01173219084739685, 0.009893269278109074, 0.009023241698741913, 0.017598286271095276, 0.011943107470870018, -0.024453049525618553, 0.028737276792526245, -0.014632283709943295, 0.007428190670907497, 0.022396622225642204, -0.013735891319811344, 0.02455850876867771, -0.028790006414055824, -0.003684435272589326, 0.013828166760504246, -0.018257398158311844, 0.03519657254219055, 0.008654139004647732, 0.016991904005408287, 0.05119980871677399, 0.0016189435264095664, -0.02770906314253807, 0.03894032910466194, 0.01707099750638008, 0.03461655601859093, -0.043158646672964096, -0.03514384478330612, 0.0169259924441576, -0.005368466023355722, -0.004976294469088316, 0.0039250110276043415, 0.02581082098186016, -0.011363089084625244, 0.0127604054287076, 0.0030632223933935165, 0.010881937108933926, 0.034273818135261536, -0.014988203532993793, -0.005882573314011097, -0.01020964328199625, 0.0061989473178982735, 0.016649166122078896, -0.005875982344150543, -0.0020053479820489883, 0.0029841288924217224, 0.005253121722489595, 0.0023958715610206127, -0.00784343108534813, -0.02421577088534832, -0.04020582512021065, 0.012457214295864105, -0.026680847629904747, -0.009827357716858387, -0.0014385116519406438, 0.00821253377944231, 0.003433972829952836, 0.026483114808797836, -0.0014895928325131536, 0.011323542334139347, 0.0213156770914793, 0.02546808309853077, 0.007718199864029884, 0.020498380064964294, -0.0018652866128832102, -0.0041721779853105545, 0.02251526154577732, -0.017756473273038864, -0.014632283709943295, -0.009840540587902069, 0.03219102323055267, -0.01457955501973629, -0.015897778794169426, -0.012865863740444183, -0.006755896843969822, -0.018534226343035698, 0.011606959626078606, 0.00910892616957426, 0.009326432831585407, 0.0011287290835753083, -0.013841349631547928, 0.015752773731946945, -0.030846435576677322, 0.009352797642350197, 0.015172755345702171, -0.025547176599502563, 0.004814812447875738, -0.025349441915750504, 0.024532143026590347, 0.009141881950199604, 0.016517342999577522, -0.0015118378214538097, 0.013439291156828403, 0.04408140107989311, 0.017558740451931953, -0.01577913761138916, 0.017466465011239052, -0.00038578640669584274, -0.008944148197770119, -0.008476179093122482, -0.025349441915750504, -0.022488897666335106, -0.00796207133680582, -0.0004840352921746671, -0.0009219327475875616, -0.05293986573815346, 0.01678098738193512, 0.007401826325803995, 0.008443223312497139, 0.02886909991502762, -0.006419749464839697, 0.012345165014266968, 0.006657029967755079, -0.012562672607600689, -0.007724791299551725, -0.00873982347548008, 0.007362279575318098, -0.0029808334074914455, -0.008252080529928207, -0.006821807939559221, 0.023438017815351486, 0.002306891605257988, 0.00876618828624487, -0.03883486986160278, 0.019746990874409676, -0.012457214295864105, -0.02575809136033058, 0.00048032778431661427, 0.006960221566259861, -0.00841685850173235, 0.014895928092300892, -0.02820998802781105, -0.0020926801953464746, -0.009253930300474167, -0.02511216141283512, -0.010671021416783333, -0.011171946302056313, -0.01336019765585661, -0.016556890681385994, -0.0024123494513332844, -0.003585568629205227, -0.008146623149514198, -0.01572640985250473, 0.015120026655495167, -0.005141072440892458, 0.006119853816926479, -0.0008057642844505608, 0.033271968364715576, -0.0250726155936718, 0.023253466933965683, -0.011191719211637974, -0.01555503997951746, 0.023793937638401985, 0.03915124386548996, -0.008107076399028301, -0.04402867332100868, 0.0032197614200413227, -0.040416739881038666, -0.028078164905309677, 0.01100716833025217, 0.016952358186244965, 0.0250726155936718, -0.008832098916172981, -0.007863204926252365, 0.016359155997633934, 0.009398935362696648, 0.0063538383692502975, -0.02092021144926548, -0.01315587293356657, 0.0103876031935215, 0.018349673599004745, -0.016596436500549316, 0.008080711588263512, 0.01333383284509182, -0.020643383264541626, 0.016556890681385994, 0.014790470711886883, -0.005289372988045216, 0.033377423882484436, -0.006119853816926479, -0.00537835294380784, -0.00023645638430025429, 0.01297791302204132, 0.009188019670546055, -0.009267113171517849, -0.005071865860372782, 0.027735427021980286, -0.004205133765935898, -0.0012638469925150275, -0.009649397805333138, 0.023938942700624466, -0.014460914768278599, 0.014381821267306805, -0.028130894526839256, 0.032929230481386185, -0.0009244044194929302, -0.016359155997633934, -0.017361005768179893, -0.0024156449362635612, -0.008673911914229393, -0.003542726393789053, 0.016345974057912827, -0.005790297873318195, 0.022554807364940643, 0.005038910079747438, -0.011026941239833832, -0.005968257784843445, 0.0021487046033143997, 0.015133208595216274, 0.0031983403023332357, -0.0036350020673125982, 0.012147432193160057, 0.002750144340097904, -0.008100484497845173, -0.00021771289175376296, -0.013149281963706017, -0.01322837546467781, -0.004926861263811588, 0.020261099562048912, 0.026799488812685013, 0.012615401297807693, -0.02606128342449665, 0.019707445055246353, -0.01703145168721676, 0.02741905301809311, -0.00398103566840291, -0.01821785233914852, 0.013089961372315884, 0.0345638282597065, -0.010018500499427319, -0.0056222244165837765, -0.007909342646598816, 0.021342042833566666, 0.007612742017954588, -0.0061890603974461555, 0.029449118301272392, 0.01662280224263668, 0.0037404599133878946, 0.0007217274978756905, 0.0015497368294745684, 0.01018327847123146, -0.0035921595990657806, 0.014975021593272686, -0.0017581809079274535, 0.03619842231273651, 0.04822062328457832, 0.016899628564715385, 0.00885846372693777, 0.011310359463095665, 0.0020366557873785496, -0.0113301333039999, 0.0024832040071487427, 0.02156613953411579, -0.008621183224022388, -0.004294113721698523, -0.008397085592150688, -0.012892228551208973, -0.014223634265363216, 0.00376352877356112, -0.008891419507563114, 0.018296945840120316, 0.01947016455233097, -0.008660729974508286, 0.014750923961400986, 0.004053538199514151, -0.0021783646661788225, -0.026839034631848335, -0.02432122826576233, 0.005816662218421698, 0.018204670399427414, -0.010624883696436882, 0.00983394868671894, -0.01753237657248974, 0.006192355882376432, 0.0036053420044481754, -0.02316119149327278, 0.01443454995751381, 0.017097361385822296, -0.020748842507600784, 0.009029832668602467, -0.009655988775193691, 0.0021750691812485456, 0.03551294654607773, -0.012562672607600689, 0.02881637029349804, -0.03245466947555542, -0.0031423158943653107, -0.017057815566658974, -0.015159573405981064, -0.020801570266485214, 0.0103876031935215, 0.013070188462734222, -0.0031159513164311647, -0.02312164381146431, -0.002099271398037672, -0.01508047990500927, -0.014711377210915089, -0.009478028863668442, 0.016741441562771797, 0.009405526332557201, -0.0015942268073558807, 0.0028111122082918882, 0.008232307620346546, -0.0082388985902071, 0.027840886265039444, 0.007625924423336983, -0.005464037414640188, -0.014315909706056118, -0.025204438716173172, 0.01618778705596924, 0.11663644015789032, 0.0225679911673069, 0.0005099878180772066, 0.018441950902342796, 0.03000277280807495, -0.013234966434538364, -0.012687903828918934, 0.0006821808055974543, 0.014289545826613903, 0.0049532256089150906, 0.028499998152256012, -0.02306891605257988, -0.0019493233412504196, -0.030820071697235107, 0.024888064712285995, -0.015594586730003357, -0.024492597207427025, -0.017809202894568443, 0.00720409257337451, -0.025046251714229584, 0.003351583844050765, 0.003013788955286145, -0.01505411509424448, -0.004445709753781557, -0.015238666906952858, -0.013373379595577717, 0.022343892604112625, 0.03005550056695938, 0.01563413441181183, -0.01071056816726923, 0.005658475216478109, -0.0009458255372010171, 0.008779370225965977, -0.0008477826486341655, 0.007790702395141125, 0.0009466494084335864, -0.010242598131299019, 0.003984331153333187, 0.013162463903427124, 0.002636447548866272, 0.011409226804971695, 0.013920443132519722, 0.018745141103863716, -0.023978490382432938, 0.026021737605333328, 0.004402867518365383, 0.010473287664353848, 0.03414199501276016, -0.011475137434899807, 0.0037404599133878946, 0.040838573127985, 0.01608232967555523, 0.01947016455233097, -0.017361005768179893, 0.022238435223698616, 0.014988203532993793, 0.003433972829952836, 0.0009417060646228492, -0.012529716826975346, 0.009972362779080868, 0.005757342092692852, -0.0010339817963540554, 0.00022842346515972167, -0.012707676738500595, 0.006874536629766226, -0.019101062789559364, -0.03754301369190216, 0.004340251442044973, -0.02820998802781105, -0.01418408751487732, -0.004650034476071596, -0.013175646774470806, -0.018586954101920128, -0.010473287664353848, 0.028394538909196854, 0.024637602269649506, 0.0068086255341768265, -0.010301918722689152, 0.006782261189073324, 0.001950971083715558, -0.008977103978395462, -0.024057583883404732, -0.00036704292870126665, 0.006515320856124163, -0.0116860531270504, 0.012727450579404831, -0.005813366733491421, 0.002695767441764474, -0.022357074543833733, 0.012780179269611835, 0.0036646618973463774, 0.021632051095366478, 0.018705595284700394, -0.005536539945751429, -0.006762487813830376, 0.01153445802628994, 0.0038821690250188112, 0.02641720324754715, -0.019905177876353264, 0.011343315243721008, 0.02586355060338974, -0.0230161864310503, 0.011244448833167553, -0.014790470711886883, -0.008443223312497139, -0.01567368023097515, 0.01558140479028225, -0.009899860247969627, -0.013999535702168941, 0.0043435473926365376, 0.013920443132519722, 0.005154254846274853, 0.00684158131480217, -0.009412117302417755, -0.01031510066241026, 0.023003004491329193, 0.016965540125966072, 0.008792552165687084, 0.0010867107193917036, -0.026021737605333328, -0.0003952611587010324, -0.03171646222472191, 0.020643383264541626, -0.004834585357457399, -0.012279254384338856, 0.019087878987193108, -0.00720409257337451, -0.03880850598216057, 0.0007295544492080808, -0.004070015624165535, 0.011982654221355915, 0.0008436631760559976, -0.018112394958734512, -0.016596436500549316, -0.011976062320172787, -0.018033301457762718, -0.003221409162506461, 0.007164545822888613, 0.00425786292180419, -0.00949121080338955, -0.018534226343035698, 0.0022442759945988655, -0.007533648516982794, -0.024281680583953857, -0.008832098916172981, -0.024703513830900192, 0.0024008150212466717, -0.014012718573212624, -0.020037000998854637, 0.04039037600159645, 0.013037232682108879, -0.011198311112821102, 0.0007752803503535688, 0.010367829352617264, -0.03308741748332977, -0.024993522092700005, -0.027840886265039444, 0.016807353124022484, 0.04099676012992859, 0.03300832211971283, 0.04149768501520157, -0.001048811711370945, 0.02331937849521637, -0.014500461518764496, -0.0023991672787815332, -0.0013627137523144484, 0.006627369672060013, -0.014816834591329098, -0.031241903081536293, 0.02770906314253807, 0.029106380417943, 0.009365979582071304, 0.005111412610858679, 0.012549489736557007, -0.022409804165363312, -0.004949930123984814, -0.010532607324421406, -0.003901942167431116, 0.0010076172184199095, -0.0268654003739357, -0.004725832026451826, 0.008588227443397045, -0.005932006984949112, 0.006933856755495071, 0.0043797981925308704, -0.013854531571269035, 0.03688390180468559, 0.0062384940683841705, 0.01046010572463274, -0.011158764362335205, 0.021342042833566666, -0.010822616517543793, 0.01606914773583412, 0.006515320856124163, -0.030240053310990334, -0.021183855831623077, -0.013149281963706017, -0.0030203801579773426, 0.006795443594455719, -0.019694263115525246, -0.01608232967555523, 0.010308509692549706, 0.0011344962986186147, -0.01235834788531065, -0.014487278647720814, 0.0063966806046664715, -0.02156613953411579, -0.0031670324970036745, 0.014289545826613903, -0.014170905575156212, -0.0025524108204990625, -0.015528676100075245, -0.009471437893807888, -0.029396388679742813, 0.01333383284509182, 0.020313827320933342, -0.014104994013905525, 0.020340193063020706, -0.005345397163182497, -0.023332560434937477, -0.02197478897869587, -0.006413158494979143, 0.014566372148692608, -0.005094934720546007, 0.028579091653227806, -0.0012869159691035748, -0.016042783856391907, -0.006261562928557396, 0.05399444326758385, 0.012852681800723076, 0.0008733232389204204, -0.0032329438254237175, 0.018059665337204933, 0.008957330137491226, -0.017558740451931953, -0.0008028806769289076, 0.015067297033965588, -0.02167159877717495, -0.024242134764790535, 0.02411031164228916, 0.021803420037031174, 0.02421577088534832, -0.016200968995690346, -0.012299027293920517, 0.005938597954809666, 0.006475774105638266, -0.023332560434937477, -0.0038162576965987682, 0.003320276038721204, -0.012892228551208973, -0.040864937007427216, 0.007757746614515781, 0.0022360370494425297, 0.025046251714229584, -0.021895695477724075, -0.0004362496838439256, -0.013399744406342506, -0.013946807011961937, 0.010255781002342701, 0.011699235998094082, -0.017466465011239052, 0.02152659371495247, 0.00462037418037653, -0.001170747447758913, -0.025837184861302376, 0.006597709842026234, 0.00601769145578146, -0.018006935715675354, -0.028552725911140442, 0.0186265017837286, 0.01892969384789467, -0.001430272706784308, -0.00906278844922781, 0.012898819521069527, 0.008640957064926624, 3.0879778023518156e-06, -0.0037964843213558197, -0.024927610531449318, 0.008291627280414104, -0.016490979120135307, 0.011620142497122288, -0.007731382269412279, -0.012384711764752865, -0.009207792580127716, 0.0009688944555819035, -0.011488320305943489, -0.012918592430651188, -0.02391257882118225, 0.01483001746237278, -0.001773010939359665, -0.049248840659856796, -0.01658325456082821, 0.0045412806794047356, 0.003987626638263464, -0.003990922588855028, 0.0032757860608398914, -0.005440968554466963, 0.023701662197709084, -0.033482883125543594, 0.020748842507600784, -0.03575022891163826, 0.009043014608323574, -0.020709294825792313, -0.0013684809673577547, -0.006574640981853008, -0.004043651279062033, 0.013103144243359566, -0.00881232600659132, -0.05038250982761383, -0.028579091653227806, 0.012345165014266968, -0.008832098916172981, -0.01873195916414261, -0.013735891319811344, 0.012734041549265385, 0.016860080882906914, 0.010104184970259666, -0.018758323043584824, -0.01927243173122406, 0.021882513538002968, -0.020392920821905136, 0.013696344569325447, 0.018415585160255432, -0.016240516677498817, -0.01390726026147604, 0.020406102761626244, 0.019101062789559364, 0.01613505929708481, -0.03999490663409233, -0.005239939317107201, 0.0036350020673125982, 0.023332560434937477, -0.015792319551110268, -0.015568222850561142, -0.011013759300112724, 0.007757746614515781, -0.00938575342297554, 0.007757746614515781, 0.0007674533990211785, 0.02726086787879467, -0.005810071248561144, -0.0034932929556816816, 0.01957562193274498, 0.001764771994203329, -0.013841349631547928, 0.01776965521275997, -0.01618778705596924, 0.023438017815351486, -0.0009548882953822613, -0.024677148088812828, 0.0024436572566628456, 0.011000577360391617, -0.02566581591963768, -0.040574926882982254, -0.009188019670546055, 0.01063806563615799, -0.016306428238749504, -0.024097129702568054, -0.0036646618973463774, -0.0017746586818248034, -0.0045907143503427505, -0.016266880556941032, -0.004574236460030079, 0.03245466947555542, -0.01628006249666214, 0.012167205102741718, -0.021539775654673576, -0.014948656782507896, -0.010763296857476234, -0.018956057727336884, -0.006330769509077072, -0.002923161257058382, -0.015238666906952858, -0.008074120618402958, -0.011593777686357498, -0.004570940975099802, -0.004923565778881311, 0.002112453570589423, -0.011949698440730572, 0.001842217636294663, -0.014935474842786789, 0.010829208418726921, 0.018033301457762718, -0.009260522201657295, 0.031742826104164124, 0.0041787694208323956, -0.01577913761138916, 0.002891853451728821, 0.0014986556489020586, -0.006676803342998028, -0.03738482668995857, 0.023332560434937477, 0.0013577704085037112, 0.0012976265279576182, -0.01290541049093008, -0.013551340438425541, -0.0014937123050913215, -0.010895119048655033, 0.00534210167825222, -0.00159505067858845, -0.02382030338048935, 0.0016395407728850842, 0.019562439993023872, -0.0020251211244612932, 0.01762465201318264, 0.013234966434538364, -0.017216002568602562, -0.0017894887132570148, 0.005721090827137232, -0.02272617816925049, 0.009504392743110657, -0.005276190582662821, 0.009023241698741913, -0.012562672607600689, 0.005935302469879389, -0.0007126647396944463, -0.013841349631547928, -0.006083602551370859, 0.0034537462051957846, -0.025230802595615387, -0.009267113171517849, 0.003082995768636465, -0.006139627192169428, -0.02411031164228916, -0.0015604473883286119, -0.019984271377325058, -0.005005954764783382, 0.002259105909615755, -0.0248089712113142, 0.0017367597902193666, -0.016504161059856415, -0.014381821267306805, -0.014368638396263123, 0.009082561358809471, -0.009768038056790829, 0.020102912560105324, 0.23116371035575867, -0.005253121722489595, -0.0026331518311053514, 0.03741119056940079, -0.0003726041759364307, 0.015871413052082062, 0.034036535769701004, 0.004076607059687376, -0.0018537521827965975, -0.007995027117431164, -0.020498380064964294, -0.01173219084739685, -0.02271299436688423, 0.010374421253800392, -0.0007382052717730403, -0.0006850644131191075, -0.014012718573212624, -0.021487047895789146, -0.0011237857397645712, -0.023596204817295074, 0.029238203540444374, 0.01318223774433136, -0.0007550950394943357, -0.014922292903065681, 0.027445418760180473, 0.010222825221717358, -0.0044259363785386086, 0.003000606782734394, -0.007019541226327419, 0.0024766128044575453, -0.008528907783329487, 0.011158764362335205, 0.016965540125966072, -0.009965771809220314, 0.011613551527261734, 0.007335915230214596, 0.008278445340692997, -0.009662579745054245, 0.02186933159828186, 0.014276362955570221, -0.0027995777782052755, 0.013057006523013115, -0.001993813319131732, 0.010769887827336788, -0.023108461871743202, 0.027972707524895668, -0.017637833952903748, -0.011877195909619331, -0.014223634265363216, 0.003394426079466939, -0.011738782748579979, -0.009082561358809471, -0.011811284348368645, 0.02057747170329094, -0.008443223312497139, 0.00784343108534813, 0.00019320216961205006, -0.0017680675955489278, 0.020933393388986588, 0.008977103978395462, -0.009280295111238956, 0.012239707633852959, -0.01912742666900158, 0.024426685646176338, -0.02476942352950573, 0.012826316989958286, -0.0189824216067791, -0.01728191412985325, -0.006109966896474361, -0.012496761046350002, 0.012595627456903458, 0.02786725014448166, 0.008818916976451874, 0.013867713510990143, -0.01923288404941559, -0.013524975627660751, 0.01737418957054615, -0.01717645488679409, 0.014421368017792702, 0.019087878987193108, -0.007190910633653402, 0.021842967718839645, -0.005239939317107201, -0.04004763811826706, -0.012747223488986492, -0.03888760134577751, 0.011903560720384121, 0.002644686494022608, 0.014078629203140736, 0.005134481471031904, 0.008759596385061741, -0.01046010572463274, 0.011073079891502857, 0.004557758569717407, -0.0010842389892786741, 0.029343660920858383, -0.020063364878296852, 0.023596204817295074, -0.007955480366945267, -0.0026001962833106518, -0.03129463270306587, -0.02776179276406765, 0.008476179093122482, -0.008324583061039448, -0.012780179269611835, 0.015515493229031563, 0.02915911003947258, 0.022198887541890144, -0.009873495437204838, -0.03050369769334793, -0.011817876249551773, -0.028737276792526245, -0.003595455316826701, 0.0011756907915696502, 0.011995836161077023, 0.003373004961758852, 0.005384943913668394, -0.011633324436843395, -0.021500229835510254, 0.007975253276526928, 0.0023909283336251974, -0.03361470624804497, -0.009800993837416172, 0.010875346139073372, 0.0067328279837965965, -0.00016343915194738656, -0.019733808934688568, 0.023754391819238663, -0.0022294458467513323, -0.02496715821325779, 0.01921970210969448, -0.011165355332195759, 0.011751964688301086, -0.007737973239272833, -0.0025870141107589006, 0.015225484035909176, 0.008779370225965977, 0.010605109855532646, -0.013880896382033825, -0.0031966925598680973, 0.02747178263962269, -0.01991836167871952, -0.006284631788730621, -0.00876618828624487, 0.011791511438786983, -0.003602046286687255, -0.007296368479728699, 0.005875982344150543, -0.024690330028533936, -0.01583186723291874, -0.022330710664391518, 0.009603260084986687, 0.008258671499788761, -0.02147386409342289, 0.007803884334862232, -0.019931543618440628, -0.04205133765935898, -0.014025900512933731, 0.02720813825726509, -0.004294113721698523, -0.019285613670945168, -0.013538157567381859, 0.01612187549471855, -0.004594009835273027, 0.006113262381404638, -0.0019081288482993841, -0.16904900968074799, 0.019206520169973373, -0.0019064811058342457, -0.030846435576677322, 0.005734273232519627, 0.0063637252897024155, 0.008120258338749409, -0.00397114921361208, -0.03340379148721695, -0.001080119633115828, 0.011778329499065876, 0.0024914429523050785, -0.020748842507600784, 0.023833485320210457, 0.004524802789092064, 0.0017977276584133506, -0.022554807364940643, 0.003269194858148694, 0.008753005415201187, 0.008977103978395462, 0.026944493874907494, 0.006722941063344479, 0.0022014337591826916, -0.014724559150636196, 0.01368316262960434, 0.008542089723050594, -0.009655988775193691, 0.008291627280414104, 0.006630665622651577, -0.018639683723449707, -0.024782605469226837, 0.003173623699694872, -0.0070129502564668655, 0.0012490169610828161, 0.030371874570846558, 0.014447731897234917, -0.01333383284509182, -0.007045906037092209, 0.009570304304361343, 0.022436168044805527, -0.007612742017954588, 0.02371484600007534, -0.009352797642350197, 0.02036655694246292, -0.01483001746237278, 0.025454901158809662, 0.03593477979302406, 0.0012720859376713634, -0.020933393388986588, 0.00351306633092463, -0.018349673599004745, -0.04205133765935898, 0.007790702395141125, 0.016464615240693092, -0.00455446308478713, 0.01200901810079813, -0.024598054587841034, 0.01961516961455345, -0.011158764362335205, -0.028420904651284218, 0.0006067948415875435, -0.022752542048692703, -0.0015719818184152246, -0.01185742300003767, -0.0030895869713276625, 0.00935938861221075, -0.01452682539820671, -0.019931543618440628, -0.019061515107750893, 0.012648357078433037, -0.019114244729280472, -0.017888296395540237, 0.006541685201227665, -0.002123988000676036, 0.009603260084986687, 0.022792087867856026, 0.0004893905716016889, 0.01637233980000019, -0.013854531571269035, -0.026179922744631767, -0.010051456280052662, 0.037437554448843, -0.024874882772564888, -0.027946343645453453, 0.0013940215576440096, -0.00831140112131834, -0.006482365075498819, 0.002860545413568616, 0.018086029216647148, -0.01577913761138916, 0.015607768669724464, -0.03870305046439171, -0.03166373446583748, -0.047166045755147934, 0.004274340346455574, 0.012839498929679394, 0.022805271670222282, -0.008476179093122482, -0.005615632981061935, -0.014039082452654839, -0.024848517030477524, -0.022976640611886978, -0.014210452325642109, 0.010631474666297436, 0.02577127330005169, 0.010044865310192108, 0.022291162982583046, 0.013775438070297241, 0.0308991651982069, -0.023490747436881065, 0.002371154958382249, 0.004762083292007446, 0.014948656782507896, 0.0030500402208417654, 0.011620142497122288, 0.04044310376048088, 0.0035789774265140295, -0.018455132842063904, 0.02396530844271183, -0.008654139004647732, 0.03764846920967102, -0.010974212549626827, -0.013762256130576134, 0.0048807235434651375, 0.00030092577799223363, 0.027972707524895668, -0.10471969097852707, -0.010921483859419823, 0.0010768240317702293, 0.013643615879118443, -0.012068338692188263, 0.015660498291254044, -0.0186265017837286, 0.0055727907456457615, -0.0042611584067344666, 0.020656565204262733, -0.004874132107943296, -0.007131590507924557, 0.0007143124821595848, -0.01544958259910345, 0.01737418957054615, -0.011251039803028107, 0.0022212069015949965, -0.029580941423773766, -0.013669979758560658, 0.020234733819961548, -0.018956057727336884, -0.007546830922365189, -0.02577127330005169, -0.006139627192169428, 0.011600368656218052, 0.002216263674199581, -0.020999304950237274, 0.024334410205483437, 0.020709294825792313, 0.015739591792225838, -0.013373379595577717, -0.007256821729242802, 0.02063020132482052, -0.03604023531079292, -6.519028102047741e-05, 0.005945188924670219, 0.006070420145988464, -0.0044687786139547825, 0.007948889397084713, 0.0011929924366995692, -0.00794229842722416, -0.019509712234139442, 0.007131590507924557, -0.005345397163182497, 0.008100484497845173, -0.008687094785273075, -0.022436168044805527, 0.007718199864029884, -0.010236007161438465, -0.0024683738593012094, -0.012734041549265385, 0.02900092303752899, -0.02186933159828186, -0.007929115556180477, 0.004699467681348324, -0.011040124110877514, 0.02765633352100849, 0.015265030786395073, 0.0047554923221468925, -0.0009202849469147623, 0.013472246937453747, -0.008021391928195953, -0.019549258053302765, 0.023978490382432938, 0.0016370691591873765, -0.009688944555819035, -0.0007291425135917962, 0.000561480934266001, 0.007296368479728699, -0.0031884536147117615, 0.027392689138650894, 0.02625901624560356, -0.01308337040245533, 0.025889914482831955, -0.020788388326764107, 0.011850831098854542, -0.02820998802781105, -0.006749305408447981, 0.010822616517543793, -0.04120767489075661, -0.006900901440531015, -0.019799720495939255, 0.014289545826613903, -0.03258649259805679, 0.015475946478545666, 0.0022360370494425297, -0.0005091639468446374, 0.027234502136707306, 0.016543708741664886, -0.01185742300003767, 0.01753237657248974, 0.029528211802244186, 0.014750923961400986, -0.019536076113581657, 0.00901005882769823, 0.024149859324097633, -0.039362162351608276, 0.012114476412534714, 0.012173796072602272, -0.008660729974508286, -0.020709294825792313, -0.009194610640406609, -0.03983672335743904, 0.029027286916971207, 0.015423217788338661, 0.007316141854971647, 0.007751155644655228, -0.022040700539946556, -0.009952588938176632, -0.0027468486223369837, -0.006274744868278503, 0.003048392478376627, -0.01265494804829359, 0.04199860990047455, 0.013261331245303154, 0.026404021307826042, -0.009425300173461437, -0.009741673246026039, 0.0076325153931975365, 0.00821253377944231, 0.0037305732257664204, 0.011633324436843395, -0.005500288680195808, 0.0015884595923125744, -0.0004300705040805042, 0.022304344922304153, 0.0023052438627928495, 0.019760174676775932, -0.012885636650025845, 0.03005550056695938, -0.0114619554951787, 0.0009309955057688057, -0.014421368017792702, -0.019483346492052078, -0.012773588299751282, 0.03411563113331795, 0.010677612386643887, -0.007922524586319923, -0.011389452964067459, 0.009155063889920712, 0.021552957594394684, -0.009880087338387966, -0.016635984182357788, -0.02776179276406765, -0.004350138362497091, -0.0049631125293672085, -0.00727659510448575, 0.0064461142756044865, 0.003199988044798374, 0.0033713572192937136, 0.010262371972203255, -0.016411885619163513, 0.007540239952504635, 0.02111794427037239, 0.018745141103863716, -0.009267113171517849, 0.003921715542674065, -0.0038689866196364164, 0.003918420057743788, -0.007210684008896351, -0.01882423460483551, -0.03250739723443985, 0.01821785233914852, 0.005388239398598671, 0.022159341722726822, 0.021447500213980675, 0.012641766108572483, -0.019193338230252266, 0.00684158131480217, 0.011719008907675743, 0.030292781069874763, -0.04402867332100868, -0.004574236460030079, -0.006337360478937626, 0.010697385296225548, -0.02765633352100849, 0.021131126210093498, 0.012839498929679394, -0.01821785233914852, -0.013037232682108879, 0.004485256504267454, 0.026193106546998024, 0.02926456741988659, 0.003908533602952957, -0.026443568989634514, 0.02570536360144615, 0.025375807657837868, 0.029686398804187775, -0.00798843614757061, -0.005988031160086393, 0.006657029967755079, -0.010051456280052662, -0.004099675919860601, 0.006225311663001776, 0.012470396235585213, -0.008957330137491226, 0.02387303113937378, 0.025942644104361534, 0.013880896382033825, 0.010763296857476234, 0.025784457102417946, -0.0035493173636496067, 0.005875982344150543, 0.013492019847035408, 0.003265899373218417, -0.012022200971841812, -0.02192206121981144, 0.016253698617219925, -0.02921183779835701, -0.01842876709997654, -0.012292436324059963, 0.017216002568602562, 0.009234157390892506, 0.0006088545778766274, 0.014249999076128006, 0.03395744413137436, -0.021144308149814606, 0.034985657781362534, 0.007250230759382248, -0.029027286916971207, -0.024690330028533936, 0.012549489736557007, 0.016649166122078896, 0.01631961017847061, 0.01293177530169487, 0.006218720693141222, -0.0028687843587249517, 0.015093661844730377, 0.021829785779118538, -0.0059913271106779575, -0.006330769509077072, -0.01308337040245533, 0.010829208418726921, 0.0011246096109971404, -0.0251648910343647, -0.010453513823449612, -0.01230561826378107, 0.005599155556410551, 0.003951375838369131, 0.009985544718801975, -0.0033499361015856266, 0.01887696422636509, -0.006492251995950937, -0.019246065989136696, 0.027287231758236885, 0.012015609070658684, 0.014975021593272686, 0.020050182938575745, 0.0019822788890451193, -0.013149281963706017, 0.008924374356865883, -0.011297177523374557, 0.0038986466825008392, 0.0145531902089715, -0.01722918450832367, -0.014961839653551579, 0.00598144019022584, 0.0004762083408422768, -0.006343951914459467, -0.015344124287366867, 0.0005050444742664695, 0.006419749464839697, 0.0013173999032005668, 0.01125763077288866, -0.00924074836075306, -0.029976407065987587, -0.005872686859220266, 0.003934897948056459, -0.017861932516098022, 0.008792552165687084, -0.029923679307103157, 0.007263412699103355, 0.013709526509046555, -0.01812557689845562, -0.01228584535419941, 0.0354602187871933, -0.006670211907476187, -0.019074697047472, -0.0024996816646307707, 0.02312164381146431, 0.000839131826069206, -0.030424604192376137, 0.023780755698680878, -0.0047489008866250515, -0.007540239952504635, -0.002442009514197707, -0.003849213244393468, -0.012068338692188263, -0.013894078321754932, -0.009998726658523083]}, {"created_time": 1695688466.0793974, "accessed_time": 1695688466.0793974, "description": "Talked to Mei about their upcoming vacation plans.", "poignancy": 3, "embedding_key": [0.006239559035748243, -0.006435062736272812, 0.017522457987070084, -0.0157728623598814, 0.00013285571185406297, 0.05911509692668915, -0.031015545129776, -0.012107991613447666, 0.0038040434010326862, -0.02241336926817894, 0.004629136528819799, 0.02063726633787155, 0.021538572385907173, -0.02775493636727333, 0.0005467484006658196, -0.019749214872717857, 0.017880329862236977, -0.008946791291236877, 0.03947192057967186, -0.02433527447283268, 0.005520502105355263, -0.004718604031950235, -0.005646419711410999, 0.0047616814263165, -0.007661104667931795, -0.012021836824715137, 0.010471059940755367, -0.0076080868020653725, -0.020570993423461914, 0.016700677573680878, 0.03043234720826149, -0.0019268738105893135, 0.01211461890488863, -0.0117633743211627, -0.01663440465927124, -0.047530658543109894, -0.01144526619464159, -0.018437018617987633, 0.011776628904044628, -0.0275958813726902, -0.004055879078805447, -0.0009004780440591276, 0.0012351543409749866, -0.004649017937481403, -0.007979212328791618, 0.011909173801541328, -0.0008863951079547405, -0.008443120867013931, -0.012439354322850704, 0.009251645766198635, -0.006763111799955368, -0.019643178209662437, -0.03011423908174038, -0.008542529307305813, -0.021313246339559555, -0.025157053023576736, -0.01540173590183258, 0.009013064205646515, -0.009934252128005028, -0.004456827882677317, 0.00010204934369539842, 0.008005721494555473, -0.0004216589732095599, 0.013281015679240227, -0.020902356132864952, 0.010968104004859924, -0.020663775503635406, -0.0008723121718503535, 0.028285115957260132, 0.008171402849256992, 0.025170307606458664, 0.0065841758623719215, 0.013387051410973072, -0.003893511136993766, 0.0275958813726902, -0.015958424657583237, -0.013459950685501099, -0.013466577976942062, -0.012976161204278469, 0.019338324666023254, 0.001636931556276977, -0.012035091407597065, -0.020451704040169716, 0.03764279931783676, 0.007813531905412674, 0.023261658847332, -0.013128588907420635, 0.014858301728963852, -0.012419472448527813, -0.025263089686632156, 0.0052388436160981655, 0.0210216473788023, -0.008111758157610893, 0.021101174876093864, -0.0037775342352688313, 0.019775724038481712, 0.008728092536330223, 0.013042434118688107, -0.012346572242677212, 0.009245018474757671, -0.0020561052951961756, 0.016819968819618225, -0.019272051751613617, -0.013546105474233627, -0.03130714222788811, 0.01936483383178711, -0.003045222721993923, -0.013744923286139965, 0.02283751405775547, -0.019285306334495544, -0.04079737141728401, 0.02059750258922577, -0.006199795287102461, -0.02209526114165783, -0.052487846463918686, -0.01642233319580555, 0.017085058614611626, 0.006342281121760607, -0.022320589050650597, -0.02033241279423237, 0.02807304449379444, 0.025011252611875534, 0.021949462592601776, 0.012068227864801884, 0.007654477376490831, 0.0014737354358658195, -0.017257366329431534, -0.005364761222153902, 0.0065841758623719215, -0.004914108198136091, 0.004304401110857725, 0.008993182331323624, 0.0053349388763308525, 0.009178745560348034, -0.008867264725267887, 0.019934777170419693, -0.015414990484714508, 0.027463337406516075, -0.010205970145761967, -0.019059980288147926, 0.006905597634613514, 0.017933346331119537, -0.003306999336928129, 0.0018307786667719483, 0.010855440981686115, 0.027251264080405235, 0.017827311530709267, -0.00949022639542818, 0.013307523913681507, -0.013009297661483288, 0.019815487787127495, -0.016660913825035095, 0.01829121820628643, 0.020080577582120895, 0.029478022828698158, 0.02224106155335903, 0.0054045249707996845, 0.0006751514156349003, -0.014540193602442741, 0.003644989337772131, 0.009026318788528442, 0.005387956742197275, 0.039604466408491135, -0.0031711405608803034, -0.008747974410653114, 0.028682751581072807, 0.022386861965060234, 0.0021290050353854895, -0.001436457154341042, -0.0030700750648975372, -0.005417779553681612, -0.00837022066116333, -0.028046535328030586, -0.007879803888499737, -0.012949652969837189, 0.021008392795920372, -0.008535902015864849, -0.013148469850420952, -0.01776103861629963, -0.005918137263506651, -0.018794890493154526, -0.006723348516970873, -0.0015905407490208745, 0.013393678702414036, -0.0013859242899343371, -0.004430318716913462, 0.00042662941268645227, 0.009569753892719746, 0.012200772762298584, -0.0072502149268984795, 0.021326500922441483, 0.02849718928337097, 0.012286927551031113, -0.01109402161091566, -0.6633615493774414, -0.030564891174435616, 0.00855578389018774, 0.019868504256010056, 0.007508677896112204, 0.00818465743213892, 0.016806714236736298, 0.003277176758274436, -0.009808334521949291, 0.002382497536018491, -0.02042519487440586, 0.0055967154912650585, 0.008516020141541958, -0.025011252611875534, 0.017946600914001465, -0.009397445246577263, -0.01422208547592163, -0.008602174930274487, -0.00880099181085825, 0.0008930223411880434, -0.03316277638077736, 0.014195576310157776, -0.010809049941599369, -0.0031197795178741217, -0.00504333944991231, 0.012101364322006702, 0.012386335991322994, 0.002508415374904871, -0.025554688647389412, 0.03719214349985123, -0.04761018604040146, 0.042971108108758926, -0.005450915545225143, -0.023261658847332, 0.048272911459207535, -0.018317727372050285, -0.0031346906907856464, 0.021843425929546356, -0.017615238204598427, 0.0173368938267231, -0.029080387204885483, 0.016303041949868202, 0.01797311007976532, 0.02257242426276207, 0.025647468864917755, -0.013526223599910736, 0.024905217811465263, -0.001736340345814824, 0.007601459510624409, 0.003202620195224881, 0.01094159483909607, 0.011398875154554844, -0.030989035964012146, 0.006806189194321632, 0.004950558301061392, 0.0135328508913517, 0.025501670315861702, -0.010663250461220741, -0.020663775503635406, 0.005391270387917757, -0.015812626108527184, 0.012207400053739548, -0.036078765988349915, -0.004751740489155054, -0.017509203404188156, 0.016501860693097115, -0.016515115275979042, 0.007667731959372759, 0.028550205752253532, -0.0307504553347826, 0.002541551599279046, 0.02364603988826275, -0.04005511850118637, 0.01002703420817852, 0.019112998619675636, 0.028947841376066208, 0.017071804031729698, 0.0008946791640482843, -0.03234099596738815, 0.007893058471381664, 0.018463527783751488, -0.02812606282532215, -0.028974350541830063, -0.022333843633532524, 0.013506341725587845, -0.03279164806008339, -0.02551492489874363, 0.005437661428004503, 0.018105655908584595, -0.012571899220347404, 0.002140602795407176, 0.015070374123752117, 0.014924573712050915, 0.0025498357135802507, 0.002844748320057988, -0.010119815357029438, -0.001371841412037611, -0.008211166597902775, 0.023235149681568146, -0.038491085171699524, 0.004248069133609533, -0.018755126744508743, 0.038703158497810364, -0.0011274614371359348, -0.01023910567164421, -0.00688571622595191, -0.028285115957260132, 0.011113903485238552, 0.020822828635573387, -0.0015665169339627028, -0.004016115330159664, -0.001807583263143897, -0.009907743893563747, -0.0012500656303018332, -0.0016642689006403089, -0.029504530131816864, 0.009370936080813408, 0.019391342997550964, 0.0004303572641219944, -0.0022897159215062857, 0.017681511119008064, 0.012386335991322994, 0.03027329221367836, -0.011067512445151806, -0.0035389531403779984, 0.018264709040522575, 0.0006962757906876504, -0.01398350391536951, 0.0023278226144611835, 0.014169067144393921, -0.0177477840334177, 0.008091876283288002, 0.0017181154107674956, -0.02192295342683792, -0.0004895883030258119, -0.018410509452223778, 0.0018191810231655836, -0.032871175557374954, 0.024693144485354424, -0.016303041949868202, -0.04360732436180115, -0.0031976497266441584, -0.0022946863900870085, -0.018808145076036453, 0.012233909219503403, -0.004897539969533682, -0.0006929621449671686, -0.006040741223841906, -0.0031744542066007853, -0.004509845748543739, 0.014288357459008694, 0.004234814550727606, 0.013758177869021893, 0.019881758838891983, 0.009569753892719746, -0.00019167258869856596, 0.020836083218455315, -0.015361973084509373, -0.02717173844575882, -0.011352485045790672, 0.01331415120512247, 0.01605120673775673, -0.018476782366633415, -0.0019948030821979046, 0.002738712355494499, -0.004804758355021477, 0.011584438383579254, 0.009636025875806808, 0.004271264653652906, -0.0373246893286705, 0.00663388054817915, -0.025859542191028595, -0.008323829621076584, 0.011524793691933155, 0.0019682941492646933, -0.018688853830099106, -0.005566892679780722, -0.02118070051074028, 0.00501351710408926, -0.013208115473389626, 0.005759083200246096, -0.011630829423666, -0.007329741958528757, 0.0009659221395850182, 0.021750645712018013, -0.013400305993855, 0.010431296192109585, 0.04199027642607689, -0.02331467717885971, 0.030617909505963326, 0.0013378767762333155, 0.018794890493154526, -0.015216173604130745, 0.0014654513215646148, 0.009178745560348034, -0.003920020069926977, -0.0005695295403711498, 0.0033318514470010996, -0.00743577815592289, 0.012439354322850704, -0.002244981937110424, -0.02963707596063614, 0.0050300853326916695, 0.0034991896245628595, -0.003492562333121896, -0.025541434064507484, -0.0097884526476264, -0.025859542191028595, -0.004970439709722996, 0.007303232792764902, 0.010915085673332214, -0.03578716516494751, -0.030564891174435616, -0.009987270459532738, 0.011670593172311783, -0.005507247522473335, 0.002407349646091461, 0.01583913527429104, -0.0187816359102726, -0.00025452792760916054, -0.00023982372658792883, -0.0009949164232239127, -0.012883380055427551, -0.00695198867470026, -0.028285115957260132, -0.019126253202557564, 0.007170687895268202, 0.011325975880026817, 0.006965243257582188, 0.010219224728643894, -0.02690664865076542, -0.001256692921742797, 0.003452798817306757, 0.03772232308983803, 0.021260228008031845, -0.005848550703376532, 0.02444130927324295, -0.0011100649135187268, 0.030034711584448814, 0.008151520974934101, 0.012141128070652485, 0.0025912560522556305, 0.008761228993535042, -0.002510072197765112, -0.00743577815592289, -0.019457615911960602, 0.018463527783751488, -0.008933537639677525, 0.016236770898103714, 0.012684562243521214, -0.03994908183813095, -0.004542982205748558, -0.03199637681245804, -0.01168384775519371, 0.009231763891875744, -0.02637646719813347, -0.0054476018995046616, 0.00701826112344861, 0.012757462449371815, 0.04594011977314949, -0.005682869348675013, -0.004231500905007124, 0.01171035598963499, 0.0010181117104366422, 0.0059744687750935555, 0.004973753355443478, 0.02123371884226799, -0.01625002548098564, -0.016607895493507385, -0.006110327318310738, 0.010656623169779778, -0.011783256195485592, 0.0023609588388353586, -0.004523100331425667, 0.014964337460696697, -0.006262754090130329, -0.013705159537494183, -0.023301422595977783, -0.002382497536018491, 0.026177650317549706, -0.01034514233469963, -0.05529779940843582, -0.0070381429977715015, 0.008575665764510632, -0.0060440548695623875, -0.008191284723579884, 0.015295700170099735, -0.00197989190928638, -0.01109402161091566, 0.020822828635573387, 9.630227577872574e-05, 0.0016377599677070975, -0.019881758838891983, 0.0018473467789590359, -0.0047152903862297535, 0.0033666444942355156, 0.011942310258746147, -0.003949842881411314, 0.013917231932282448, -0.0011755090672522783, -0.018635835498571396, 0.010663250461220741, -0.03151921555399895, -0.024534091353416443, 0.005209020804613829, 0.015255936421453953, -0.0001325450575677678, -0.0407443530857563, -0.002011371310800314, 0.008310575038194656, 0.002032910007983446, -0.010384906083345413, -0.027781445533037186, -0.0046457042917609215, -0.012558644637465477, 0.0032258154824376106, -0.027052447199821472, -0.018953943625092506, 0.014063031412661076, 0.005888314452022314, -0.0067067802883684635, -0.02673433907330036, -0.022333843633532524, 0.0061136409640312195, 0.14145208895206451, -0.009138981811702251, 0.0057822782546281815, 0.007674359250813723, 0.016501860693097115, 0.002508415374904871, 0.004079074133187532, -0.02658854052424431, 0.016819968819618225, -0.007840040139853954, 0.015017355792224407, 0.020239630714058876, -0.016965767368674278, -0.006053995806723833, 0.018808145076036453, -0.0002543208538554609, -0.010802422650158405, -0.012326691299676895, -0.00501351710408926, -0.0020246258936822414, 0.0036847528535872698, 0.003813984105363488, 0.010875322856009007, 0.016859732568264008, -0.00335007649846375, 0.009364308789372444, 0.013691904954612255, 0.0270657017827034, 0.012856870889663696, -0.005848550703376532, 0.01780080236494541, 0.0037907888181507587, 0.0027304282411932945, 0.005179198458790779, -0.029080387204885483, 0.0036350484006106853, -0.0008408327703364193, 0.003081672824919224, 0.01251225359737873, 0.00041213229997083545, -0.002115750452503562, 0.026946410536766052, -0.0015938543947413564, -0.006163345649838448, -0.005033398978412151, -0.011325975880026817, 0.0017661629244685173, 0.007263469509780407, -0.01023910567164421, -0.0016833222471177578, 0.035177458077669144, 0.010411414317786694, -0.012830361723899841, -0.028894823044538498, 0.007614714093506336, 0.04647029936313629, -0.008032230660319328, -0.007780394982546568, 0.0038272386882454157, 0.00022304848243948072, 0.0007256842218339443, -0.03417011722922325, -0.014553448185324669, -0.0029176482930779457, -0.013135216198861599, -0.025594452396035194, -0.010444550774991512, -0.020252885296940804, -0.018198437988758087, 0.006965243257582188, -0.0033616742584854364, 0.010073425248265266, -0.04047926142811775, -0.00943720806390047, 0.018649090081453323, 0.014381139539182186, 0.030723946169018745, -0.006229618098586798, -0.0036284211091697216, 0.0136653957888484, -0.01663440465927124, -0.0033732717856764793, 0.017244113609194756, -0.011610947549343109, -0.01925879716873169, 0.01064336858689785, 0.012041718699038029, 0.009397445246577263, 0.009198627434670925, 0.008250930346548557, 0.04055878892540932, 0.00786654930561781, 0.018118910491466522, 0.0028281803242862225, 0.0023294794373214245, 0.0357341505587101, -0.016170497983694077, 0.012525508180260658, -0.024242492392659187, 0.010451178066432476, 0.014381139539182186, -0.011770001612603664, -0.007263469509780407, -0.010822304524481297, 0.006285949610173702, 0.005159316584467888, 0.00949022639542818, 0.01797311007976532, 0.016554879024624825, 0.003711261786520481, 0.014778774231672287, -0.017032040283083916, 0.004841208457946777, -0.007197197061032057, 0.0034627397544682026, 0.026349958032369614, 0.007627968210726976, 0.018198437988758087, -0.011405502445995808, -0.024944981560111046, 0.00369137991219759, -0.01925879716873169, 0.027834463864564896, -0.0007824300555512309, -0.02033241279423237, -0.0015863986918702722, 0.0019517260370776057, -0.02218804322183132, 0.015361973084509373, 0.004930676426738501, 0.011637456715106964, -0.0015366943553090096, -0.007601459510624409, -0.017403166741132736, -0.014049776829779148, -0.01304906141012907, -0.009596262127161026, 0.028152571991086006, -0.007236960344016552, 0.0029275889974087477, -0.005318370647728443, 0.013426815159618855, -0.004890912678092718, -0.0135328508913517, 0.02294355072081089, -0.02615114115178585, -0.014646229334175587, -0.011663965880870819, 0.005815414711833, 0.03546905890107155, 0.011292839422821999, 0.027516355738043785, -0.006242872681468725, 0.006560980807989836, 0.007303232792764902, -0.0409829318523407, -0.02604510448873043, 0.009145609103143215, 0.005513874813914299, 0.006408553570508957, 0.014182321727275848, -0.0009336142684333026, 0.011610947549343109, -0.014672738499939442, 0.007422523573040962, 0.006673643831163645, 0.009450462646782398, -0.01850329153239727, -0.00731648737564683, -0.008310575038194656, 0.01032526046037674, -0.0044800229370594025, 0.014858301728963852, 0.01310207974165678, -0.016303041949868202, 0.034037571400403976, 0.003545580431818962, -0.0017263994086533785, -0.021843425929546356, -0.015653571113944054, -0.0013345631305128336, 0.0014306582743301988, 0.006743229925632477, 0.010762658901512623, 0.00850276555866003, -0.0070845335721969604, 0.03136016055941582, 0.009914370253682137, 0.019696196541190147, 0.0024272315204143524, 0.008284066803753376, -0.029981693252921104, 0.014977592043578625, -0.03369295597076416, 0.013320778496563435, -0.0023957521189004183, -0.0031015544664114714, -0.024587109684944153, -0.016117479652166367, 0.021326500922441483, 0.013824449852108955, 0.001004028832539916, 0.01834423653781414, -0.001607108861207962, -0.0002742026117630303, 0.008482883684337139, -0.016183752566576004, 0.0011506568407639861, -0.0023940952960401773, -0.018052637577056885, -0.0032705494668334723, -0.018065892159938812, -0.006663702894002199, -0.015123391523957253, 0.008409984409809113, -0.006355535704642534, -0.041910748928785324, 0.01532220933586359, -0.0028927959501743317, -0.009993897750973701, -0.013400305993855, 0.0036383620463311672, 0.03106856346130371, 0.004307714756578207, 0.027092210948467255, 0.008993182331323624, -0.001971607794985175, -0.024799181148409843, 0.008794364519417286, 0.0002124863094650209, 0.003654930042102933, 0.01090845838189125, 0.014169067144393921, -0.014301612041890621, -0.009496853686869144, -0.013784686103463173, 0.028762279078364372, -0.03491237014532089, -0.04055878892540932, -0.023235149681568146, 0.031254127621650696, 0.02695966511964798, -0.0036714982707053423, -0.011292839422821999, 0.004844522103667259, 0.024043673649430275, -0.0029656956903636456, -0.014208830893039703, 0.0047915042378008366, -0.020769812166690826, -0.017257366329431534, 0.033772483468055725, 0.01310207974165678, 0.015110136941075325, 0.020133595913648605, -0.010709641501307487, -0.0007758028223179281, -0.012353199534118176, -0.008893773891031742, 0.0030667614191770554, -0.015335463918745518, 0.021565081551671028, -0.020305903628468513, 0.036290839314460754, -0.008250930346548557, 0.011849528178572655, -0.006647135131061077, 0.004098956007510424, 0.009324545040726662, 0.02786097303032875, -0.011173549108207226, -0.0035654623061418533, -0.03825250640511513, -0.022453133016824722, 0.018224945291876793, -0.0035422667860984802, -0.012472490780055523, -0.00989448931068182, -0.007183942478150129, -0.004085701424628496, 0.02524983510375023, 0.008244303055107594, -0.0033003720454871655, -0.010862068273127079, -0.009112472645938396, -0.019550396129488945, 0.010842186398804188, -0.0012210713466629386, 0.014394394122064114, -0.016024697571992874, -0.025316106155514717, -0.008463001810014248, -0.011644084006547928, 0.021737391129136086, 0.0025233265478163958, -0.016819968819618225, -0.007396014407277107, 0.004204992204904556, -0.024149710312485695, 0.03136016055941582, -0.021061411127448082, -0.005822042003273964, -0.021034901961684227, 0.012214027345180511, -0.007674359250813723, -0.022612188011407852, 0.001908648875541985, 0.0003976351872552186, -0.020783066749572754, -0.011286212131381035, 0.02400391176342964, 0.01599818840622902, -0.03663545474410057, -0.009775198064744473, 0.004334223456680775, -0.011319348588585854, -0.00688571622595191, -0.019272051751613617, -0.006249499507248402, 0.026919901371002197, -0.0011755090672522783, 0.004377300851047039, 0.0031032112892717123, -0.0012492372188717127, 0.0012674621539190412, 0.0019948030821979046, 0.013320778496563435, 0.0004775764246005565, -0.017959855496883392, -0.012797226198017597, 8.52223311085254e-05, 0.017403166741132736, -0.00014963095600251108, -0.014261849224567413, -0.023844856768846512, -0.006690212059766054, -0.0046258228830993176, 0.024414800107479095, 0.008270812220871449, 0.003081672824919224, 0.019431106746196747, 0.020040813833475113, 0.024560600519180298, 0.011836274527013302, 0.00156154646538198, 0.007488796021789312, -0.0008147379267029464, -0.016594642773270607, -0.03584018349647522, -0.007627968210726976, 0.0041983649134635925, 0.0307504553347826, 0.013194860890507698, -0.012406217865645885, -0.02251940593123436, -0.014235340058803558, -0.02969009429216385, 0.0024636813905090094, 0.0009742061956785619, 0.015229428187012672, 0.01321474276483059, -0.030723946169018745, 0.006597430445253849, 0.014752265065908432, 0.004804758355021477, -0.004552923142910004, -0.0027718485798686743, -0.0047948178835213184, 0.017045294865965843, -0.035919710993766785, 0.0059976642951369286, 0.011425384320318699, -0.011610947549343109, -0.004725231323391199, 0.0018937375862151384, 0.01792009174823761, -0.007946076802909374, 0.017668256536126137, -0.009423954412341118, -0.004675527103245258, -0.020239630714058876, 0.008860637433826923, -0.0003589071857277304, 0.014579957351088524, 0.013493087142705917, 0.005049966741353273, -0.017177840694785118, 0.006769739091396332, -0.01463297475129366, -0.024732908234000206, -0.00949022639542818, 0.0032622653525322676, 0.012015209533274174, 0.016541624441742897, 0.0020295963622629642, -0.01908648945391178, 0.0055967154912650585, -0.0273307915776968, 0.013877468183636665, -0.02017335779964924, -0.010146324522793293, 0.016647659242153168, 0.009483599103987217, -0.017416421324014664, -0.024189474061131477, 0.0307504553347826, -0.02518356218934059, -0.0018357491353526711, 0.022121770307421684, 0.0023675861302763224, 0.00805211253464222, -0.00541446590796113, -0.004748426843434572, -0.021512063220143318, -0.01700553111732006, 0.003036938840523362, -0.0075550684705376625, -0.028285115957260132, 0.01422208547592163, -0.007661104667931795, -0.0032440403010696173, 0.005593401845544577, -0.03711261600255966, 0.008403357118368149, 3.6268676922190934e-05, -0.014169067144393921, 0.014778774231672287, -0.03963097557425499, -0.019775724038481712, 0.008416611701250076, -0.013970249332487583, 0.0031595430336892605, -0.006156718358397484, -0.005729260388761759, -0.015600553713738918, 0.01573309861123562, 0.24685192108154297, 0.0017197722336277366, 0.007694241125136614, 0.04005511850118637, -0.007336369249969721, 0.0016153929755091667, 0.02921293117105961, 0.024308765307068825, 0.028417661786079407, -0.0052388436160981655, -0.036184802651405334, 0.006879088934510946, 0.005387956742197275, -0.007475541438907385, 0.007574950344860554, -0.014341375790536404, -0.03552207723259926, -0.019272051751613617, -0.010451178066432476, -0.02208200842142105, -0.010968104004859924, 0.0030253410805016756, 0.0022996568586677313, 0.003926647361367941, 0.006468199193477631, 0.002836464438587427, -0.012174263596534729, 0.011869410052895546, -0.0009402415598742664, 0.005619910545647144, 0.004582745488733053, -0.01845027320086956, -0.03016725555062294, 0.0038636885583400726, 0.00036491313949227333, -0.004274578299373388, 0.0074158962815999985, 0.00035290123196318746, 0.019696196541190147, 0.014619720168411732, -0.017230859026312828, 0.019059980288147926, 0.0032672358211129904, -0.008436493575572968, 0.00514606200158596, 0.03631734848022461, -0.012479118071496487, -0.01545475423336029, 0.010530705563724041, 0.0077207498252391815, -0.005861805286258459, -0.001938471570611, 0.024295510724186897, 0.02717173844575882, 0.007793649565428495, -0.006169972475618124, 0.010431296192109585, 0.013174979016184807, -0.03387851640582085, 0.0021637980826199055, -0.0018175242003053427, 0.012956280261278152, -0.0016932631842792034, 0.017522457987070084, 0.005649733357131481, -0.0009601233177818358, -0.003214217722415924, -0.003247353946790099, 0.007992466911673546, -0.006620625965297222, 0.007621340919286013, -0.014513684436678886, 0.006570921279489994, -0.01027224212884903, -0.028391152620315552, -0.007767140865325928, 0.03255306929349899, -0.003184395143762231, 0.011803138069808483, 0.018171928822994232, -0.016700677573680878, 0.0038703158497810364, -0.0072502149268984795, -0.009523362852633, 0.0344352088868618, -0.025872796773910522, 0.02770191803574562, 0.014924573712050915, 0.019881758838891983, -0.019126253202557564, -0.004254696425050497, -0.018304472789168358, 0.00030195422004908323, -0.011869410052895546, 0.003237413242459297, 0.026111377403140068, 0.0006022516172379255, 0.017721274867653847, -0.023407457396388054, 0.005623224191367626, -0.02021312154829502, 0.004566177260130644, 0.0235267486423254, 0.008217793889343739, -0.015653571113944054, 0.0017810743302106857, -0.0012111305259168148, 0.020464958623051643, -0.02743682824075222, 0.004536354914307594, -0.003641675692051649, -0.009649280458688736, 0.010093306191265583, 0.008655192330479622, -0.03173128888010979, -0.0026956351939588785, 0.0035223851446062326, -0.03904777392745018, 0.01973596028983593, -0.01619700714945793, 0.004996948875486851, -0.021618099883198738, -0.00818465743213892, 0.013546105474233627, -0.0016940915957093239, 0.0024620245676487684, 0.006464885547757149, 0.004248069133609533, 0.010265614837408066, 0.005795532837510109, 0.033984553068876266, 0.008224421180784702, 0.01705854944884777, -0.017615238204598427, -0.005716005805879831, -0.013062315993010998, 0.020517975091934204, -0.007137551438063383, 0.009695671498775482, 0.006080504972487688, 0.003883570432662964, 0.0010321947047486901, -0.005006889812648296, -0.010537332855165005, 0.020875846967101097, -0.02812606282532215, 0.022227806970477104, 0.015852389857172966, -0.017085058614611626, -0.02197597175836563, -0.02953103929758072, -0.023937638849020004, -0.003419662592932582, -0.017098313197493553, 0.05344216898083687, 0.0017048608278855681, -0.045860592275857925, 0.002906050533056259, 0.008655192330479622, 0.02342071197926998, -0.004178483039140701, 0.004446886945515871, 0.00960288941860199, -0.009185372851788998, -0.022532660514116287, -0.015335463918745518, -0.17008182406425476, 0.008893773891031742, 0.01211461890488863, -0.004317655228078365, 0.0037410843651741743, 0.025925815105438232, 0.006388672161847353, -0.009218509308993816, 0.007694241125136614, 0.0028215530328452587, 0.02748984657227993, 0.002071016700938344, -0.013956994749605656, -0.010007152333855629, 0.013559360057115555, 0.04973090812563896, -0.01737665757536888, -0.01099461317062378, 0.01385095901787281, 0.014659483917057514, 0.02396414801478386, -0.0033533901441842318, -0.010431296192109585, -0.0023891248274594545, 0.006945361383259296, 0.01573309861123562, 0.006478140130639076, 0.00629920419305563, 0.0027933872770518064, -0.003648302750661969, -0.022267570719122887, 0.009901116602122784, 0.013128588907420635, 0.03605225682258606, 0.03462076932191849, 0.010172833688557148, -0.013035806827247143, -0.01594517193734646, -0.002776819048449397, 0.015958424657583237, 0.0018688853597268462, 0.0035952848847955465, -0.01094159483909607, -0.010504196397960186, -0.019815487787127495, 0.012041718699038029, 0.003823925042524934, 0.0026028535794466734, -0.017986364662647247, -0.016753695905208588, -0.005818728357553482, -0.029451513662934303, 0.010875322856009007, -0.015600553713738918, 0.020955374464392662, 0.01813216507434845, 0.00658086221665144, 0.012339944951236248, 0.013022552244365215, -0.005407838616520166, -0.006385358516126871, -0.004771622363477945, -0.0057358876802027225, 0.008734719827771187, 0.01505711954087019, -0.02802002616226673, -0.01573309861123562, -0.0014116049278527498, -0.02241336926817894, 0.01818518340587616, -0.00877448357641697, -0.012041718699038029, 0.012962907552719116, 0.001837405958212912, 0.021406028419733047, 0.012578526511788368, -0.0013428471283987164, 0.0035025032702833414, 0.0015110137173905969, -0.00217208219692111, -0.05118890479207039, 0.03568113222718239, -0.03456775099039078, 0.0028994232416152954, 0.0003083743795286864, 0.021459044888615608, 0.01385095901787281, -0.0017495948122814298, 0.018635835498571396, -0.02652226760983467, 0.017628492787480354, 0.0096559077501297, 0.0006879917345941067, -0.016276534646749496, 0.017230859026312828, 0.01573309861123562, 0.016819968819618225, 0.012989415787160397, 0.008151520974934101, -0.008999809622764587, 0.0011788225965574384, -0.017906837165355682, -0.007661104667931795, -0.006338967476040125, -0.022532660514116287, -0.02074330300092697, 0.019762469455599785, 0.027569372206926346, 0.01700553111732006, -0.04183122143149376, -0.0042447554878890514, 0.002483563032001257, 0.013996758498251438, -0.0023344499059021473, -0.005066534969955683, 0.025819778442382812, 0.004784876946359873, -0.005835296586155891, 0.005202393513172865, -0.007349623832851648, 0.03727167099714279, 0.006229618098586798, -0.0061136409640312195, 0.009556499309837818, -0.018423764035105705, -0.0017595357494428754, -0.09606865793466568, -0.019855249673128128, -0.011564556509256363, 0.018741872161626816, 0.0016617837827652693, 0.014116048812866211, 0.019881758838891983, 0.007303232792764902, 0.005086416844278574, 1.2672032426053192e-05, 0.015627063810825348, -0.012068227864801884, -0.023023078218102455, 0.00395978381857276, 0.009927624836564064, -0.02791398949921131, -0.017588729038834572, -0.01749594882130623, -0.028550205752253532, 0.01807914674282074, -0.005643106065690517, 0.000301540014334023, -0.0011340887285768986, -0.019934777170419693, 0.01711156778037548, -0.00250675855204463, -0.01786707527935505, 0.046443790197372437, 0.019245542585849762, 0.018914179876446724, -0.0207565575838089, -0.01237970869988203, 0.018264709040522575, -0.02685363031923771, -0.016117479652166367, 0.00022698342218063772, -0.019669687375426292, -0.0029077073559165, -0.0007758028223179281, -0.03894174098968506, 0.0003945286734960973, 0.02812606282532215, -0.021353010088205338, -0.028921332210302353, -0.02662830241024494, 0.009132354520261288, -0.03936588391661644, 0.0003576645685825497, 0.0008565724710933864, -0.0153752276673913, -0.014977592043578625, -0.011219939216971397, -0.014407648704946041, 0.0031959929037839174, 0.010756031610071659, -0.023738820105791092, -0.0013660425320267677, 0.03151921555399895, -0.01605120673775673, -0.013466577976942062, -0.006799561902880669, -0.02701268345117569, -0.0033749286085367203, 0.0054741110652685165, 0.025488415732979774, 0.014116048812866211, 0.006932106800377369, -0.003452798817306757, 0.011849528178572655, -0.002145573263987899, -0.008522647432982922, 0.04633775353431702, -0.00831720232963562, 0.02417621947824955, -0.025859542191028595, -0.00061177829047665, 0.0015681737568229437, -0.010338515043258667, 0.014884810894727707, -0.04037322476506233, -0.022771241143345833, -0.02717173844575882, 0.007667731959372759, -0.002909364178776741, 0.028364643454551697, -0.0022648638114333153, 0.004582745488733053, 0.0059976642951369286, 0.00643174909055233, 0.014606465585529804, -0.015481263399124146, 0.017310384660959244, 0.0060175457037985325, 0.004599313717335463, 0.005192453041672707, 0.007714122533798218, -0.009364308789372444, -0.027304282411932945, -0.0036251074634492397, 0.0024056928232312202, -0.02658854052424431, -0.03512444347143173, -0.05293849855661392, 0.021618099883198738, 0.006332340184599161, -0.012214027345180511, 0.0076080868020653725, -0.022917041555047035, 0.014977592043578625, -0.014010013081133366, 0.006932106800377369, -0.004499904811382294, -0.008131640031933784, 0.007767140865325928, -0.0024189474061131477, 0.0008491168264299631, -0.019245542585849762, -0.03085649013519287, 0.012929771095514297, -0.005182512104511261, 0.013188233599066734, -0.002844748320057988, -0.003853747621178627, 0.010391533374786377, 0.036184802651405334, 0.0013950368156656623, -0.005139434710144997, 0.01876838132739067, -0.038703158497810364, 0.02043844945728779, -0.003876943141222, -0.004367359913885593, 0.0035985985305160284, -0.011915801092982292, 0.00047716221888549626, 0.020769812166690826, -0.03401106223464012, -0.016554879024624825, -0.008993182331323624, 0.01882139965891838, 0.003823925042524934, 0.009516735561192036, 0.0002085513697238639, -0.014460666105151176, 0.016448842361569405, 0.005440974608063698, -0.006295890547335148, 0.009854725562036037, -0.010133069939911366, 0.007899685762822628, 0.02658854052424431, -0.024348527193069458, 0.018370745703577995, -0.003509130561724305, -0.006266067735850811, -0.02054448425769806, 8.044605237955693e-06, -0.01251225359737873, 0.01582588069140911, -0.024295510724186897, -0.000873140583280474, -0.0016394167905673385, 0.020875846967101097, 0.0007062166696414351, 0.01818518340587616, -0.0062362453900277615, 0.013625632040202618, -0.0099209975451231, -0.012452608905732632, 0.016011442989110947, 0.003053506836295128, -0.01829121820628643, -0.016276534646749496, 0.005321684293448925, 0.021048156544566154, 0.003088299883529544, 0.02224106155335903, 0.01398350391536951, 0.017257366329431534, -0.025594452396035194, 0.003973038401454687, 0.02316887676715851, 0.007475541438907385, -0.028046535328030586, -0.018092401325702667, 0.007912940345704556, 0.039922572672367096, 0.0362643301486969, -0.009834843687713146, -0.0049770670011639595, -0.02347373031079769, -0.0011929055908694863, -0.002032910007983446, 0.006107013672590256, 0.01120668463408947, -0.007859922014176846, 0.04167216643691063, 0.04172518476843834, 0.03379899263381958, 0.004533041268587112, 0.017999619245529175, 0.011432011611759663, 0.011080767028033733, 0.016117479652166367, 0.007932822220027447, -0.020822828635573387, -0.00415860116481781, -0.008138267323374748, -0.02775493636727333, -0.012883380055427551, 0.019815487787127495, 0.012498999014496803, -0.006196481641381979, 0.03804043307900429, 0.009596262127161026, 0.02738380990922451, -0.001974921440705657, -0.006080504972487688, -0.00756832305341959, -0.012386335991322994, -0.015507772564888, 0.04103595018386841, 0.0017893583280965686, 0.02091561071574688, 0.011511539109051228, -0.009642653167247772, 0.005371388513594866, -0.007482168730348349, 0.027251264080405235, 0.006425121799111366, -0.018224945291876793, -0.017522457987070084, 0.0078864311799407, -0.003923333715647459, -0.015308954752981663, -0.01571984402835369, -0.021697627380490303, 0.02273147739470005, -0.01495108287781477, 0.04124802350997925, -0.01834423653781414, 0.017628492787480354, 0.007157433312386274, -0.007323114667087793, -0.00504333944991231, 0.013380424119532108, 0.011657338589429855, 0.027463337406516075, -0.0054476018995046616, -0.02657528594136238, -0.004718604031950235, 0.0013469891855493188, -0.02578001469373703, 0.0068326978944242, -0.015229428187012672, -0.03000820241868496, -0.0073893871158361435, 0.014500429853796959, 0.015865644440054893, -0.023327931761741638, -0.006146777421236038, 0.010007152333855629, -0.0078864311799407, 0.018516546115279198, 0.029345476999878883, -0.03920682892203331, -0.0049339900724589825, 0.004400495905429125, -0.018012873828411102, 0.005129493772983551, -0.03048536367714405, 0.014447411522269249, -0.0056861829943954945, -0.005000262521207333, -0.0014132617507129908, 0.027410319074988365, -0.007979212328791618, 0.00030775307095609605, 0.00544428825378418, 0.004629136528819799, 0.013241251930594444, -0.012605035677552223, 0.006792934611439705, -0.016064461320638657, -0.02343396656215191, 0.000468049751361832, -0.020411940291523933, -0.023195385932922363, 0.003512444207444787, -0.04130104184150696]}, {"created_time": 1695688468.0702922, "accessed_time": 1695688468.0702922, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695688469.6403575, "accessed_time": 1695688469.6403575, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691991.0911222, "accessed_time": 1695691991.0911222, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695691993.8774424, "accessed_time": 1695691993.8774424, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695691995.3224006, "accessed_time": 1695691995.3224006, "description": "Helped a customer find a specific medication.", "poignancy": 3, "embedding_key": [-0.004389616660773754, 0.021509122103452682, 0.010541731491684914, -0.020099123939871788, 0.0024891123175621033, 0.02355760894715786, 0.016574129462242126, -0.03317486122250557, -0.009763571433722973, -0.007010085042566061, 0.0025456452276557684, 0.0019470610423013568, 0.010215835645794868, -0.011127013713121414, -0.012902813032269478, 0.005779662169516087, 0.03953315317630768, -0.01465865969657898, 0.01315554790198803, -0.027056001126766205, -0.018742334097623825, 0.0052209836430847645, 0.007355933543294668, 0.010408712550997734, -0.0036480375565588474, 0.005979190114885569, 0.0016361299203708768, -0.029476940631866455, -0.012098049744963646, -0.005596761126071215, 0.010455269366502762, 0.003488415153697133, -0.039240512996912, -0.012889510951936245, -0.015549885109066963, 0.0050713373348116875, 0.013754132203757763, 0.008287064731121063, 0.010428665205836296, -0.022852610796689987, 0.011293286457657814, -0.009617251344025135, 0.014379320666193962, -0.005224308930337429, -0.007049990352243185, 0.005154474172741175, -0.01537696085870266, -0.010515127331018448, -0.01970006711781025, 0.013767434284090996, -0.008892299607396126, 0.004402918741106987, -0.01213795505464077, 0.004715512506663799, 0.008726025931537151, -0.026457417756319046, 0.029210904613137245, 0.010215835645794868, -0.0021316243801265955, -0.01069470215588808, -0.023836949840188026, -0.004259923473000526, -0.013501397334039211, -0.0008862370159476995, -0.025140531361103058, -0.004525960888713598, -0.004984875209629536, 0.0018339952221140265, -0.00840678159147501, -0.004266574513167143, 0.012803048826754093, 0.003887471277266741, 0.00913173332810402, 0.006045699585229158, 0.0031791466753929853, 0.00018310853920411319, -0.01629478856921196, 0.009763571433722973, -0.003887471277266741, 0.02297232672572136, 0.01400686800479889, -0.03487750142812729, -0.007602017838507891, 0.008074234239757061, 0.03048788383603096, -0.0033005261793732643, 0.0026487347204238176, 0.020511481910943985, -0.01766488142311573, -0.013022529892623425, 0.003086033510044217, 0.020298652350902557, -0.008453337475657463, -0.0014731819974258542, 0.0058428458869457245, 0.030860336497426033, 0.017571769654750824, 0.045439183712005615, -0.007754989434033632, -0.03312165290117264, -0.020511481910943985, 0.023451194167137146, -0.01811714470386505, -0.005290818400681019, -0.02381034567952156, 0.0032506443094462156, -0.02414289116859436, -0.036074668169021606, 0.016640637069940567, -0.026683548465371132, -0.013042482547461987, 0.030860336497426033, -0.00010038754408014938, -0.010767863132059574, -0.006448080763220787, 0.011659087613224983, 0.006208647508174181, -0.01190517283976078, 2.1706468032789417e-05, -0.016441110521554947, 0.003340431721881032, 0.03551599010825157, 0.017904315143823624, 0.011599229648709297, 0.006404849700629711, 0.01609526202082634, -0.038628626614809036, -0.013647717423737049, -0.009391119703650475, 0.002783416071906686, 0.022320536896586418, 0.009324610233306885, 0.02374383620917797, 0.007768291514366865, -0.02212100848555565, 0.03801674023270607, -0.01701308973133564, 0.011885220184922218, -0.00750890513882041, -0.028811847791075706, 0.010934135876595974, 0.04368333891034126, 0.0021316243801265955, 0.0262977946549654, -0.03684617578983307, 0.029796186834573746, 0.015789318829774857, 0.001693494152277708, -0.008453337475657463, 0.007103198207914829, 0.009530789218842983, -0.015789318829774857, 0.005068012047559023, -0.01119352225214243, 0.012517058290541172, 0.005034757312387228, -0.011559324339032173, 0.008154045790433884, -0.02100365050137043, 0.0005154474056325853, -0.005816242191940546, -0.0010616554645821452, 0.026124870404601097, -0.036872781813144684, 0.028439395129680634, 0.03434542566537857, 0.013541302643716335, -0.03232354298233986, -0.007841452024877071, 0.008453337475657463, -0.011007296852767467, 0.02068440616130829, -0.004273225553333759, 0.008479941636323929, 0.01429950911551714, 0.002562272595241666, 0.0030910216737538576, 0.007774942554533482, 0.005782987456768751, 0.005889402236789465, 0.010648146271705627, 0.004412895068526268, 0.021828366443514824, -0.0006106389337219298, -0.014020170085132122, -0.004402918741106987, 0.002575574442744255, -0.012390690855681896, -0.0009336249204352498, -0.029556753113865852, -0.0029696421697735786, 0.004273225553333759, -0.02675005793571472, -0.022666385397315025, -0.6738194823265076, -0.03993220999836922, -0.01105385273694992, -0.004702210426330566, 0.005320747382938862, 0.03993220999836922, 0.004871809389442205, 0.021083462983369827, -0.004110277630388737, 0.01155267283320427, -0.013069085776805878, 0.027960527688264847, -0.018037334084510803, 0.006438104435801506, -0.009896590374410152, -0.010767863132059574, 0.004905064124614, -0.015004508197307587, 0.021096764132380486, -0.002173192799091339, -0.010149326175451279, -0.0005998311680741608, -0.01596224308013916, 0.014565546065568924, 0.03349410742521286, 0.002382697304710746, 0.016534222289919853, -0.008672818541526794, 0.00028266472509130836, 0.041049566119909286, -0.02053808607161045, 0.01465865969657898, 0.0012761480174958706, 0.01105385273694992, 0.04546578601002693, -0.004126904997974634, -0.005789638496935368, 0.009637203998863697, 0.015549885109066963, 0.019274407997727394, -0.03788372129201889, -0.01813044771552086, 0.007049990352243185, -0.014472433365881443, -0.020857330411672592, -0.00011327373067615554, 0.013647717423737049, 0.006478010211139917, -0.01576271466910839, -0.0009643855155445635, 0.018955163657665253, 0.003957306034862995, -0.021149970591068268, 0.0006389053887687624, 0.02263978123664856, 0.02126968838274479, 0.008154045790433884, -0.01082772109657526, 0.010136024095118046, -0.0030378142837435007, -0.0031176256015896797, -0.006321713328361511, -0.018702426925301552, -0.006697490811347961, -0.016015449538826942, 0.019061578437685966, 0.007449046708643436, -0.0016120201908051968, 0.022879214957356453, 0.00410362659022212, 0.020923839882016182, 0.0262977946549654, -0.02420940063893795, 0.034638065844774246, 0.0027900671120733023, 0.015589790418744087, -0.002743510529398918, 0.003465136745944619, -0.0044195461086928844, -0.00407369714230299, 0.018343277275562286, -0.006597727071493864, -0.013321821577847004, -0.00935786496847868, 0.03008882701396942, 0.019194597378373146, -0.01721261814236641, -0.00029035485931672156, -0.005447115283459425, -0.002460845746099949, 0.025752417743206024, 0.004326432943344116, 0.010867626406252384, -0.0048285783268511295, -0.028492603451013565, 0.016042053699493408, 0.0037478015292435884, 0.012144606560468674, 0.03181806951761246, -0.022081103175878525, 0.0027135813143104315, -0.008300365880131721, -0.009457629173994064, 0.021030254662036896, -0.0212031789124012, -0.0012470502406358719, -0.0024874494411051273, 0.008160696364939213, 0.03655353561043739, -0.01983308605849743, 0.0162814874202013, -0.013474793173372746, -0.019473936408758163, -0.014937998726963997, 0.01896846480667591, -0.02576572075486183, 0.0015787655720487237, -0.0050414083525538445, -0.03551599010825157, -0.026084965094923973, 0.014405923895537853, 0.010089467279613018, 0.02572581358253956, 0.022746196016669273, 0.00417013606056571, 0.005091290455311537, -0.005583459511399269, 0.008173998445272446, -0.014259603805840015, -0.008227205835282803, 0.01597554422914982, -0.03394636884331703, 0.0030211869161576033, -0.008878997527062893, 0.01495130080729723, -0.0042067160829901695, 0.010834372602403164, -0.02302553504705429, 0.004515984561294317, -0.026723453775048256, -0.03301523998379707, -0.012975973077118397, 0.00017521055997349322, 0.0005811253795400262, 0.008127441629767418, -0.015669601038098335, -0.005141172092407942, 0.009690411388874054, -0.04836559668183327, 0.006421477068215609, 0.002863227389752865, -0.023411288857460022, -0.028226565569639206, 0.03455825522542, 0.015164130367338657, -0.025539588183164597, -0.014698565006256104, -0.011718946509063244, -0.014578848145902157, -0.026351002976298332, 0.02694958634674549, 0.030381469056010246, -0.01161918230354786, 0.002939712954685092, -0.003953980747610331, -0.028705433011054993, 0.023903457447886467, 0.03559580072760582, -0.013175501488149166, -0.03354731202125549, 0.017252523452043533, -0.03368033096194267, -0.01878223940730095, 0.0054005589336156845, 0.006910320837050676, 0.024714872241020203, -0.015390262007713318, -0.009051921777427197, 0.014512338675558567, 0.002603840781375766, -0.024887796491384506, 0.02126968838274479, -0.003920726012438536, 0.017970824614167213, 0.024302514269948006, -0.0023078741505742073, 0.01813044771552086, 0.03825617581605911, -0.01312229409813881, 0.01989959552884102, -0.01082772109657526, 0.007515555713325739, 0.011333192698657513, 0.002731871325522661, -0.011013947427272797, -0.0010084479581564665, 0.017744693905115128, 0.022932421416044235, -0.016135167330503464, -0.003531646216288209, 0.01073460839688778, -0.007641923613846302, 0.017039693892002106, -0.004426196683198214, 0.014499037526547909, -0.010621542111039162, 0.0016178397927433252, -0.038575418293476105, 0.0262977946549654, 0.008972110226750374, -0.006185369100421667, -0.014219697564840317, -0.004665630403906107, -0.02676336094737053, 0.022160913795232773, 0.008373526856303215, -0.007794895209372044, 0.004402918741106987, -0.012596869841217995, 0.0039240512996912, 0.0014440841041505337, 0.008080885745584965, 0.03301523998379707, 0.0006206153193488717, 0.005034757312387228, 0.011818710714578629, 0.021575631573796272, 0.0016012124251574278, 0.011632484383881092, -0.017771296203136444, 0.004126904997974634, -0.01315554790198803, 0.015749413520097733, 0.004572517238557339, 0.016268186271190643, -0.001126502058468759, 0.010102769359946251, -0.0350637249648571, 0.03211070969700813, -0.005573483183979988, -0.01465865969657898, 0.015443469397723675, 0.027641283348202705, -0.01416649017482996, -0.011951728723943233, 0.02015233226120472, 0.015443469397723675, 0.0010042911162599921, 0.010408712550997734, 0.015656299889087677, -0.021668745204806328, -0.0012196151074022055, -0.005164450500160456, -0.003295538015663624, 0.011306588537991047, 0.005806265864521265, 0.008812488056719303, 0.034318823367357254, 0.02859901823103428, 0.03860202431678772, 0.012703284621238708, 0.015004508197307587, 0.012876208871603012, -0.007821498438715935, -0.002349442569538951, 0.013461491093039513, 0.011512767523527145, 0.001837320625782013, -0.011266683228313923, -0.007362584583461285, 0.01190517283976078, -0.012297578155994415, 0.02173525281250477, -0.008593006990849972, 0.02118987776339054, 0.01341493520885706, -0.020325256511569023, -0.007907961495220661, -0.0012753166956827044, 0.00015421854914166033, -0.023198459297418594, -0.02250676229596138, 0.011592579074203968, 0.00316418195143342, 0.013980263844132423, -0.005314096808433533, -0.00033711924334056675, 0.015563186258077621, -0.023304874077439308, 0.009810128249228, -0.0031575311440974474, 0.01701308973133564, -0.0005944272852502763, -0.0015496676787734032, -0.006241901777684689, -0.012284276075661182, 0.03692598640918732, -0.010641494765877724, 0.015297149308025837, -0.0026487347204238176, -0.00791461206972599, -8.66699920152314e-05, -0.02420940063893795, -0.025366663932800293, 0.02761467918753624, -0.0021931456867605448, -0.02361081726849079, -0.012942718341946602, -0.012417295016348362, -0.006471359170973301, 0.006178718060255051, -0.005999142769724131, -0.009125081822276115, -0.013195454142987728, 0.014499037526547909, 0.009863335639238358, -0.012716586701571941, 0.017052995041012764, 0.02387685514986515, -0.0038143109995871782, 0.015563186258077621, -0.01741214655339718, 0.0023793717846274376, -0.0017575094243511558, 0.07422442734241486, 0.0068238587118685246, 0.005174426827579737, 0.0010965728433802724, 0.020764216780662537, 0.015190734528005123, -0.019314313307404518, 0.003677966771647334, 0.0072162640281021595, 0.009171638637781143, -0.005154474172741175, -0.002204784657806158, 0.018941860646009445, -0.011073805391788483, 0.013481443747878075, -0.012842954136431217, -0.022533366456627846, 0.0313924103975296, -0.0035582499112933874, -0.019606955349445343, 0.011785455979406834, 0.018875351175665855, -0.005304120015352964, 0.005503648426383734, 0.01040206104516983, 0.0013343436876311898, 0.026936285197734833, 0.032030899077653885, 0.02552628703415394, -0.0018672498408704996, -0.014565546065568924, -0.00951748713850975, -0.025592796504497528, 0.041448622941970825, -0.012876208871603012, 0.007715084124356508, -0.0038475655019283295, 0.008825790137052536, -0.0028815174009650946, -0.00857305433601141, 0.039027683436870575, 0.013029180467128754, 0.0013102340744808316, -0.009071874432265759, 0.0034584859386086464, -0.018423087894916534, 0.02290581911802292, 0.01088757999241352, -0.0017807877156883478, -0.008726025931537151, 0.021495820954442024, 0.01846299320459366, 0.0012794735375791788, -0.011685691773891449, 0.015789318829774857, 0.0262977946549654, -0.00020669857622124255, -0.009690411388874054, -0.03599485754966736, 0.0012561952462419868, 0.009258100762963295, -0.034717876464128494, 0.0030278379563242197, -0.014804979786276817, -0.01262347400188446, 0.004096975550055504, -0.0268830768764019, -0.016640637069940567, -0.007089896127581596, -0.006354968063533306, -0.00014091667253524065, -0.011712295934557915, -0.015576488338410854, 0.0145256407558918, 0.030727317556738853, 0.007715084124356508, 0.0017957523232325912, -0.008380177430808544, 0.009391119703650475, 0.007302726153284311, 0.01213130448013544, -0.01831667311489582, 0.026257889345288277, -0.01858271099627018, -0.004625725094228983, 0.00552692636847496, 0.01076121162623167, -0.007010085042566061, -0.028758641332387924, 0.02112336829304695, 0.015589790418744087, -0.0027484986931085587, 0.01197168231010437, -0.012357436120510101, -0.0020069193560630083, 0.0015870792558416724, 0.006261854898184538, 0.028838451951742172, -0.013614462688565254, 0.0033071772195398808, -0.007641923613846302, -0.023331478238105774, 0.009776873514056206, -0.014179792255163193, 0.00580959115177393, -0.006581099703907967, 0.01641450636088848, -0.0029430384747684, -0.002116659888997674, -0.01263012457638979, -0.0024259283673018217, 0.0021332872565835714, -0.021282989531755447, 0.012463850900530815, 0.026736756786704063, -0.004921691492199898, 0.007202961947768927, 0.021482517942786217, 0.0015654637245461345, -0.038442399352788925, -0.012716586701571941, 0.0023560936097055674, 0.02277280017733574, -0.011945078149437904, -0.02945033833384514, 0.019261106848716736, 0.0050513846799731255, -0.034904103726148605, -0.00011431293387431651, -0.006561147049069405, -0.0004938318743370473, 0.00012044426694046706, -0.030594298616051674, -0.006601052358746529, -0.020165633410215378, -0.013847245834767818, -0.017052995041012764, 0.02275949716567993, -0.010348853655159473, -0.03125939145684242, -0.007681829389184713, -0.01155267283320427, -0.003352070925757289, -0.006135486997663975, -0.0037810562644153833, -0.02519373968243599, 0.0029563403222709894, 0.015031111426651478, -0.008845742791891098, 0.011100409552454948, 0.001113200094550848, -0.01010941993445158, -0.01896846480667591, -0.005144497845321894, -0.019380822777748108, -0.01461875345557928, 0.004575842991471291, 0.012344134040176868, 0.01727912761271, 0.026284493505954742, 0.020125728100538254, 0.016308091580867767, -0.006956877186894417, -0.022533366456627846, -0.009989703074097633, 0.019846389070153236, 0.00870607327669859, 0.006783952936530113, -0.03197769448161125, 0.023570911958813667, 0.03953315317630768, 0.0031575311440974474, 0.03767089173197746, -0.0004576674255076796, -0.021429311484098434, -0.009683760814368725, 0.0016860119067132473, -0.01416649017482996, -0.004918366204947233, 0.0024192773271352053, -0.0050613610073924065, -0.00565994530916214, -0.00023049644369166344, 0.006115534342825413, -0.009331260807812214, -0.003980584442615509, 0.03227033466100693, -0.010062864050269127, 0.019061578437685966, -0.01010941993445158, 0.00010116694465978071, -0.020830726251006126, 0.0032822361681610346, 0.011712295934557915, -0.005872775334864855, -0.02584553137421608, 0.006125510670244694, -0.009577346034348011, -0.008173998445272446, -0.0145256407558918, 0.008087536320090294, 0.005111243110150099, 0.017039693892002106, -0.020498180761933327, -0.011925125494599342, 0.016201676800847054, -0.006594401318579912, -0.016640637069940567, -0.0020568014588207006, -0.022400347515940666, -0.010102769359946251, -0.004522635601460934, -0.011133664287626743, 0.010182580910623074, 0.001704301917925477, 0.0032323540654033422, -0.00027788436273112893, 0.016986487433314323, -0.008918902836740017, -0.007861404679715633, -0.016826864331960678, -0.01707959920167923, 0.020059218630194664, -0.018024032935500145, 0.025233644992113113, 0.02439562790095806, -0.008167347870767117, -0.000601493869908154, 0.01562969572842121, -0.013754132203757763, -0.009756920859217644, 0.01161918230354786, 0.060550108551979065, 0.007841452024877071, -0.03237674757838249, -0.011632484383881092, 0.005111243110150099, -0.008666167967021465, -0.035888440907001495, -0.00414020661264658, -0.0014756760792806745, 0.009730316698551178, -0.010495174676179886, 0.00675402395427227, -0.024688268080353737, 0.028146754950284958, -0.006182043347507715, 0.019074879586696625, 0.000957734533585608, 0.005746407434344292, -0.042432960122823715, 0.006388222333043814, -0.01459215022623539, 0.016534222289919853, 0.010674749501049519, 0.0007956180488690734, -0.009697061963379383, -0.007881357334554195, -0.011213475838303566, -0.009264751337468624, -0.016507619991898537, -0.0005046396399848163, 0.0030993353575468063, 0.021948084235191345, -0.0007307713967747986, 0.011220126412808895, 0.008486592210829258, -0.006551170255988836, 0.0016635649371892214, 0.02252006344497204, 0.019340917468070984, -0.012570265680551529, 5.189547664485872e-06, -0.02682987041771412, 0.002514053136110306, 0.008433384820818901, -0.02426260896027088, 0.011632484383881092, -0.011200173757970333, -0.0037910325918346643, 0.02440892904996872, -0.0035116933286190033, -0.021509122103452682, -0.0119783328846097, -0.012144606560468674, -0.019261106848716736, -0.006308411248028278, -0.00035125247086398304, 0.009431025013327599, -0.030993353575468063, -0.008094186894595623, -0.02048487775027752, 0.027122510597109795, -0.002126636216416955, -0.002552296034991741, 0.0006650934228673577, 0.0074689993634819984, 0.002331152558326721, -0.034584857523441315, 0.02801373600959778, 0.007109848782420158, 0.0166938453912735, -0.046822577714920044, -0.0043763150461018085, 0.01475177239626646, -0.05012144148349762, 0.0014191431691870093, -0.014086679555475712, -0.030381469056010246, -0.016454411670565605, -0.005796289537101984, -0.011506116949021816, 0.013428236357867718, -0.008479941636323929, 0.02263978123664856, 0.003844240214675665, 0.008021026849746704, -0.013833943754434586, -0.02714911475777626, 0.024941004812717438, -0.022559968754649162, 0.011765503324568272, -0.008074234239757061, -0.016986487433314323, -0.020178934559226036, -0.0005856979405507445, 0.019340917468070984, 0.012583567760884762, -0.037325043231248856, -0.01016927883028984, -0.03650032728910446, 0.01793091930449009, 0.0035582499112933874, -0.017119504511356354, -0.009690411388874054, 0.009191591292619705, -0.02035185880959034, 0.037724100053310394, 0.006684189196676016, 0.01642780750989914, 0.01721261814236641, -0.013820641674101353, 0.028439395129680634, 0.008785884827375412, -0.0268830768764019, -0.008134093135595322, -0.03179146721959114, 0.004698885139077902, -0.018476296216249466, -0.0002728961408138275, -0.0032888869754970074, 0.012829652987420559, -0.009344562888145447, -0.029929205775260925, -0.037192024290561676, -0.02185497060418129, -0.023251667618751526, 0.04088994488120079, 0.006401524413377047, -0.0037478015292435884, -0.004525960888713598, 0.006059001199901104, -0.013767434284090996, 0.02244025282561779, -0.018609315156936646, -0.0054304879158735275, 0.007123150862753391, -0.018875351175665855, 0.012636775150895119, -0.009105129167437553, 0.01839648373425007, -0.008878997527062893, -0.026457417756319046, 0.006178718060255051, 0.0031009982340037823, -0.01475177239626646, -0.005244261585175991, 0.0018971790559589863, -0.03312165290117264, -0.008074234239757061, 0.020365161821246147, 0.0011398039059713483, 0.008586356416344643, -0.0009095153072848916, 0.015097620896995068, -0.0325629748404026, -0.014113282784819603, -0.006118859630078077, 0.006883717142045498, -0.021575631573796272, -0.008779233321547508, 0.0008371863514184952, -0.002793392399325967, 0.01059493888169527, -0.023983269929885864, -0.01066144835203886, -0.013727528974413872, -0.017691485583782196, -0.017026392742991447, -0.011246730573475361, -0.013847245834767818, 0.0025805626064538956, -0.0036580138839781284, -0.00679060397669673, 0.015456771478056908, 0.01184531394392252, -0.0013276927638798952, -0.016786959022283554, 0.019141389057040215, -0.0031342527363449335, 0.0014523977879434824, 0.014578848145902157, 0.003042802447453141, 0.0005757214967161417, 0.013341774232685566, 0.004954946227371693, -0.003777730744332075, -0.02557949349284172, 0.006501288618892431, -0.023131949827075005, -0.016786959022283554, -0.016374601051211357, -0.010149326175451279, -0.01301587838679552, -0.0018240187782794237, -0.03282901272177696, 0.0022197493817657232, -0.01719931699335575, -0.03479769080877304, 0.010767863132059574, -0.011000645346939564, -0.029264111071825027, 0.023464497178792953, -0.0006555326981469989, -0.007229565642774105, 0.028865056112408638, 0.23496420681476593, 0.023850250989198685, -0.010934135876595974, 0.016587430611252785, 0.022626478224992752, 0.012104700319468975, 0.019008370116353035, 0.017505260184407234, -0.008253809995949268, -0.0003842993173748255, 0.016919977962970734, 0.00013083635712973773, 0.005560181103646755, -0.002464171266183257, -0.00701673561707139, -0.012483803555369377, -0.026603737846016884, -0.008878997527062893, -0.018303371965885162, -0.008938855491578579, 0.003963957075029612, 0.03511693328619003, 0.008526497520506382, -0.004984875209629536, 0.03423900902271271, 0.010003005154430866, -0.009404420852661133, 0.0012079760199412704, 0.01910148374736309, -0.015057715587317944, -0.014286207035183907, -0.004875135142356157, 0.019793180748820305, 0.0066243307664990425, -0.00014923034177627414, -0.007874706760048866, -0.006388222333043814, 0.006996782962232828, 0.018090542405843735, 0.01662733592092991, -0.023118648678064346, -0.005693200044333935, -0.013361726887524128, -0.007814847864210606, 0.005127870477735996, 0.016121864318847656, -0.023384684696793556, -0.020897235721349716, 0.01301587838679552, 0.009597298689186573, -0.032882221043109894, -0.021881574764847755, 0.024302514269948006, 0.018529502674937248, -0.005573483183979988, 0.0050314320251345634, 0.005719803739339113, 0.0015388599131256342, -0.005310771055519581, 0.01468526292592287, -0.006271831225603819, 0.003983909729868174, -0.011898521333932877, 0.00755546148866415, -0.0016776982229202986, 0.018436390906572342, -0.014645357616245747, -0.012024889700114727, 0.022400347515940666, -0.008533149026334286, 0.03179146721959114, 0.01734563708305359, 0.00580959115177393, 0.02407638356089592, -0.008021026849746704, -0.03538297116756439, -0.00899871438741684, 0.01975327543914318, 0.011499465443193913, 0.027508264407515526, 0.003333780914545059, 0.023983269929885864, -0.017292428761720657, -0.014472433365881443, -0.03769749775528908, -0.02694958634674549, -0.010322250425815582, 0.017119504511356354, -0.01936752162873745, 0.010262391529977322, -0.00730937672778964, -0.013521349988877773, -0.021163273602724075, 0.005297469440847635, 0.03775070235133171, 0.020045915618538857, -0.008606309071183205, 0.015669601038098335, -0.006541193928569555, -0.011279984377324581, -0.000345640757586807, 0.053101059049367905, -0.021642141044139862, 0.005068012047559023, -0.014937998726963997, -0.002854913705959916, 0.0008105826564133167, 0.02637760527431965, -0.014871489256620407, -0.003677966771647334, 0.016401205211877823, -0.01429950911551714, 0.01233748346567154, -0.026138171553611755, -0.0026271191891282797, 0.02387685514986515, 0.009763571433722973, -0.007568763568997383, -0.007143103517591953, -0.005194379948079586, 0.022692987695336342, -0.02506072074174881, 9.508757648291066e-05, 0.028545809909701347, -0.001058329944498837, 0.009570694528520107, -0.008293715305626392, -0.0043197819031775, 0.029024677351117134, -0.018170353025197983, 0.002750161336734891, -0.003897447604686022, -0.005553530063480139, -0.00631173700094223, -0.04142202064394951, 0.018223559483885765, 0.016121864318847656, 0.02015233226120472, -0.02238704450428486, -0.005959237460047007, 0.04168805852532387, 0.01654752530157566, 0.0007282773149199784, 0.013887151144444942, 0.02113666944205761, -0.008513196371495724, -0.0008554764208383858, -0.003388651181012392, -0.013408283703029156, -0.018476296216249466, -0.008034328930079937, -0.01831667311489582, -0.003947329707443714, -0.017106203362345695, 0.02459515631198883, 0.011140314862132072, -0.028944866731762886, -0.027042699977755547, 0.023411288857460022, 0.0004950789152644575, -0.025220343843102455, -0.013494745828211308, 0.040012020617723465, -0.00559343583881855, 0.016387902200222015, 0.0014740133192390203, -0.17143449187278748, 0.02297232672572136, 0.011346493847668171, -0.009710364043712616, 0.010155976749956608, -0.000723289093002677, 0.008726025931537151, 0.006780627649277449, 0.00045642038458026946, 0.014778376556932926, 0.005457091610878706, 0.004984875209629536, -0.010787815786898136, 0.008459988981485367, -0.0007810691022314131, -0.005782987456768751, -0.02950354479253292, -0.0005844508414156735, 0.014924696646630764, 0.015815922990441322, 0.035037122666835785, 0.0030062224250286818, 0.00563001586124301, -0.007156405597925186, 0.013820641674101353, 0.006704141851514578, -0.027135811746120453, 0.007030037697404623, -0.006674212869256735, 0.008859044872224331, -0.0050513846799731255, -0.00300954794511199, 0.022586572915315628, -0.0033105025067925453, 0.006770651321858168, 0.001627816236577928, 0.007535508833825588, -0.001682686386629939, 0.000256060971878469, 0.022360442206263542, 0.0005819567595608532, 0.010056212544441223, 0.01838318258523941, 0.026257889345288277, -0.03995881229639053, 0.027375245466828346, 0.02617807872593403, -0.017957523465156555, -0.01262347400188446, -0.0166938453912735, 0.014711867086589336, -0.021934781223535538, -0.004685583524405956, -0.001126502058468759, 0.018995068967342377, 0.018090542405843735, -0.0010774513939395547, 0.026550529524683952, 0.00621529808267951, -0.019287709146738052, -0.007954517379403114, -0.02342459186911583, -0.00449935719370842, -0.004180112387984991, 0.0030494534876197577, -0.022320536896586418, -0.028891658410429955, -0.02302553504705429, -0.009397770278155804, 0.019992709159851074, -0.02833298034965992, -0.01576271466910839, -0.003252306953072548, 0.008938855491578579, 0.016520921140909195, 0.027202321216464043, -0.007575414143502712, 0.002638758160173893, 0.02210770547389984, -0.0014050098834559321, -0.0015288835857063532, -0.000746151723433286, -0.0037943581119179726, -0.011240079067647457, -0.0016535886097699404, 0.008659516461193562, -0.005906029604375362, -0.009557392448186874, 0.02780090644955635, -0.00047429476398974657, 0.013361726887524128, -0.020897235721349716, -0.015948940068483353, -2.6136094675166532e-05, 0.012011587619781494, 0.02466166578233242, -0.01432611234486103, -0.008513196371495724, 0.010974042117595673, -0.01380733959376812, -0.003408603835850954, -0.005716477986425161, -0.029929205775260925, 0.01759837195277214, 0.03729844093322754, 0.006783952936530113, 0.007109848782420158, 0.01069470215588808, 0.0035582499112933874, -0.02282600663602352, 0.0033354435581713915, 0.01597554422914982, 0.009264751337468624, 0.008652865886688232, -0.007781593129038811, 0.03115297667682171, -0.0035915046464651823, -0.020258747041225433, -0.0011215137783437967, 0.004944969899952412, 0.06619010120630264, 0.0007183009292930365, -0.0058129169046878815, 0.021575631573796272, -0.008825790137052536, 0.007947866804897785, -0.10327570885419846, -0.029929205775260925, 0.011758851818740368, -0.014432528056204319, -0.027428453788161278, 0.024156194180250168, 0.0023893481120467186, 0.01674705371260643, -0.015257243998348713, 0.015589790418744087, -0.008692771196365356, -0.008313667960464954, -0.012949368916451931, -0.029077885672450066, 0.01785110868513584, 0.012969322502613068, 0.0034385330509394407, -0.0013310182839632034, -0.011333192698657513, 0.008260460570454597, -0.013554604724049568, 0.015071017667651176, -0.014179792255163193, -0.003441858571022749, 0.010182580910623074, -0.012956020422279835, -0.016055354848504066, 0.011127013713121414, 0.02126968838274479, 0.02099034935235977, -0.011113711632788181, -0.012882860377430916, 0.025273550301790237, -0.00899871438741684, -0.006115534342825413, -0.01963355764746666, -0.014924696646630764, -0.0033171535469591618, 0.03003562055528164, -0.02367732673883438, -0.00015619304031133652, -0.014206396415829659, -0.020977046340703964, -0.025619398802518845, 0.034318823367357254, 0.0037411507219076157, -0.018635917454957962, 0.016919977962970734, -0.001883877208456397, 0.00780154624953866, 0.0017757995519787073, 0.013820641674101353, -0.030966751277446747, -0.0178644098341465, 0.018596012145280838, -0.027588076889514923, -0.006810556631535292, -0.01298927515745163, -0.023344779387116432, -0.025938645005226135, 0.00272189499810338, 0.001837320625782013, -0.026071662083268166, -0.01508431974798441, 0.010967390611767769, 0.005157799459993839, 0.0025589470751583576, -0.014565546065568924, -0.008533149026334286, 6.094958007452078e-05, 0.0013734179083257914, 0.001749195740558207, -0.037271834909915924, 0.01609526202082634, -0.017678184434771538, 0.009391119703650475, -0.007023386657238007, -0.021642141044139862, 0.0021432635840028524, -0.016520921140909195, -0.009151685982942581, -0.00014226764324121177, -0.011965030804276466, -0.01890195533633232, -0.0007374223787337542, 0.01826346665620804, 0.0017658231081441045, 0.01798412762582302, 0.009637203998863697, -0.048578426241874695, 0.005490346346050501, -0.005403884220868349, -0.0038941220846027136, 0.0008093355572782457, -0.018236862495541573, 0.020125728100538254, -0.01739884540438652, -0.01956705003976822, 0.008539799600839615, -0.0008978761616162956, -0.00750890513882041, -0.002652060007676482, -0.049748990684747696, 0.019779879599809647, 0.028811847791075706, -0.00037556994357146323, 0.010834372602403164, -0.026656944304704666, 0.01023578830063343, -0.0023012233432382345, 0.011958380229771137, -0.0024242654908448458, -0.03913410007953644, 0.027428453788161278, 0.0004526792326942086, 0.008479941636323929, -0.03402617946267128, -0.0008151551592163742, 0.01481828186661005, 0.008666167967021465, 0.019779879599809647, 0.010362155735492706, 0.004293178208172321, -0.006228600163012743, 0.005979190114885569, 0.010634844191372395, -0.00022072788851801306, 0.01537696085870266, -0.014485735446214676, 0.0037344996817409992, -0.02611156925559044, -0.009690411388874054, -0.0015613068826496601, -0.01292276568710804, -0.005646643228828907, 0.03668655455112457, -0.02400987409055233, -0.002618805505335331, -0.004339734558016062, 0.01262347400188446, -0.009677109308540821, 0.0022995604667812586, -0.018024032935500145, -0.02616477571427822, 0.002331152558326721, -0.02577902190387249, -0.005337374750524759, -0.004868484102189541, -0.03735164925456047, 0.026710152626037598, 0.008586356416344643, -0.004708861466497183, 0.005217657890170813, 0.0027900671120733023, -0.01904827542603016, -0.040730323642492294, -0.020857330411672592, -0.00417013606056571, 0.002665362088009715, -0.006448080763220787, 0.0009436013060621917, -0.013887151144444942, 0.01495130080729723, -0.0010608240263536572, -0.006368269678205252, -0.009617251344025135, 0.03684617578983307, -0.015416866168379784, 0.002495763124898076, -0.00020701033645309508, 0.03493070602416992, -0.027428453788161278, -0.016507619991898537, -0.016308091580867767, 0.004110277630388737, -0.011426305398344994, 0.028865056112408638, 0.0025589470751583576, -0.02552628703415394, -0.013434887863695621, 0.00032007621484808624, 0.023371383547782898, 0.018941860646009445, -0.002583888126537204, 0.001414154889062047, 0.01988629437983036, 0.007881357334554195, 0.03362712636590004, -0.009544091299176216, 0.0013950335560366511, -0.005942610092461109, 0.01358120795339346, -0.010860975831747055, -0.008360224775969982, -0.012610171921551228, 0.020205538719892502, 0.018369881436228752, 0.03591504693031311, 0.0074556972831487656, -0.00024275910982396454, 0.019340917468070984, 0.006085604894906282, -0.0028166708070784807, 0.014911394566297531, 0.01472516916692257, -0.009936495684087276, -0.021110065281391144, -0.002796717919409275, -0.015164130367338657, -0.03282901272177696, -0.01950054056942463, 0.019154692068696022, 0.007183009292930365, 0.004256598185747862, 0.0005071337218396366, 0.02048487775027752, -0.0052608889527618885, 0.004303154535591602, 0.011945078149437904, -0.010488523170351982, -0.02576572075486183, 0.018995068967342377, -0.005104592069983482, 0.0035017170011997223, 0.01409998070448637, 0.005583459511399269, 0.012370738200843334, 0.008060932159423828, 0.023198459297418594, -0.013754132203757763, 0.007116499822586775, -0.017877710983157158, -0.01818365417420864, 0.01596224308013916, -0.02323836460709572, 0.003495065961033106, -0.015257243998348713, 0.004489380866289139, -0.014645357616245747, -0.0011298274621367455, -0.007954517379403114, 0.06422141939401627, -0.0076485746540129185, -0.024289213120937347, -0.00287154084071517, -0.013162199407815933, 0.0229590255767107, 0.028306376188993454, 0.0035382970236241817, -0.026670247316360474, 0.010455269366502762, 0.017558466643095016, -0.004905064124614, 0.03304184228181839, -0.005869449581950903, -0.006085604894906282, -0.006657585501670837, 0.022799402475357056, 0.004668956156820059, -0.003644712036475539, 0.006128835957497358, 0.03094014711678028, 0.0021898201666772366, -0.0023993246722966433, -0.008007724769413471, -0.009670458734035492, 0.008313667960464954, 0.008067583665251732, -0.027854112908244133, -0.005689874291419983, -0.03511693328619003, 0.0005661607719957829, 0.007409140933305025, -0.023331478238105774, -0.004143532365560532, 0.02780090644955635, -0.023318175226449966, -0.0355691984295845, 0.011339843273162842, 0.03181806951761246, 0.0013867198722437024, -0.01590903475880623, 0.05751728266477585, -0.02315855398774147, -0.009850033558905125, -0.0068438113667070866, -0.007242867723107338, -0.014924696646630764, -0.01753186248242855, -0.01856940984725952]}, {"created_time": 1695692074.417726, "accessed_time": 1695692074.417726, "description": "Had a friendly chat with Yuriko about her garden.", "poignancy": 3, "embedding_key": [0.008202211000025272, -0.0058207097463309765, 0.012632602825760841, 0.008661216124892235, 0.01672372967004776, 0.023801714181900024, -0.0002633871044963598, -0.003738558618351817, -0.02039576694369316, -0.026316259056329727, -0.005428227595984936, -0.023069966584444046, 0.009146829135715961, -0.009891880676150322, -0.019171753898262978, -0.002674200339242816, 0.027859579771757126, -0.0023382622748613358, 0.04331938549876213, -0.03381998464465141, -0.01503406185656786, 0.025690948590636253, 0.00261433026753366, 0.010517191141843796, -0.026914961636066437, 0.008182254619896412, 0.011648071929812431, -0.012898692861199379, -0.008528171107172966, -0.004669872112572193, 0.0023299469612538815, -0.004493587650358677, 0.010151317343115807, -0.0049359616823494434, -0.03062691166996956, -0.039115168154239655, 0.013397610746324062, -0.010284362360835075, 0.007191070821136236, -0.0046166544780135155, 0.01629798673093319, -0.011401938274502754, 0.002170293126255274, -0.02305666171014309, -0.014315620064735413, 0.0020023242104798555, -0.01937132142484188, -7.977490167832002e-05, -0.01024444866925478, 0.006472629029303789, 0.014422055333852768, -0.008248777128756046, -0.021952390670776367, -0.006382823921740055, -0.025158770382404327, -0.007071330677717924, 0.002685841638594866, 0.009186742827296257, 0.008461648598313332, 0.0020522158592939377, -0.0004960076184943318, 0.009060350246727467, -2.3932470867293887e-05, -0.0008897370425984263, -0.005285204388201237, 0.003244629828259349, -0.002291696611791849, -0.006718762218952179, 0.003788450499996543, 0.004526848904788494, 0.03195735812187195, 0.019610801711678505, -0.005414923187345266, -0.016484249383211136, 0.014422055333852768, 0.006010298617184162, -0.01847992092370987, -0.007463812828063965, -0.008415083400905132, 0.0014318946050480008, 0.0033710224088281393, -0.028631240129470825, -0.0032546082511544228, -0.0005163801251910627, 0.016537467017769814, 0.022431351244449615, -0.017122864723205566, 0.019171753898262978, 0.013184739276766777, -0.03001490607857704, 0.02523859776556492, 0.026209823787212372, 0.007823034189641476, 0.007803076878190041, -0.009885228238999844, 0.0019940088968724012, 0.010151317343115807, 0.0030384105630218983, 0.01088306400924921, -0.02130047045648098, -0.0161250289529562, 0.02321631647646427, -0.003678688546642661, -0.012925301678478718, -0.034405384212732315, 0.0066522397100925446, 0.019278191030025482, -0.01749539002776146, 0.02120734006166458, -0.012373166158795357, -0.027380619198083878, 0.02070176973938942, -0.010217839851975441, -0.03523026034235954, -0.01821383275091648, -0.018466617912054062, 0.03062691166996956, 0.0007749859360046685, -0.0247197225689888, -0.013251261785626411, 0.020382462069392204, 0.009971707127988338, 0.018333572894334793, -0.004417086951434612, 0.019224973395466805, -0.007071330677717924, 0.006412758957594633, 0.013903181068599224, -0.02599695324897766, -0.0012913660611957312, 0.010417407378554344, 0.011987335979938507, 0.023801714181900024, 0.0032512820325791836, -0.021539952605962753, 0.021619778126478195, -0.026702089235186577, 0.007051373831927776, -0.0012614309089258313, -0.022138653323054314, 0.005029093008488417, 0.022005608305335045, -0.023189706727862358, -0.003981365356594324, 0.019304798915982246, 0.03467147424817085, 0.011807725764811039, 0.012858779169619083, -0.01156824454665184, 0.0014293999411165714, 0.01774817518889904, -0.0036287966649979353, 0.016404422000050545, 0.003129878779873252, 0.028764283284544945, 0.0016963210655376315, 0.001688837306573987, 0.01383665855973959, -0.03908855840563774, 0.011681333184242249, 0.002862126100808382, -0.0008494078647345304, 0.023615451529622078, -0.011860943399369717, -0.016923297196626663, 0.026329563930630684, 0.012506210245192051, 0.021233947947621346, -0.015978679060935974, 0.0011649734806269407, 0.009273221716284752, 0.02164638787508011, -0.040312573313713074, 0.0031731182243674994, 0.005338422488421202, 0.0062231700867414474, -0.032862063497304916, -0.002707461593672633, 0.01398300752043724, -0.025584513321518898, -0.03645427152514458, -0.002561112167313695, 0.0049359616823494434, 0.015539632178843021, -0.008182254619896412, -0.01608511619269848, 0.012852126732468605, 0.007064678706228733, 0.008055862039327621, 0.012978519313037395, 0.007104591932147741, 0.0434524305164814, -0.010364189743995667, -0.011342068202793598, -0.6599021553993225, -0.039407867938280106, 0.020302634686231613, 0.011707942001521587, 0.028578020632267, 0.0011217339197173715, 0.007051373831927776, 0.005551293957978487, -0.002644265303388238, -0.003808407112956047, -0.014741363003849983, 0.0105238426476717, -0.004007974173873663, 0.012373166158795357, -0.0027423857245594263, -0.014422055333852768, -0.002025607042014599, -0.027806362137198448, 0.011834334582090378, 0.009080306626856327, -0.00862130243331194, 0.02775314450263977, -0.01844000816345215, -0.010131360962986946, -0.006589043419808149, -0.013118216767907143, -0.004932635463774204, -0.045660972595214844, -0.009958402253687382, 0.04536827281117439, -0.04233485460281372, 0.027832970023155212, -0.013783440925180912, -0.017122864723205566, 0.055027324706315994, -0.00876765139400959, -0.0036953191738575697, 0.009679008275270462, -0.0010809889063239098, 0.018107395619153976, -0.033766768872737885, 0.005438205786049366, 0.030813174322247505, 0.004280716180801392, 0.0021719562355428934, -0.0007932795560918748, 0.028977155685424805, -0.005381661932915449, -0.0035290131345391273, -0.004759677220135927, 0.027699925005435944, 0.004812895320355892, -0.0021536624990403652, 0.006918329279869795, 0.026662176474928856, -0.005454836413264275, 0.028764283284544945, -0.028365150094032288, -0.00577414408326149, -0.0046765245497226715, -0.005185420624911785, 0.001960747642442584, -0.024826157838106155, 0.0011125870514661074, -0.02103438228368759, 0.00767668429762125, -0.03318137302994728, -0.01126889418810606, -0.006259757559746504, -0.00511224614456296, 0.013590525835752487, 0.015100584365427494, -0.012260077521204948, 0.007896208204329014, -0.004027931019663811, 0.0312921367585659, 0.009466136805713177, 0.0001451019779779017, -0.0004743878380395472, 0.011075979098677635, 0.017096254974603653, -0.008262082003057003, -0.020475594326853752, 0.01131545938551426, 0.02595703862607479, -0.02215195819735527, -0.015406587161123753, 0.014634926803410053, 0.01826705038547516, -0.025039030238986015, 0.026023561134934425, 0.006213191896677017, -0.01144185196608305, 0.002639275975525379, 0.001361214555799961, 0.014488577842712402, -0.018799228593707085, 0.012479601427912712, 0.027992624789476395, -0.028365150094032288, 0.010809889063239098, -0.012186902575194836, 0.021154122427105904, 0.0058506447821855545, 0.003745210822671652, -0.000816978164948523, -0.03203718736767769, 0.02574416808784008, 0.013770136050879955, -0.01591215655207634, 0.026569044217467308, 0.03467147424817085, -0.009592529386281967, -0.001104271737858653, -0.01651085913181305, -0.025331728160381317, 0.04409104585647583, 0.03632122650742531, 0.025158770382404327, -0.005148833617568016, 0.01954427920281887, -0.004776307847350836, 0.02599695324897766, 0.004490261897444725, 0.015193715691566467, 0.007576900999993086, 0.0007866273517720401, -0.02425406500697136, -0.011348720639944077, -0.0024829483591020107, -0.011515026912093163, -0.004613328259438276, 0.018892360851168633, -0.026289651170372963, 0.009266570210456848, -0.009698965586721897, -0.007862946949899197, -0.019211668521165848, 0.018373485654592514, -0.009632443077862263, -0.03366033360362053, -0.010962890461087227, 0.012073814868927002, 0.024227457121014595, -0.0036620579194277525, -0.016484249383211136, 0.007550292182713747, 0.0029336377047002316, -0.04206876456737518, 0.0007650075713172555, 0.007350724656134844, -0.005128876771777868, -0.011455156840384007, 0.02300344407558441, -0.006898372434079647, 0.006482607685029507, -0.019304798915982246, -0.009878575801849365, -0.014568405225872993, 0.0041310410015285015, 0.014940930530428886, 0.011415243148803711, -0.02950933575630188, 0.006472629029303789, 0.0057974266819655895, 0.001564939389936626, -0.0006182425422593951, 0.020369157195091248, 0.0031032697297632694, -0.024573372676968575, -0.01503406185656786, -0.014874408021569252, -0.0162181593477726, -0.008534823544323444, 0.011155805550515652, -0.012838822789490223, 0.0040478878654539585, -0.005724252201616764, 0.0069715469144284725, -0.0008622965542599559, 0.003931473474949598, 0.006432715803384781, -0.007317463401705027, -0.014062834903597832, 0.016883384436368942, -0.0022850444074720144, 0.0047663296572864056, 0.03839672729372978, 0.011175762861967087, 0.009452832862734795, 0.005817383527755737, 0.007603509817272425, -0.008521518670022488, 0.014342228882014751, -0.01208046730607748, -0.014794580638408661, 0.020289331674575806, 0.020715074613690376, -0.005920493043959141, 0.0129386056214571, -0.004493587650358677, -0.0021137490402907133, 0.028152277693152428, -0.014076138846576214, -0.00241642608307302, -0.012226816266775131, 0.01757521741092205, -0.018839143216609955, 0.022378133609890938, 0.00442706560716033, 0.005531337112188339, -0.014328924007713795, -0.014595014043152332, -0.008681172505021095, 0.02215195819735527, 0.004057866055518389, -0.0051920730620622635, 0.01408944372087717, -0.02317640371620655, 0.007277550175786018, -0.0014202531892806292, -0.003108259057626128, -0.01210707612335682, -0.028258714824914932, -0.0035389915574342012, -0.0004084890824742615, -0.004486935678869486, 0.01408944372087717, 0.0045867194421589375, 0.007031417451798916, -0.02010306902229786, -0.011641419492661953, 0.031717877835035324, 0.007264245767146349, 0.0018509856890887022, 0.0012763984268531203, 0.024187542498111725, -0.027234269306063652, 0.034405384212732315, 0.03217023238539696, 0.006356215104460716, -0.010277709923684597, 0.01045732107013464, -0.015326759777963161, 0.026249738410115242, 0.020049849525094032, 0.03884907811880112, -0.019477756693959236, -0.01098950020968914, 0.009319787845015526, -0.015685981139540672, -0.00820886343717575, -0.002213532803580165, -0.002200228162109852, 0.006678848527371883, -0.024107716977596283, -0.014328924007713795, 0.013384305872023106, 0.01569928601384163, 0.03105265460908413, 0.018360180780291557, 0.024027889594435692, 0.014022921212017536, 0.004027931019663811, -0.001554960967041552, 0.007530335336923599, 0.020422374829649925, -0.024134324863553047, -0.014501882717013359, -0.01492762565612793, 0.012433036230504513, -0.006392802111804485, 0.0002739891060627997, -0.011774464510381222, -0.016138333827257156, 0.016524164006114006, -0.003040073439478874, -0.013863267377018929, -0.020715074613690376, 0.007011460606008768, -0.008760999888181686, -0.027234269306063652, 0.0031764444429427385, 0.0064859334379434586, 0.004167628008872271, -0.014209183864295483, 0.007091287523508072, 2.8272017516428605e-05, -0.0077964249067008495, 0.013124869205057621, 0.01565937139093876, -0.002155325608327985, -0.010916325263679028, 0.01962410658597946, 0.0021021077409386635, -0.0044503482058644295, 0.00456676259636879, -0.024493547156453133, 0.011461809277534485, -0.018825838342308998, 0.004530175123363733, -0.015765808522701263, -0.005318465642631054, -0.003931473474949598, -0.0005641930620186031, 0.006924981251358986, -0.019012100994586945, -0.006243126932531595, -0.017122864723205566, -0.004490261897444725, -0.0013254587538540363, -0.006831849925220013, -0.020289331674575806, -0.005631120875477791, 0.003050051862373948, 0.008973871357738972, -0.0013795081758871675, -0.023083271458745003, 0.01454179547727108, 0.0001920834183692932, -0.028631240129470825, -0.007756511215120554, -0.034751299768686295, 0.007211027666926384, 0.1261264681816101, -0.009346396662294865, 0.012093771249055862, 0.02390814945101738, 0.014209183864295483, -0.018706098198890686, -0.00782968569546938, -0.025331728160381317, 0.005664382129907608, 0.013304479420185089, -0.0035290131345391273, 0.006692152936011553, 0.019012100994586945, 0.0005804079119116068, -0.008115732111036777, -0.019304798915982246, -0.015499718487262726, -0.008089123293757439, 0.0024995789863169193, -0.015087279491126537, 0.012699125334620476, -0.005667708348482847, -0.0071378531865775585, 0.026888351887464523, -0.000678528449498117, 0.020422374829649925, 0.012712430208921432, 0.021539952605962753, 0.027354009449481964, -0.019983327016234398, 0.01306499820202589, 0.025504685938358307, -0.0021137490402907133, -0.00882752239704132, -0.028631240129470825, 0.0030433996580541134, 0.02518538013100624, 0.013510698452591896, 0.0007749859360046685, -0.01259269006550312, 0.010251101106405258, 0.023043358698487282, 0.02143351547420025, -0.009226656518876553, 0.02126055769622326, -0.009459484368562698, 0.007763163652271032, 0.022351525723934174, -0.016111724078655243, 0.0025078942999243736, 0.022976836189627647, 0.015725893899798393, 0.006399454548954964, -0.02485276758670807, -0.0037817982956767082, 0.043000075966119766, 0.0027057984843850136, -0.01753530278801918, -0.005321791861206293, 0.017428867518901825, 0.02334936149418354, -0.02809906005859375, -0.015672676265239716, -0.005145507398992777, -0.011747854761779308, -0.012931954115629196, -0.013929789885878563, -0.010177926160395145, -0.0064194113947451115, 0.0026076778303831816, -0.01847992092370987, -0.005338422488421202, -0.02775314450263977, 0.006159973796457052, 0.028152277693152428, 0.011980683542788029, 0.02788618765771389, -0.011215675622224808, -0.0027207660023123026, 0.003178107552230358, -0.01633790135383606, -0.009778792038559914, 0.0013745189644396305, -0.008508214727044106, -0.03028099425137043, 0.0037319064140319824, 0.012911996804177761, 0.009486094117164612, -0.00550805451348424, 0.0027274182066321373, 0.01569928601384163, -0.005681012757122517, 0.02980203367769718, 0.0017362345242872834, 0.005401618778705597, 0.007803076878190041, -0.010976195335388184, 0.029695598408579826, 0.0028055820148438215, 0.01946445368230343, 0.006093451287597418, -0.024599982425570488, -0.014235792681574821, -0.012978519313037395, 0.015060670673847198, -0.003941452130675316, 0.021140817552804947, 0.01962410658597946, -0.0005908020539209247, 0.01287208404392004, 0.01869279332458973, -0.01877262070775032, 0.010823193937540054, 0.014182575047016144, -0.0027274182066321373, 0.016737034544348717, -0.00027752312598749995, 0.022976836189627647, 0.0020222808234393597, -0.022990141063928604, 0.018360180780291557, -0.027646707370877266, 0.03480451926589012, -0.0013695298694074154, -0.007603509817272425, 0.012625950388610363, -0.01655077189207077, -0.017588522285223007, -0.009625790640711784, -0.020049849525094032, -0.01963741146028042, -0.0039647347293794155, -0.015326759777963161, -0.011914161033928394, -0.019052013754844666, -0.018040873110294342, -0.0038749296218156815, 0.012526167556643486, -0.007497074082493782, -0.02425406500697136, -0.036933235824108124, 0.00047854549484327435, 0.01744217239320278, -0.02698148414492607, -0.02052881196141243, -0.029695598408579826, -0.006705457344651222, -0.009293179027736187, 0.025584513321518898, 0.030600301921367645, -0.012472948990762234, 0.009306482970714569, -0.006542477756738663, 0.0077365548349916935, -2.2308389816316776e-05, -0.023282838985323906, -0.009392962791025639, 0.01919836364686489, 0.014688145369291306, 0.012865431606769562, 0.0019441170152276754, 0.010291014797985554, 0.014076138846576214, 0.004816221538931131, 0.010510538704693317, -0.0036188182421028614, 0.007290854584425688, -0.00955926813185215, -0.026369478553533554, 0.0006161637138575315, 0.004294020589441061, 0.021140817552804947, -0.011874247342348099, -0.012492906302213669, -0.03374015912413597, 0.015606153756380081, -0.006742044817656279, 0.008814217522740364, -0.012965215370059013, -0.006020276807248592, -0.013770136050879955, 0.0024779592640697956, -0.00356560037471354, 0.00032949374872259796, 0.02497250773012638, 0.0007238468388095498, 0.00996505469083786, -0.008707781322300434, 0.03169126808643341, -0.028125669807195663, 9.952374239219353e-05, -0.011787768453359604, 0.009080306626856327, -0.01591215655207634, 0.002273402875289321, -0.0012439688434824347, 0.009313135407865047, -0.015832331031560898, -0.008860782720148563, 0.0016655544750392437, 0.019185058772563934, -0.0064260633662343025, 0.02386823669075966, -0.006293018814176321, 0.004214193671941757, 0.019344713538885117, 0.012778952717781067, -0.016909992322325706, 0.007689989171922207, -0.032063793390989304, -0.018666183575987816, -0.0017096255905926228, -0.0029685618355870247, -0.011594853363931179, -0.0227905735373497, -0.01172124594449997, -0.017761480063199997, 0.014688145369291306, 0.008115732111036777, 0.004061192274093628, -0.0002997665433213115, 0.0005932966014370322, 0.027859579771757126, 0.02027602680027485, 0.00441376119852066, -0.000180753821041435, -0.012213512323796749, -0.017043037340044975, 0.03964734822511673, -0.011002804152667522, -0.01490101683884859, 0.004496913868933916, 0.026409391313791275, -0.013218000531196594, -0.03546974062919617, 0.019743846729397774, 0.03991343826055527, -0.01979706436395645, -0.02535833790898323, -0.015845634043216705, 0.016790252178907394, 0.02240474335849285, -0.01629798673093319, -0.0024580026511102915, 0.0005820709629915655, 0.020675159990787506, -0.006369519513100386, -0.015938766300678253, -0.01507397461682558, 0.030653519555926323, -0.025970343500375748, 0.028072450309991837, -0.001604021294042468, 0.027699925005435944, -0.021060990169644356, 0.0028787567280232906, -0.01569928601384163, -0.022644223645329475, -0.01736234501004219, 0.013756831176578999, 0.002531177131459117, 0.02356223203241825, -0.012692472897469997, 0.016391118988394737, 0.0024330567102879286, 5.1970622735098004e-05, 0.0018160614417865872, -0.012699125334620476, -0.004150997381657362, 0.02433389239013195, -0.01859966106712818, -1.3421413314063102e-05, -0.022351525723934174, 0.010976195335388184, 0.012645907700061798, -0.009499398060142994, -0.012812213972210884, 0.0008714433643035591, -0.0021569887176156044, -0.020036546513438225, 0.022990141063928604, -0.0011167447082698345, 0.010763323865830898, 0.006439367774873972, -0.015526327304542065, -0.010530495084822178, -0.009565920569002628, -0.0018476595869287848, -5.219799277256243e-06, -0.027087919414043427, -0.016737034544348717, -0.027859579771757126, -0.01929149404168129, 0.019384626299142838, -0.0011300492333248258, -0.01962410658597946, 0.017561912536621094, 0.0118276821449399, -0.02690165676176548, 0.007776468060910702, -0.009239960461854935, 0.0015657709445804358, -0.018333572894334793, -0.0021619778126478195, -0.006778632290661335, -0.02557120844721794, 0.018160613253712654, -0.017694957554340363, -0.032143622636795044, -0.018825838342308998, 0.024786245077848434, 0.0081090796738863, -0.01291864924132824, -0.017029734328389168, 0.00713120074942708, -0.017694957554340363, 0.009392962791025639, -0.029323073104023933, -0.026076778769493103, 0.027992624789476395, -0.0019341387087479234, 0.005531337112188339, 0.01821383275091648, -0.03648088127374649, 0.015486413612961769, 0.020728379487991333, 0.003948104102164507, 0.021619778126478195, -0.022125348448753357, -0.017801392823457718, -0.02062194235622883, -0.010517191141843796, -0.00818890705704689, -0.02062194235622883, 0.011282198131084442, 0.010304318740963936, -0.017561912536621094, 0.012027249671518803, 0.004177606664597988, -0.0015350042376667261, 0.012812213972210884, 0.02489268034696579, 0.0027124506887048483, 0.01714947447180748, 0.0014676504069939256, 0.0015807384625077248, -0.02052881196141243, -0.00699150376021862, -0.028391757979989052, -0.007869599387049675, 0.007523682899773121, 0.022657528519630432, -0.01131545938551426, -0.034538429230451584, -0.030733346939086914, -0.016776949167251587, -0.03262258321046829, -0.01774817518889904, -0.011461809277534485, 0.004097779747098684, -0.007257593329995871, -0.025544600561261177, 0.00953931175172329, 0.01724260486662388, -0.018852446228265762, 0.020076459273695946, -0.014940930530428886, -0.021140817552804947, 0.0039946697652339935, -0.03057369403541088, 0.022165263071656227, -0.015300150960683823, -0.026755306869745255, -0.022258393466472626, -0.018666183575987816, -0.021313775330781937, -0.0020522158592939377, 0.0019208341836929321, -0.010849802754819393, 0.005088963080197573, -0.01838679052889347, 0.007224332075566053, 0.00913352519273758, 0.019903501495718956, 0.016191551461815834, -0.011002804152667522, -0.013424219563603401, 0.006625630892813206, 0.004360543098300695, -0.007803076878190041, -0.010111404582858086, 0.016324596479535103, 0.005720925983041525, 0.008800912648439407, -0.007490421645343304, -0.032223448157310486, -0.005834014154970646, -0.00013356449198909104, 0.036374446004629135, -0.013916485011577606, -0.024320587515830994, 0.020981164649128914, 0.006249778904020786, -0.014129357412457466, -0.013051694259047508, 0.012200207449495792, -0.0026974831707775593, 0.006276388186961412, 0.025810690596699715, -0.012852126732468605, 0.01340426318347454, -0.025970343500375748, -0.0051089199259877205, -0.030041513964533806, -0.013677004724740982, -0.005414923187345266, -0.013716918416321278, -0.013996312394738197, 0.0086412588134408, 0.010404102504253387, -0.012033901177346706, 0.0020372483413666487, -0.020954554900527, -0.011022761464118958, -0.012033901177346706, -0.015552936121821404, 0.00207882490940392, -0.018852446228265762, -0.02189917303621769, 0.018253745511174202, -0.011095935478806496, -0.012506210245192051, 0.022524483501911163, 0.01259269006550312, -0.023030053824186325, 0.019131841138005257, 0.2499113380908966, -0.018160613253712654, 0.021792737767100334, 0.02539825066924095, 0.00022576037736143917, 0.019012100994586945, 0.02895054593682289, 0.008860782720148563, 0.008674520067870617, 0.018200527876615524, -0.03254275768995285, 0.0014817863702774048, 0.018280355259776115, -0.004097779747098684, 0.005661055911332369, -0.022058825939893723, -0.01608511619269848, -0.02342918887734413, -0.009619138203561306, -0.006898372434079647, 0.012067162431776524, -0.014954234473407269, -0.0035090562887489796, 0.004649915266782045, 0.028365150094032288, 0.01997002400457859, -0.039886828511953354, 0.002887072041630745, 0.008867435157299042, -0.009060350246727467, -0.00971226952970028, 0.0031365309841930866, -0.001372024416923523, -0.01732243224978447, 0.027087919414043427, -0.014501882717013359, 0.022338220849633217, 0.005105593707412481, 0.025717558339238167, 0.0038250377401709557, 0.016138333827257156, 0.0029136808589100838, 0.011608158238232136, -0.00872108619660139, -0.004440370015799999, 0.004809569101780653, -0.022524483501911163, -0.013770136050879955, 0.0020804880186915398, 0.02048889733850956, -0.015220324508845806, -0.011448504403233528, 0.026954874396324158, 0.00844834465533495, 0.007876251824200153, 0.0002084021980408579, 0.01813400536775589, -0.010570408776402473, -0.02284379117190838, -0.010557103902101517, -0.00870112981647253, 0.042148590087890625, -0.0026226455811411142, 0.010836497880518436, -0.03477790951728821, 0.018466617912054062, -0.008049209602177143, 0.0007970214355736971, 0.017295822501182556, -0.004290694370865822, 0.008607998490333557, 0.00862130243331194, -0.0057608396746218204, 0.004317303653806448, -0.036374446004629135, -0.02518538013100624, 0.025478078052401543, 0.0029519314412027597, 0.04507557675242424, 0.002926985500380397, -0.010949586518108845, 0.026249738410115242, -0.00727089773863554, 0.0038150593172758818, -0.0049658967182040215, -0.03738558664917946, 0.0026825156528502703, 0.021712910383939743, 0.019238276407122612, -0.02788618765771389, -0.0034259033855050802, -0.011481765657663345, -0.0021021077409386635, -0.02062194235622883, -0.006818545516580343, 0.010623626410961151, -0.009705618023872375, 0.024067802354693413, -0.0227905735373497, 0.01045732107013464, -0.006475955247879028, -0.027194354683160782, 0.028764283284544945, 0.02680852636694908, -0.03557617589831352, 0.02630295604467392, 0.013903181068599224, 0.01577911153435707, -0.005607837811112404, -0.026276346296072006, 0.014568405225872993, -0.005301835015416145, 0.02801923267543316, 0.017681652680039406, 0.010217839851975441, 0.008920653723180294, -0.0075635965913534164, -0.02732739970088005, 0.027274182066321373, 0.001158321276307106, -0.0001540409284643829, -0.024866072461009026, -0.03267580270767212, 0.014621622860431671, -0.010816541500389576, -0.021699605509638786, -0.039753783494234085, 0.0024230782873928547, -0.015765808522701263, -0.021406907588243484, 0.03751863166689873, 0.011701289564371109, 0.01212703250348568, 0.014461969025433064, -0.0038050811272114515, 0.0063362582586705685, 0.018360180780291557, -0.00356560037471354, 0.013956398703157902, 0.006838502362370491, 0.015885548666119576, -0.0081090796738863, -0.012246773578226566, -0.02754027210175991, 0.01373022235929966, -0.023761799558997154, 0.010942934080958366, 0.0012065499322488904, 0.007849643006920815, -0.015592849813401699, -0.016138333827257156, 0.003327782964333892, -0.019358016550540924, -0.007237636484205723, 0.031371962279081345, -0.024240761995315552, -0.037438806146383286, 0.003685340750962496, 0.0058207097463309765, 0.01633790135383606, -0.02334936149418354, 0.0020039870869368315, 0.04079153388738632, -0.020595334470272064, 0.011029412969946861, -0.009672356769442558, -0.17093594372272491, 0.016351204365491867, 0.03246292844414711, -0.01774817518889904, 0.01625807397067547, 0.020675159990787506, -0.010191231034696102, -0.008953914977610111, -0.01332443580031395, 0.01736234501004219, 0.027859579771757126, 0.029988296329975128, -0.017681652680039406, -0.026542436331510544, -0.001554129528813064, 0.036800190806388855, -0.0002359466307098046, -0.004506892524659634, 0.038636207580566406, 0.0322500579059124, 0.012526167556643486, -0.01877262070775032, 0.016005288809537888, -0.008760999888181686, 0.02155325561761856, 0.022657528519630432, -0.001609010505490005, 0.002664221916347742, -0.007789772469550371, -0.0027174397837370634, -0.00699150376021862, 0.007483769673854113, 0.01167468074709177, -0.011581549420952797, 0.024879375472664833, 0.010590365156531334, -0.005328443832695484, -0.017907829955220222, -0.005977037362754345, 0.023708581924438477, 0.0021470102947205305, 0.001144185196608305, -0.001124228467233479, 0.006924981251358986, -0.053111482411623, 9.120844333665445e-05, -0.00018948488286696374, 0.0019790413789451122, -0.03868942707777023, -0.005401618778705597, 0.010676844976842403, -0.0033893161453306675, -0.005611164029687643, -0.011089283041656017, 0.015379978343844414, 0.020688464865088463, -0.013703613542020321, 0.04089796915650368, 0.0013587198918685317, 0.006402780767530203, 0.00022181060921866447, -0.021021077409386635, -0.006096777506172657, 0.009067002683877945, 0.017043037340044975, -0.00846830103546381, -0.02296353131532669, -0.007969383150339127, -0.0070779831148684025, 0.007324115838855505, -0.0006648082053288817, -0.03126552700996399, 0.027593489736318588, 0.0014767971588298678, 0.009745530784130096, -0.006126712542027235, -0.00483285216614604, 0.0029602465219795704, -0.0018642900977283716, -0.01770826242864132, -0.023043358698487282, 0.01761513017117977, -0.037438806146383286, -0.014781276695430279, -0.01545980479568243, 0.023336056619882584, 0.005534663330763578, 0.005348400678485632, -0.009832010604441166, -0.021180730313062668, 0.03389981389045715, -0.017628435045480728, -0.017295822501182556, -0.025850603356957436, -0.0018127353396266699, 0.01253281906247139, 0.013304479420185089, 0.011967378668487072, 0.004094453528523445, -0.016431031748652458, 0.019131841138005257, -0.0164177268743515, -0.014954234473407269, 0.008760999888181686, 0.01822713576257229, 0.007729902397841215, 0.01058371365070343, 0.004866113420575857, 0.013650395907461643, -0.007902860641479492, -0.006356215104460716, 0.023668669164180756, 0.007410594727844, 0.01507397461682558, -0.013018433004617691, 0.035389915108680725, 0.022591006010770798, -0.01680355705320835, 0.03006812371313572, -0.04457000643014908, 0.023509014397859573, 0.019770456477999687, 0.0024330567102879286, -0.008049209602177143, -0.0011516689555719495, 0.013543959707021713, -0.09962394088506699, -0.0011017771903425455, 0.0053051612339913845, 0.01490101683884859, -0.0005205377237871289, 0.019131841138005257, 0.019570888951420784, 0.007616814225912094, 0.004516870714724064, 0.013510698452591896, -0.030174558982253075, -0.007916165515780449, 0.016031896695494652, -0.0009296505013480783, 0.006628956645727158, -0.014887711964547634, -0.0037618414498865604, -0.005710947792977095, -0.015379978343844414, 0.006871763616800308, -0.0018459964776411653, -0.01792113296687603, -0.004353890661150217, -0.0005978700355626643, -0.0052519431337714195, -0.00968566071242094, -0.03036082163453102, 0.03318137302994728, 0.010271058417856693, 0.008694477379322052, 0.005534663330763578, -0.022976836189627647, 0.00767668429762125, -0.03536330536007881, -0.0021869237534701824, 0.01019788347184658, -0.014435360208153725, -0.0032795541919767857, -0.006176604423671961, -0.02168630063533783, -0.006372845731675625, 0.002278391970321536, 0.010138013400137424, -0.02027602680027485, -0.012818865478038788, -0.00658571720123291, -0.020049849525094032, 0.003442534012719989, -0.0037319064140319824, -0.029269853606820107, -0.040392398834228516, 0.00657573901116848, 0.013138173148036003, -0.0032163579016923904, 0.031584832817316055, -0.019650716334581375, 0.00606351625174284, 0.024653200060129166, -0.014275706373155117, -0.003302837023511529, -0.005770817864686251, -0.022205175831913948, 0.0075103784911334515, -0.000440710864495486, 0.016909992322325706, 0.001332110958173871, -0.0028704414144158363, -0.0015532979741692543, 0.003545643761754036, -0.002373186405748129, -0.0039015384390950203, 0.03113248199224472, -0.011621462181210518, 0.022697441279888153, -0.0024197520688176155, -0.022378133609890938, -0.01792113296687603, -0.013371001929044724, -0.010849802754819393, -0.024879375472664833, -0.006618978455662727, -0.012725734151899815, 0.013969703577458858, -0.001100114081054926, 0.015047365799546242, 0.00699150376021862, -0.009832010604441166, 0.005577902775257826, 0.023030053824186325, 0.007856295444071293, -0.026329563930630684, 0.006722087971866131, 0.008435039781033993, -0.019052013754844666, 0.0005808236892335117, 0.0031614769250154495, 0.004204215481877327, 0.006356215104460716, 0.013091607950627804, 0.011468460783362389, -0.018107395619153976, -0.014794580638408661, -0.057156041264534, 0.031371962279081345, 0.01210042368620634, 0.0003750199975911528, 0.017734870314598083, -0.017269214615225792, 0.019903501495718956, 0.03874264284968376, 0.011668028309941292, 0.014062834903597832, -0.02638278156518936, 0.021460125222802162, -0.006213191896677017, -0.016018593683838844, -0.019171753898262978, -0.04100440442562103, 0.025371642783284187, 0.0012797246454283595, 0.021712910383939743, 0.00885413121432066, -0.0034292296040803194, 0.015552936121821404, 0.024067802354693413, 0.01765504479408264, -0.02130047045648098, 0.0012406427413225174, -0.05577237531542778, 0.0021320427767932415, -0.006635609082877636, -0.021832650527358055, -0.007124548777937889, -0.021366992965340614, -0.008461648598313332, 0.02475963532924652, 0.00844834465533495, -0.010676844976842403, -0.00498252734541893, 0.012832170352339745, -0.026116693392395973, 0.009206699207425117, -0.045102182775735855, -0.016657207161188126, -0.0012980182655155659, 0.005105593707412481, -0.017801392823457718, 0.01745547726750374, -0.013716918416321278, 0.014847799204289913, 0.026156606152653694, 0.013849962502717972, 0.0036121660377830267, 0.004210867453366518, 0.008115732111036777, -0.005840666592121124, -0.009173438884317875, -0.01838679052889347, 0.005750861018896103, -0.026608958840370178, -0.012087119743227959, -0.017854610458016396, 0.008914001286029816, -0.013969703577458858, 0.008514867164194584, 0.009645747020840645, 0.002669211244210601, -0.010769976302981377, -0.007803076878190041, -0.009047046303749084, 0.03656071051955223, -0.035948701202869415, -0.031584832817316055, 0.000373980583390221, -0.0070846350863575935, 0.008867435157299042, 0.0218193456530571, -0.011601505801081657, -0.006944938097149134, -0.01851983554661274, -0.005611164029687643, 0.024626590311527252, 0.01766834780573845, 0.0020389114506542683, -0.012838822789490223, 0.010570408776402473, 0.02599695324897766, -0.0010360863525420427, -0.014581709168851376, -0.014728058129549026, 0.011608158238232136, 0.016071811318397522, -0.011495070531964302, -0.006565760355442762, 0.02330944687128067, 0.024733027443289757, 0.0019091927679255605, 0.01581902615725994, 0.004011300392448902, -0.023934757336974144, 0.013637091033160686, 0.0179610475897789, 0.011747854761779308, 0.008707781322300434, 0.01033092848956585, -0.0077432068064808846, 0.006342910695821047, -0.01813400536775589, -0.024174239486455917, -0.019956719130277634, 0.008807565085589886, 0.012220163829624653, -0.009758835658431053, 0.013903181068599224, 0.0024596655275672674, 0.03916838765144348, 0.011641419492661953, 0.012719081714749336, 0.0019474431173875928, -0.01022449228912592, -0.010264405980706215, 0.024786245077848434, 0.007876251824200153, 0.008022600784897804, 0.017947742715477943, -0.0070846350863575935, 0.009020436555147171, 0.02284379117190838, 0.012692472897469997, 0.0028105713427066803, -0.0007151157478801906, -0.03480451926589012, 0.01172124594449997, -0.019278191030025482, -0.025637730956077576, -0.006126712542027235, -0.004237476736307144, 0.000539662956725806, -0.0026359499897807837, 0.03711949661374092, -0.02622312866151333, 0.045660972595214844, 0.010769976302981377, 0.005202051252126694, 0.012632602825760841, -0.01903870888054371, 0.01564606837928295, 0.022058825939893723, -0.002926985500380397, -0.031105872243642807, -0.03868942707777023, 0.009718921966850758, -0.007723250426352024, 0.01408944372087717, -0.029562553390860558, -0.03613496571779251, -0.022351525723934174, 0.0043206294067204, 0.01962410658597946, -0.0124064264819026, -0.006918329279869795, 0.023801714181900024, 0.0036321228835731745, 0.003178107552230358, 0.01817391812801361, -0.011122544296085835, -0.002946942113339901, 0.00037356483517214656, -0.005421575158834457, -0.0032562713604420424, -0.014488577842712402, 0.012559428811073303, 0.006136691197752953, -0.02344249188899994, 0.005488097667694092, 0.012140337377786636, -0.001214033691212535, 0.002843832364305854, 0.0081090796738863, 0.026236433535814285, 0.000413478264817968, -0.008528171107172966, 0.019823674112558365, -0.019477756693959236, -0.017521999776363373, 0.007410594727844, -0.011049370281398296, -0.0037651676684617996, -0.00443704379722476, -0.0420953705906868]}, {"created_time": 1695692076.5042686, "accessed_time": 1695692076.5042686, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009662246331572533, -0.009339293465018272, 0.00028979324270039797, -0.007137935142964125, -0.0022326644975692034, 0.021749941632151604, 0.014776778407394886, 0.0005021435208618641, 0.004567487630993128, -0.05048622936010361, 0.005150781478732824, 0.014816323295235634, -0.003135616658255458, -0.01768995262682438, -0.005384758114814758, 0.012713829055428505, 0.02435993403196335, 0.012437012046575546, 0.012562238611280918, -0.047322601079940796, -0.016701318323612213, 0.011692240834236145, 0.008067251183092594, -0.005246349610388279, -0.00024674649466760457, -0.0055693029426038265, 0.023252664133906364, -0.020405398681759834, 0.01699131727218628, -0.007006117608398199, 0.012845647521317005, -0.012911556288599968, -0.016582682728767395, -0.015844503417611122, -0.013366327621042728, -0.027602652087807655, 0.006277823820710182, 0.008996566757559776, -0.0013717293040826917, -0.022171758115291595, 0.020761307328939438, -0.0062086195684969425, 0.004116011783480644, -0.009095430374145508, -0.02677220106124878, 0.016411319375038147, -0.03321809321641922, -0.01107269711792469, -0.03461536020040512, -0.0015208481345325708, 0.001301701064221561, 0.005826347973197699, 2.4471259166602977e-05, 0.0010009916732087731, -0.027813561260700226, 0.012041558511555195, 0.0032015254255384207, 0.03327082097530365, 0.012799510732293129, -0.023832663893699646, -0.01112542487680912, 0.020339490845799446, -0.02305493876338005, -0.011975649744272232, -0.0015093141701072454, -0.015870865434408188, -0.000992752960883081, -0.005793393589556217, -0.02439947985112667, 0.02939537540078163, 0.014289052225649357, 0.018507223576307297, 0.013946326449513435, 0.004063284490257502, 0.02322630025446415, -0.010453153401613235, -0.008409976959228516, 0.001886642654426396, -0.008680203929543495, -0.0019607902504503727, 0.0035162405110895634, -0.0162399560213089, -0.01083542499691248, 0.013227919116616249, 0.01568632200360298, -0.0012242580996826291, -0.020655853673815727, 0.03052900917828083, -0.021407214924693108, -0.0016040581976994872, 0.023674482479691505, 0.0008642306202091277, -0.002203005366027355, 0.016094956547021866, 0.02069539949297905, 0.02741810865700245, -0.012614966370165348, 0.050881680101156235, 0.00658759567886591, -0.011665877886116505, -0.018243586644530296, 0.012984056025743484, -0.03725171834230423, 0.003924875985831022, -0.02048449032008648, -0.012318375520408154, -0.017452679574489594, -0.02225084975361824, 0.013313600793480873, -0.03809535130858421, -0.018744494765996933, 0.011613150127232075, 0.019060857594013214, -0.0076783886179327965, -0.021960850805044174, -0.011105651967227459, 0.001684796647168696, -0.02321312017738819, -0.012509511783719063, -0.0008864749106578529, -0.0012011899380013347, 0.02387220785021782, 0.03258536756038666, 0.013069737702608109, -0.007922251708805561, -0.013985871337354183, -0.015053595416247845, 0.011646104976534843, -0.00031492102425545454, 0.004824532661587, 0.010987015441060066, -0.005671462044119835, 0.02656129188835621, -0.02338448166847229, -0.00023562436399515718, 0.032980822026729584, -0.030871735885739326, 0.015488594770431519, 0.0002788770943880081, -0.026113111525774002, -0.01539632212370634, 0.025612203404307365, -0.01274019293487072, -0.0028291400521993637, -0.023951299488544464, 0.02165766805410385, 0.023661300539970398, 0.019219039008021355, -0.002997207920998335, 0.006027370225638151, 0.01896858587861061, -0.02128857932984829, 0.005243054125458002, -0.014842687174677849, 0.054098036140203476, 0.011712013743817806, -0.0023891981691122055, 0.005694529972970486, -0.021789487451314926, -0.0021502783056348562, 0.011850422248244286, 0.004920100327581167, 0.03559081256389618, -0.011487923562526703, -0.02305493876338005, 0.022158576175570488, 0.0019805629272013903, -0.0016938591143116355, -0.002010221825912595, -0.005796689074486494, 0.008884521201252937, -0.00041007701656781137, -0.028894467279314995, 0.02907901257276535, -0.0016155922785401344, 0.0031405596528202295, 0.004936577752232552, 0.005009077489376068, -0.012720420025289059, -0.021090852096676826, -0.017334043979644775, 0.015870865434408188, 0.02176312357187271, -0.0022079485934227705, -0.0010504232486709952, -0.01083542499691248, 0.004583965055644512, -0.006030665710568428, 0.006913844961673021, -0.012806101702153683, 0.012799510732293129, 0.025519931688904762, -0.011942694894969463, -0.00886474922299385, -0.6711109280586243, -0.00417862506583333, 0.00183062010910362, -0.024847660213708878, -0.0035426041577011347, 0.031109007075428963, 0.004438965115696192, 0.012357921339571476, -0.011211106553673744, 0.011178151704370975, -0.007816797122359276, 0.022606756538152695, -0.014737232588231564, 0.019851764664053917, 0.007671797648072243, -0.011804286390542984, 0.009899518452584743, 0.0090822484344244, 0.017663588747382164, 0.011995422653853893, -0.02441266179084778, 0.02870992198586464, -0.014658141881227493, 0.007441116496920586, 0.02247493900358677, -0.01368269044905901, 0.02451811544597149, -0.028683559969067574, -0.003624990116804838, 0.013801326043903828, -0.01821722276508808, 0.03522172197699547, 0.008680203929543495, 0.017004499211907387, 0.051039863377809525, 0.0016501944046467543, -0.0276817437261343, 0.0389389842748642, 0.01709677278995514, 0.03472081571817398, -0.043183520436286926, -0.03514263406395912, 0.016859499737620354, -0.005381462629884481, -0.004933282267302275, 0.003944648429751396, 0.025823112577199936, -0.011277015320956707, 0.012792919762432575, 0.0030103896278887987, 0.010802471078932285, 0.03429899737238884, -0.014974504709243774, -0.00593839306384325, -0.01024224516004324, 0.006169074214994907, 0.016543136909604073, -0.005875779781490564, -0.002081073820590973, 0.0029659010469913483, 0.005187031347304583, 0.0024040276184678078, -0.007849751971662045, -0.02424129843711853, -0.040283527225255966, 0.012496329843997955, -0.02661401964724064, -0.009846791625022888, -0.0014977800892665982, 0.008317705243825912, 0.003437149804085493, 0.026482202112674713, -0.0014977800892665982, 0.011270424351096153, 0.021275397390127182, 0.025493567809462547, 0.0077377064153552055, 0.020550400018692017, -0.0018734608311206102, -0.004185216035693884, 0.022501302883028984, -0.01779540628194809, -0.014526324346661568, -0.009879746474325657, 0.03226900473237038, -0.014579051174223423, -0.015844503417611122, -0.012891783379018307, -0.006788617931306362, -0.0185994952917099, 0.011593378148972988, 0.009181112051010132, 0.00929974764585495, 0.001156701473519206, -0.01376178115606308, 0.015725865960121155, -0.030819008126854897, 0.009424974210560322, 0.015132686123251915, -0.02548038586974144, 0.004791577812284231, -0.025282658636569977, 0.024491751566529274, 0.009174521081149578, 0.016516773030161858, -0.0014911891194060445, 0.0134915541857481, 0.044053517282009125, 0.01751858927309513, -0.015778593719005585, 0.01753177121281624, -0.00036600042949430645, -0.008989975787699223, -0.008456113748252392, -0.02536175027489662, -0.02246175706386566, -0.008073842152953148, -0.0005445724236778915, -0.000954031536821276, -0.05293804034590721, 0.01688586361706257, 0.00732248043641448, 0.00841656792908907, 0.028894467279314995, -0.006478846073150635, 0.0124436030164361, 0.0066337320022284985, -0.012555647641420364, -0.007717933971434832, -0.008660431019961834, 0.007368616294115782, -0.003000503173097968, -0.008330886252224445, -0.0068479361943900585, 0.02343720942735672, 0.002273857593536377, 0.008693385869264603, -0.038833532482385635, 0.01977267488837242, -0.012489738874137402, -0.025783566758036613, 0.0005721717607229948, 0.007012708578258753, -0.008403385989367962, 0.014948141761124134, -0.028077196329832077, -0.0020596536342054605, -0.009214065968990326, -0.025019023567438126, -0.010677243582904339, -0.01112542487680912, -0.013359736651182175, -0.016688136383891106, -0.0023990843910723925, -0.003631581086665392, -0.00804088730365038, -0.015739047899842262, 0.015119505114853382, -0.005219985730946064, 0.006043847184628248, -0.0007744297035969794, 0.03337627276778221, -0.025058569386601448, 0.023292209953069687, -0.01123087853193283, -0.015554503537714481, 0.023845843970775604, 0.039202623069286346, -0.008126568980515003, -0.044000789523124695, 0.0032229458447545767, -0.04041534662246704, -0.02805083431303501, 0.011000197380781174, 0.016899045556783676, 0.02511129528284073, -0.00887133926153183, -0.007889296859502792, 0.01650359109044075, 0.009424974210560322, 0.006258051376789808, -0.02090630680322647, -0.01316860131919384, 0.010393835604190826, 0.01828313246369362, -0.01660904660820961, 0.008027705363929272, 0.013234510086476803, -0.020734943449497223, 0.016595864668488503, 0.014776778407394886, -0.005348508246243, 0.03342900052666664, -0.006198733113706112, -0.005506689660251141, -0.00018300021474715322, 0.012964283116161823, 0.009240429848432541, -0.009240429848432541, -0.005098054651170969, 0.02773447148501873, -0.004102829843759537, -0.001343717915005982, -0.009602928534150124, 0.02403038926422596, -0.01443405169993639, 0.014381324872374535, -0.028209015727043152, 0.03295445814728737, -0.0008374551543965936, -0.016411319375038147, -0.017281316220760345, -0.0023826071992516518, -0.00873293075710535, -0.003536013187840581, 0.016319047659635544, -0.0057868026196956635, 0.02247493900358677, 0.005111236125230789, -0.01099360641092062, -0.0059746429324150085, 0.0020942557603120804, 0.015106323175132275, 0.0031899914611130953, -0.003713967278599739, 0.012160194106400013, 0.0027533448301255703, -0.008192477747797966, -0.0002249141689389944, -0.013148828409612179, -0.013300418853759766, -0.004814646206796169, 0.020299945026636124, 0.026798564940690994, 0.01258201152086258, -0.026113111525774002, 0.01966721937060356, -0.017030863091349602, 0.02736538089811802, -0.003997375722974539, -0.01823040470480919, 0.01316860131919384, 0.034483544528484344, -0.01005110889673233, -0.005707711912691593, -0.007909069769084454, 0.021328125149011612, 0.007612479384988546, -0.006202028598636389, 0.02944810315966606, 0.016543136909604073, 0.0037469216622412205, 0.0006866884650662541, 0.0015224958769977093, 0.01024224516004324, -0.0036052174400538206, 0.01500086858868599, -0.0018174382857978344, 0.0361444465816021, 0.04821896180510521, 0.016859499737620354, 0.008798839524388313, 0.011329742148518562, 0.0021090852096676826, -0.011290197260677814, 0.002511129481717944, 0.021525850519537926, -0.008535204455256462, -0.004320329055190086, -0.008370432071387768, -0.01293132919818163, -0.014209961518645287, 0.003816126147285104, -0.009022930637001991, 0.018190860748291016, 0.019482674077153206, -0.008673612959682941, 0.014855869114398956, 0.004013852681964636, -0.0020991989877074957, -0.026917200535535812, -0.024307208135724068, 0.005747257266193628, 0.018256768584251404, -0.010637698695063591, 0.009840200655162334, -0.017492225393652916, 0.006169074214994907, 0.003618399379774928, -0.02317357435822487, 0.014381324872374535, 0.017136316746473312, -0.020827217027544975, 0.00900315772742033, -0.009662246331572533, 0.002184880431741476, 0.03553808480501175, -0.012562238611280918, 0.028736285865306854, -0.03250627592206001, -0.0031652755569666624, -0.017017681151628494, -0.015119505114853382, -0.020774489268660545, 0.010387244634330273, 0.013030191883444786, -0.0031438551377505064, -0.02305493876338005, -0.0021123806945979595, -0.015027232468128204, -0.014737232588231564, -0.009444747120141983, 0.01688586361706257, 0.009411793202161789, -0.0015908763743937016, 0.0027615835424512625, 0.008311114273965359, -0.008225432597100735, 0.027813561260700226, 0.007665206678211689, -0.0054902127012610435, -0.01432859804481268, -0.025177204981446266, 0.01622677408158779, 0.11652696132659912, 0.02256721258163452, 0.0005004958366043866, 0.018428131937980652, 0.030080828815698624, -0.013208146207034588, -0.01274019293487072, 0.0006912197568453848, 0.014170416630804539, 0.00490362336859107, 0.0285517405718565, -0.023094482719898224, -0.001962437992915511, -0.030950825661420822, 0.0248872060328722, -0.015580867417156696, -0.0244522076100111, -0.01784813404083252, 0.007157708052545786, -0.025071751326322556, 0.0033531158696860075, 0.002997207920998335, -0.015132686123251915, -0.004518055822700262, -0.015290867537260056, -0.013399282470345497, 0.02236948534846306, 0.03000173717737198, 0.015580867417156696, -0.010743153281509876, 0.005678053013980389, -0.00091531005455181, 0.008818612433969975, -0.0008675260469317436, 0.0077377064153552055, 0.0010174688650295138, -0.010281790047883987, 0.003974307328462601, 0.0130104199051857, 0.002778060734272003, 0.011408832855522633, 0.013880416750907898, 0.018731312826275826, -0.023990845307707787, 0.02590220235288143, 0.004356579389423132, 0.010604743845760822, 0.03424626961350441, -0.011441787704825401, 0.003760103601962328, 0.040837161242961884, 0.01608177460730076, 0.01950903795659542, -0.017334043979644775, 0.022224485874176025, 0.014908595941960812, 0.0035096495412290096, 0.0010553664760664105, -0.012562238611280918, 0.009840200655162334, 0.00571100739762187, -0.0010298268171027303, 0.0002751697029452771, -0.012733601965010166, 0.006861117668449879, -0.019113585352897644, -0.037541717290878296, 0.004366465378552675, -0.028182651847600937, -0.014170416630804539, -0.004676237236708403, -0.013260873034596443, -0.018559949472546577, -0.01045974437147379, 0.028393559157848358, 0.024649932980537415, 0.006768845487385988, -0.010268609039485455, 0.006788617931306362, 0.0019031198462471366, -0.009016339667141438, -0.024069935083389282, -0.00031018382287584245, 0.006521686911582947, -0.011685649864375591, 0.012667693197727203, -0.005951575003564358, 0.002799481153488159, -0.02242221310734749, 0.012687466107308865, 0.0036579447332769632, 0.021565396338701248, 0.018691767007112503, -0.005533053074032068, -0.006808390840888023, 0.011520878411829472, 0.003994080238044262, 0.026297656819224358, -0.01983858272433281, 0.011277015320956707, 0.025836294516921043, -0.02300221100449562, 0.01128360629081726, -0.014842687174677849, -0.008456113748252392, -0.01569950394332409, 0.015567685477435589, -0.009919291362166405, -0.014025417156517506, 0.004399419762194157, 0.013814507983624935, 0.005180440377444029, 0.006861117668449879, -0.00937883835285902, -0.010314744897186756, 0.023028574883937836, 0.017004499211907387, 0.008772476576268673, 0.0011262185871601105, -0.025981293991208076, -0.0004137844080105424, -0.031741730868816376, 0.020603125914931297, -0.004864078015089035, -0.01220633089542389, 0.019047675654292107, -0.007137935142964125, -0.03880716860294342, 0.0006920435698702931, -0.004086352419108152, 0.012087694369256496, 0.0007880234625190496, -0.018138132989406586, -0.016543136909604073, -0.011942694894969463, -0.017940405756235123, -0.00329874106682837, 0.00716429902240634, 0.004145670682191849, -0.009484292939305305, -0.018573131412267685, 0.0022326644975692034, -0.007632252294570208, -0.024333570152521133, -0.008897703140974045, -0.024742206558585167, 0.0023859026841819286, -0.013959507457911968, -0.020009946078062057, 0.04046807438135147, 0.013109282590448856, -0.011250651441514492, 0.0007324127946048975, 0.010380653664469719, -0.033191729336977005, -0.024966295808553696, -0.02778719738125801, 0.01671450026333332, 0.0410480722784996, 0.0330071821808815, 0.04154897853732109, -0.0010907924734055996, 0.02321312017738819, -0.014447233639657497, -0.002334823366254568, -0.001379967899993062, 0.006630436517298222, -0.014789960347115993, -0.03124082460999489, 0.027708107605576515, 0.02907901257276535, 0.009332702495157719, 0.0050848727114498615, 0.012535875663161278, -0.02242221310734749, -0.0049135093577206135, -0.010611334815621376, -0.003855671500787139, 0.001003463170491159, -0.026798564940690994, -0.004794873297214508, 0.008515431545674801, -0.00599441584199667, 0.006940208375453949, 0.004349988419562578, -0.01384087186306715, 0.036856263875961304, 0.006215210538357496, 0.010519062168896198, -0.011224287562072277, 0.021380851045250893, -0.010868379846215248, 0.01608177460730076, 0.006600777618587017, -0.03026537224650383, -0.021262215450406075, -0.013280645944178104, -0.0030235713347792625, 0.006834754254668951, -0.019640855491161346, -0.016055410727858543, 0.0102620180696249, 0.0010949118295684457, -0.012423830106854439, -0.014539506286382675, 0.006396459881216288, -0.021644487977027893, -0.0031125484965741634, 0.014315416105091572, -0.014236325398087502, -0.002586924936622381, -0.015501776710152626, -0.00949088390916586, -0.0293426476418972, 0.01338610053062439, 0.02037903666496277, -0.014078143984079361, 0.020352672785520554, -0.005444076377898455, -0.023318573832511902, -0.02193448692560196, -0.006416232790797949, 0.0146713238209486, -0.0051277135498821735, 0.028472650796175003, -0.0013601952232420444, -0.01602904684841633, -0.006310778670012951, 0.053992580622434616, 0.0128786014392972, 0.0008082080748863518, -0.0032295368146151304, 0.018138132989406586, 0.008884521201252937, -0.017610860988497734, -0.0007888473337516189, 0.015066777355968952, -0.02176312357187271, -0.024214934557676315, 0.024149026721715927, 0.0218290314078331, 0.024214934557676315, -0.01622677408158779, -0.01236451230943203, 0.005935097578912973, 0.006465664599090815, -0.023265846073627472, -0.003862262237817049, 0.0033597068395465612, -0.012937919236719608, -0.04078443720936775, 0.007836570031940937, 0.002319993684068322, 0.02504538744688034, -0.02198721282184124, -0.0005243878113105893, -0.013438827358186245, -0.01391996257007122, 0.0102620180696249, 0.01179769542068243, -0.017426317557692528, 0.021578578278422356, 0.0045773740857839584, -0.0012209626147523522, -0.02586265839636326, 0.006538164336234331, 0.0060636200942099094, -0.01805904135107994, -0.028578104451298714, 0.018639041110873222, 0.018942221999168396, -0.0014096269151195884, -0.00902952067553997, 0.0128786014392972, 0.00862747710198164, -9.841282007982954e-06, -0.0038391943089663982, -0.024966295808553696, 0.008324295282363892, -0.016543136909604073, 0.011626332066953182, -0.007764069829136133, -0.012430421076714993, -0.009181112051010132, 0.000992752960883081, -0.011415423825383186, -0.01289837434887886, -0.023938117548823357, 0.014869051054120064, -0.0018240291392430663, -0.04911532253026962, -0.016543136909604073, 0.004498283378779888, 0.003974307328462601, -0.004046807065606117, 0.0032723776530474424, -0.005493507720530033, 0.023661300539970398, -0.03348172828555107, 0.02080085314810276, -0.03564354032278061, 0.009036111645400524, -0.020708581432700157, -0.0014211609959602356, -0.006577709689736366, -0.004053398035466671, 0.013082919642329216, -0.008884521201252937, -0.05032804608345032, -0.028472650796175003, 0.012259057722985744, -0.008779067546129227, -0.01875767670571804, -0.013722235336899757, 0.012779737822711468, 0.016912227496504784, 0.010136790573596954, -0.018678586930036545, -0.019271766766905785, 0.02188175916671753, -0.020444944500923157, 0.013709054328501225, 0.01828313246369362, -0.01634540967643261, -0.013893598690629005, 0.02037903666496277, 0.019100403413176537, 0.016200410202145576, -0.04004625603556633, -0.0051903268322348595, 0.0035491948947310448, 0.023424027487635612, -0.015712684020400047, -0.015528139658272266, -0.011006788350641727, 0.007731115445494652, -0.009392020292580128, 0.007777251768857241, 0.0008180944132618606, 0.027286289259791374, -0.005842824932187796, -0.0035195359960198402, 0.019601311534643173, 0.0017976656090468168, -0.013827689923346043, 0.0177294984459877, -0.016160866245627403, 0.023358119651675224, -0.0009128384408541024, -0.024636751040816307, 0.0024254480376839638, 0.01099360641092062, -0.02563856728374958, -0.04057352617383003, -0.009121793322265148, 0.010650880634784698, -0.016213592141866684, -0.024162206798791885, -0.0036908991169184446, -0.0018421540735289454, -0.004597146529704332, -0.01629268378019333, -0.0046366918832063675, 0.0324799120426178, -0.016371773555874825, 0.012074513360857964, -0.02155221439898014, -0.014882232993841171, -0.010828834027051926, -0.018849948421120644, -0.006297596730291843, -0.0029362421482801437, -0.015356777235865593, -0.008080433122813702, -0.011507696472108364, -0.004494987893849611, -0.004933282267302275, 0.0021716987248510122, -0.012021785601973534, 0.0018520404119044542, -0.014882232993841171, 0.010769516229629517, 0.017927223816514015, -0.009286565706133842, 0.031847186386585236, 0.004175329580903053, -0.015725865960121155, 0.0029345944058150053, 0.0015562742482870817, -0.006722709164023399, -0.037436261773109436, 0.023358119651675224, 0.0013997405767440796, 0.0013420702889561653, -0.012872010469436646, -0.01360359974205494, -0.0015060186851769686, -0.010894743725657463, 0.005299076437950134, -0.0015274391043931246, -0.023779936134815216, 0.001613944536074996, 0.01956176571547985, -0.0021156761795282364, 0.01762404292821884, 0.013260873034596443, -0.017175862565636635, -0.00179437012411654, 0.005767029710114002, -0.022672666236758232, 0.009523837827146053, -0.005325440317392349, 0.009009748697280884, -0.012502920813858509, 0.0058889612555503845, -0.000675978313665837, -0.013748599216341972, -0.0060800970532000065, 0.003522831480950117, -0.025309022516012192, -0.009233838878571987, 0.003102662041783333, -0.006099869962781668, -0.024122662842273712, -0.001496956218034029, -0.01999676413834095, -0.004933282267302275, 0.002366130007430911, -0.024874024093151093, 0.0017334044678136706, -0.016464047133922577, -0.014368142932653427, -0.014394506812095642, 0.009134975261986256, -0.009695201180875301, 0.020036309957504272, 0.23094482719898224, -0.005196917802095413, -0.0026330610271543264, 0.03751535341143608, -0.00026137003442272544, 0.015949957072734833, 0.034008998423814774, 0.004106125328689814, -0.0018784040585160255, -0.008034296333789825, -0.02047130838036537, -0.01163951400667429, -0.022672666236758232, 0.010347699746489525, -0.000670623208861798, -0.0006409641937352717, -0.013959507457911968, -0.021525850519537926, -0.0011303378269076347, -0.02354266308248043, 0.029316283762454987, 0.01324769202619791, -0.0007863757200539112, -0.014948141761124134, 0.027497198432683945, 0.010156563483178616, -0.004442260600626469, 0.0029840259812772274, -0.006992935668677092, 0.0024452207144349813, -0.008568158373236656, 0.01118474267423153, 0.016964953392744064, -0.010031336918473244, 0.011652695946395397, 0.007302707526832819, 0.008238614536821842, -0.009721565060317516, 0.021921304985880852, 0.014223143458366394, -0.002820901572704315, 0.012990646995604038, -0.001886642654426396, 0.010736562311649323, -0.02305493876338005, 0.027971742674708366, -0.01763722486793995, -0.01179769542068243, -0.014223143458366394, 0.003400899935513735, -0.011784513480961323, -0.0090822484344244, -0.011758150532841682, 0.020616307854652405, -0.008363841101527214, 0.00782338809221983, 0.0001672438665991649, -0.0017993133515119553, 0.020945852622389793, 0.008930657990276814, -0.009266792796552181, 0.01228542160242796, -0.019166311249136925, 0.024439025670289993, -0.024808114394545555, 0.012753374874591827, -0.019060857594013214, -0.017294498160481453, -0.006113051902502775, -0.01252269372344017, 0.012562238611280918, 0.02783992514014244, 0.008699976839125156, 0.013880416750907898, -0.019311310723423958, -0.013445418328046799, 0.01741313561797142, -0.017241772264242172, 0.01432859804481268, 0.01912676729261875, -0.007170889992266893, 0.021855395287275314, -0.005312258377671242, -0.040125347673892975, -0.012773147784173489, -0.038886260241270065, 0.011896559037268162, 0.002608345355838537, 0.014078143984079361, 0.005107940640300512, 0.008673612959682941, -0.010420199483633041, 0.011092470027506351, 0.004557601176202297, -0.001078434637747705, 0.02939537540078163, -0.020062673836946487, 0.02348993718624115, -0.00782338809221983, -0.0025852771941572428, -0.03124082460999489, -0.02773447148501873, 0.008535204455256462, -0.008311114273965359, -0.012733601965010166, 0.015554503537714481, 0.02913174033164978, 0.022171758115291595, -0.009932473301887512, -0.030555373057723045, -0.011731786653399467, -0.028736285865306854, -0.003634876571595669, 0.0011402241652831435, 0.011995422653853893, 0.0034470362588763237, 0.005394644569605589, -0.011626332066953182, -0.02144676074385643, 0.007994751445949078, 0.0024106185883283615, -0.0335344560444355, -0.009761109948158264, 0.010769516229629517, 0.006646913941949606, -0.00019772673840634525, -0.01977267488837242, 0.023793118074536324, -0.0022903347853571177, -0.02493993192911148, 0.01919267512857914, -0.01120451558381319, 0.011725195683538914, -0.007711343001574278, -0.0024666411336511374, 0.0152381407096982, 0.00881202146410942, 0.010611334815621376, -0.013854053802788258, -0.003216354874894023, 0.02736538089811802, -0.019851764664053917, -0.006284414790570736, -0.00881202146410942, 0.011863604187965393, -0.003522831480950117, -0.007355434820055962, 0.0058724842965602875, -0.024663114920258522, -0.015844503417611122, -0.02219812199473381, 0.009609519504010677, 0.008238614536821842, -0.021354487165808678, 0.007856342010200024, -0.019917674362659454, -0.04202352464199066, -0.014064962044358253, 0.02715447172522545, -0.004346692934632301, -0.019324492663145065, -0.013577235862612724, 0.016253137961030006, -0.004583965055644512, 0.00615259725600481, -0.0018751085735857487, -0.1690431833267212, 0.019219039008021355, -0.0019014721037819982, -0.030766280367970467, 0.005793393589556217, 0.006376687437295914, 0.008133159950375557, -0.003997375722974539, -0.03348172828555107, -0.0010627812007442117, 0.011725195683538914, 0.00256056129001081, -0.02074812538921833, 0.02380630001425743, 0.0046202149242162704, 0.0017894270131364465, -0.02258039452135563, 0.003277320647612214, 0.008746112696826458, 0.008963611908257008, 0.027049018070101738, 0.006679868325591087, 0.0021799372043460608, -0.01472405157983303, 0.013695872388780117, 0.008607704192399979, -0.009576564654707909, 0.00835725013166666, 0.006600777618587017, -0.018678586930036545, -0.024808114394545555, 0.0030795938801020384, -0.006992935668677092, 0.0012918147258460522, 0.03037082776427269, 0.014552688226103783, -0.013372918590903282, -0.007045662961900234, 0.009583155624568462, 0.022382667288184166, -0.0075663430616259575, 0.02364811860024929, -0.009424974210560322, 0.020405398681759834, -0.014737232588231564, 0.025440840050578117, 0.03590717539191246, 0.0012151956325396895, -0.020879942923784256, 0.0034338543191552162, -0.018309496343135834, -0.04210261255502701, 0.007803615182638168, 0.01645086519420147, -0.00455430569127202, 0.011975649744272232, -0.02467629685997963, 0.01968040131032467, -0.011197924613952637, -0.028525378555059433, 0.000546220107935369, -0.022712212055921555, -0.0015760469250380993, -0.011903150007128716, -0.0030532304663211107, 0.009418383240699768, -0.01456587016582489, -0.019983582198619843, -0.018994947895407677, 0.012667693197727203, -0.01907403953373432, -0.017821770161390305, 0.006577709689736366, -0.0020514149218797684, 0.00953701976686716, 0.022725393995642662, 0.0004621862608473748, 0.01639813743531704, -0.013801326043903828, -0.026244929060339928, -0.010037927888333797, 0.03740989789366722, -0.0248872060328722, -0.02783992514014244, 0.0014195132534950972, -0.008344068191945553, -0.006475550588220358, 0.0028291400521993637, 0.01795358769595623, -0.015844503417611122, 0.015554503537714481, -0.03870171308517456, -0.03176809474825859, -0.047217145562171936, 0.004244533833116293, 0.012812692672014236, 0.022857211530208588, -0.008442931808531284, -0.005615439265966415, -0.014064962044358253, -0.024860842153429985, -0.0229626651853323, -0.014223143458366394, 0.010644289664924145, 0.025770384818315506, 0.010064290836453438, 0.022329939529299736, 0.013735417276620865, 0.031003553420305252, -0.023621754720807076, 0.0023710732348263264, 0.004752032458782196, 0.014948141761124134, 0.003033457789570093, 0.011593378148972988, 0.04041534662246704, 0.0035590813495218754, -0.018520405516028404, 0.023938117548823357, -0.008660431019961834, 0.03762080892920494, -0.011059516109526157, -0.013748599216341972, 0.0049398732371628284, 0.00032357158488593996, 0.02799810655415058, -0.10487426072359085, -0.01104633416980505, 0.0010701959254220128, 0.013695872388780117, -0.012087694369256496, 0.015620412304997444, -0.018678586930036545, 0.005523167084902525, -0.004284079186618328, 0.020669035613536835, -0.004844305105507374, -0.007197253406047821, 0.0006038903957232833, -0.015488594770431519, 0.01741313561797142, -0.011250651441514492, 0.0022392552345991135, -0.029553556814789772, -0.013656326569616795, 0.0202603992074728, -0.019060857594013214, -0.007507025264203548, -0.02586265839636326, -0.006119642406702042, 0.011547241359949112, 0.002291982527822256, -0.02101176232099533, 0.02429402619600296, 0.020721761509776115, 0.015739047899842262, -0.01346519123762846, -0.007210434880107641, 0.020616307854652405, -0.03601263090968132, -0.0001235792151419446, 0.005981233902275562, 0.006178960669785738, -0.004514760337769985, 0.007961796596646309, 0.0012127240188419819, -0.007909069769084454, -0.019482674077153206, 0.007217025849968195, -0.00527930399402976, 0.008179295808076859, -0.008686794899404049, -0.02240903116762638, 0.0077574788592755795, -0.010229063220322132, -0.0023990843910723925, -0.012707238085567951, 0.029052648693323135, -0.021842213347554207, -0.007909069769084454, 0.004676237236708403, -0.010973834432661533, 0.02773447148501873, 0.015251322649419308, 0.004814646206796169, -0.0009548554080538452, 0.013478373177349567, -0.008054069243371487, -0.01966721937060356, 0.024149026721715927, 0.0016180637758225203, -0.009635883383452892, -0.0007439468754455447, 0.0005470439791679382, 0.0072895255871117115, -0.003142207395285368, 0.02731265313923359, 0.026297656819224358, -0.013096100650727749, 0.025875838473439217, -0.02074812538921833, 0.011916331946849823, -0.028156287968158722, -0.00680179987102747, 0.010874970816075802, -0.04123261570930481, -0.006900663021951914, -0.019864946603775024, 0.014262689277529716, -0.03253263980150223, 0.015488594770431519, 0.0023183459416031837, -0.0005495155928656459, 0.027233563363552094, 0.016529954969882965, -0.011830650269985199, 0.01758449897170067, 0.029553556814789772, 0.014737232588231564, -0.019495856016874313, 0.009062475524842739, 0.024267662316560745, -0.03933443874120712, 0.012087694369256496, 0.01225246675312519, -0.008647249080240726, -0.020682217553257942, -0.009207474999129772, -0.039861708879470825, 0.02902628481388092, 0.015462230890989304, 0.007427934557199478, 0.007671797648072243, -0.02198721282184124, -0.00988633744418621, -0.0027286289259791374, -0.006271233316510916, 0.003107605269178748, -0.012575420551002026, 0.04202352464199066, 0.013227919116616249, 0.026482202112674713, -0.00943815615028143, -0.009761109948158264, 0.007579525001347065, 0.00819906871765852, 0.0037436261773109436, 0.011646104976534843, -0.0054902127012610435, 0.0016370125813409686, -0.00047372031258419156, 0.022343121469020844, 0.002313402947038412, 0.01971994712948799, -0.01293132919818163, 0.030080828815698624, -0.011441787704825401, 0.0009532076655887067, -0.01443405169993639, -0.019429948180913925, -0.012727010995149612, 0.03416718170046806, 0.010657471604645252, -0.007876114919781685, -0.011336333118379116, 0.009187702089548111, 0.021591760218143463, -0.009879746474325657, -0.016648590564727783, -0.027813561260700226, -0.004297261126339436, -0.005038736388087273, -0.00725657120347023, 0.006429414264857769, 0.0031224347185343504, 0.0033465251326560974, 0.010281790047883987, -0.016437683254480362, 0.007559752557426691, 0.02107767015695572, 0.01865222305059433, -0.009273383766412735, 0.003858966985717416, -0.0038194216322153807, 0.0038853303994983435, -0.007190662436187267, -0.018797222524881363, -0.03253263980150223, 0.01832267828285694, 0.0053781671449542046, 0.02219812199473381, 0.021380851045250893, 0.012608375400304794, -0.019179493188858032, 0.006814981810748577, 0.011725195683538914, 0.03026537224650383, -0.04397442564368248, -0.0045773740857839584, -0.006396459881216288, 0.010710198432207108, -0.02762901596724987, 0.021156761795282364, 0.012845647521317005, -0.01826995052397251, -0.013043373823165894, 0.004438965115696192, 0.026192201301455498, 0.029316283762454987, 0.003865557722747326, -0.02644265629351139, 0.025730838999152184, 0.025388114154338837, 0.029764465987682343, -0.007942023687064648, -0.006014188285917044, 0.006640322972089052, -0.010097245685756207, -0.004046807065606117, 0.006205324083566666, 0.012430421076714993, -0.00900315772742033, 0.02387220785021782, 0.025928566232323647, 0.013893598690629005, 0.010710198432207108, 0.025770384818315506, -0.00366124021820724, 0.005832938943058252, 0.01346519123762846, 0.0033168660011142492, -0.012021785601973534, -0.02193448692560196, 0.016253137961030006, -0.029316283762454987, -0.018454495817422867, -0.012318375520408154, 0.017281316220760345, 0.009253611788153648, 0.000622427323833108, 0.014315416105091572, 0.03398263454437256, -0.021143579855561256, 0.03503717854619026, 0.007269753143191338, -0.029052648693323135, -0.02472902461886406, 0.012496329843997955, 0.016635410487651825, 0.01639813743531704, 0.01303678285330534, 0.0061921426095068455, -0.002972492016851902, 0.015185413882136345, 0.021894941106438637, -0.006024074740707874, -0.006323960144072771, -0.012964283116161823, 0.010815653018653393, 0.0011163322487846017, -0.02516402304172516, -0.010413608513772488, -0.012278830632567406, 0.005628621205687523, 0.004076466429978609, 0.010037927888333797, -0.003344877390190959, 0.018942221999168396, -0.006452482659369707, -0.019271766766905785, 0.02731265313923359, 0.012074513360857964, 0.014908595941960812, 0.020062673836946487, 0.0020266990177333355, -0.013096100650727749, 0.008825203403830528, -0.011296787299215794, 0.0038853303994983435, 0.014539506286382675, -0.017268136143684387, -0.01500086858868599, 0.006010892800986767, 0.00042676020530052483, -0.006363505497574806, -0.015264504589140415, 0.0005721717607229948, 0.006406346336007118, 0.0012720420490950346, 0.011323151178658009, -0.009240429848432541, -0.03005446493625641, -0.005832938943058252, 0.003895216854289174, -0.017874497920274734, 0.00881202146410942, -0.029896283522248268, 0.007329070940613747, 0.01368269044905901, -0.01823040470480919, -0.012245875783264637, 0.03540626913309097, -0.006673277355730534, -0.019060857594013214, -0.0025424363557249308, 0.023094482719898224, 0.0008300403715111315, -0.03042355366051197, 0.02380630001425743, -0.004748736973851919, -0.007533388677984476, -0.0024073231033980846, -0.003822716884315014, -0.012074513360857964, -0.013893598690629005, -0.010077472776174545]}, {"created_time": 1695692077.5878398, "accessed_time": 1695692077.5878398, "description": "Helped Mrs. Moore carry groceries into her house.", "poignancy": 3, "embedding_key": [-0.009600561112165451, -0.009350168518722057, 0.0003185498353559524, -0.007083461154252291, -0.0021596320439130068, 0.021797291934490204, 0.0147863132879138, 0.0005885038408450782, 0.004536709748208523, -0.05047377943992615, 0.005116565153002739, 0.014825848862528801, -0.003057419555261731, -0.01768559031188488, -0.005478974897414446, 0.01263821218162775, 0.024367105215787888, 0.012480069883167744, 0.012611855752766132, -0.047310929745435715, -0.01685534231364727, 0.01168935839086771, 0.008078440092504025, -0.005235171876847744, -0.000329875125316903, -0.005610760301351547, 0.02324693091213703, -0.020360833033919334, 0.01697394996881485, -0.006964854430407286, 0.012796354480087757, -0.01293472945690155, -0.016591772437095642, -0.01578788086771965, -0.013363031670451164, -0.027622204273939133, 0.006312516983598471, 0.009020705707371235, -0.0013277371181175113, -0.02219264768064022, 0.020822081714868546, -0.006246624514460564, 0.00412817532196641, -0.009231561794877052, -0.026791956275701523, 0.01638091541826725, -0.03326261416077614, -0.01103043183684349, -0.034606825560331345, -0.001538593671284616, 0.001301380107179284, 0.005877625197172165, -1.8644921055965824e-06, 0.0009793296921998262, -0.027859417721629143, 0.012091303244233131, 0.003291338449344039, 0.03326261416077614, 0.012921551242470741, -0.02383996546268463, -0.011129270307719707, 0.020374011248350143, -0.022996539250016212, -0.012045178562402725, -0.001480113947764039, -0.015840595588088036, -0.0010065104579553008, -0.005788670387119055, -0.024393463507294655, 0.029361769556999207, 0.014377778396010399, 0.018463123589754105, 0.013969244435429573, 0.004049104172736406, 0.023220574483275414, -0.010417629964649677, -0.008467206731438637, 0.0018861774588003755, -0.008678063750267029, -0.001874646171927452, 0.0034989002160727978, -0.01624912954866886, -0.01080639660358429, 0.013270782306790352, 0.01577470265328884, -0.0011959518305957317, -0.02063758112490177, 0.030547838658094406, -0.021454650908708572, -0.0015806001611053944, 0.023681823164224625, 0.0008388959686271846, -0.0022469398099929094, 0.016117345541715622, 0.020716652274131775, 0.027332276105880737, -0.012684336863458157, 0.050869133323431015, 0.00662221247330308, -0.011709125712513924, -0.01826544478535652, 0.013020389713346958, -0.037216175347566605, 0.0039041400887072086, -0.020439904183149338, -0.012368052266538143, -0.017408840358257294, -0.022245362401008606, 0.01329713873565197, -0.038165029138326645, -0.0187530517578125, 0.011669590137898922, 0.019069336354732513, -0.00774238770827651, -0.021889541298151016, -0.0111556276679039, 0.0016226067673414946, -0.023194216191768646, -0.012539373710751534, -0.0008207754581235349, -0.001213248586282134, 0.02387950010597706, 0.03260368853807449, 0.013092871755361557, -0.007940066047012806, -0.014021958224475384, -0.015063062310218811, 0.011669590137898922, -0.00034017086727544665, 0.004905708599835634, 0.010878878645598888, -0.005712893791496754, 0.026567921042442322, -0.02326010912656784, -0.00019335377146489918, 0.032946329563856125, -0.030811408534646034, 0.015418882481753826, 0.0001661730493651703, -0.026159387081861496, -0.015392526052892208, 0.025592708960175514, -0.012690926901996136, -0.0028251479379832745, -0.023892678320407867, 0.02161279320716858, 0.02373453602194786, 0.01910887099802494, -0.0030211785342544317, 0.0059896428138017654, 0.0189770869910717, -0.021336043253540993, 0.005245056003332138, -0.014852206222712994, 0.05413740873336792, 0.01168935839086771, -0.002401787554845214, 0.005742545239627361, -0.02173139899969101, -0.002093739341944456, 0.01180137600749731, 0.00493206549435854, 0.035687465220689774, -0.0114521449431777, -0.02302289567887783, 0.022113576531410217, 0.0019553648307919502, -0.0017395662143826485, -0.0020624403841793537, -0.005874330643564463, 0.008849384263157845, -0.0002911631891038269, -0.028887342661619186, 0.029150912538170815, -0.0016679080436006188, 0.0031809681095182896, 0.004856289364397526, 0.00498807430267334, -0.012756818905472755, -0.02101975865662098, -0.017356127500534058, 0.01589331030845642, 0.021770935505628586, -0.0021102125756442547, -0.0010847579687833786, -0.010905235074460506, 0.004582834430038929, -0.006048946175724268, 0.0068791937083005905, -0.01282271184027195, 0.012776587158441544, 0.025474103167653084, -0.011972696520388126, -0.00895481277257204, -0.670945405960083, -0.004157826770097017, 0.0018614677246659994, -0.024775641039013863, -0.0035516144707798958, 0.03099590726196766, 0.004431281238794327, 0.012328516691923141, -0.011214930564165115, 0.011083145625889301, -0.00774238770827651, 0.022640718147158623, -0.014733599498867989, 0.019912762567400932, 0.007643548771739006, -0.011768429540097713, 0.009897077456116676, 0.009073419496417046, 0.017619697377085686, 0.011959518305957317, -0.024393463507294655, 0.02870284393429756, -0.014628170989453793, 0.007439281325787306, 0.02244304120540619, -0.013771566562354565, 0.024538427591323853, -0.028781915083527565, -0.003683399874716997, 0.013811102136969566, -0.01827862486243248, 0.03526575118303299, 0.008704420179128647, 0.017013484612107277, 0.051106348633766174, 0.0016102519584819674, -0.027727631852030754, 0.03892938420176506, 0.01707937754690647, 0.03463318198919296, -0.043172869831323624, -0.03516032546758652, 0.01684216409921646, -0.005406492855399847, -0.004915592726320028, 0.003907434642314911, 0.025777209550142288, -0.011307180859148502, 0.012855658307671547, 0.0030541247688233852, 0.010865699499845505, 0.03429054096341133, -0.01502352673560381, -0.005857857409864664, -0.010299023240804672, 0.006157669238746166, 0.01663130708038807, -0.00587103608995676, -0.0020327887032181025, 0.0029173975344747305, 0.005221993196755648, 0.0023902563843876123, -0.007821459323167801, -0.024182606488466263, -0.04027359560132027, 0.012466891668736935, -0.026607457548379898, -0.009824595414102077, -0.0014636407140642405, 0.008223404176533222, 0.00341323995962739, 0.02648884989321232, -0.0014949397882446647, 0.011320359073579311, 0.021349221467971802, 0.025539996102452278, 0.007755566388368607, 0.020505795255303383, -0.0019125344697386026, -0.004151237662881613, 0.022535290569067, -0.0177910178899765, -0.014614991843700409, -0.009897077456116676, 0.03226104751229286, -0.014562278054654598, -0.015827417373657227, -0.01294790767133236, -0.006753997877240181, -0.018568551167845726, 0.011643233709037304, 0.009066830389201641, 0.009310632944107056, 0.0011943044373765588, -0.013771566562354565, 0.015814239159226418, -0.030811408534646034, 0.009363346733152866, 0.015181669034063816, -0.025566352531313896, 0.004826637450605631, -0.0254213884472847, 0.02456478402018547, 0.00913272239267826, 0.016539057716727257, -0.0015698926290497184, 0.013494816608726978, 0.04404265433549881, 0.017501091584563255, -0.015827417373657227, 0.017501091584563255, -0.0003558203752618283, -0.009000937454402447, -0.008473795838654041, -0.0254213884472847, -0.02244304120540619, -0.007920297794044018, -0.0005160219152458012, -0.0009208499686792493, -0.052898626774549484, 0.016763092949986458, 0.0073602101765573025, 0.008440850302577019, 0.028887342661619186, -0.00643771281465888, 0.012335105799138546, 0.006688104942440987, -0.012545962817966938, -0.007735798601061106, -0.008757134899497032, 0.007366799749433994, -0.0029865847900509834, -0.008295886218547821, -0.00682647991925478, 0.02348414435982704, 0.002306243171915412, 0.00873077753931284, -0.038876671344041824, 0.019754620268940926, -0.01246030256152153, -0.02576403133571148, 0.0005427908035926521, 0.006958264857530594, -0.008388135582208633, 0.014878562651574612, -0.028096631169319153, -0.00210856506600976, -0.00920520443469286, -0.025078747421503067, -0.010641665197908878, -0.011129270307719707, -0.013363031670451164, -0.016644487157464027, -0.0023919036611914635, -0.0035977393854409456, -0.008052083663642406, -0.01568245328962803, 0.015155311673879623, -0.005126448813825846, 0.006078598089516163, -0.0008038904634304345, 0.03326261416077614, -0.025078747421503067, 0.02326010912656784, -0.011201752349734306, -0.015511132776737213, 0.023813607171177864, 0.03916659951210022, -0.008058672770857811, -0.04401629790663719, 0.003195794066414237, -0.040405381470918655, -0.02812298759818077, 0.010990896262228489, 0.01696077175438404, 0.025065569207072258, -0.008836206048727036, -0.007953244261443615, 0.01639409363269806, 0.009416061453521252, 0.0062663923017680645, -0.020914331078529358, -0.013099460862576962, 0.010391272604465485, 0.01829180307686329, -0.016657665371894836, 0.008104797452688217, 0.013270782306790352, -0.02066393941640854, 0.016525879502296448, 0.014746777713298798, -0.005343894939869642, 0.033420756459236145, -0.006174142472445965, -0.005436144769191742, -0.00017533625941723585, 0.012987443245947361, 0.009218383580446243, -0.009224972687661648, -0.005093502812087536, 0.027753988280892372, -0.004167710896581411, -0.001285730511881411, -0.009653274901211262, 0.023958571255207062, -0.0144173139706254, 0.01436460018157959, -0.02812298759818077, 0.03299904614686966, -0.0009760350221768022, -0.016420451924204826, -0.01732976920902729, -0.0023161270655691624, -0.008671474643051624, -0.003512078896164894, 0.016354558989405632, -0.005765608046203852, 0.022495754063129425, 0.005103386472910643, -0.010997485369443893, -0.006085187196731567, 0.0020690294913947582, 0.015115776099264622, 0.0032583922147750854, -0.003577971598133445, 0.012170374393463135, 0.002716424874961376, -0.008177279494702816, -0.00020086966105736792, -0.013152175582945347, -0.013270782306790352, -0.004869467578828335, 0.020242225378751755, 0.026791956275701523, 0.01258549839258194, -0.0260144229978323, 0.01971508376300335, -0.01707937754690647, 0.02741134725511074, -0.003993095364421606, -0.018239088356494904, 0.013086282648146152, 0.034501396119594574, -0.01003545243293047, -0.005637117195874453, -0.00788735132664442, 0.021349221467971802, 0.007590834517031908, -0.006184026133269072, 0.029467198997735977, 0.016670843586325645, 0.00375258713029325, 0.0007202891283668578, 0.001577305607497692, 0.010226541198790073, -0.0036537479609251022, 0.01502352673560381, -0.0017362716607749462, 0.036161892116069794, 0.04823342710733414, 0.01686852052807808, 0.008869152516126633, 0.011294001713395119, 0.002093739341944456, -0.011300591751933098, 0.0024890953209251165, 0.021533722057938576, -0.008612170815467834, -0.0043192640878260136, -0.00836836826056242, -0.01288201566785574, -0.014259171672165394, 0.003841542173177004, -0.008987759239971638, 0.018239088356494904, 0.019425157457590103, -0.00873077753931284, 0.01477313507348299, 0.004072166513651609, -0.002156337257474661, -0.02695009857416153, -0.02435392700135708, 0.005765608046203852, 0.018212731927633286, -0.010674610733985901, 0.00979823898524046, -0.017540626227855682, 0.006263097282499075, 0.0036175071727484465, -0.023167859762907028, 0.014456849545240402, 0.017118914052844048, -0.020729830488562584, 0.008981170132756233, -0.009633506648242474, 0.002161279320716858, 0.035423893481492996, -0.012565730139613152, 0.028755556792020798, -0.032471902668476105, -0.003202383406460285, -0.017053021118044853, -0.015102597884833813, -0.020808901637792587, 0.010371505282819271, 0.013033568859100342, -0.003149669151753187, -0.023075610399246216, -0.0021744577679783106, -0.01507624052464962, -0.014720420353114605, -0.00948854349553585, 0.01673673652112484, 0.009402882307767868, -0.0015797765227034688, 0.002836679108440876, 0.008236582390964031, -0.00819704681634903, 0.027859417721629143, 0.0076501378789544106, -0.005455912556499243, -0.014298707246780396, -0.025236889719963074, 0.016209594905376434, 0.11660365015268326, 0.02257482521235943, 0.00046413144445978105, 0.01839723065495491, 0.03004705347120762, -0.013211478479206562, -0.012690926901996136, 0.000666751351673156, 0.014245993457734585, 0.004922181833535433, 0.028544701635837555, -0.02314150333404541, -0.001947128097526729, -0.030837764963507652, 0.024867890402674675, -0.015550668351352215, -0.024498891085386276, -0.017830554395914078, 0.0072086569853127, -0.025091925635933876, 0.003360525704920292, 0.0029931741300970316, -0.015089419670403004, -0.004497174173593521, -0.015300275757908821, -0.01340915635228157, 0.022350789979100227, 0.03004705347120762, 0.015603382140398026, -0.010700968094170094, 0.005673358216881752, -0.0009579145698808134, 0.008869152516126633, -0.000864841160364449, 0.007775334175676107, 0.0009702694369480014, -0.010338558815419674, 0.0039239078760147095, 0.013066514395177364, 0.002663710853084922, 0.011412609368562698, 0.013876994140446186, 0.018726693466305733, -0.023998107761144638, 0.02600124478340149, 0.004381862003356218, 0.010529647581279278, 0.03415875509381294, -0.011478501372039318, 0.0037624710239470005, 0.040879808366298676, 0.016064630821347237, 0.01947787031531334, -0.017356127500534058, 0.022271718829870224, 0.014957633800804615, 0.0034956056624650955, 0.0009562672348693013, -0.012499838136136532, 0.009943202137947083, 0.00575901847332716, -0.000999097479507327, 0.00023165388847701252, -0.012737051583826542, 0.006918729282915592, -0.019148407503962517, -0.037558816373348236, 0.004431281238794327, -0.028202058747410774, -0.014206457883119583, -0.004681673366576433, -0.013303728774189949, -0.0185290165245533, -0.010523057542741299, 0.028412915766239166, 0.024657033383846283, 0.006753997877240181, -0.01033196970820427, 0.006839658133685589, 0.0019323022570461035, -0.008948223665356636, -0.024050820618867874, -0.00036941072903573513, 0.006523373536765575, -0.011676179245114326, 0.012743640691041946, -0.005884214770048857, 0.002760902512818575, -0.022363970056176186, 0.012743640691041946, 0.0037328193429857492, 0.021652327850461006, 0.018673980608582497, -0.005544867366552353, -0.006737524643540382, 0.011557572521269321, 0.003953559789806604, 0.026383422315120697, -0.019899584352970123, 0.011353305540978909, 0.025843102484941483, -0.023062432184815407, 0.01128082349896431, -0.01477313507348299, -0.00848038587719202, -0.01565609686076641, 0.015577024780213833, -0.009870721027255058, -0.014101029373705387, 0.004315969534218311, 0.013850637711584568, 0.005165984854102135, 0.006819890346378088, -0.009409472346305847, -0.010305612348020077, 0.022970180958509445, 0.01697394996881485, 0.008829616941511631, 0.0011440613307058811, -0.02600124478340149, -0.0003871193912345916, -0.03173390403389931, 0.020677117630839348, -0.004859583918005228, -0.012321927584707737, 0.019042979925870895, -0.007116407621651888, -0.03879759833216667, 0.0007927710539661348, -0.004134764429181814, 0.01205176766961813, 0.0008096560486592352, -0.018080946058034897, -0.01660495065152645, -0.011919982731342316, -0.018001874908804893, -0.0032485080882906914, 0.007136175408959389, 0.004253371153026819, -0.009495132602751255, -0.01851583831012249, 0.0022930647246539593, -0.007577655836939812, -0.02431439235806465, -0.008921866305172443, -0.024722926318645477, 0.0024083766620606184, -0.014008780010044575, -0.02004454843699932, 0.04043173789978027, 0.01304674707353115, -0.011313769966363907, 0.0007894764421507716, 0.010404450818896294, -0.03313082829117775, -0.02493378333747387, -0.027833059430122375, 0.016815807670354843, 0.0410643070936203, 0.03297268599271774, 0.0415123775601387, -0.0010509879793971777, 0.02324693091213703, -0.014443671330809593, -0.002375430427491665, -0.001359859830699861, 0.006615623366087675, -0.014812670648097992, -0.031180407851934433, 0.027753988280892372, 0.029124556109309196, 0.009350168518722057, 0.005090208258479834, 0.012559141032397747, -0.02241668291389942, -0.004938655067235231, -0.01056918315589428, -0.0038349528331309557, 0.0009645038517192006, -0.026871027424931526, -0.004816753324121237, 0.008612170815467834, -0.005920455791056156, 0.006925318855792284, 0.004404924344271421, -0.013863815926015377, 0.03689989075064659, 0.006190615706145763, 0.01050987932831049, -0.011175394989550114, 0.021322865039110184, -0.010812985710799694, 0.016090987250208855, 0.006592560559511185, -0.030205195769667625, -0.021164722740650177, -0.013178532011806965, -0.0030409463215619326, 0.006898961495608091, -0.019675549119710922, -0.016077809035778046, 0.010219952091574669, 0.0011358247138559818, -0.012354874052107334, -0.014456849545240402, 0.0063751148991286755, -0.021573256701231003, -0.0031513164285570383, 0.014325064606964588, -0.014193279668688774, -0.002569813746958971, -0.015563846565783024, -0.009481954388320446, -0.02933541312813759, 0.01335644256323576, 0.02030811831355095, -0.014074672013521194, 0.020334474742412567, -0.005376840941607952, -0.023286467418074608, -0.021902721375226974, -0.0063981772400438786, 0.014614991843700409, -0.005090208258479834, 0.028544701635837555, -0.0013713910011574626, -0.01603827439248562, -0.0062795705161988735, 0.05403198301792145, 0.012849069200456142, 0.0008475443464703858, -0.0032040306832641363, 0.018107302486896515, 0.008908688090741634, -0.017514269798994064, -0.0008113033836707473, 0.015102597884833813, -0.021665507927536964, -0.02422214299440384, 0.02407717891037464, 0.02173139899969101, 0.024288034066557884, -0.016209594905376434, -0.012328516691923141, 0.005969875026494265, 0.0064805434085428715, -0.023326002061367035, -0.0038514260668307543, 0.0033934719394892454, -0.012895193882286549, -0.04085344821214676, 0.007735798601061106, 0.0022617655340582132, 0.02502603270113468, -0.02196861244738102, -0.0004229485057294369, -0.013395978137850761, -0.013982422649860382, 0.01025948766618967, 0.011781607754528522, -0.01744837686419487, 0.02161279320716858, 0.004599307663738728, -0.0012264271499589086, -0.025829922407865524, 0.006602444685995579, 0.006078598089516163, -0.018067767843604088, -0.028544701635837555, 0.018608087673783302, 0.018963908776640892, -0.0013829221716150641, -0.00902729481458664, 0.012862247414886951, 0.008645117282867432, 5.317743853083812e-05, -0.003828363725915551, -0.024973317980766296, 0.008374957367777824, -0.01651270128786564, 0.011616876348853111, -0.007755566388368607, -0.012440534308552742, -0.00919202622026205, 0.0010032157879322767, -0.011491680517792702, -0.01288201566785574, -0.023945393040776253, 0.014825848862528801, -0.0018614677246659994, -0.04912956804037094, -0.016591772437095642, 0.004516941960901022, 0.003996389918029308, -0.004006273578852415, 0.0032303878106176853, -0.005383430514484644, 0.02360275201499462, -0.0334998294711113, 0.02076936699450016, -0.03574017807841301, 0.009047062136232853, -0.020703474059700966, -0.0014117502141743898, -0.006556320004165173, -0.004032630939036608, 0.01305992528796196, -0.008908688090741634, -0.05034199357032776, -0.028518343344330788, 0.012315338477492332, -0.008757134899497032, -0.018792586401104927, -0.01370567362755537, 0.012829300947487354, 0.016789449378848076, 0.010134290903806686, -0.018726693466305733, -0.01922747865319252, 0.021915899589657784, -0.02041354589164257, 0.013692495413124561, 0.018344517797231674, -0.01626230962574482, -0.01394288707524538, 0.020374011248350143, 0.0191220510751009, 0.016196416690945625, -0.04001002386212349, -0.005258234217762947, 0.003581266151741147, 0.023339180275797844, -0.015761524438858032, -0.015577024780213833, -0.011023841798305511, 0.007768744602799416, -0.009389704093337059, 0.007795101962983608, 0.000725231075193733, 0.027279561385512352, -0.005805143620818853, -0.003508784109726548, 0.01958329975605011, 0.0017626286717131734, -0.013876994140446186, 0.0177910178899765, -0.016183238476514816, 0.02340507321059704, -0.000960385543294251, -0.02468339167535305, 0.002452854299917817, 0.011004074476659298, -0.025711316615343094, -0.040537163615226746, -0.009165668860077858, 0.010687789879739285, -0.016328200697898865, -0.024143071845173836, -0.0036932837683707476, -0.0017922803526744246, -0.004596013110131025, -0.016222773119807243, -0.004615780897438526, 0.032471902668476105, -0.01636773720383644, 0.012157196179032326, -0.021573256701231003, -0.014904920011758804, -0.010799807496368885, -0.018950728699564934, -0.0063322847709059715, -0.00295363855548203, -0.01526074018329382, -0.00813115481287241, -0.011583929881453514, -0.004582834430038929, -0.004958422854542732, 0.0021003286819905043, -0.011999053880572319, 0.0017840438522398472, -0.014944455586373806, 0.010852521285414696, 0.018067767843604088, -0.009277686476707458, 0.03181297704577446, 0.004118291195482016, -0.015735168009996414, 0.002928928704932332, 0.001476819277741015, -0.006780354771763086, -0.03740067407488823, 0.023352358490228653, 0.001384569564834237, 0.001319500501267612, -0.01288201566785574, -0.013626602478325367, -0.001522944075986743, -0.010925003327429295, 0.005360368173569441, -0.0015624797670170665, -0.023826785385608673, 0.0016209594905376434, 0.019543763250112534, -0.002041025087237358, 0.017606519162654877, 0.013237835839390755, -0.017237519845366478, -0.0017758072353899479, 0.00575901847332716, -0.022706611081957817, 0.009475364349782467, -0.005268118344247341, 0.008981170132756233, -0.012539373710751534, 0.005940223578363657, -0.0007396450964733958, -0.013811102136969566, -0.00608848175033927, 0.003512078896164894, -0.025263246148824692, -0.009304043836891651, 0.003075540065765381, -0.006134606897830963, -0.024169428274035454, -0.001588013139553368, -0.020005011931061745, -0.005017726216465235, 0.002330952789634466, -0.0248283538967371, 0.0017197984270751476, -0.01649952307343483, -0.014404135756194592, -0.014338242821395397, 0.009145901538431644, -0.009659864008426666, 0.020097261294722557, 0.23130959272384644, -0.005189047195017338, -0.0026604162994772196, 0.037453386932611465, -0.00031504928483627737, 0.01591966673731804, 0.034132398664951324, 0.004098523408174515, -0.0018433472141623497, -0.007966422475874424, -0.020479438826441765, -0.011735483072698116, -0.02266707457602024, 0.010371505282819271, -0.0006828127079643309, -0.0006914610858075321, -0.013982422649860382, -0.021454650908708572, -0.0011448849691078067, -0.023655464872717857, 0.029256341978907585, 0.013204889371991158, -0.0007750624208711088, -0.014931277371942997, 0.027516774833202362, 0.010252897627651691, -0.004464227706193924, 0.0030425935983657837, -0.007004390005022287, 0.002498979214578867, -0.008513331413269043, 0.011149038560688496, 0.01696077175438404, -0.010002505965530872, 0.011583929881453514, 0.0073074959218502045, 0.008243171498179436, -0.009771881625056267, 0.021902721375226974, 0.014245993457734585, -0.0027460765559226274, 0.013033568859100342, -0.001976779894903302, 0.010740503668785095, -0.023075610399246216, 0.027991201728582382, -0.017606519162654877, -0.011854089796543121, -0.014272350817918777, 0.0034198290668427944, -0.011735483072698116, -0.009086597710847855, -0.011781607754528522, 0.020611224696040154, -0.008414492942392826, 0.00783463753759861, 0.00014300766633823514, -0.001777454512193799, 0.02099340222775936, 0.008981170132756233, -0.009297454729676247, 0.012242856435477734, -0.0191220510751009, 0.02444617822766304, -0.02478881925344467, 0.012763408944010735, -0.01900344341993332, -0.017263878136873245, -0.0061181336641311646, -0.012539373710751534, 0.012539373710751534, 0.027833059430122375, 0.00879008136689663, 0.013903351500630379, -0.019280193373560905, -0.013494816608726978, 0.017369305714964867, -0.017158448696136475, 0.0144173139706254, 0.019161585718393326, -0.007195478770881891, 0.02185000665485859, -0.0052812970243394375, -0.04014180973172188, -0.012723872438073158, -0.03892938420176506, 0.011887036263942719, 0.002639001002535224, 0.014101029373705387, 0.005119859706610441, 0.008697831071913242, -0.010430808179080486, 0.011050199158489704, 0.004615780897438526, -0.0010888762772083282, 0.02944084070622921, -0.02007090486586094, 0.02361593022942543, -0.007907119579613209, -0.002663710853084922, -0.03133855015039444, -0.027753988280892372, 0.008572635240852833, -0.008289297111332417, -0.01271069422364235, 0.015550668351352215, 0.029124556109309196, 0.02220582775771618, -0.009883899241685867, -0.03052148036658764, -0.011781607754528522, -0.02870284393429756, -0.003577971598133445, 0.0011720657348632812, 0.012045178562402725, 0.0033489945344626904, 0.005426260642707348, -0.011616876348853111, -0.021494185552001, 0.00801254715770483, 0.0023688410874456167, -0.03357889875769615, -0.009785059839487076, 0.010786628350615501, 0.006711167749017477, -0.00014455203199759126, -0.019780976697802544, 0.023774072527885437, -0.002232113853096962, -0.024999676272273064, 0.01922747865319252, -0.01120834145694971, 0.011715714819729328, -0.007795101962983608, -0.00255004595965147, 0.015273919329047203, 0.008776902221143246, 0.01056918315589428, -0.013876994140446186, -0.0031430800445377827, 0.027490418404340744, -0.01995229721069336, -0.006269686855375767, -0.008776902221143246, 0.01186726801097393, -0.003558203810825944, -0.007274549920111895, 0.005857857409864664, -0.02468339167535305, -0.015866952016949654, -0.02229807712137699, 0.009593971073627472, 0.008302475325763226, -0.021428292617201805, 0.007814869284629822, -0.01995229721069336, -0.04203951731324196, -0.014008780010044575, 0.02717413380742073, -0.004358799662441015, -0.019319728016853333, -0.013547531329095364, 0.016196416690945625, -0.004589424002915621, 0.006121428217738867, -0.0019059452461078763, -0.16889606416225433, 0.01921430043876171, -0.0018779408419504762, -0.030785052105784416, 0.00575901847332716, 0.006381704472005367, 0.008098208345472813, -0.003963443450629711, -0.033420756459236145, -0.0010518116177991033, 0.011781607754528522, 0.0025072158314287663, -0.020716652274131775, 0.02383996546268463, 0.004589424002915621, 0.0017922803526744246, -0.022495754063129425, 0.0033259321935474873, 0.008776902221143246, 0.008987759239971638, 0.027015991508960724, 0.00676717609167099, 0.0021744577679783106, -0.014733599498867989, 0.013692495413124561, 0.008552866987884045, -0.009640096686780453, 0.008335421793162823, 0.0066419802606105804, -0.018660802394151688, -0.024736104533076286, 0.0031595530454069376, -0.006978032644838095, 0.0012346637668088078, 0.030416052788496017, 0.014522742480039597, -0.013310317881405354, -0.007083461154252291, 0.009567614644765854, 0.02233761176466942, -0.0075051742605865, 0.02373453602194786, -0.009356757625937462, 0.020347652956843376, -0.01483902707695961, 0.0254213884472847, 0.03592468053102493, 0.0012774940114468336, -0.02088797278702259, 0.0034758378751575947, -0.018357696011662483, -0.04214494675397873, 0.007795101962983608, 0.016420451924204826, -0.0045465934090316296, 0.011999053880572319, -0.02469656988978386, 0.019636012613773346, -0.011181985028088093, -0.02849198691546917, 0.0005625585909001529, -0.022693432867527008, -0.0015303570544347167, -0.011788196861743927, -0.003045888151973486, 0.009442418813705444, -0.014522742480039597, -0.019965477287769318, -0.01900344341993332, 0.012625033967196941, -0.01909569278359413, -0.017843732610344887, 0.006497016176581383, -0.0021184489596635103, 0.009534668177366257, 0.022693432867527008, 0.00043900986202061176, 0.016341380774974823, -0.01389017328619957, -0.02625163644552231, -0.010048630647361279, 0.03737431764602661, -0.024907425045967102, -0.027938488870859146, 0.0013730382779613137, -0.00830906443297863, -0.006497016176581383, 0.0028416209388524294, 0.018015053123235703, -0.015748346224427223, 0.015629738569259644, -0.038744885474443436, -0.03173390403389931, -0.04720550402998924, 0.0042566657066345215, 0.012829300947487354, 0.022877931594848633, -0.008500153198838234, -0.005607465282082558, -0.014061493799090385, -0.024854712188243866, -0.02304925210773945, -0.014259171672165394, 0.010648254305124283, 0.025829922407865524, 0.010048630647361279, 0.02233761176466942, 0.013732030987739563, 0.03099590726196766, -0.023523680865764618, 0.0023408366832882166, 0.004764039535075426, 0.014957633800804615, 0.003057419555261731, 0.011682769283652306, 0.04043173789978027, 0.0035516144707798958, -0.018476301804184914, 0.02386632189154625, -0.008691241964697838, 0.03766424581408501, -0.011017252691090107, -0.013811102136969566, 0.004902414046227932, 0.00031401970773003995, 0.028043916448950768, -0.10484839975833893, -0.010944770649075508, 0.0010905235540121794, 0.013626602478325367, -0.012018821202218533, 0.01566927507519722, -0.01864762231707573, 0.005551456939429045, -0.00427313894033432, 0.020611224696040154, -0.0049090031534433365, -0.00715594319626689, 0.0007005213410593569, -0.015471597202122211, 0.017382483929395676, -0.011234698817133904, 0.0022271720226854086, -0.029625341296195984, -0.01365295983850956, 0.02028176188468933, -0.0189770869910717, -0.0075315311551094055, -0.025790387764573097, -0.0061609637923538685, 0.011603697203099728, 0.0022765914909541607, -0.021046115085482597, 0.024261677637696266, 0.020743010565638542, 0.015735168009996414, -0.013415745459496975, -0.007274549920111895, 0.020598046481609344, -0.036135535687208176, -0.00011078203533543274, 0.00596328591927886, 0.0061082495376467705, -0.004487290047109127, 0.007966422475874424, 0.0012766702566295862, -0.00794665515422821, -0.019491048529744148, 0.007169121410697699, -0.00537354638800025, 0.008203635923564434, -0.008625349029898643, -0.02242986112833023, 0.007755566388368607, -0.010252897627651691, -0.002418260555714369, -0.012743640691041946, 0.029019128531217575, -0.021981792524456978, -0.00788735132664442, 0.004724503960460424, -0.011069967411458492, 0.027727631852030754, 0.015273919329047203, 0.004754155408591032, -0.000864841160364449, 0.013547531329095364, -0.008045493625104427, -0.01959647797048092, 0.024050820618867874, 0.0016613187035545707, -0.009745524264872074, -0.0007153471815399826, 0.0006263921386562288, 0.007281139027327299, -0.0031430800445377827, 0.027279561385512352, 0.02634388580918312, -0.013099460862576962, 0.02589581534266472, -0.020808901637792587, 0.011854089796543121, -0.02814934402704239, -0.006806712131947279, 0.010766861028969288, -0.041143376380205154, -0.006892372388392687, -0.01982051320374012, 0.014232815243303776, -0.03255097568035126, 0.015471597202122211, 0.002237055916339159, -0.000528788601513952, 0.027253204956650734, 0.016539057716727257, -0.011794785968959332, 0.017487911507487297, 0.02954627014696598, 0.014707242138683796, -0.01946469210088253, 0.009066830389201641, 0.024143071845173836, -0.039324741810560226, 0.012097892351448536, 0.01217696350067854, -0.008638528175652027, -0.020743010565638542, -0.009198615327477455, -0.039825525134801865, 0.029045484960079193, 0.015445239841938019, 0.0073602101765573025, 0.007762155495584011, -0.02196861244738102, -0.009936613030731678, -0.0027230142150074244, -0.006276275962591171, 0.003045888151973486, -0.012618444859981537, 0.04201316088438034, 0.013211478479206562, 0.026449313387274742, -0.009435828775167465, -0.009765292517840862, 0.00763037009164691, 0.008177279494702816, 0.003703167662024498, 0.011597108095884323, -0.005498742684721947, 0.0015443592565134168, -0.00047442715731449425, 0.02232443355023861, 0.0022502343636006117, 0.019675549119710922, -0.012895193882286549, 0.029994338750839233, -0.011432376690208912, 0.000877196027431637, -0.014483206905424595, -0.019530585035681725, -0.012723872438073158, 0.03415875509381294, 0.01073391456156969, -0.007867584004998207, -0.011320359073579311, 0.009218383580446243, 0.021533722057938576, -0.009923434816300869, -0.016670843586325645, -0.027806703001260757, -0.004345620982348919, -0.004997958429157734, -0.007248192559927702, 0.006431123707443476, 0.0031908522360026836, 0.00333911064080894, 0.01027266588062048, -0.01636773720383644, 0.007577655836939812, 0.021046115085482597, 0.018713515251874924, -0.009198615327477455, 0.0039008455350995064, -0.0038547206204384565, 0.003914024215191603, -0.007261371240019798, -0.018845301121473312, -0.032577332109212875, 0.01829180307686329, 0.0054130819626152515, 0.022139934822916985, 0.021428292617201805, 0.012611855752766132, -0.019174763932824135, 0.006786943878978491, 0.011748661287128925, 0.030205195769667625, -0.043963585048913956, -0.004563066642731428, -0.006378409452736378, 0.01068120077252388, -0.027595845982432365, 0.02111200802028179, 0.012888604775071144, -0.018252266570925713, -0.013066514395177364, 0.0044148084707558155, 0.026277992874383926, 0.02933541312813759, 0.003973327577114105, -0.0264624934643507, 0.025724494829773903, 0.02540821023285389, 0.029757125303149223, -0.007992779836058617, -0.00601929472759366, 0.006688104942440987, -0.01002227421849966, -0.004098523408174515, 0.0062268562614917755, 0.012519605457782745, -0.008981170132756233, 0.02386632189154625, 0.025961708277463913, 0.013929708860814571, 0.010799807496368885, 0.025843102484941483, -0.003531846683472395, 0.005831500515341759, 0.01353435218334198, 0.003337463364005089, -0.012045178562402725, -0.021902721375226974, 0.016288666054606438, -0.029282698407769203, -0.018436767160892487, -0.01228898111730814, 0.017290234565734863, 0.009271097369492054, 0.000636687851510942, 0.014232815243303776, 0.034000612795352936, -0.021177900955080986, 0.03502853959798813, 0.0072086569853127, -0.02907184138894081, -0.02470974810421467, 0.01252619456499815, 0.016644487157464027, 0.016354558989405632, 0.01304674707353115, 0.0062136780470609665, -0.0028729201294481754, 0.015115776099264622, 0.02182365022599697, -0.006006116047501564, -0.006335579324513674, -0.013106049969792366, 0.010826163925230503, 0.0011440613307058811, -0.025197353214025497, -0.010430808179080486, -0.012269213795661926, 0.005574519280344248, 0.003986505791544914, 0.010002505965530872, -0.00333911064080894, 0.018924372270703316, -0.006457480601966381, -0.019280193373560905, 0.027332276105880737, 0.01205176766961813, 0.014891741797327995, 0.020018190145492554, 0.002037730533629656, -0.01317194290459156, 0.008875741623342037, -0.011313769966363907, 0.0038744884077459574, 0.014535920694470406, -0.017184806987643242, -0.015010348521173, 0.005986348260194063, 0.0004962541279383004, -0.006312516983598471, -0.015313454903662205, 0.0005337305483408272, 0.006460775621235371, 0.0013112640008330345, 0.011307180859148502, -0.009330401197075844, -0.030099768191576004, -0.005864446982741356, 0.003940381109714508, -0.017870089039206505, 0.008763724006712437, -0.029888911172747612, 0.007340442389249802, 0.01365295983850956, -0.018120482563972473, -0.012249445542693138, 0.035423893481492996, -0.006638685707002878, -0.01909569278359413, -0.0025352202355861664, 0.023115145042538643, 0.0008310711709782481, -0.030416052788496017, 0.023813607171177864, -0.004744271747767925, -0.007485406473278999, -0.0024413231294602156, -0.0038053011521697044, -0.012097892351448536, -0.013863815926015377, -0.01002227421849966]}]
\ No newline at end of file
diff --git a/metagpt/reflect_and_retrieve/gpt_structure.py b/metagpt/reflect_and_retrieve/gpt_structure.py
deleted file mode 100644
index f9a44725c..000000000
--- a/metagpt/reflect_and_retrieve/gpt_structure.py
+++ /dev/null
@@ -1,110 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# @Desc : 调用GPT
-# author: didi
-# Date:9.25
-
-import openai
-openai.api_key = "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"
-openai.proxy = 'http://127.0.0.1:7000'
-# 直接调用Prompt生成
-
-
-def response_generate(prompt):
- """
- 通过将特殊指令加入Prompt生成最终的响应。
-
- 参数:
- - prompt:要生成响应的提示文本。
- - special_instruction:要加入Prompt的特殊指令。
- - example_output(可选):示例输出的JSON字符串。
-
- 返回:
- 生成的最终响应。
-
- """
- completion = openai.Completion.create(
- model="gpt-3.5-turbo-instruct",
- prompt=prompt,
- temperature=0,
- max_tokens=500,
- top_p=1,
- stream=False,
- frequency_penalty=0,
- presence_penalty=0
- )
- return (completion.choices[0].text)
-
-# 特殊指令加入Prompt生成
-
-
-def final_response(prompt, special_instruction, example_output=None):
- """
- 通过将特殊指令加入Prompt生成最终的响应。
-
- 参数:
- - prompt:要生成响应的提示文本。
- - special_instruction:要加入Prompt的特殊指令。
- - example_output(可选):示例输出的JSON字符串。
-
- 返回:
- 生成的最终响应。
-
- """
- prompt = '"""\n' + prompt + '\n"""\n'
- prompt += f"Output the response to the prompt above in json. {special_instruction}\n"
- if example_output:
- prompt += "Example output json:\n"
- prompt += '{"output": "' + str(example_output) + '"}'
- return response_generate(prompt)
-
-# prompt填充模板
-
-
-def prompt_generate(curr_input, prompt_lib_file):
- """
- Takes in the current input (e.g. comment that you want to classifiy) and
- the path to a prompt file. The prompt file contains the raw str prompt that
- will be used, which contains the following substr: !! -- this
- function replaces this substr with the actual curr_input to produce the
- final promopt that will be sent to the GPT3 server.
- ARGS:
- curr_input: the input we want to feed in (IF THERE ARE MORE THAN ONE
- INPUT, THIS CAN BE A LIST.)
- prompt_lib_file: the path to the promopt file.
- RETURNS:
- a str prompt that will be sent to OpenAI's GPT server.
- """
- if type(curr_input) is type("string"):
- curr_input = [curr_input]
- curr_input = [str(i) for i in curr_input]
-
- f = open(prompt_lib_file, "r")
- prompt = f.read()
- f.close()
- for count, i in enumerate(curr_input):
- prompt = prompt.replace(f"!!", i)
- if "###" in prompt:
- prompt = prompt.split(
- "###")[1]
- return prompt.strip()
-
-# 使用OpenAI embedding库进行存储
-
-
-def embedding(query):
- """
- Generates an embedding for the given query.
-
- Args:
- query (str): The text query to be embedded.
-
- Returns:
- str: The embedding key generated for the query.
- """
- embedding_result = openai.Embedding.create(
- model="text-embedding-ada-002",
- input=query
- )
- embedding_key = embedding_result['data'][0]["embedding"]
- return embedding_key
diff --git a/metagpt/reflect_and_retrieve/pycodetester.py b/metagpt/reflect_and_retrieve/pycodetester.py
deleted file mode 100644
index 30c9abaec..000000000
--- a/metagpt/reflect_and_retrieve/pycodetester.py
+++ /dev/null
@@ -1,3 +0,0 @@
-import pycodestyle as pcs
-checker = pcs.StyleGuide()
-checker.input_dir('./')
diff --git a/metagpt/reflect_and_retrieve/reflect.py b/metagpt/reflect_and_retrieve/reflect.py
deleted file mode 100644
index 1e1bb1352..000000000
--- a/metagpt/reflect_and_retrieve/reflect.py
+++ /dev/null
@@ -1,84 +0,0 @@
-
-import json
-from logging import Logger
-import time
-from gpt_structure import final_response
-import run_gpt
-from GA_memory_storage import Agent_memory, Memory_basic
-from retrive import agent_retrive
-
-
-def agent_reflect(agent):
- '''
- agent:agent本身
- '''
- pass
-
-
-def generate_focus_point(memories_list, n=3):
- wait_sorted_mem = [[i.accessed_time, i] for i in memories_list]
- sorted_memories = sorted(wait_sorted_mem, key=lambda x: x[0])
- memorys = [i for created, i in sorted_memories]
- statements = ''
- for i in memorys:
- statements += i.description + "\n"
- prompt = '''
- {statements}
- Given only the information above, what are {num_question} most salient high-level questions we can answer about the subjects grounded in the statements?
- '''
- example_output = '["What should Jane do for lunch", "Does Jane like strawberry", "Who is Jane"]'
- out = final_response(prompt.format(statements=statements, num_question=n),
- "Output must be a list of str.", example_output)
- try:
- poi_dict = json.loads(out)
- return (poi_dict['output'])
- except ValueError:
- print(out)
- Logger.error('无法返回正常结果')
- return out
-
-
-def generate_insights_and_evidence(agent, memories_list, question, n=5):
- agent_retrive(agent, question, 20, 10)
- statements = ""
- for count, mem in enumerate(memories_list):
- statements += f'{str(count)}. {mem.description}\n'
- prompt = '''
- Input:
- {statements}
-
- What {n} high-level insights can you infer from the above statements?
- You should return a list of list[str,list] . The first element is the insight you have found.The second element is the
- '''
-
- ret = final_response(prompt.format(
- question=question, statements=statements, n=n), "['insightA',[1,2,3]]")
- try:
- insight_list = json.loads(ret)
- for insight, index in insight_list:
- agent.memory_list.append(Memory_basic(
- time.time(), None, insight, None, None))
- return (insight_list)
- except:
- Logger.error('我们无法获得想要的返回。')
- return ret
-
-
-if __name__ == "__main__":
- # 例子,构建John Agent,实现retrive
- John_iss = "John Lin is a pharmacy shopkeeper at the Willow Market and Pharmacy who loves to help people. He is always looking for ways to make the process of getting medication easier for his customers; John Lin is living with his wife, Mei Lin, who is a college professor, and son, Eddy Lin, who is a student studying music theory; John Lin loves his family very much; John Lin has known the old couple next-door, Sam Moore and Jennifer Moore, for a few years; John Lin thinks Sam Moore is a kind and nice man; John Lin knows his neighbor, Yuriko Yamamoto, well; John Lin knows of his neighbors, Tamara Taylor and Carmen Ortiz, but has not met them before; John Lin and Tom Moreno are colleagues at The Willows Market and Pharmacy; John Lin and Tom Moreno are friends and like to discuss local politics together; John Lin knows the Moreno family somewhat well — the husband Tom Moreno and the wife Jane Moreno."
- John = Agent_memory(
- "John", John_iss, memory_path="agent_memories/John_memory.json")
-
- # John的相关信息:{'Had a friendly chat with Yuriko about her garden.': 2.4992317730827667, 'Helped Mrs. Moore carry groceries into her house.': 1.957656720441911, 'Discussed local politics with Tom Moreno.': 1.9458268038234035}
- A = generate_focus_point(John.memories_list)
-
- for i in A:
- B = generate_insights_and_evidence(
- John, John.memories_list, question=A[0])
- print(type(B))
- print(B)
- '''
- 这里是输出,list形式,返回给记忆。
- [['The pharmacy is a friendly and helpful community.', [0, 2, 9, 12]], ['The pharmacy is a place where people come for more than just medication.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for advice and conversation.', [0, 2, 6, 9, 12]], ['The pharmacy is a place where people come for assistance with daily tasks.', [3, 5, 13, 14]], ['The pharmacy is a place where people come for political discussions.', [1]]]
- '''
diff --git a/metagpt/reflect_and_retrieve/retrive.py b/metagpt/reflect_and_retrieve/retrive.py
deleted file mode 100644
index 9a75a5c29..000000000
--- a/metagpt/reflect_and_retrieve/retrive.py
+++ /dev/null
@@ -1,136 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# @Desc : 实现GA中检索函数
-# author: didi
-# Date:9.25
-
-from numpy import dot
-from numpy.linalg import norm
-from gpt_structure import embedding
-
-# 实现三(2)合一搜索
-
-
-def agent_retrive(agent, query, n, topk):
- # 将记忆列表按照Nodes[i].accessed_time排列,仅取前十个,如果不够10个就取现有的所有
- Nodes = agent.memories_list
- sorted_nodes = sorted(
- Nodes, key=lambda node: node.accessed_time, reverse=True)
- Nodes = sorted_nodes[:n] if len(sorted_nodes) >= n else sorted_nodes
-
- # 创建一个分数列表
- Score_list = []
- """
- {
- "memory":Nodes[i],
- "importance":Nodes[i].poignancy
- "recency":衰减因子计算结果
- "relevance":搜索结果
- }
- """
- Score_list = extract_importance(Nodes, Score_list)
- Score_list = extract_recency(Score_list) # 计算近因性函数还没有实现,目前都是1
- Score_list = extract_relevance(Score_list, query)
-
- Score_list = normalize_Socre_floats(Score_list, 0, 1)
- total_dict = {}
- gw = [1, 1, 1] # 三个因素的权重,重要性,近因性,相关性
- for i in range(len(Score_list)):
- total_score = (Score_list[i]['importance']*gw[0] +
- Score_list[i]['recency']*gw[1] +
- Score_list[i]['relevance']*gw[2]
- )
- total_dict[Score_list[i]['memory'].description] = total_score
-
- result = top_highest_x_values(total_dict, topk)
-
- return result
-
-
-def top_highest_x_values(d, x):
- top_v = dict(sorted(d.items(),
- key=lambda item: item[1],
- reverse=True)[:x])
- return top_v
-# 抽取重要性
-
-
-def extract_importance(Nodes, Score_list):
- for i in range(len(Nodes)):
- Score = {"memory": Nodes[i],
- "importance": Nodes[i].poignancy
- }
- Score_list.append(Score)
- return Score_list
-
-# 抽取相关性
-
-
-def extract_relevance(Score_list, query):
- query_embedding = embedding(query)
- # 进行
- for i in range(len(Score_list)):
- result = cos_sim(
- Score_list[i]["memory"].embedding_key, query_embedding)
- Score_list[i]['relevance'] = result
-
- return Score_list
-
-# 抽取近因性
-
-
-def extract_recency(Score_list):
- for i in range(len(Score_list)):
- Score_list[i]['recency'] = 1
- return Score_list
-
-# 计算余弦相似度
-
-
-def cos_sim(a, b):
- return dot(a, b)/(norm(a)*norm(b))
-
-# 单个列表归一化
-
-
-def normalize_List_floats(Single_list, target_min, target_max):
- min_val = min(Single_list)
- max_val = max(Single_list)
- range_val = max_val - min_val
-
- if range_val == 0:
- for i in range(len(Single_list)):
- Single_list[i] = (target_max - target_min)/2
- else:
- for i in range(len(Single_list)):
- Single_list[i] = ((Single_list[i] - min_val) * (target_max - target_min)
- / range_val + target_min)
- return Single_list
-
-# 整体归一化
-
-
-def normalize_Socre_floats(Score_list, target_min, target_max):
-
- importance_list = []
- relevance_list = []
- recency_list = []
-
- for i in range(len(Score_list)):
- importance_list.append(Score_list[i]['importance'])
- relevance_list.append(Score_list[i]['relevance'])
- recency_list.append(Score_list[i]['recency'])
-
- # 进行归一化操作
- importance_list = normalize_List_floats(
- importance_list, target_min, target_max)
- relevance_list = normalize_List_floats(
- relevance_list, target_min, target_max)
- recency_list = normalize_List_floats(recency_list, target_min, target_max)
-
- for i in range(len(Score_list)):
- Score_list[i]['importance'] = importance_list[i]
- Score_list[i]['relevance'] = relevance_list[i]
- Score_list[i]['recency'] = recency_list[i]
-
- return Score_list
diff --git a/metagpt/reflect_and_retrieve/run_gpt.py b/metagpt/reflect_and_retrieve/run_gpt.py
deleted file mode 100644
index 71d2a7a3d..000000000
--- a/metagpt/reflect_and_retrieve/run_gpt.py
+++ /dev/null
@@ -1,62 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-# @Desc : 调用PROMPT
-# author: didi
-# Date:9.25
-
-import random
-import json
-from gpt_structure import final_response, prompt_generate
-
-# 使用GPT衡量心酸程度
-
-
-def run_gpt_prompt_chat_poignancy(agent, event_description):
- """
- 使用GA中的run GPT构造,具体的代码可以参考昨天GPT的内容
- https://chat.openai.com/c/afddac31-300e-427b-9947-4b3ca16bd3a1
- 其中输入的ISS是identity stable set
- """
- def create_prompt_input(agent, event_description):
- prompt_input = [agent.name,
- agent.iss,
- agent.name,
- event_description]
- return prompt_input
-
- # 1. Prompt构建
- # 2. Instruction给出
- prompt_template = "Prompt_template/poignancy_chat_v1.txt"
- prompt_input = create_prompt_input(agent, event_description)
- prompt = prompt_generate(prompt_input, prompt_template)
- special_instruction = "The output should ONLY contain ONE integer value on the scale of 1 to 10."
- poignancy = final_response(prompt, special_instruction)
- try:
- poi_dict = json.loads(poignancy)
- return (poi_dict['poignancy'])
- except:
- return poignancy
-
-# 返回John随机记忆
-
-
-def run_gpt_random_concept():
- random_memories = [
- "Helped Mrs. Moore carry groceries into her house.",
- "Had a friendly chat with Yuriko about her garden.",
- "Met Tom Moreno for coffee during our lunch break.",
- "Talked to Mei about their upcoming vacation plans.",
- "Eddy played his new music composition for me.",
- "Helped a customer find a specific medication.",
- "John divorced his wife because he was in love with someone else",
- "Helped Mrs. Moore carry groceries into her house.",
- "Had a friendly chat with Yuriko about her garden.",
- "Met Tom Moreno for coffee during our lunch break.",
- "Talked to Mei about their upcoming vacation plans.",
- "Eddy played his new music composition for me.",
- "Helped a customer find a specific medication.",
- "Wished Carmen a good day as she passed by the pharmacy.",
- "Discussed local politics with Tom Moreno.",
- "Gave gardening tips to Mrs. Yamamoto.",
- "Saw Jane Moreno jogging in the morning."]
- return (random.choice(random_memories))
diff --git a/metagpt/roles/role.py b/metagpt/roles/role.py
index 52cc693a0..44bb3e976 100644
--- a/metagpt/roles/role.py
+++ b/metagpt/roles/role.py
@@ -14,7 +14,7 @@ from pydantic import BaseModel, Field
# from metagpt.environment import Environment
from metagpt.config import CONFIG
from metagpt.actions import Action, ActionOutput
-from metagpt import llm as LLM
+from metagpt.llm import LLM
from metagpt.logs import logger
from metagpt.memory import Memory, LongTermMemory
from metagpt.schema import Message
@@ -94,7 +94,7 @@ class Role:
"""Role/Agent"""
def __init__(self, name="", profile="", goal="", constraints="", desc=""):
- self._llm=LLM.DEFAULT_LLM
+ self._llm = LLM()
self._setting = RoleSetting(name=name, profile=profile, goal=goal, constraints=constraints, desc=desc)
self._states = []
self._actions = []
@@ -185,7 +185,7 @@ class Role:
observed = self._rc.env.memory.get_by_actions(self._rc.watch)
- self._rc.news = self._rc.memory.remember(observed) # remember recent exact or similar memories
+ self._rc.news = self._rc.memory.find_news(observed) # find news (previously unseen messages) from observed messages
for i in env_msgs:
self.recv(i)
diff --git a/metagpt/schema.py b/metagpt/schema.py
index 27f5dd10c..bdca093c2 100644
--- a/metagpt/schema.py
+++ b/metagpt/schema.py
@@ -29,6 +29,7 @@ class Message:
cause_by: Type["Action"] = field(default="")
sent_from: str = field(default="")
send_to: str = field(default="")
+ restricted_to: str = field(default="")
def __str__(self):
# prefix = '-'.join([self.role, str(self.cause_by)])
diff --git a/metagpt/tools/moderation.py b/metagpt/tools/moderation.py
new file mode 100644
index 000000000..c56a6afc4
--- /dev/null
+++ b/metagpt/tools/moderation.py
@@ -0,0 +1,40 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+"""
+@Time : 2023/9/26 14:27
+@Author : zhanglei
+@File : moderation.py
+"""
+from typing import Union
+
+from metagpt.llm import LLM
+
+
+class Moderation:
+ def __init__(self):
+ self.llm = LLM()
+
+ def moderation(self, content: Union[str, list[str]]):
+ resp = []
+ if content:
+ moderation_results = self.llm.moderation(content=content)
+ results = moderation_results.results
+ for item in results:
+ resp.append(item.flagged)
+
+ return resp
+
+ async def amoderation(self, content: Union[str, list[str]]):
+ resp = []
+ if content:
+ moderation_results = await self.llm.amoderation(content=content)
+ results = moderation_results.results
+ for item in results:
+ resp.append(item.flagged)
+
+ return resp
+
+
+if __name__ == "__main__":
+ moderation = Moderation()
+ print(moderation.moderation(content=["I will kill you", "The weather is really nice today", "I want to hit you"]))
diff --git a/metagpt/utils/common.py b/metagpt/utils/common.py
index 65cc15e82..59d179808 100644
--- a/metagpt/utils/common.py
+++ b/metagpt/utils/common.py
@@ -180,7 +180,7 @@ class OutputParser:
if start_index != -1 and end_index != -1:
# Extract the structure part
- structure_text = text[start_index:end_index + 1]
+ structure_text = text[start_index : end_index + 1]
try:
# Attempt to convert the text to a Python data type using ast.literal_eval
@@ -237,7 +237,7 @@ class CodeParser:
logger.error(f"{pattern} not match following text:")
logger.error(text)
# raise Exception
- return ""
+ return text # just assume original text is code
return code
@classmethod
diff --git a/metagpt/utils/serialize.py b/metagpt/utils/serialize.py
index ffafca8cd..124176fcb 100644
--- a/metagpt/utils/serialize.py
+++ b/metagpt/utils/serialize.py
@@ -4,7 +4,7 @@
import copy
import pickle
-from typing import Dict, List, Tuple
+from typing import Dict, List
from metagpt.actions.action_output import ActionOutput
from metagpt.schema import Message
@@ -37,8 +37,8 @@ def actionoutout_schema_to_mapping(schema: Dict) -> Dict:
elif property["type"] == "array" and property["items"]["type"] == "string":
mapping[field] = (List[str], ...)
elif property["type"] == "array" and property["items"]["type"] == "array":
- # here only consider the `Tuple[str, str]` situation
- mapping[field] = (List[Tuple[str, str]], ...)
+ # here only consider the `List[List[str]]` situation
+ mapping[field] = (List[List[str]], ...)
return mapping
diff --git a/requirements.txt b/requirements.txt
index c2616a08a..de861ded9 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -34,7 +34,7 @@ tqdm==4.64.0
# selenium>4
# webdriver_manager<3.9
anthropic==0.3.6
-typing-inspect
+typing-inspect==0.8.0
typing_extensions==4.5.0
libcst==1.0.1
qdrant-client==1.4.0
diff --git a/tests/metagpt/actions/test_write_code.py b/tests/metagpt/actions/test_write_code.py
index 00d2c504e..7bb18ddf2 100644
--- a/tests/metagpt/actions/test_write_code.py
+++ b/tests/metagpt/actions/test_write_code.py
@@ -8,7 +8,7 @@
import pytest
from metagpt.actions.write_code import WriteCode
-import metagpt.llm as LLM
+from metagpt.llm import LLM
from metagpt.logs import logger
from tests.metagpt.actions.mock import TASKS_2, WRITE_CODE_PROMPT_SAMPLE
@@ -29,6 +29,6 @@ async def test_write_code():
@pytest.mark.asyncio
async def test_write_code_directly():
prompt = WRITE_CODE_PROMPT_SAMPLE + '\n' + TASKS_2[0]
- llm=LLM.DEFAULT_LLM
+ llm = LLM()
rsp = await llm.aask(prompt)
logger.info(rsp)
diff --git a/tests/metagpt/memory/test_longterm_memory.py b/tests/metagpt/memory/test_longterm_memory.py
index 62a3a2361..dc5540520 100644
--- a/tests/metagpt/memory/test_longterm_memory.py
+++ b/tests/metagpt/memory/test_longterm_memory.py
@@ -21,35 +21,35 @@ def test_ltm_search():
idea = 'Write a cli snake game'
message = Message(role='BOSS', content=idea, cause_by=BossRequirement)
- news = ltm.remember([message])
+ news = ltm.find_news([message])
assert len(news) == 1
ltm.add(message)
sim_idea = 'Write a game of cli snake'
sim_message = Message(role='BOSS', content=sim_idea, cause_by=BossRequirement)
- news = ltm.remember([sim_message])
+ news = ltm.find_news([sim_message])
assert len(news) == 0
ltm.add(sim_message)
new_idea = 'Write a 2048 web game'
new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement)
- news = ltm.remember([new_message])
+ news = ltm.find_news([new_message])
assert len(news) == 1
ltm.add(new_message)
# restore from local index
ltm_new = LongTermMemory()
ltm_new.recover_memory(role_id, rc)
- news = ltm_new.remember([message])
+ news = ltm_new.find_news([message])
assert len(news) == 0
ltm_new.recover_memory(role_id, rc)
- news = ltm_new.remember([sim_message])
+ news = ltm_new.find_news([sim_message])
assert len(news) == 0
new_idea = 'Write a Battle City'
new_message = Message(role='BOSS', content=new_idea, cause_by=BossRequirement)
- news = ltm_new.remember([new_message])
+ news = ltm_new.find_news([new_message])
assert len(news) == 1
ltm_new.clear()
diff --git a/tests/metagpt/provider/test_xinghuo_api.py b/tests/metagpt/provider/test_xinghuo_api.py
new file mode 100644
index 000000000..74e13413c
--- /dev/null
+++ b/tests/metagpt/provider/test_xinghuo_api.py
@@ -0,0 +1,4 @@
+from metagpt.provider.spark_api import SparkAPI
+def test_message():
+ llm=SparkAPI()
+ llm.ask('只回答"收到了"这三个字。')
\ No newline at end of file
diff --git a/tests/metagpt/roles/mock.py b/tests/metagpt/roles/mock.py
index 9567be603..52fc4a3c1 100644
--- a/tests/metagpt/roles/mock.py
+++ b/tests/metagpt/roles/mock.py
@@ -16,7 +16,7 @@ DETAIL_REQUIREMENT = """需求:开发一个基于LLM(大语言模型)与
3. 私有知识库支持pdf、word、txt等各种文件格式上传,上传后可以在服务端解析为文本,存储ES
资源:
-1. 大语言模型已经有前置的抽象、部署,可以通过 `import metagpt.llm as LLM`,再使用`LLM().ask(prompt)`直接调用
+1. 大语言模型已经有前置的抽象、部署,可以通过 `from metagpt.llm import LLM`,再使用`LLM().ask(prompt)`直接调用
2. Elastic已有[部署](http://192.168.50.82:9200/),代码可以直接使用这个部署"""
diff --git a/tests/metagpt/test_llm.py b/tests/metagpt/test_llm.py
index 1986f3f22..11503af1d 100644
--- a/tests/metagpt/test_llm.py
+++ b/tests/metagpt/test_llm.py
@@ -8,7 +8,7 @@
import pytest
-import metagpt.llm as LLM
+from metagpt.llm import LLM
@pytest.fixture()
diff --git a/tests/metagpt/tools/test_moderation.py b/tests/metagpt/tools/test_moderation.py
new file mode 100644
index 000000000..225acff75
--- /dev/null
+++ b/tests/metagpt/tools/test_moderation.py
@@ -0,0 +1,42 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+"""
+@Time : 2023/9/26 14:46
+@Author : zhanglei
+@File : test_translate.py
+"""
+
+import pytest
+
+from metagpt.tools.moderation import Moderation
+
+
+@pytest.mark.parametrize(
+ ("content",),
+ [
+ [
+ ["I will kill you", "The weather is really nice today", "I want to hit you"],
+ ]
+ ],
+)
+def test_moderation(content):
+ moderation = Moderation()
+ results = moderation.moderation(content=content)
+ assert isinstance(results, list)
+ assert len(results) == len(content)
+
+
+@pytest.mark.asyncio
+@pytest.mark.parametrize(
+ ("content",),
+ [
+ [
+ ["I will kill you", "The weather is really nice today", "I want to hit you"],
+ ]
+ ],
+)
+async def test_amoderation(content):
+ moderation = Moderation()
+ results = await moderation.amoderation(content=content)
+ assert isinstance(results, list)
+ assert len(results) == len(content)
diff --git a/webui.py b/webui.py
deleted file mode 100644
index e69de29bb..000000000